:root {
            --saffron: #FF671F;
            --saffron-light: #FF8C42;
            --saffron-dark: #E55A00;
            --green: #046A38;
            --green-light: #058C4A;
            --green-dark: #034D29;
            --navy: #1e293b;
            --navy-light: #1e293b;
            --navy-dark: #1e293b;
            --white: #FFFFFF;
            --off-white: #F8F9FA;
            --light-gray: #E9ECEF;
            --gray: #6C757D;
            --dark-gray: #343A40;
            --black: #212529;
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
            --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
            --shadow-xl: 0 12px 48px rgba(0,0,0,0.2);
            --gradient-saffron: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
            --gradient-green: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
            --gradient-navy: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            --gradient-hero: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--saffron) 100%);
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
            --border-radius-lg: 20px;
            --border-radius-xl: 30px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            line-height: 1.6;
            color: var(--black);
            background-color: var(--white);
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition-fast);
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            display: inline-block;
            font-size: 14px;
            font-weight: 600;
            color: var(--saffron);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            padding: 8px 20px;
            background: rgba(255, 103, 31, 0.1);
            border-radius: var(--border-radius-xl);
        }

        .section-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .section-desc {
            font-size: 18px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 600;
            border-radius: var(--border-radius-xl);
            cursor: pointer;
            transition: var(--transition-normal);
            border: none;
            outline: none;
        }

        .btn-primary {
            background: var(--gradient-saffron);
            color: var(--white);
            box-shadow: 0 4px 15px rgba(255, 103, 31, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 103, 31, 0.5);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--navy);
            border: 2px solid var(--navy);
        }

        .btn-secondary:hover {
            background: var(--navy);
            color: var(--white);
            transform: translateY(-3px);
        }

        .btn-outline {
            background: transparent;
            color: var(--white);
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--navy);
        }
        /* Hero Section */
        .hero {
            min-height: 100vh;
            background: var(--gradient-hero);
            position: relative;
            display: flex;
            align-items: center;
            padding-top: 100px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        }

        .hero-shapes {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
        }

        .hero-shape {
            position: absolute;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-shape-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 103, 31, 0.3) 0%, transparent 70%);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .hero-shape-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(4, 106, 56, 0.3) 0%, transparent 70%);
            bottom: -50px;
            left: -50px;
            animation-delay: 2s;
        }

        .hero-shape-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            top: 40%;
            left: 30%;
            animation-delay: 4s;
        }

        .hero-shape-4 {
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 103, 31, 0.2) 0%, transparent 70%);
            top: 20%;
            right: 20%;
            animation-delay: 1s;
        }

        .hero-shape-5 {
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(4, 106, 56, 0.2) 0%, transparent 70%);
            bottom: 30%;
            right: 10%;
            animation-delay: 3s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-30px) rotate(5deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            margin-bottom: 30px;
        }

        .breadcrumb a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .breadcrumb a:hover {
            color: var(--white);
        }

        .breadcrumb i {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .breadcrumb span {
            color: var(--saffron);
            font-size: 14px;
            font-weight: 500;
        }

        .hero-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: var(--border-radius-xl);
            color: var(--white);
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .hero-badge i {
            color: var(--saffron);
            margin-right: 8px;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 800;
            color: var(--white);
            line-height: 1.1;
            margin-bottom: 25px;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-light) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 60px;
            margin-top: 60px;
            padding-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hero-stat {
            text-align: center;
        }

        .hero-stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--white);
        }

        .hero-stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-top: 5px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-indicator a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 14px;
        }

        .scroll-indicator i {
            font-size: 20px;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* About Intro Section */
        .about-intro {
            background: var(--off-white);
        }

        .about-intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

        .about-image {
            position: relative;
            border-radius: var(--border-radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
        }

        .about-image img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            display: block;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 128, 0.2) 0%, rgba(255, 103, 31, 0.2) 100%);
            z-index: 1;
        }

        .experience-badge {
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 150px;
            height: 150px;
            background: var(--gradient-saffron);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            z-index: 2;
        }

        .experience-badge .number {
            font-size: 42px;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
        }

        .experience-badge .text {
            font-size: 12px;
            color: var(--white);
            text-transform: uppercase;
            letter-spacing: 1px;
            text-align: center;
        }

        .pattern-dots {
            position: absolute;
            top: -40px;
            left: -40px;
            width: 120px;
            height: 120px;
            background-image: radial-gradient(var(--saffron) 2px, transparent 2px);
            background-size: 15px 15px;
            opacity: 0.5;
            z-index: -1;
        }

        .about-content h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-content h2 span {
            color: var(--saffron);
        }

        .about-content .lead {
            font-size: 18px;
            color: var(--gray);
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .about-content p {
            color: var(--gray);
            margin-bottom: 30px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 40px;
        }

        .about-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px 20px;
            background: var(--white);
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
        }

        .about-feature:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .about-feature-icon {
            width: 50px;
            height: 50px;
            background: var(--gradient-saffron);
            border-radius: var(--border-radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            flex-shrink: 0;
        }

        .about-feature span {
            font-weight: 600;
            color: var(--navy);
        }

        .founder-info {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: var(--white);
            border-radius: var(--border-radius-md);
            border-left: 4px solid var(--saffron);
            box-shadow: var(--shadow-sm);
        }

        .founder-image {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--saffron);
        }

        .founder-details h4 {
            font-size: 18px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .founder-details span {
            font-size: 14px;
            color: var(--saffron);
            font-weight: 500;
        }

        .founder-details p {
            font-size: 14px;
            color: var(--gray);
            margin-top: 8px;
            margin-bottom: 0;
        }

        /* Stats Section */
        .stats-section {
            background: var(--gradient-navy);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            text-align: center;
            padding: 40px 20px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: var(--border-radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            transition: var(--transition-normal);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-icon {
            width: 70px;
            height: 70px;
            background: var(--gradient-saffron);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: var(--white);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 800;
            color: var(--white);
            line-height: 1;
            margin-bottom: 10px;
        }

        .stat-number span {
            color: var(--saffron);
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
        }

        /* Mission Vision Promise Section */
        .mvp-section {
            background: var(--white);
        }

        .mvp-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .mvp-card {
            padding: 50px 40px;
            background: var(--white);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: var(--transition-normal);
            border: 1px solid var(--light-gray);
            position: relative;
            overflow: hidden;
        }

        .mvp-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-saffron);
            transform: scaleX(0);
            transition: var(--transition-normal);
        }

        .mvp-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .mvp-card:hover::before {
            transform: scaleX(1);
        }

        .mvp-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, rgba(255, 103, 31, 0.1) 0%, rgba(255, 103, 31, 0.2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--saffron);
            transition: var(--transition-normal);
        }

        .mvp-card:hover .mvp-icon {
            background: var(--gradient-saffron);
            color: var(--white);
            transform: scale(1.1);
        }

        .mvp-card h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 15px;
        }

        .mvp-card p {
            color: var(--gray);
            line-height: 1.8;
        }

        /* Core Values Section */
        .values-section {
            background: var(--off-white);
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .value-card {
            padding: 40px 30px;
            background: var(--white);
            border-radius: var(--border-radius-lg);
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition-normal);
            border: 1px solid transparent;
        }

        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--saffron);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-green);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--white);
            transition: var(--transition-normal);
        }

        .value-card:hover .value-icon {
            border-radius: 50%;
            transform: rotate(10deg);
        }

        .value-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 12px;
        }

        .value-card p {
            color: var(--gray);
            font-size: 15px;
            line-height: 1.7;
        }

        /* Timeline Section */
        .timeline-section {
            background: var(--white);
        }

        .timeline {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, var(--saffron) 0%, var(--green) 50%, var(--navy) 100%);
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .timeline-item {
            display: flex;
            justify-content: flex-end;
            padding-right: 50%;
            position: relative;
            margin-bottom: 50px;
        }

        .timeline-item:nth-child(even) {
            justify-content: flex-start;
            padding-right: 0;
            padding-left: 50%;
        }

        .timeline-content {
            width: calc(100% - 50px);
            padding: 30px;
            background: var(--white);
            border-radius: var(--border-radius-md);
            box-shadow: var(--shadow-md);
            position: relative;
            transition: var(--transition-normal);
            border: 1px solid var(--light-gray);
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }

        .timeline-item:nth-child(odd) .timeline-content {
            margin-right: 50px;
        }

        .timeline-item:nth-child(even) .timeline-content {
            margin-left: 50px;
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            width: 20px;
            height: 20px;
            background: var(--saffron);
            border-radius: 50%;
            transform: translateX(-50%);
            border: 4px solid var(--white);
            box-shadow: var(--shadow-md);
            z-index: 1;
        }

        .timeline-item:nth-child(2) .timeline-dot {
            background: var(--green);
        }

        .timeline-item:nth-child(3) .timeline-dot {
            background: var(--navy);
        }

        .timeline-item:nth-child(4) .timeline-dot {
            background: var(--saffron);
        }

        .timeline-item:nth-child(5) .timeline-dot {
            background: var(--green);
        }

        .timeline-year {
            display: inline-block;
            padding: 5px 15px;
            background: var(--gradient-saffron);
            color: var(--white);
            font-size: 14px;
            font-weight: 600;
            border-radius: var(--border-radius-sm);
            margin-bottom: 15px;
        }

        .timeline-content h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--navy);
            margin-bottom: 10px;
        }

        .timeline-content p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Why Choose Us Section */
        .why-choose-section {
            background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
            position: relative;
            overflow: hidden;
        }

        .why-choose-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 103, 31, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .why-choose-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(4, 106, 56, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .why-choose-section .section-subtitle {
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
        }

        .why-choose-section .section-title {
            color: var(--white);
        }

        .why-choose-section .section-desc {
            color: rgba(255, 255, 255, 0.8);
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .why-card {
            padding: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: var(--border-radius-lg);
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            text-align: center;
            transition: var(--transition-normal);
        }

        .why-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }

        .why-icon {
            width: 80px;
            height: 80px;
            background: var(--gradient-saffron);
            border-radius: var(--border-radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 32px;
            color: var(--white);
        }

        .why-card h4 {
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 15px;
        }

        .why-card p {
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.7;
        }

        /* Testimonials Section */
        .testimonials-section {
            background: var(--off-white);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .testimonial-card {
            padding: 40px;
            background: var(--white);
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-md);
            transition: var(--transition-normal);
            position: relative;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 120px;
            font-family: Georgia, serif;
            color: var(--saffron);
            opacity: 0.1;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .testimonial-stars {
            display: flex;
            gap: 5px;
            margin-bottom: 20px;
        }

        .testimonial-stars i {
            color: #FFB800;
            font-size: 18px;
        }

        .testimonial-text {
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 25px;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid var(--light-gray);
        }

        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--saffron);
        }

        .testimonial-author-info h5 {
            font-size: 18px;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 5px;
        }

        .testimonial-author-info span {
            font-size: 14px;
            color: var(--saffron);
        }

        /* Partners Section */
        .partners-section {
            background: var(--white);
            padding: 80px 0;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 40px;
            align-items: center;
        }

        .partner-logo {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 25px;
            background: var(--off-white);
            border-radius: var(--border-radius-md);
            transition: var(--transition-normal);
            filter: grayscale(100%);
            opacity: 0.7;
        }

        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.05);
            box-shadow: var(--shadow-md);
        }

        .partner-logo i {
            font-size: 40px;
            color: var(--navy);
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-saffron);
            padding: 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -100px;
            left: -100px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta-title {
            font-size: 48px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 20px;
        }

        .cta-text {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.9);
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-buttons .btn-primary {
            background: var(--white);
            color: var(--saffron);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-buttons .btn-primary:hover {
            background: var(--navy);
            color: var(--white);
        }


        /* Scroll Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-delay-1 { transition-delay: 0.1s; }
        .animate-delay-2 { transition-delay: 0.2s; }
        .animate-delay-3 { transition-delay: 0.3s; }
        .animate-delay-4 { transition-delay: 0.4s; }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .container { padding: 0 30px; }
        }

        @media (max-width: 992px) {
            .hero-title { font-size: 48px; }
            .hero-stats { gap: 40px; }

            .about-intro-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-image-wrapper {
                max-width: 500px;
                margin: 0 auto;
            }

            .stats-grid { grid-template-columns: repeat(2, 1fr); }

            .mvp-grid,
            .why-choose-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
                max-width: 600px;
                margin: 0 auto;
            }

            .values-grid { grid-template-columns: repeat(2, 1fr); }

            .timeline::before { left: 20px; }

            .timeline-item,
            .timeline-item:nth-child(even) {
                padding-left: 60px;
                padding-right: 0;
                justify-content: flex-start;
            }

            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                margin-left: 0;
                margin-right: 0;
                width: 100%;
            }

            .timeline-dot { left: 20px; }

            .partners-grid { grid-template-columns: repeat(3, 1fr); }

            .footer-grid { grid-template-columns: repeat(2, 1fr); }

            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
        }

        @media (max-width: 768px) {
            .section { padding: 70px 0; }
            .section-title { font-size: 32px; }
            .hero-title { font-size: 36px; }
            .hero-subtitle { font-size: 16px; }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 30px;
            }

            .hero-stat { width: 45%; }

            .about-features { grid-template-columns: 1fr; }
            .about-content h2 { font-size: 32px; }

            .experience-badge {
                width: 120px;
                height: 120px;
                bottom: -20px;
                right: -20px;
            }

            .experience-badge .number { font-size: 32px; }

            .stats-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .stat-number { font-size: 40px; }

            .values-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }

            .partners-grid { grid-template-columns: repeat(2, 1fr); }

            .cta-title { font-size: 32px; }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-column h4::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .footer-social { justify-content: center; }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .container { padding: 0 15px; }
            .hero-title { font-size: 28px; }

            .btn {
                padding: 12px 24px;
                font-size: 14px;
            }

            .about-image img { height: 350px; }

            .founder-info {
                flex-direction: column;
                text-align: center;
            }

            .partners-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
        }