@font-face {
  font-family: 'Santoshi';
  src: url('../../fonts/santoshi/fonts/Santoshi-Regular.woff2') format('woff2'),
       url('../../fonts/santoshi/fonts/Santoshi-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Santoshi';
  src: url('../../fonts/santoshi/fonts/Santoshi-Bold.woff2') format('woff2'),
       url('../../fonts/santoshi/fonts/Santoshi-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --main-font: 'Santoshi', 'Inter', 'Barlow Condensed', 'Roboto', Arial, sans-serif;
  --framer-text-color: #282943;
  --framer-blue: #424BD0;
  --framer-white: #FFFFFF;
  --framer-border-color: rgba(40, 41, 67, 0.15);
  --framer-black: #000000;
}
body {
  font-family: 'Santoshi', Arial, sans-serif;
  overflow-x: hidden;
}

/* Navigation Styles */
.framer-navbar {
    border-bottom: 1px solid var(--framer-border-color);
    background-color: var(--framer-white);
    height: 80px;
}

.framer-logo {
    font-size: 24px;
    font-weight: bold;
    color: black;
    text-decoration: none;
}

.nav-link-custom {
    color: var(--framer-text-color);
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin: 0 4px;
}

.nav-link-custom:hover {
    color: var(--framer-text-color);
}

.dropdown-toggle::after {
    margin-left: 8px;
    vertical-align: middle;
}

.btn-framer-primary {
    background-color: var(--framer-blue);
    color: var(--framer-white);
    border-radius: 8px;
    padding: 9px 22px;
    font-weight: 500;
    border: none;
}

.btn-framer-primary:hover {
    background-color: #3a42b8;
    color: var(--framer-white);
}

.btn-framer-outline {
    background-color: var(--framer-white);
    color: var(--framer-blue);
    border-radius: 8px;
    padding: 9px 22px;
    font-weight: 500;
    border: 1px solid var(--framer-blue);
}

.btn-framer-outline:hover {
    background-color: #f8f9fa;
    color: var(--framer-blue);
}

/* Hero Section Styles */
.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--framer-text-color);
    margin-bottom: 30px;
}

.hero-title span {
    color: var(--framer-blue);
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.3;
    color: var(--framer-black);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    height: 500px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blue-circle {
    position: absolute;
    width: 931px;
    height: 808px;
    background-color: rgb(70 72 204);
    border-radius: 50%;
    z-index: -1;
    right: -74px;
    bottom: 144px;
}
.services-section {
    padding: 100px 0;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 40px;
}

.service-card {
    border-radius: 12px 12px 100px 12px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    padding: 40px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card-primary {
    background-color: #4648cc;
    color: white;
}

.service-card-white {
    background-color: white;
}

.service-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.read-more {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
}

.process-section {
    padding: 100px 0;
    background-color: white;
}

.process-step {
    text-align: center;
    padding: 0 30px;
}

.process-number {
    font-size: 48px;
    font-weight: 700;
    color: #4648cc;
    margin-bottom: 20px;
}

.process-line {
    height: 2px;
    background-color: #4648cc;
    margin: 20px 0;
    position: relative;
}

.process-line:after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #4648cc;
    border-radius: 50%;
    top: -4px;
    right: 0;
}

.process-name {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 5px;
}

.process-duration {
    font-size: 18px;
    font-weight: 500;
    opacity: 0.5;
    margin-bottom: 15px;
}

.process-description {
    font-size: 18px;
    line-height: 1.5;
}

.testimonials-section {
    padding: 100px 0;
    background-color: #4648cc;
    color: white;
}

.testimonial-card {
    background-color: white;
    border-radius: 160px 48px 48px 48px;
    padding: 60px;
    color: black;
    height: 100%;
}

.testimonial-stat {
    font-size: 80px;
    font-weight: 700;
    color: #4648cc;
    line-height: 1;
}

.testimonial-stat-label {
    font-size: 24px;
    font-weight: 500;
    color: #4648cc;
}

.testimonial-divider {
    height: 2px;
    background-color: #4648cc;
    margin: 30px 0;
}

.testimonial-text {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.testimonial-logo {
    height: 60px;
    object-fit: contain;
}

.stats-section {
    padding: 100px 0;
}

.stats-image {
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
}

.stats-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #4648cc;
    line-height: 1.2;
}

.stat-label {
    font-size: 18px;
    font-weight: 500;
}

.about-section {
    padding: 100px 0;
    background-color: #f5f5ff;
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.check-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.check-icon {
    width: 32px;
    height: 32px;
    background-color: #4648cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: white;
}

.case-studies-section {
    padding: 100px 0;
}

.case-card {
    background-color: white;
    border-radius: 12px 12px 100px 12px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    padding: 40px;
    height: 100%;
    transition: transform 0.3s;
}

.case-card:hover {
    transform: translateY(-5px);
}

.case-icon {
    height: 60px;
    margin-bottom: 30px;
}

.case-stat {
    font-size: 20px;
    font-weight: 700;
    color: #4648cc;
    line-height: 1;
}

.case-stat-label {
    font-size: 18px;
    opacity: 0.5;
    margin-bottom: 20px;
}

.case-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.case-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.cta-section {
        align-content: center;
    align-items: center;
    display: flex
;
    flex: none;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    height: min-content;
    justify-content: center;
    overflow: hidden;
    padding: 180px 69px 190px;
    position: relative;
    width: 100%;
}

.cta-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 40px;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.2;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 1;
}

footer {
    background-color: var(--light-color);
    padding: 80px 0 30px;
}

.footer-links-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-link {
    display: block;
    color: #000;
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-contact-card {
    background-color: white;
    border-radius: 12px 12px 100px 12px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.06);
    padding: 40px;
}

.contact-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contact-icon {
    width: 24px;
    height: 24px;
    margin-right: 15px;
    color: var(--primary-color);
}

.contact-divider {
    height: 1px;
    background-color: rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 15px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 30px;
    margin-top: 60px;
}

.copyright {
    text-align: right;
    font-size: 14px;
}


@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-image {
        height: 400px;
        margin-top: 40px;
    }
}
/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.fade-in-active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }
.delay-4 { transition-delay: 0.8s; }
.delay-5 { transition-delay: 1.0s; }
.delay-6 { transition-delay: 1.2s; }
.delay-7 { transition-delay: 1.4s; }
.delay-8 { transition-delay: 1.6s; }