 
            :root {
                --primary: #046321;
                --primary-light: #0a7d2f;
                --primary-dark: #034a18;
                --secondary: #e74c3c;
                --accent: #f39c12;
                --light: #e9e9e9;
                --dark: #1a1a1a;
                --text: #333333;
                --white: #ffffff;
                --gray: #6c757d;
                --light-gray: #e9ecef;
                --section-padding: 100px 0;
                --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            html {
                scroll-behavior: smooth;
            }

            body {
                font-family: "Inter", sans-serif;
                color: var(--text);
                line-height: 1.7;
                background-color: var(--white);
                overflow-x: hidden;
            }

            h1,
            h2,
            h3,
            h4,
            h5,
            h6 {
                font-family: "Playfair Display", serif;
                font-weight: 600;
                line-height: 1.3;
                margin-bottom: 1.2rem;
            }
            a {
                text-decoration: none;
            }

            .container {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            .section {
                padding: var(--section-padding);
            }

            .section-title {
                text-align: center;
                margin-bottom: 70px;
            }

            .section-title h2 {
                font-size: 2.8rem;
                color: var(--dark);
                position: relative;
                display: inline-block;
                margin-bottom: 1.5rem;
            }

            .section-title h2::after {
                content: "";
                position: absolute;
                bottom: -15px;
                left: 50%;
                transform: translateX(-50%);
                width: 80px;
                height: 4px;
                background: linear-gradient(to right, var(--primary), var(--secondary));
                border-radius: 2px;
            }

            .section-title p {
                max-width: 700px;
                margin: 0 auto;
                color: var(--gray);
                font-size: 1.2rem;
                font-weight: 400;
            }

            .btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                padding: 5px 15px;
                border-radius: 8px;
                font-weight: 600;
                text-align: center;
                cursor: pointer;
                transition: var(--transition);
                border: none;
                font-size: 1rem;
                position: relative;
                overflow: hidden;
                z-index: 1;
                gap: 10px;
            }

            .btn::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 0%;
                height: 100%;
                background: rgba(255, 255, 255, 0.1);
                transition: var(--transition);
                z-index: -1;
            }

            .btn:hover::before {
                width: 100%;
            }

            .btn-primary {
                background-color: var(--primary);
                color: var(--white);
                box-shadow: 0 4px 15px rgba(4, 99, 33, 0.2);
            }

            .btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(4, 99, 33, 0.3);
            }

            .btn-secondary {
                background-color: var(--secondary);
                color: var(--white);
                box-shadow: 0 4px 15px rgba(231, 76, 60, 0.2);
            }

            .btn-secondary:hover {
                transform: translateY(-3px);
                box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
            }

            .btn-outline {
                background-color: transparent;
                color: var(--primary);
                border: 2px solid var(--primary);
            }

            .btn-outline:hover {
                background-color: var(--primary);
                color: var(--white);
                transform: translateY(-3px);
            }

            /* Header Styles */
            header {
                background-color: var(--white);
                box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                z-index: 1000;
                transition: var(--transition);
            }

            .header-container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 10px 0;
            }

            .logo {
                display: flex;
                align-items: center;
            }

            .logo-icon {
                width: 50px;
                height: 50px;
                background-color: var(--primary);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                font-size: 1.5rem;
                font-weight: 700;
                margin-right: 12px;
                box-shadow: 0 4px 12px rgba(4, 99, 33, 0.2);
            }

            .logo-text {
                font-size: 1.8rem;
                font-weight: 700;
                color: var(--primary);
            }

            .logo-text span {
                color: var(--secondary);
            }

            nav ul {
                display: flex;
            }

            nav ul li {
                margin-left: 35px;
                list-style: none;
            }

            nav ul li a {
                font-weight: 500;
                color: var(--dark);
                position: relative;
                padding: 5px 0;
                font-size: 1.05rem;
                text-decoration: none;
            }

            nav ul li a::after {
                content: "";
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 2px;
                background: linear-gradient(to right, var(--primary), var(--secondary));
                transition: var(--transition);
            }

            nav ul li a:hover {
                color: var(--primary);
            }

            nav ul li a:hover::after {
                width: 100%;
            }

            .header-actions {
                display: flex;
                align-items: center;
            }

            .mobile-menu-btn {
                display: none;
                background: none;
                border: none;
                font-size: 1.5rem;
                color: var(--dark);
                cursor: pointer;
            }

            /* Hero Section */
            .hero {
                background:
                    linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.9) 100%),
                    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80")
                        center/cover no-repeat;
                color: var(--dark);
                padding: 180px 0 120px;
                position: relative;
                overflow: hidden;
            }

            .hero-content {
                max-width: 800px;
                margin: 0 auto;
                text-align: center;
                position: relative;
                z-index: 1;
            }

            .hero h1 {
                font-size: 3.8rem;
                margin-bottom: 1.5rem;
                animation: fadeInUp 1s ease;
                color: var(--dark);
            }

            .hero h1 span {
                color: var(--primary);
                position: relative;
            }

            .hero h1 span::after {
                content: "";
                position: absolute;
                bottom: 5px;
                left: 0;
                width: 100%;
                height: 8px;
                background-color: rgba(4, 99, 33, 0.2);
                z-index: -1;
            }

            .hero p {
                font-size: 1.3rem;
                margin-bottom: 2.5rem;
                animation: fadeInUp 1s ease 0.2s both;
                color: var(--gray);
                font-weight: 400;
                max-width: 700px;
                margin-left: auto;
                margin-right: auto;
            }

            .hero-buttons {
                display: flex;
                justify-content: center;
                gap: 20px;
                animation: fadeInUp 1s ease 0.4s both;
            }

            /* Stats Section */
            .stats {
                background-color: var(--primary);
                color: var(--white);
                padding: 80px 0;
                position: relative;
            }

            .stats::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,70 C150,40 350,100 500,70 C650,40 850,10 1000,70 L1000,100 L0,100 Z"></path></svg>');
                background-size: cover;
                background-repeat: no-repeat;
            }

            .stats-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 40px;
                position: relative;
                z-index: 1;
            }

            .stat-item {
                text-align: center;
                padding: 30px 20px;
            }

            .stat-number {
                font-size: 3.5rem;
                font-weight: 700;
                margin-bottom: 10px;
                display: block;
                font-family: "Playfair Display", serif;
            }

            .stat-text {
                font-size: 1.2rem;
                opacity: 0.9;
                font-weight: 500;
                color: black;
            }

            /* Courses Section */
            .courses {
                background-color: var(--white);
            }

            .courses-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 40px;
            }

            .course-card {
                background-color: var(--white);
                border-radius: 16px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
                transition: var(--transition);
                position: relative;
                border: 1px solid rgba(0, 0, 0, 0.03);
            }

            .course-card:hover {
                transform: translateY(-12px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            }

            .course-header {
                height: 200px;
                background: linear-gradient(135deg, var(--primary), var(--primary-light));
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                position: relative;
                overflow: hidden;
            }

            .course-header::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.1)" d="M0,0 L100,0 L100,100 L0,100 Z M0,0 C30,20 70,20 100,0 L100,100 L0,100 Z"></path></svg>');
                background-size: cover;
            }

            .course-icon {
                font-size: 4rem;
                z-index: 1;
            }

            .course-badge {
                position: absolute;
                top: 20px;
                right: 20px;
                background: var(--secondary);
                color: var(--white);
                padding: 8px 16px;
                border-radius: 50px;
                font-size: 0.8rem;
                font-weight: 600;
                box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
                z-index: 1;
            }

            .course-content {
                padding: 35px 30px;
            }

            .course-content h3 {
                color: var(--dark);
                margin-bottom: 15px;
                font-size: 1.6rem;
            }

            .course-content p {
                margin-bottom: 25px;
                color: var(--gray);
                font-weight: 400;
            }

            .course-features {
                margin-bottom: 25px;
            }

            .course-features li {
                display: flex;
                align-items: center;
                margin-bottom: 12px;
                color: var(--dark);
                font-weight: 500;
            }

            .course-features li i {
                color: var(--primary);
                margin-right: 12px;
                font-size: 1.1rem;
            }

            .course-meta {
                display: flex;
                justify-content: space-between;
                align-items: center;
                margin-top: 25px;
                padding-top: 25px;
                border-top: 1px solid var(--light-gray);
            }

            .course-price {
                font-size: 1.5rem;
                font-weight: 700;
                color: var(--primary);
                font-family: "Playfair Display", serif;
            }

            /* Why Choose Us Section */
            .why-choose {
                background-color: var(--light);
                position: relative;
            }

            .why-choose::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path fill="%23ffffff" d="M0,0 C250,80 750,80 1000,0 L1000,100 L0,100 Z"></path></svg>');
                background-size: cover;
                background-repeat: no-repeat;
                background-position: bottom;
            }

            .why-choose .container {
                position: relative;
                z-index: 1;
            }

            .features-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 40px;
            }

            .feature-card {
                background-color: var(--white);
                padding: 40px 30px;
                border-radius: 16px;
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(0, 0, 0, 0.03);
            }

            .feature-card::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 5px;
                background: linear-gradient(to right, var(--primary), var(--secondary));
            }

            .feature-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            }

            .feature-icon {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, rgba(4, 99, 33, 0.1), rgba(10, 125, 47, 0.1));
                border-radius: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 25px;
                font-size: 2.2rem;
                color: var(--primary);
                transition: var(--transition);
            }

            .feature-card:hover .feature-icon {
                background: linear-gradient(135deg, var(--primary), var(--primary-light));
                color: var(--white);
                transform: scale(1.1) rotate(5deg);
            }

            .feature-card h3 {
                color: var(--dark);
                margin-bottom: 20px;
                font-size: 1.5rem;
            }

            .feature-card p {
                color: var(--gray);
                font-weight: 400;
            }

            /* Learning Modes Section */
            .learning-modes {
                background-color: var(--white);
            }

            .modes-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
                gap: 40px;
            }

            .mode-card {
                background-color: var(--white);
                padding: 40px 30px;
                border-radius: 16px;
                text-align: center;
                transition: var(--transition);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                position: relative;
                overflow: hidden;
                border: 1px solid rgba(0, 0, 0, 0.03);
            }

            .mode-card::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(135deg, var(--primary), var(--primary-light));
                opacity: 0;
                transition: var(--transition);
                z-index: 0;
            }

            .mode-card:hover::before {
                opacity: 1;
            }

            .mode-card:hover {
                transform: translateY(-10px);
            }

            .mode-card > * {
                position: relative;
                z-index: 1;
            }

            .mode-card:hover .mode-icon,
            .mode-card:hover h3,
            .mode-card:hover p {
                color: var(--white);
            }

            .mode-icon {
                font-size: 3.2rem;
                margin-bottom: 25px;
                color: var(--primary);
                transition: var(--transition);
            }

            .mode-card h3 {
                color: var(--dark);
                margin-bottom: 20px;
                font-size: 1.5rem;
                transition: var(--transition);
            }

            .mode-card p {
                color: var(--gray);
                transition: var(--transition);
                font-weight: 400;
            }

            /* Testimonials Section */
            .testimonials {
                background-color: var(--light);
                position: relative;
            }

            .testimonials-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 40px;
            }

            .testimonial-card {
                background-color: var(--white);
                padding: 40px 35px;
                border-radius: 16px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
                position: relative;
                transition: var(--transition);
                border: 1px solid rgba(0, 0, 0, 0.03);
            }

            .testimonial-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
            }

            .testimonial-card::before {
                content: '"';
                position: absolute;
                top: 20px;
                left: 30px;
                font-size: 80px;
                color: var(--light-gray);
                font-family: "Playfair Display", serif;
                line-height: 1;
                z-index: 0;
            }

            .testimonial-text {
                margin-bottom: 25px;
                position: relative;
                z-index: 1;
                font-size: 1.1rem;
                font-style: italic;
                color: var(--dark);
            }

            .testimonial-author {
                display: flex;
                align-items: center;
            }

            .author-img {
                width: 70px;
                height: 70px;
                border-radius: 50%;
                background: linear-gradient(135deg, var(--primary), var(--primary-light));
                margin-right: 20px;
                display: flex;
                align-items: center;
                justify-content: center;
                color: var(--white);
                font-weight: 700;
                font-size: 1.5rem;
                box-shadow: 0 4px 12px rgba(4, 99, 33, 0.3);
            }

            .author-info h4 {
                color: var(--dark);
                margin-bottom: 5px;
                font-size: 1.2rem;
            }

            .author-info p {
                color: var(--gray);
                font-size: 0.9rem;
                margin: 0;
                font-weight: 500;
            }

            /* CTA Section */
            .cta {
                background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
                color: var(--white);
                text-align: center;
                padding: 120px 0;
                position: relative;
                overflow: hidden;
            }

            .cta::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 C250,50 750,50 1000,0 L1000,100 L0,100 Z"></path></svg>');
                background-size: cover;
                background-repeat: no-repeat;
            }

            .cta .container {
                position: relative;
                z-index: 1;
            }

            .cta h2 {
                font-size: 2.8rem;
                margin-bottom: 1.5rem;
            }

            .cta p {
                font-size: 1.3rem;
                max-width: 700px;
                margin: 0 auto 2.5rem;
                opacity: 0.9;
                font-weight: 400;
            }

            /* Footer */
            footer {
                background: var(--dark);
                color: var(--white);
                padding: 100px 0 30px;
            }

            .footer-container {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 50px;
                margin-bottom: 60px;
            }

            .footer-col h3 {
                color: var(--accent);
                margin-bottom: 25px;
                font-size: 1.5rem;
                position: relative;
                display: inline-block;
            }

            .footer-col h3::after {
                content: "";
                position: absolute;
                bottom: -8px;
                left: 0;
                width: 40px;
                height: 3px;
                background: var(--accent);
                border-radius: 2px;
            }

            .footer-col p {
                color: #bbb;
                margin-bottom: 20px;
                font-weight: 400;
            }

            .footer-col ul li {
                margin-bottom: 12px;
            }

            .footer-col ul li a {
                color: #bbb;
                transition: var(--transition);
                display: inline-block;
                font-weight: 400;
            }

            .footer-col ul li a:hover {
                color: var(--white);
                padding-left: 8px;
            }

            .social-links {
                display: flex;
                gap: 15px;
                margin-top: 25px;
            }

            .social-links a {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 45px;
                height: 45px;
                background-color: rgba(255, 255, 255, 0.1);
                border-radius: 12px;
                color: var(--white);
                transition: var(--transition);
                font-size: 1.2rem;
            }

            .social-links a:hover {
                background-color: var(--primary);
                transform: translateY(-5px);
            }

            .copyright {
                text-align: center;
                padding-top: 30px;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                color: #bbb;
                font-size: 0.9rem;
                font-weight: 400;
            }

            /* Animations */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            /* Responsive Design */
            @media (max-width: 992px) {
                .hero h1 {
                    font-size: 3rem;
                }

                .section-title h2 {
                    font-size: 2.3rem;
                }

                nav ul {
                    display: none;
                }

                .mobile-menu-btn {
                    display: block;
                }

                .header-actions .btn {
                    display: none;
                }
            }

            @media (max-width: 768px) {
                .hero {
                    padding: 160px 0 100px;
                }

                .hero h1 {
                    font-size: 2.5rem;
                }

                .hero p {
                    font-size: 1.1rem;
                }

                .hero-buttons {
                    flex-direction: column;
                    gap: 15px;
                }

                .section {
                    padding: 80px 0;
                }

                .section-title h2 {
                    font-size: 2rem;
                }

                .stat-number {
                    font-size: 2.8rem;
                }
            }

            @media (max-width: 576px) {
                .logo-text {
                    font-size: 1.5rem;
                }

                .hero h1 {
                    font-size: 2.2rem;
                }

                .cta h2 {
                    font-size: 2.2rem;
                }

                .courses-container,
                .testimonials-container {
                    grid-template-columns: 1fr;
                }
            }
            .hero {
                background: linear-gradient(135deg, #f8fafc 0%, #e8eef5 100%);
                padding: 120px 0 100px;
                text-align: center;
                position: relative;
            }

            .hero .container {
                margin: auto;
                padding: 0 20px;
            }

            .welcome-tag {
                display: inline-flex;
                align-items: center;
                gap: 10px;
                background: linear-gradient(135deg, #046321, #0a7d2f);
                color: white;
                padding: 10px 22px;
                border-radius: 50px;
                font-size: 0.9rem;
                font-weight: 600;
                margin-bottom: 2rem;
            }

            .hero-text h1 {
                font-size: 3rem;
                font-weight: 700;
                color: #1a202c;
                line-height: 1.2;
                margin-bottom: 1.4rem;
            }

            .highlight {
                background: linear-gradient(135deg, #046321, #0a7d2f);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .welcome-message {
                font-size: 1.25rem;
                color: #046321;
                font-weight: 500;
                margin-bottom: 1.8rem;
                line-height: 1.6;
            }

            .description p {
                font-size: 1.1rem;
                color: #4a5568;
                line-height: 1.7;
                margin-bottom: 1.3rem;
            }

            .hero-actions {
                margin-top: 2rem;
                display: flex;
                justify-content: center;
                gap: 18px;
                flex-wrap: wrap;
            }

            .btn {
                padding: 14px 30px;
                border-radius: 10px;
                font-weight: 600;
                text-decoration: none;
                display: inline-flex;
                align-items: center;
                gap: 10px;
                transition: 0.3s ease;
            }

            .btn-primary {
                background: linear-gradient(135deg, #046321, #0a7d2f);
                color: white;
            }

            .btn-primary:hover {
                transform: translateY(-3px);
            }

            .btn-outline {
                border: 2px solid #046321;
                color: #046321;
            }

            .btn-outline:hover {
                background: #046321;
                color: white;
            }

            /*** Stats Row ***/
            .stats-row {
                display: flex;
                justify-content: center;
                gap: 25px;
                margin-top: 60px;
                flex-wrap: wrap;
            }

            .stat-card {
                background: white;
                width: 240px;
                padding: 28px 20px;
                border-radius: 16px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                border-left: 5px solid #0a7d2f;
                transition: 0.3s ease;
            }

            .stat-card:hover {
                transform: translateY(-5px);
            }

            .stat-icon {
                font-size: 2rem;
                color: #046321;
                margin-bottom: 10px;
            }

            .stat-card h3 {
                font-size: 2rem;
                color: #046321;
                margin-bottom: 5px;
            }

            .stat-card p {
                color: #6b7280;
                font-size: 1rem;
            }
            .mini-chairman-section {
                padding: 60px 0;
                background: #fef6ed;
            }

            .mini-chairman-title h2 {
                text-align: center;
                font-size: 2.2rem;
                color: #b52f1f;
                margin-bottom: 40px;
            }

            /* Wrapper to center the card */
            .mini-chairman-wrapper {
                display: flex;
                justify-content: center;
                width: 100%;
            }

            /* Card */
            .mini-chairman-card {
                background: #fff;
                padding: 35px 40px;
                border-radius: 15px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                display: flex;
                gap: 30px;
                max-width: 850px;
                width: 100%;
                align-items: flex-start;
            }

            /* Photo */
            .mini-chairman-photo img {
                width: 110px;
                height: 110px;
                border-radius: 50%;
                object-fit: cover;
                border: 4px solid #f3d8c4;
            }

            /* Right content */
            .mini-chairman-badge {
                text-align: right;
                color: #b52f1f;
                font-weight: 600;
                font-size: 1rem;
            }

            .mini-chairman-name {
                font-size: 1.4rem;
                font-weight: 700;
                color: #b52f1f;
                margin-top: 5px;
            }

            .mini-chairman-role {
                font-size: 1rem;
                color: #777;
                margin-bottom: 15px;
            }

            .mini-chairman-text {
                background: #fbe9d7;
                padding: 15px 18px;
                border-radius: 10px;
                line-height: 1.7;
                color: #444;
                font-size: 1rem;
            }
            .vs-service-section {
                background: #fcf6f1;
                padding: 60px 16px;
                font-family:
                    "Inter",
                    system-ui,
                    -apple-system,
                    "Segoe UI",
                    Roboto,
                    "Helvetica Neue",
                    Arial;
                color: #333;
            }
            .vs-service-container {
                max-width: 1200px;
                margin: 0 auto;
            }

            /* Title */
            .vs-service-title {
                text-align: center;
                font-family: "Playfair Display", serif;
                font-size: 2.2rem;
                color: #066c26;
                margin-bottom: 34px;
            }

            /* Grid (works even if Bootstrap isn't loaded) */
            .vs-service-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr); /* 3 columns on large */
                gap: 22px;
                align-items: start;
            }

            /* Card */
            .vs-service-card {
                background: #fff;
                border-radius: 12px;
                padding: 26px 20px 22px;
                text-align: center;
                box-shadow: 0 10px 30px rgba(18, 18, 18, 0.06);
                border: 1px solid rgba(179, 49, 34, 0.06);
                transition:
                    transform 0.28s ease,
                    box-shadow 0.28s ease;
                display: flex;
                flex-direction: column;
                gap: 14px;
                height: 100%;
            }
            .vs-service-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 18px 40px rgba(18, 18, 18, 0.1);
            }

            /* Icon badge at top */
            .vs-service-badge {
                width: 76px;
                height: 76px;
                margin: 0 auto;
                border-radius: 50%;
                background: linear-gradient(180deg, rgba(243, 226, 216, 0.7), #fff);
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 6px 18px rgba(179, 49, 34, 0.05);
                border: 6px solid rgba(255, 255, 255, 0.9);
                color: #c03b2e;
                font-size: 26px;
            }

            /* Headline & text */
            .vs-service-card h3 {
                font-family: "Playfair Display", serif;
                font-size: 1.05rem;
                color: #066c26;
                margin: 6px 0 0;
            }
            .vs-service-card p {
                margin: 0;
                color: #575757;
                font-size: 0.98rem;
                line-height: 1.6;
            }

            /* Make sure the badge sits visually above the top edge (optional) */
            .vs-service-card:before {
                content: "";
                display: block;
                height: 8px;
            }

            /* Responsive breakpoints */
            @media (max-width: 1000px) {
                .vs-service-grid {
                    grid-template-columns: repeat(2, 1fr);
                }
            }
            @media (max-width: 620px) {
                .vs-service-grid {
                    grid-template-columns: 1fr;
                }
                .vs-service-container {
                    padding: 0 8px;
                }
                .vs-service-badge {
                    width: 66px;
                    height: 66px;
                    font-size: 22px;
                }
            }

            /* Toppers Carousel - theme color #046321 */
            .vt-toppers-carousel {
                padding: 40px 16px;
                background: #fffefc;
                font-family:
                    Inter,
                    system-ui,
                    -apple-system,
                    "Segoe UI",
                    Roboto,
                    Arial;
                color: #222;
            }
            .vt-container {
                max-width: 1200px;
                margin: 0 auto;
            }
            .vt-title {
                text-align: center;
                font-family: "Playfair Display", serif;
                color: #046321;
                font-size: 1.8rem;
                margin-bottom: 18px;
            }

            /* Carousel wrapper */
            .vt-carousel {
                position: relative;
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .vt-viewport {
                overflow: hidden;
                width: 100%;
            }
            .vt-track {
                display: flex;
                transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.32, 1);
                gap: 18px;
                align-items: stretch;
            }

            /* Slide width controlled by JS (but set defaults) */
            .vt-slide {
                flex: 0 0 25%;
                box-sizing: border-box;
            }

            /* Card style */
            .vt-card {
                background: #fff;
                border-radius: 12px;
                padding: 18px 12px;
                text-align: center;
                height: 100%;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                box-shadow: 0 8px 22px rgba(4, 99, 33, 0.06);
                border: 1px solid rgba(4, 99, 33, 0.06);
            }
            .vt-avatar {
                width: 86px;
                height: 86px;
                border-radius: 50%;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-top: -10px;
                background: #fff;
                border: 6px solid #f3f3f3;
                box-shadow: 0 6px 18px rgba(2, 40, 18, 0.04);
            }
            .vt-avatar img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }

            /* Name & percentage */
            .vt-name {
                margin-top: 12px;
                font-weight: 700;
                color: #046321;
                font-size: 1rem;
                font-family: "Playfair Display", serif;
            }
            .vt-percent {
                margin-top: 6px;
                color: #666;
                font-size: 0.95rem;
            }

            /* Arrows */
            .vt-arrow {
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                width: 44px;
                height: 44px;
                border-radius: 50%;
                background: #046321;
                color: #fff;
                border: 0;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 22px;
                z-index: 10;
                box-shadow: 0 6px 18px rgba(4, 99, 33, 0.18);
            }
            .vt-prev {
                left: -12px;
            }
            .vt-next {
                right: -12px;
            }

            /* Dots */
            .vt-dots {
                display: flex;
                justify-content: center;
                gap: 8px;
                margin-top: 14px;
            }
            .vt-dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: #e6e6e6;
                cursor: pointer;
                border: 0;
            }
            .vt-dot.active {
                background: #046321;
                transform: scale(1.1);
            }

            /* Responsive: adjust number visible */
            @media (max-width: 1000px) {
                .vt-slide {
                    flex: 0 0 50%;
                } /* 2 visible */
            }
            @media (max-width: 600px) {
                .vt-slide {
                    flex: 0 0 100%;
                } /* 1 visible */
                .vt-arrow {
                    display: none;
                }
            }
            /* CONTACT SECTION CSS (paste into your stylesheet or inside <style>) */
            :root{ --primary:#046321; --light:#f8f9fa; --muted:#666; --card:#ffffff; --accent:#e6f2ea; }

            .vi-contact-section{
              background: #fff;
              padding: 48px 16px;
              font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
            }

            /* subtle patterned background using your uploaded image */
            .vi-contact-section::before{
              content:"";
              display:block;
              position:absolute;
              left:0; right:0;
              top:0;
              height:200px;
              background: url("/mnt/data/fa603a3c-9cdc-4ee0-868e-0e7be25a0954.png") center/cover no-repeat;
              opacity:0.06;
              pointer-events:none;
              z-index:0;
            }

            .vi-contact-wrap{
              max-width:1100px;
              margin:0 auto;
              position:relative;
              z-index:1;
              display:grid;
              grid-template-columns: 1fr 485px;
              gap:28px;
              align-items:start;
            }

            /* Left form */
            .vi-contact-left{
              background: var(--card);
              padding:26px;
              border-radius:12px;
              box-shadow: 0 10px 30px rgba(4,99,33,0.06);
              border:1px solid rgba(4,99,33,0.04);
            }

            .vi-contact-left h3{
              font-family:"Playfair Display", serif;
              color:var(--primary);
              margin:0 0 12px;
              font-size:1.5rem;
            }

            .vi-contact-form label{
              display:block;
              font-size:0.9rem;
              color:var(--muted);
              margin-bottom:6px;
              margin-top:12px;
            }

            .vi-contact-form input,
            .vi-contact-form textarea{
              width:100%;
              padding:10px 12px;
              border-radius:8px;
              border:1px solid #e9ecef;
              font-size:0.95rem;
              color:#222;
              background:#fff;
              outline:none;
              transition: box-shadow .18s;
            }
            .vi-contact-form input:focus,
            .vi-contact-form textarea:focus{
              box-shadow:0 6px 18px rgba(4,99,33,0.06);
              border-color: rgba(4,99,33,0.12);
            }

            /* Button */
            .vi-btn{
              display:inline-block;
              background:var(--primary);
              color:#fff;
              padding:10px 16px;
              border-radius:8px;
              border:0;
              font-weight:600;
              cursor:pointer;
              text-decoration:none;
              box-shadow: 0 8px 18px rgba(4,99,33,0.12);
            }
            .vi-btn:hover{ transform: translateY(-2px); }

            .vi-btn.vi-btn-outline{
              background:transparent;
              color:var(--card);
              padding:10px 16px;
              border-radius:8px;
              border:2px solid rgba(255,255,255,0.14);
              background:linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
              color: #fff;
            }

            /* Right contact card */
            .vi-contact-right { display:flex; justify-content:flex-end; }
            .vi-contact-card{
              background: linear-gradient(180deg, var(--primary), #0a7d2f);
              color:#fff;
              border-radius:12px;
              padding:22px;
              width:100%;
              box-shadow: 0 12px 30px rgba(4,99,33,0.16);
              border:1px solid rgba(255,255,255,0.06);
            }

            .vi-contact-card h4{
              margin:0 0 12px;
              font-size:1.15rem;
              font-weight:700;
              color:#fff;
              text-align:center;
            }

            .vi-contact-item{
              display:flex;
              gap:12px;
              align-items:center;
              padding:10px 6px;
              border-radius:8px;
              margin:10px 0;
              background: rgba(255,255,255,0.03);
            }

            .vi-ic{
              width:40px; height:40px; flex:0 0 40px;
              background: rgba(255,255,255,0.12);
              border-radius:8px;
              padding:6px;
              display:inline-block;
            }

            .vi-contact-item .small{
              font-size:0.88rem;
              color:rgba(255,255,255,0.85);
            }

            .vi-contact-item strong{
              display:block;
              font-size:0.98rem;
              color:#fff;
            }

            /* responsive */
            @media (max-width: 980px){
              .vi-contact-wrap { grid-template-columns: 1fr; }
              .vi-contact-right { order:2; justify-content:center; }
              .vi-contact-left { order:1; }
              .vi-contact-section::before{ height:120px; opacity:0.04; }
            }

      /*       .about-page {
            padding-top: 140px;
            background-color: var(--light);
        }*/
        
       .about-section {
    padding: 60px 0;
    background: linear-gradient(to bottom, #f8fafc, #ffffff);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h1 {
    font-size: 2.5rem;
    color: #066d26;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}



.divider {
    height: 1px;
    background: linear-gradient(to right, transparent, #e2e8f0, transparent);
    margin: 20px auto;
    width: 80%;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    
}

.content-block {
    flex: 1;
    min-width: 300px;
}
.about-section p{
    padding: 0 20px;
}
.content-block p {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #4a5568;
    font-size: 1.05rem;
    padding: 0 20px;
}

.content-block strong {
    color: #1e3c72;
    font-weight: 600;
}

.highlight-box {
    background: linear-gradient(135deg, #1e5799 0%, #207cca 100%);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    color: white;
    box-shadow: 0 10px 20px rgba(30, 87, 153, 0.2);
}

.highlight-box h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
    text-align: center;
}

.highlight-box ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.highlight-box li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 10px;
    color: black;
    list-style: none;
}

.highlight-box li:before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: #ffd700;
    font-weight: bold;
}

.image-block {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.image-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.image-container img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(30, 60, 114, 0.9));
    color: white;
    padding: 20px;
    text-align: center;
}

.image-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .image-block {
        flex: 1;
        order: -1;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .stats-container {
        flex-direction: column;
        gap: 15px;
    }
}
        
        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            margin: 0 auto;
            border-radius: 2px;
        }
        
        .content-block {
           
            margin: 0 auto;
        }
        
        .content-block p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 1.5rem;
            color: var(--text);
        }
        
        .content-block strong {
            color: var(--primary);
            font-weight: 600;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px; 
            padding: 0 20px;
        }
        
        .feature-item {
            background-color: var(--white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(4, 99, 33, 0.1), rgba(10, 125, 47, 0.1));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 1.8rem;
            color: var(--primary);
        }
        
        .feature-content h4 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .feature-content p {
            margin-bottom: 0;
            color: var(--gray);
        }
        
        .why-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .why-item {
            background-color: var(--white);
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }
        
        .why-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .why-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary), var(--primary-light));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .why-content h4 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }
        
        .why-content p {
            margin-bottom: 0;
            color: var(--gray);
        }
        .breadcrumb-section {
    background: linear-gradient(135deg, #056924 0%, #066c26b3 100%);
    padding: 100px 0;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.breadcrumb-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff8a00, #e52e71, #1e5799);
}

.breadcrumb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb-path {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    padding-top: 46px;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.breadcrumb-separator {
    margin: 0 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.breadcrumb-title {
    color: #ffffff;
    font-size: 36px;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.breadcrumb-decoration {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.decoration-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    margin: 0 8px;
    animation: pulse 2s infinite;
}

.decoration-dot:nth-child(2) {
    animation-delay: 0.5s;
}

.decoration-dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .breadcrumb-section {
        padding: 30px 0;
    }
    
    .breadcrumb-path {
        font-size: 16px;
    }
    
    .breadcrumb-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .breadcrumb-section {
        padding: 25px 0;
    }
    
    .breadcrumb-path {
        font-size: 14px;
    }
    
    .breadcrumb-title {
        font-size: 24px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #046321;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.divider {
    height: 4px;
    width: 80px;
    background: #046321;
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 12px;
    background: rgba(4, 99, 33, 0.1);
    border-radius: 6px;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #555;
}

/* Mission Section - Timeline Design */
.mission-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fff9 0%, #e8f5e9 100%);
    position: relative;
    overflow: hidden;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #046321, #0a8a3a, #046321);
}

.mission-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.mission-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.mission-connector {
    position: relative;
    width: 80px;
    display: flex;
    justify-content: center;
}

.connector-line {
    position: absolute;
    top: 50px;
    bottom: -60px;
    width: 3px;
    background: linear-gradient(to bottom, #046321, #0a8a3a);
    left: 50%;
    transform: translateX(-50%);
}

.mission-item:last-child .connector-line {
    display: none;
}

.connector-dot {
    width: 20px;
    height: 20px;
    background: #046321;
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 3px #046321;
    z-index: 2;
    margin-top: 40px;
}

.mission-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border-left: 5px solid #046321;
    transition: all 0.3s ease;
}

.mission-content:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(4, 99, 33, 0.15);
}

.mission-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #046321, #0a8a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.mission-text h4 {
    color: #046321;
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 600;
}

.mission-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Vision Section - Circular Design */
.vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f3 100%);
}

.vision-circles {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
    padding-top: 50px;
}

.vision-circle {
    width: 345px;
    height: 345px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 15px 35px rgba(4, 99, 33, 0.1);
    transition: all 0.4s ease;
}

.vision-circle::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #046321, #0a8a3a);
    z-index: -1;
    opacity: 0;
    transition: all 0.4s ease;
}

.vision-circle:hover {
    transform: scale(1.05);
}

.vision-circle:hover::before {
    opacity: 1;
}

.circle-content {
    text-align: center;
    padding: 30px;
   
}

.circle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #046321, #0a8a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.vision-circle:hover .circle-icon {
    background: white;
    color: #046321;
    transform: rotateY(180deg);
}

.circle-content h4 {
    color: #046321;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.vision-circle:hover .circle-content h4 {
    color: white;
}

.circle-content p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.vision-circle:hover .circle-content p {
    color: rgba(255, 255, 255, 0.9);
}

.vision-quote {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: 40px;
    background: linear-gradient(135deg, #046321, #0a8a3a);
    border-radius: 20px;
    color: white;
    box-shadow: 0 20px 40px rgba(4, 99, 33, 0.2);
}

.quote-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}

.vision-quote p {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

.quote-accent {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-section, .vision-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .mission-item {
        flex-direction: column;
        margin-bottom: 40px;
    }
    
    .mission-connector {
        width: 100%;
        height: 60px;
        margin-bottom: 10px;
    }
    
    .connector-line {
        top: 30px;
        bottom: auto;
        height: 3px;
        width: 100%;
        left: 50px;
        right: 50px;
        transform: none;
    }
    
    .connector-dot {
        margin-top: 25px;
    }
    
    .mission-content {
        flex-direction: column;
        text-align: center;
        border-left: none;
        border-top: 5px solid #046321;
    }
    
    .vision-circles {
        gap: 30px;
    }
    
    .vision-circle {
        width: 250px;
        height: 250px;
    }
    
    .vision-quote p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .mission-section, .vision-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .vision-circle {
        width: 220px;
        height: 220px;
    }
    
    .circle-content {
        padding: 20px;
    }
}

.why-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
}

.why-container {
   
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: start;
}


.why-image {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 120px;
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #046321;
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.2;
}

.divider {
    height: 5px;
    width: 100px;
    background: #046321;
    border-radius: 3px;
    position: relative;
}

.divider::after {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 120px;
    height: 11px;
    background: rgba(4, 99, 33, 0.1);
    border-radius: 5px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.feature-item:hover {
    background: rgba(4, 99, 33, 0.03);
    border-color: rgba(4, 99, 33, 0.1);
    transform: translateY(-2px);
}

.feature-badge {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #046321, #0a8a3a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(4, 99, 33, 0.3);
}

.feature-text h4 {
    color: #046321;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-text h4 {
    color: #0a8a3a;
}

.image-placeholder {
    width: 350px;
    height: 530px;
    background: linear-gradient(135deg, #046321, #0a8a3a);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(4, 99, 33, 0.2);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><rect fill="rgba(255,255,255,0.1)" width="100" height="100"/></svg>');
    background-size: 20px 20px;
}

.image-placeholder i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.image-placeholder span {
    font-size: 1.2rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-content {
        order: 2;
    }
    
    .why-image {
        order: 1;
        justify-content: center;
    }
    
    .image-placeholder {
        width: 300px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .why-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .feature-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .image-placeholder {
        width: 250px;
        height: 300px;
    }
    
    .image-placeholder i {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .why-section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .feature-badge {
        width: 35px;
        height: 35px;
        font-size: 0.8rem;
    }
    
    .feature-text h4 {
        font-size: 1rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 250px;
    }
    
    .image-placeholder i {
        font-size: 2.5rem;
    }
    
    .image-placeholder span {
        font-size: 1rem;
    }
}

 .iitjee-page {
            padding: 60px 0;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-header h1, .section-header h2 {
            font-family: 'Playfair Display', serif;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .section-header h1 {
            font-size: 2.5rem;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            margin: 0 auto;
            border-radius: 2px;
        }
        
        .content-block {
            margin-bottom: 40px;
        }
        
        .content-block p {
            margin-bottom: 20px;
            font-size: 1.1rem;
            line-height: 1.8;
           
        }
        
        .content-block strong {
            color: var(--primary);
        }
        
        .highlight-box {
            background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .highlight-box h3 {
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .feature-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary), #1e40af);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .feature-icon i {
            color: white;
            font-size: 1.5rem;
        }
        
        .feature-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .feature-card p {
            color: var(--gray);
        }
        
        .table-container {
            overflow-x: auto;
            margin: 40px 0;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
        }
        
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #e5e7eb;
        }
        
        th {
            background-color: var(--primary);
            color: white;
            font-weight: 600;
        }
        
        tr:nth-child(even) {
            background-color: #f9fafb;
        }
        
        .tips-list {
            margin: 30px 0;
        }
        
        .tip-item {
            display: flex;
            margin-bottom: 25px;
            background: white;
            border-radius: 10px;
            padding: 20px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .tip-number {
            width: 40px;
            height: 40px;
                background: linear-gradient(135deg, #056a24, #066d26);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .tip-content h4 {
            margin-bottom: 10px;
            color: var(--dark);
        }
        
    
        
        .pricing-section {
    padding: 20px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 1px solid #e2e8f0;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.card-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.batch-info {
    color: var(--gray);
    font-size: 1rem;
}

.price-tag {
    text-align: center;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    display: block;
}

.price-note {
    color: var(--gray);
    font-size: 0.9rem;
}

.price-original {
    text-align: center;
    margin-bottom: 25px;
}

.original-price {
    color: var(--gray);
    text-decoration: line-through;
    font-size: 1.1rem;
}

.card-actions {
    text-align: center;
}

.card-actions .btn {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px;
    font-weight: 600;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary);
}

.pricing-footer {
    text-align: center;
    margin-top: 40px;
}

.pricing-footer p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.faculty-section {
    padding: 25px 0;
    background: white;
}

.faculty-intro {
   
    margin: 0 auto 50px;
    text-align: center;
}

.faculty-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark);
}

.faculty-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.feature-content p {
    color: var(--gray);
    margin: 0;
}

.faculty-divider {
    margin: 60px 0;
    text-align: center;
}

.divider-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.faculty-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
}

.faculty-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.faculty-image {
    margin-bottom: 20px;
}



.faculty-info h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
    font-family: 'Playfair Display', serif;
}

.experience {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .faculty-features {
        grid-template-columns: 1fr;
    }
    
    .faculty-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .faculty-grid {
        grid-template-columns: 1fr;
    }
    
    .faculty-card {
        padding: 20px;
    }
}
.study-materials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.materials-header {
    text-align: center;
    margin: 0 auto 60px;
}

.materials-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
}

.materials-header p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
    margin-top: 25px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.material-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.material-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.material-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(26, 86, 219, 0.3);
}

.material-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: pulse 2s infinite;
}

.circle-icon {
    color: white;
    font-size: 1.8rem;
}

.material-content {
    flex: 1;
}

.material-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.material-content p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.materials-cta {
    text-align: center;
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.materials-cta .btn {
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 8px;
    font-size: 1.1rem;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .materials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .material-item {
        padding: 25px;
        gap: 20px;
    }
    
    .material-circle {
        width: 70px;
        height: 70px;
    }
    
    .circle-icon {
        font-size: 1.5rem;
    }
    
    .materials-header h2 {
        font-size: 2rem;
    }
    
    .materials-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .materials-cta .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .material-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .material-circle {
        margin: 0 auto;
    }
    
    .materials-header h2 {
        font-size: 1.8rem;
    }
    
    .materials-header p {
        font-size: 1.1rem;
    }
}

.champions-section {
    padding: 80px 0;
    background: white;
}

.champions-intro {
   
    margin: 0 auto 40px;
    text-align: center;
}

.champions-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

.champions-divider {
    margin: 40px 0;
    text-align: center;
}

.divider-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

/* Champions Carousel */
.champions-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-container {
    overflow: hidden;
    border-radius: 15px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.champion-slide {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
}

.champions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.champion-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.champion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.champion-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
}

.champion-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.champion-content {
    flex: 1;
}

.champion-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.4;
}

.champion-scores {
    display: flex;
    gap: 15px;
}

.score-item {
    background: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    min-width: 120px;
}

.score-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 5px;
    font-weight: 500;
}

.score-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

/* Carousel Controls */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary);
    transform: scale(1.2);
}

.champions-cta {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.champions-cta p {
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 500;
    color: var(--dark);
}

.champions-cta .btn {
    padding: 12px 30px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .champions-row {
        gap: 20px;
    }
    
    .champion-card {
        padding: 25px;
        gap: 20px;
    }
    
    .champion-image {
        width: 100px;
        height: 100px;
    }
    
    .champion-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .champions-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .champion-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }
    
    .champion-scores {
        justify-content: center;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .champions-cta {
        padding: 25px 20px;
    }
    
    .champions-cta p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .champion-card {
        padding: 20px;
    }
    
    .champion-scores {
        flex-direction: column;
        gap: 10px;
    }
    
    .score-item {
        min-width: auto;
    }
}
.offline-centers-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.centers-intro {
   
    margin: 0 auto 50px;
    text-align: center;
}

.centers-intro p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray);
}

.centers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

.center-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.center-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.center-card.main-center {
    border: 2px solid var(--primary);
}

.main-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.center-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.center-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.center-icon i {
    color: white;
    font-size: 1.2rem;
}

.center-header h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 0;
}

.center-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.feature-item i {
    color: var(--primary);
    font-size: 0.9rem;
}

.feature-item span {
    color: var(--dark);
    font-weight: 500;
}

.center-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--primary);
    width: 16px;
}

.center-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
    padding: 15px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 500;
}

.centers-divider {
    margin: 50px 0;
    text-align: center;
}

.facilities-section {
    margin-bottom: 50px;
}

.facilities-section h3 {
    text-align: center;
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 40px;
    font-weight: 600;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.facility-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #1e40af);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.facility-icon i {
    color: white;
    font-size: 1.5rem;
}

.facility-item h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.facility-item p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

.pricing-info {
    display: flex;
    justify-content: center;
}

.pricing-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    max-width: 400px;
    width: 100%;
}

.pricing-card h4 {
    text-align: center;
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 600;
}

.pricing-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.course-name {
    font-weight: 500;
    color: var(--dark);
}

.course-price {
    font-weight: 700;
    color: var(--primary);
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.pricing-note i {
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .centers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .center-card {
        padding: 25px;
    }
    
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .center-stats {
        grid-template-columns: 1fr;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .center-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .feature-item {
        justify-content: center;
    }
    
    .pricing-item {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}

.vatsalya-testimonials {
    padding: 20px 0;
        background: linear-gradient(135deg, #077229 0%, #077229bf 100%
100%
);
    color: white;
}

.vatsalya-testimonials .section-header h2 {
    color: white;
}

/* Testimonials Carousel */
.vatsalya-testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto 50px;
    overflow: hidden;
}

.vatsalya-carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.vatsalya-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.vatsalya-testimonial-item {
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    flex-shrink: 0;
}

.vatsalya-testimonial-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    transition: transform 0.3s ease;
    min-height: 280px;
}

.vatsalya-testimonial-box:hover {
    transform: translateY(-5px);
}

.vatsalya-testimonial-num {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    flex-shrink: 0;
    margin-top: -10px;
}

.vatsalya-testimonial-body {
    flex: 1;
}

.vatsalya-quote-mark {
    margin-bottom: 20px;
}

.vatsalya-quote-mark i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.3);
}

.vatsalya-testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    max-width:660px;
}

.vatsalya-testimonial-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.vatsalya-author-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.vatsalya-author-rank {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Carousel Navigation */
.vatsalya-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.vatsalya-carousel-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.vatsalya-carousel-prev {
    left: 20px;
}

.vatsalya-carousel-next {
    right: 20px;
}

/* Carousel Dots */
.vatsalya-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.vatsalya-carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.vatsalya-carousel-dot.vatsalya-dot-active {
    background: white;
    transform: scale(1.2);
}

/* Statistics */
.vatsalya-testimonial-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.vatsalya-stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.vatsalya-stat-card:hover {
    transform: translateY(-5px);
}

.vatsalya-stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 10px;
    display: block;
}

.vatsalya-stat-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
    .vatsalya-testimonial-box {
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        text-align: center;
        min-height: 320px;
    }
    
    .vatsalya-testimonial-num {
        font-size: 3rem;
        margin-top: 0;
    }
    
    .vatsalya-testimonial-text {
        font-size: 1rem;
    }
    
    .vatsalya-carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .vatsalya-carousel-prev {
        left: 10px;
    }
    
    .vatsalya-carousel-next {
        right: 10px;
    }
    
    .vatsalya-testimonial-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 300px;
    }
    
    .vatsalya-stat-card {
        padding: 25px 20px;
    }
    
    .vatsalya-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .vatsalya-testimonial-box {
        padding: 25px 20px;
        min-height: 350px;
    }
    
    .vatsalya-testimonial-num {
        font-size: 2.5rem;
    }
    
    .vatsalya-quote-mark i {
        font-size: 1.5rem;
    }
    
    .vatsalya-testimonials {
        padding: 60px 0;
    }
}

.iitjee-content-wrapper {
    padding: 40px 0;
}

.content-with-sidebar {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}

.main-content {
    width: 100%;
}

/* Sidebar Form Styles */
.sidebar-form-container {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.enquiry-form {
    background: linear-gradient(135deg, #066b26 0%, #076e27ab 100%);
    border-radius: 15px;
    padding: 30px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 25px;
}

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: white;
    font-weight: 600;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

.enquiry-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.form-group input,
.form-group select {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.form-group select option {
    background: #4b9662;
    color: white;
    padding: 10px;
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
}

.form-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.form-footer p {
    font-size: 0.85rem;
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-footer i {
    color: #fbbf24;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-with-sidebar {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .sidebar-form-container {
        position: static;
        order: -1;
    }
    
    .enquiry-form {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .iitjee-content-wrapper {
        padding: 30px 0;
    }
    
    .content-with-sidebar {
        gap: 25px;
    }
    
    .enquiry-form {
        padding: 25px;
    }
    
    .form-header h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .enquiry-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group select {
        padding: 10px 12px;
    }
    
    .btn-block {
        padding: 12px;
    }
}
.why-vatsalya{
  
  padding: 48px 20px;
}

/* central container */
.wv-container{
  max-width: var(--max-width);
  margin: 0 auto;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--gap);
  align-items: start;
}

/* Left intro column */
.wv-left h2{
  font-size: 28px;
  margin: 0 0 12px 0;
  line-height: 1.05;
  color: var(--primary-700);
}
.wv-left h2 span{
  color: var(--primary);
}
.wv-lead{
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 15px;
}

/* CTA */
.wv-cta{ display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.wv-btn{
  background: linear-gradient(90deg, var(--primary), var(--primary-700));
  color: white;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wv-btn:hover{ transform: translateY(-3px); box-shadow: 0 14px 40px rgba(4,99,33,0.12); }
.wv-link{
  color: var(--primary-700);
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
}

/* Right: feature list */
.wv-right{
  background: var(--card-bg);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(4,99,33,0.06);
}

.wv-features{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* each feature item */
.wv-features li{
  display:flex;
  gap: 12px;
  align-items:flex-start;
  background: #ffffff;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(4,99,33,0.04);
  transition: transform .12s ease, box-shadow .12s ease;
}
.wv-features li:hover{
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(4,99,33,0.06);
}

/* icon circle */
.icon{
  min-width:44px;
  height:44px;
  border-radius: 10px;
  display:grid;
  place-items:center;
  font-size:20px;
  background: linear-gradient(180deg, rgba(4,99,33,0.09), rgba(4,99,33,0.03));
  color: var(--primary-700);
  box-shadow: inset 0 -3px 8px rgba(4,99,33,0.02);
}

/* text inside each item */
.wv-features strong{
  display:block;
  font-size:20px;
  color: var(--primary-700);
}
.wv-features small{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
  line-height:1.25;
}

/* Responsive */
@media (max-width: 880px){
  .wv-container{ grid-template-columns: 1fr; }
  .wv-features{ grid-template-columns: 1fr; }
  .wv-left h2{ font-size: 22px; }
}
.course-promo{
  padding: 40px 20px;
}

.cp-inner{
  max-width: 1100px;
  margin: auto;
}

.cp-heading-box{
  text-align: center;
  margin: 0 auto 35px;
}

.cp-heading{
  font-weight: 700;
  margin-bottom: 10px;
}

.cp-sub{
  font-size: 14px;
  color: #6c757d;
  line-height: 1.6;
}

/* CARD WRAPPER */
.cp-cards{
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* each card */
.cp-card{
  background: #eaf4ff;
 width: 360px;
    height: 190px;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  color: #000;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: 0.2s ease;
}

.cp-card:hover{
  transform: translateY(-5px);
}

/* left section */
.cp-left{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-left img{
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}

.cp-left h3{
  font-size: 15px;
  font-weight: 700;
}

/* right arrow section */
.cp-right{
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #046321;
  box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}


.cstar-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 30px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(11, 93, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.cstar-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0b5d2c 0%, #0a9e4a 50%, #0b5d2c 100%);
}


.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0b5d2c;
    text-align: center;
    margin-bottom: 10px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #0b5d2c, #0a9e4a);
    border-radius: 2px;
}

.institute-tagline {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #b30000;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    padding: 6px 15px;
    background: rgba(179, 0, 0, 0.08);
    border-radius: 20px;
    display: inline-block;
    margin-left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
    color: #444;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Highlights */
.cstar-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.cstar-highlights .item {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 15px;
    color: #0b5d2c;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 93, 44, 0.1);
    position: relative;
    overflow: hidden;
}

.cstar-highlights .item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #0b5d2c, #0a9e4a);
}

.cstar-highlights .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(11, 93, 44, 0.12);
}

.cstar-highlights .item strong {
    font-weight: 700;
    color: #0a9e4a;
    margin-left: 4px;
}

/* Sub Heading */
.sub-heading {
    font-size: 28px;
    margin: 40px 0 25px;
    color: #0b5d2c;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.sub-heading::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #0b5d2c, #0a9e4a);
    border-radius: 2px;
}

/* Test Pattern */
.test-pattern {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.test-pattern .card {
    background: linear-gradient(145deg, #ffffff 0%, #f5fbf7 100%);
    width: 280px;
    padding: 30px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(11, 93, 44, 0.08);
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 93, 44, 0.08);
    position: relative;
    overflow: hidden;
}

.test-pattern .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(11, 93, 44, 0.12);
}

.test-pattern .card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #0b5d2c, #0a9e4a);
}

.test-pattern .card h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #0b5d2c;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.test-pattern .card h4 i {
    color: #0a9e4a;
}

.test-pattern ul {
    padding-left: 20px;
    line-height: 1.7;
    font-size: 15px;
    color: #444;
}

.test-pattern ul li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 5px;
}

.test-pattern ul li::marker {
    color: #0a9e4a;
    font-weight: bold;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0 50px;
}

.benefit-card {
    background: linear-gradient(135deg, #ffffff 0%, #f5fbf7 100%);
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    font-size: 15px;
    color: #333;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 93, 44, 0.08);
    position: relative;
    overflow: hidden;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(11, 93, 44, 0.1);
}

.benefit-card::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    color: #0a9e4a;
    opacity: 0.2;
    font-size: 24px;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 30px;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    min-width: 200px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #0b5d2c 0%, #0a9e4a 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(11, 93, 44, 0.3);
    background: linear-gradient(135deg, #0a4d24 0%, #088d3f 100%);
}

.btn-secondary {
    background: white;
    border: 2px solid #0b5d2c;
    color: #0b5d2c;
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(11, 93, 44, 0.2);
    background: #f0f9f3;
}

/* Exam Dates */
.exam-dates {
    margin-top: 40px;
    font-size: 18px;
    color: #111;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    background: rgba(11, 93, 44, 0.05);
    border-radius: 12px;
    border-left: 5px solid #0b5d2c;
}

.exam-dates strong {
    color: #0b5d2c;
    font-size: 20px;
}

/* Footer Note */
.footer-note {
    margin-top: 40px;
    font-size: 15px;
    color: #b30000;
    font-weight: 700;
    text-align: center;
    padding: 15px;
    background: rgba(179, 0, 0, 0.05);
    border-radius: 10px;
    border-top: 1px solid rgba(179, 0, 0, 0.1);
}

/* Decorative elements */
.decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-1 {
    width: 120px;
    height: 120px;
    background: rgba(11, 93, 44, 0.03);
    top: 10%;
    right: 5%;
}

.circle-2 {
    width: 80px;
    height: 80px;
    background: rgba(179, 0, 0, 0.03);
    bottom: 15%;
    left: 5%;
}

/* Responsive */
@media (max-width: 768px) {
    .cstar-section {
        margin: 20px 15px;
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .sub-heading {
        font-size: 24px;
    }
    
    .test-pattern {
        gap: 20px;
    }
    
    .test-pattern .card {
        width: 100%;
        max-width: 400px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .btn-primary, .btn-secondary {
        min-width: 180px;
        padding: 14px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .cstar-highlights .item {
        width: 100%;
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}


 /* Main Section Styling */
    .vatsalya-cstar-section {
        font-family: 'Poppins', sans-serif;
        max-width: 1200px;
        margin: 15px auto;
        padding: 50px 25px;
        background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 87, 255, 0.12);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(0, 87, 255, 0.08);
    }
    
    .vatsalya-cstar-section::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -15%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(0, 87, 255, 0.06) 0%, transparent 70%);
        z-index: 0;
        opacity: 0.8;
    }
    
    .vatsalya-cstar-section::after {
        content: '';
        position: absolute;
        bottom: -40%;
        left: -10%;
        width: 450px;
        height: 450px;
        background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
        z-index: 0;
        opacity: 0.6;
    }
    
    /* Header Styling */
    .vatsalya-cstar-header {
        text-align: center;
        margin-bottom: 45px;
        position: relative;
        z-index: 2;
        padding: 0 15px;
    }
    
    .vatsalya-main-title {
        font-family: 'Montserrat', sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        color: #046321;
        margin-bottom: 12px;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        text-shadow: 0 2px 4px rgba(0, 87, 255, 0.1);
        position: relative;
        display: inline-block;
    }
    
    .vatsalya-main-title::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #046321, #FFD700);
        border-radius: 2px;
    }
    
    .vatsalya-powered-by {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 25px;
        font-weight: 500;
    }
    
    .vatsalya-powered-by span {
        color: #046321;
        font-weight: 600;
        background: rgba(0, 87, 255, 0.08);
        padding: 2px 10px;
        border-radius: 20px;
        margin-left: 5px;
    }
    
    .vatsalya-tagline-text {
        font-size: 1.3rem;
        color: #333;
        max-width: 850px;
        margin: 0 auto 30px;
        line-height: 1.6;
        font-weight: 500;
        position: relative;
        z-index: 2;
    }
    
    /* Content Container */
    .vatsalya-content-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
        position: relative;
        z-index: 2;
    }
    
    @media (max-width: 992px) {
        .vatsalya-content-container {
            grid-template-columns: 1fr;
            gap: 35px;
        }
    }
    
    /* Institute Info */
    .vatsalya-institute-info {
        background: white;
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border-left: 5px solid #046321;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .vatsalya-institute-info:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 87, 255, 0.15);
    }
    
    .vatsalya-institute-info h3 {
        font-size: 1.8rem;
        color: #046321;
        margin-bottom: 20px;
        font-weight: 700;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .vatsalya-institute-info h3 i {
        color: #FFD700;
        font-size: 1.6rem;
    }
    
    .vatsalya-institute-info p {
        color: #444;
        line-height: 1.7;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }
    
    /* Exams List */
    .vatsalya-exams-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .vatsalya-exams-list li {
        padding: 12px 0;
        border-bottom: 1px dashed rgba(0, 87, 255, 0.15);
        color: #333;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 12px;
    }
    
    .vatsalya-exams-list li:last-child {
        border-bottom: none;
    }
    
    .vatsalya-exams-list li i {
        color: #046321;
        font-size: 1.1rem;
    }
    
    /* C-STAR Info */
    .vatsalya-cstar-info {
        background: linear-gradient(135deg, #046321 0%, #0039A6 100%);
        padding: 35px;
        border-radius: 20px;
        box-shadow: 0 10px 25px rgba(0, 87, 255, 0.2);
        color: white;
        position: relative;
        overflow: hidden;
        transition: transform 0.3s ease;
    }
    
    .vatsalya-cstar-info:hover {
        transform: translateY(-5px);
    }
    
    .vatsalya-cstar-info::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 100px;
        height: 100px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        transform: translate(30%, -30%);
    }
    
    .vatsalya-cstar-info h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        font-weight: 700;
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .vatsalya-cstar-info h3 i {
        color: #FFD700;
        font-size: 1.6rem;
    }
    
    .vatsalya-cstar-info p {
        line-height: 1.7;
        margin-bottom: 25px;
        font-size: 1.05rem;
        opacity: 0.95;
        position: relative;
        z-index: 2;
    }
    
    .vatsalya-cstar-tagline {
        font-weight: 600;
        font-size: 1.1rem;
        color: #FFD700;
        margin-bottom: 25px;
        position: relative;
        z-index: 2;
    }
    
    /* Benefits Section */
    .vatsalya-benefits-container {
        position: relative;
        z-index: 2;
    }
    
    .vatsalya-benefits-title {
        text-align: center;
        font-size: 2rem;
        color: #046321;
        margin-bottom: 35px;
        font-weight: 700;
        position: relative;
        display: inline-block;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .vatsalya-benefits-title::before, .vatsalya-benefits-title::after {
        content: '';
        position: absolute;
        top: 50%;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, transparent, #046321);
    }
    
    .vatsalya-benefits-title::before {
        right: 100%;
        margin-right: 20px;
    }
    
    .vatsalya-benefits-title::after {
        left: 100%;
        margin-left: 20px;
        background: linear-gradient(90deg, #046321, transparent);
    }
    
    .vatsalya-benefits-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
    }
    
    @media (max-width: 992px) {
        .vatsalya-benefits-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }
    
    @media (max-width: 576px) {
        .vatsalya-benefits-grid {
            grid-template-columns: 1fr;
        }
    }
    
    .vatsalya-benefit-card {
        background: white;
        padding: 30px 25px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border: 2px solid transparent;
        position: relative;
        overflow: hidden;
    }
    
    .vatsalya-benefit-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0, 87, 255, 0.15);
        border-color: rgba(0, 87, 255, 0.2);
    }
    
    .vatsalya-benefit-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, #046321, #FFD700);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .vatsalya-benefit-card:hover::after {
        opacity: 1;
    }
    
    .vatsalya-benefit-icon {
        font-size: 2.5rem;
        color: #046321;
        margin-bottom: 20px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .vatsalya-benefit-title {
        font-size: 1.4rem;
        font-weight: 700;
        color: #046321;
        margin-bottom: 10px;
    }
    
    .vatsalya-benefit-desc {
        color: #555;
        font-size: 1rem;
        line-height: 1.5;
        font-weight: 500;
    }
    
    /* Decorative Elements */
    .vatsalya-decoration {
        position: absolute;
        z-index: 1;
        opacity: 0.1;
    }
    
    .vatsalya-dot-pattern {
        position: absolute;
        top: 10%;
        left: 5%;
        width: 100px;
        height: 100px;
        background-image: radial-gradient(#046321 2px, transparent 2px);
        background-size: 15px 15px;
        opacity: 0.1;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .vatsalya-cstar-section {
            padding: 35px 20px;
            border-radius: 18px;
        }
        
        .vatsalya-main-title {
            font-size: 2.2rem;
        }
        
        .vatsalya-tagline-text {
            font-size: 1.1rem;
        }
        
        .vatsalya-institute-info, .vatsalya-cstar-info {
            padding: 25px;
        }
        
        .vatsalya-benefits-title {
            font-size: 1.7rem;
        }
        
        .vatsalya-benefits-title::before, .vatsalya-benefits-title::after {
            width: 30px;
        }
    }
    
    @media (max-width: 480px) {
        .vatsalya-main-title {
            font-size: 1.9rem;
        }
        
        .vatsalya-benefit-card {
            padding: 25px 20px;
        }
        
        .vatsalya-benefit-title {
            font-size: 1.2rem;
        }
    }
    
    /* C-STAR Registration Section */
.cstar-registration-section {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    max-width: 1200px;
    margin: 50px auto;
    padding: 40px 30px;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 87, 255, 0.12);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.cstar-reg-bg-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 87, 255, 0.08) 0%, transparent 70%);
    z-index: 0;
    opacity: 0.7;
}

.cstar-reg-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .cstar-reg-content-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Left Content Styles */
.cstar-left-content {
    padding-right: 20px;
}

.cstar-headline-main {
    font-size: 2.2rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 25px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.cstar-headline-main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #046321, #FFD700);
    border-radius: 3px;
}

.cstar-subtitle-tagline {
    font-size: 1.8rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.4;
}

.cstar-subtitle-highlight {
    color: #046321;
    background: rgba(0, 87, 255, 0.1);
    padding: 3px 10px;
    border-radius: 5px;
}

.cstar-exam-details-box {
    background: white;
    padding: 25px;
    border-radius: 18px;
    margin-top: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #046321;
}

.cstar-detail-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgba(0, 87, 255, 0.2);
}

.cstar-detail-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cstar-detail-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #046321;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cstar-detail-title::before {
    content: '';
    color: #FFD700;
    font-weight: bold;
    font-size: 1.2rem;
}

.cstar-detail-text {
    color: #444;
    line-height: 1.6;
    font-size: 1.05rem;
}

.cstar-reg-fee-notice {
    margin-top: 35px;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    font-size: 1.05rem;
    color: #333;
    line-height: 1.6;
}

.cstar-reg-fee-notice strong {
    color: #046321;
}

/* Right Form Styles */
.cstar-right-form {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 87, 255, 0.15);
    border: 1px solid rgba(0, 87, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.cstar-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.cstar-form-main-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cstar-form-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
}

.cstar-form-group {
    margin-bottom: 25px;
}

.cstar-form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 1.05rem;
}

.cstar-form-label::after {
    content: ' *';
    color: #ff4757;
}

.cstar-form-input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e6ff;
    border-radius: 12px;
    font-size: 1.05rem;
    color: #333;
    background: #f8faff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.cstar-form-input:focus {
    outline: none;
    border-color: #046321;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.cstar-form-input::placeholder {
    color: #888;
}

.cstar-form-optional {
    color: #666;
    font-weight: normal;
}

.cstar-form-optional::after {
    content: none;
}

.cstar-form-select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e6ff;
    border-radius: 12px;
    font-size: 1.05rem;
    color: #333;
    background: #f8faff;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230057FF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 20px;
    transition: all 0.3s ease;
}

.cstar-form-select:focus {
    outline: none;
    border-color: #046321;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(0, 87, 255, 0.1);
}

.cstar-form-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.cstar-btn-submit {
    flex: 1;
    background: linear-gradient(135deg, #046321 0%, #046321 100%);
    color: white;
    border: none;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.cstar-btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 87, 255, 0.3);
    background: linear-gradient(135deg, #046321 0%, #046321 100%);
}

.cstar-btn-brochure {
    flex: 1;
    background: white;
    color: #046321;
    border: 2px solid #046321;
    padding: 18px 30px;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 200px;
}

.cstar-btn-brochure:hover {
    background: #046321;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 87, 255, 0.2);
}

.cstar-form-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed rgba(0, 87, 255, 0.3);
    text-align: center;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.cstar-form-highlight {
    color: #046321;
    font-weight: 700;
}

.cstar-form-note {
    font-size: 0.95rem;
    color: #777;
    margin-top: 8px;
    font-style: italic;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cstar-registration-section {
        padding: 30px 20px;
        margin: 30px auto;
        border-radius: 20px;
    }
    
    .cstar-headline-main {
        font-size: 1.8rem;
    }
    
    .cstar-subtitle-tagline {
        font-size: 1.5rem;
    }
    
    .cstar-right-form {
        padding: 25px;
    }
    
    .cstar-form-buttons {
        flex-direction: column;
    }
    
    .cstar-btn-submit, .cstar-btn-brochure {
        min-width: 100%;
    }
    
    .cstar-exam-details-box {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .cstar-headline-main {
        font-size: 1.6rem;
    }
    
    .cstar-subtitle-tagline {
        font-size: 1.3rem;
    }
    
    .cstar-right-form {
        padding: 20px;
    }
    
    .cstar-form-main-title {
        font-size: 1.5rem;
    }
}

/* CSTAR Success Journey Section */
.cstar-success-journey {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(0, 87, 255, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 87, 255, 0.08);
}

.cstar-journey-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 87, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
    z-index: 0;
}

/* Section Header */
.cstar-journey-header {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.cstar-journey-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #046321;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 87, 255, 0.1);
    position: relative;
    display: inline-block;
}

.cstar-journey-title::before,
.cstar-journey-title::after {
    content: '★';
    color: #FFD700;
    font-size: 1.8rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.cstar-journey-title::before {
    left: -45px;
}

.cstar-journey-title::after {
    right: -45px;
}

.cstar-journey-subtitle {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Content Grid */
.cstar-journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .cstar-journey-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Important Dates Section */
.cstar-dates-section {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0, 87, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cstar-dates-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 87, 255, 0.12);
}

.cstar-dates-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.cstar-dates-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #046321, #FFD700);
    border-radius: 2px;
}

/* Dates Table */
.cstar-dates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.cstar-table-header {
    background: linear-gradient(135deg, #046321 0%, #046321 100%);
    color: white;
}

.cstar-table-header th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
}

.cstar-table-header th:first-child {
    border-top-left-radius: 12px;
}

.cstar-table-header th:last-child {
    border-top-right-radius: 12px;
}

.cstar-table-row {
    background: #f8faff;
    transition: background-color 0.3s ease;
}

.cstar-table-row:nth-child(even) {
    background: #f0f5ff;
}

.cstar-table-row:hover {
    background: #e8f0ff;
}

.cstar-table-row td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 87, 255, 0.1);
    font-size: 1.05rem;
    color: #333;
    vertical-align: top;
}

.cstar-table-row:last-child td {
    border-bottom: none;
}

.cstar-event-cell {
    font-weight: 600;
    color: #046321;
    width: 40%;
}

.cstar-date-cell {
    color: #222;
    font-weight: 500;
}

/* Important Note */
.cstar-offline-note {
    margin-top: 30px;
    padding: 18px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 14px;
    border-left: 4px solid #FFD700;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.cstar-offline-note strong {
    color: #046321;
}

/* Exam Mode Section */
.cstar-exam-mode-section {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0, 87, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cstar-exam-mode-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 87, 0, 0.12);
}

.cstar-mode-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.cstar-mode-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #046321, #00AA00);
    border-radius: 2px;
}

/* Mode Cards */
.cstar-mode-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cstar-mode-card {
    background: #f8faff;
    padding: 30px;
    border-radius: 18px;
    border: 2px solid rgba(0, 87, 255, 0.15);
    transition: all 0.3s ease;
}

.cstar-mode-card:hover {
    background: #f0f5ff;
    border-color: #046321;
    transform: translateX(5px);
}

.cstar-mode-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cstar-mode-icon {
    font-size: 1.8rem;
    font-weight: 900;
    color: #046321;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 87, 255, 0.15);
}

.cstar-mode-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #046321;
}

.cstar-mode-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cstar-mode-features li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 87, 255, 0.2);
    color: #333;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.cstar-mode-features li:last-child {
    border-bottom: none;
}

.cstar-feature-icon {
    color: #00AA00;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cstar-offline-timing {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 87, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.cstar-timing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.cstar-timing-item:last-child {
    margin-bottom: 0;
}

.cstar-timing-icon {
    color: #046321;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cstar-success-journey {
        padding: 40px 25px;
        margin: 40px auto;
        border-radius: 22px;
    }
    
    .cstar-journey-title {
        font-size: 2.2rem;
    }
    
    .cstar-journey-title::before,
    .cstar-journey-title::after {
        display: none;
    }
    
    .cstar-dates-section,
    .cstar-exam-mode-section {
        padding: 25px;
    }
    
    .cstar-dates-title,
    .cstar-mode-title {
        font-size: 1.7rem;
    }
    
    .cstar-table-header th,
    .cstar-table-row td {
        padding: 15px;
        font-size: 1rem;
    }
    
    .cstar-mode-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .cstar-journey-title {
        font-size: 1.9rem;
    }
    
    .cstar-journey-subtitle {
        font-size: 1.1rem;
    }
    
    .cstar-table-header th {
        font-size: 1.1rem;
        padding: 12px 10px;
    }
    
    .cstar-table-row td {
        padding: 12px 10px;
        font-size: 0.95rem;
    }
    
    .cstar-event-cell,
    .cstar-date-cell {
        display: block;
        width: 100%;
        border-bottom: none;
    }
    
    .cstar-table-row {
        display: block;
        margin-bottom: 15px;
        border-bottom: 2px solid rgba(0, 87, 255, 0.1);
        padding-bottom: 15px;
    }
    
    .cstar-table-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}

/* CSTAR Success Journey Section */
.cstar-success-journey {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(0, 87, 255, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 87, 255, 0.08);
}

.cstar-journey-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 87, 255, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 40%);
    z-index: 0;
}

/* Section Header */
.cstar-journey-header {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    z-index: 1;
}

.cstar-journey-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #046321;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 87, 255, 0.1);
    position: relative;
    display: inline-block;
}



.cstar-journey-title::before {
    left: -45px;
}

.cstar-journey-title::after {
    right: -45px;
}

.cstar-journey-subtitle {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Content Grid */
.cstar-journey-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .cstar-journey-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Important Dates Section */
.cstar-dates-section {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0, 87, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cstar-dates-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 87, 255, 0.12);
}

.cstar-dates-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.cstar-dates-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #046321, #FFD700);
    border-radius: 2px;
}

/* Dates Table */
.cstar-dates-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.cstar-table-header {
    background: linear-gradient(135deg, #046321 0%, #046321 100%);
    color: white;
}

.cstar-table-header th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 700;
    font-size: 1.2rem;
    border: none;
}

.cstar-table-header th:first-child {
    border-top-left-radius: 12px;
}

.cstar-table-header th:last-child {
    border-top-right-radius: 12px;
}

.cstar-table-row {
    background: #f8faff;
    transition: background-color 0.3s ease;
}

.cstar-table-row:nth-child(even) {
    background: #f0f5ff;
}

.cstar-table-row:hover {
    background: #e8f0ff;
}

.cstar-table-row td {
    padding: 20px;
    border-bottom: 1px solid rgba(0, 87, 255, 0.1);
    font-size: 1.05rem;
    color: #333;
    vertical-align: top;
}

.cstar-table-row:last-child td {
    border-bottom: none;
}

.cstar-event-cell {
    font-weight: 600;
    color: #046321;
    width: 40%;
}

.cstar-date-cell {
    color: #222;
    font-weight: 500;
}

/* Important Note */
.cstar-offline-note {
    margin-top: 30px;
    padding: 18px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 14px;
    border-left: 4px solid #FFD700;
    font-size: 1.05rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.cstar-offline-note strong {
    color: #046321;
}

/* Exam Mode Section */
.cstar-exam-mode-section {
    background: white;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(0, 87, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cstar-exam-mode-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 87, 0, 0.12);
}

.cstar-mode-title {
    font-size: 1.9rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.cstar-mode-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #046321, #00AA00);
    border-radius: 2px;
}

/* Mode Cards */
.cstar-mode-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cstar-mode-card {
    background: #f8faff;
    padding: 30px;
    border-radius: 18px;
    border: 2px solid rgba(0, 87, 255, 0.15);
    transition: all 0.3s ease;
}

.cstar-mode-card:hover {
    background: #f0f5ff;
    border-color: #046321;
    transform: translateX(5px);
}

.cstar-mode-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cstar-mode-icon {
    font-size: 1.8rem;
    font-weight: 900;
    color: #046321;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 87, 255, 0.15);
}

.cstar-mode-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #046321;
}

.cstar-mode-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cstar-mode-features li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(0, 87, 255, 0.2);
    color: #333;
    font-size: 1.1rem;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.5;
}

.cstar-mode-features li:last-child {
    border-bottom: none;
}

.cstar-feature-icon {
    color: #00AA00;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cstar-offline-timing {
    margin-top: 25px;
    padding: 20px;
    background: rgba(0, 87, 255, 0.05);
    border-radius: 14px;
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.cstar-timing-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}

.cstar-timing-item:last-child {
    margin-bottom: 0;
}

.cstar-timing-icon {
    color: #046321;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cstar-success-journey {
        padding: 40px 25px;
        margin: 40px auto;
        border-radius: 22px;
    }
    
    .cstar-journey-title {
        font-size: 2.2rem;
    }
    
    .cstar-journey-title::before,
    .cstar-journey-title::after {
        display: none;
    }
    
    .cstar-dates-section,
    .cstar-exam-mode-section {
        padding: 25px;
    }
    
    .cstar-dates-title,
    .cstar-mode-title {
        font-size: 1.7rem;
    }
    
    .cstar-table-header th,
    .cstar-table-row td {
        padding: 15px;
        font-size: 1rem;
    }
    
    .cstar-mode-card {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .cstar-journey-title {
        font-size: 1.9rem;
    }
    
    .cstar-journey-subtitle {
        font-size: 1.1rem;
    }
    
    .cstar-table-header th {
        font-size: 1.1rem;
        padding: 12px 10px;
    }
    
    .cstar-table-row td {
        padding: 12px 10px;
        font-size: 0.95rem;
    }
    
    .cstar-event-cell,
    .cstar-date-cell {
        display: block;
        width: 100%;
        border-bottom: none;
    }
    
    .cstar-table-row {
        display: block;
        margin-bottom: 15px;
        border-bottom: 2px solid rgba(0, 87, 255, 0.1);
        padding-bottom: 15px;
    }
    
    .cstar-table-row:last-child {
        border-bottom: none;
        margin-bottom: 0;
    }
}

/* C-STAR Test Pattern Section - Alternative Design */
.cstar-pattern-section {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 30px;
    background: linear-gradient(145deg, #ffffff 0%, #f5f9ff 100%);
    border-radius: 24px;
    box-shadow: 
        0 20px 40px rgba(0, 87, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    border: 1px solid #e8f0ff;
}

.cstar-pattern-bg-shape {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(0, 87, 255, 0.03) 0%, transparent 70%);
    z-index: 0;
}

.cstar-pattern-bg-shape:nth-child(1) {
    top: -150px;
    right: -150px;
}

.cstar-pattern-bg-shape:nth-child(2) {
    bottom: -200px;
    left: -100px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.03) 0%, transparent 70%);
}

/* Header with accent border */
.cstar-pattern-header {
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 30px;
    position: relative;
    z-index: 1;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #046321, #FFD700, #046321) 1;
}

.cstar-pattern-main-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.cstar-pattern-main-heading span {
    color: #046321;
    position: relative;
}

.cstar-pattern-main-heading span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #046321, rgba(0, 87, 255, 0.3));
}

.cstar-pattern-description {
    font-size: 1.2rem;
    color: #444;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
    padding: 0 20px;
}

.cstar-pattern-description strong {
    color: #046321;
    font-weight: 600;
}

/* Eligibility Badge */
.cstar-eligibility-badge {
    display: inline-block;
    background: linear-gradient(135deg, #046321 0%, #046321 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 20px;
    box-shadow: 0 8px 20px rgba(0, 87, 255, 0.25);
    position: relative;
    overflow: hidden;
}

.cstar-eligibility-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.cstar-eligibility-badge:hover::before {
    left: 100%;
}

/* Classes Container - Card Stack Design */
.cstar-classes-stack {
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.cstar-classes-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    position: relative;
}

@media (max-width: 992px) {
    .cstar-classes-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Class Panel Design */
.cstar-class-panel {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e8f0ff;
    transition: all 0.4s ease;
    position: relative;
}

.cstar-class-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 87, 255, 0.15);
}

/* Class Header with gradient */
.cstar-panel-header {
    background: linear-gradient(135deg, #046321 0%, #046321 100%);
    padding: 25px 30px;
    color: white;
    position: relative;
}

.cstar-panel-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    width: 30px;
    height: 30px;
    background: #046321;
    transform: rotate(45deg);
}

.cstar-panel-class {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.cstar-panel-subjects {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Panel Body */
.cstar-panel-body {
    padding: 30px;
}

/* Pattern Stats */
.cstar-pattern-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.cstar-stat-box {
    background: #f8faff;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid #e0eaff;
    transition: all 0.3s ease;
}

.cstar-stat-box:hover {
    background: #f0f5ff;
    border-color: #046321;
    transform: scale(1.02);
}

.cstar-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #046321;
    display: block;
    margin-bottom: 8px;
}

.cstar-stat-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Subjects Distribution */
.cstar-distribution-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f5ff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cstar-distribution-title::before {
    content: '📝';
    font-size: 1.2rem;
}

.cstar-distribution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
}

.cstar-dist-item {
    background: white;
    padding: 15px;
    border-radius: 12px;
    border: 2px solid transparent;
    border-left: 4px solid #046321;
    box-shadow: 0 3px 10px rgba(0, 87, 255, 0.05);
    transition: all 0.3s ease;
}

.cstar-dist-item:hover {
    border-color: #046321;
    box-shadow: 0 5px 15px rgba(0, 87, 255, 0.1);
    transform: translateY(-2px);
}

.cstar-dist-subject {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.cstar-dist-count {
    font-size: 1.3rem;
    font-weight: 800;
    color: #046321;
}

/* Syllabus Box */
.cstar-syllabus-box {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 20px;
    border-radius: 15px;
    margin-top: 25px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}



.cstar-syllabus-text {
    color: #333;
    font-size: 1.05rem;
    line-height: 1.6;
    padding-left: 10px;
}

.cstar-syllabus-text strong {
    color: #046321;
    font-weight: 700;
}

/* For 11th-12th card styling */
.cstar-class-panel:nth-child(2) .cstar-panel-header {
    background: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
}

.cstar-class-panel:nth-child(2) .cstar-panel-header::after {
    background: #FF8C00;
}

.cstar-class-panel:nth-child(2) .cstar-stat-value {
    color: #FF8C00;
}

.cstar-class-panel:nth-child(2) .cstar-dist-count {
    color: #FF8C00;
}

.cstar-class-panel:nth-child(2) .cstar-dist-item {
    border-left-color: #FF8C00;
}

.cstar-class-panel:nth-child(2) .cstar-dist-item:hover {
    border-color: #FF8C00;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cstar-pattern-section {
        padding: 40px 20px;
        margin: 40px auto;
        border-radius: 20px;
    }
    
    .cstar-pattern-main-heading {
        font-size: 2rem;
    }
    
    .cstar-pattern-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }
    
    .cstar-eligibility-badge {
        font-size: 1.1rem;
        padding: 10px 25px;
    }
    
    .cstar-panel-header {
        padding: 20px 25px;
    }
    
    .cstar-panel-body {
        padding: 25px;
    }
    
    .cstar-pattern-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cstar-distribution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .cstar-pattern-main-heading {
        font-size: 1.8rem;
    }
    
    .cstar-panel-class {
        font-size: 1.5rem;
    }
    
    .cstar-distribution-grid {
        grid-template-columns: 1fr;
    }
    
    .cstar-stat-value {
        font-size: 1.8rem;
    }
}

/* Benefits & Rewards Section */
.cstar-benefits-section {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 28px;
    box-shadow: 0 25px 50px rgba(0, 87, 255, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.cstar-benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(0, 87, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 215, 0, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.cstar-benefits-badge {
    position: absolute;
    top: 40px;
    right: 40px;
    background: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transform: rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.3);
    z-index: 1;
}

/* Header Section */
.cstar-benefits-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.cstar-benefits-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #046321;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}

.cstar-benefits-title::before,
.cstar-benefits-title::after {
    content: '🏆';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
}

.cstar-benefits-title::before {
    left: -60px;
}

.cstar-benefits-title::after {
    right: -60px;
}

.cstar-benefits-tagline {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.cstar-benefits-tagline strong {
    color: #046321;
}

/* Benefits Grid */
.cstar-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .cstar-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cstar-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Benefit Card */
.cstar-benefit-item {
    background: white;
    padding: 35px 30px;
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cstar-benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 40px rgba(0, 87, 255, 0.15);
    border-color: rgba(0, 87, 255, 0.2);
}

.cstar-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #046321, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cstar-benefit-item:hover::before {
    opacity: 1;
}

/* Benefit Icon */
.cstar-benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.cstar-benefit-item:nth-child(1) .cstar-benefit-icon {
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.15) 0%, rgba(0, 87, 255, 0.05) 100%);
    color: #046321;
}

.cstar-benefit-item:nth-child(2) .cstar-benefit-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 215, 0, 0.05) 100%);
    color: #FF8C00;
}

.cstar-benefit-item:nth-child(3) .cstar-benefit-icon {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15) 0%, rgba(0, 200, 83, 0.05) 100%);
    color: #00C853;
}

.cstar-benefit-item:nth-child(4) .cstar-benefit-icon {
    background: linear-gradient(135deg, rgba(156, 39, 176, 0.15) 0%, rgba(156, 39, 176, 0.05) 100%);
    color: #9C27B0;
}

.cstar-benefit-item:nth-child(5) .cstar-benefit-icon {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 100%);
    color: #2196F3;
}

.cstar-benefit-item:nth-child(6) .cstar-benefit-icon {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(244, 67, 54, 0.05) 100%);
    color: #F44336;
}

/* Benefit Content */
.cstar-benefit-content {
    position: relative;
    z-index: 1;
}

.cstar-benefit-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cstar-benefit-highlight {
    color: #046321;
    display: block;
    font-size: 1.1rem;
    margin-top: 8px;
    font-weight: 600;
}

.cstar-benefit-desc {
    color: #555;
    line-height: 1.5;
    font-size: 1.05rem;
}

/* Bottom Note */
.cstar-benefits-note {
    margin-top: 50px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.08) 0%, rgba(255, 215, 0, 0.08) 100%);
    border-radius: 18px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(0, 87, 255, 0.15);
}

.cstar-benefits-note-text {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
    font-weight: 500;
}

.cstar-benefits-note-text strong {
    color: #046321;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cstar-benefits-section {
        padding: 40px 25px;
        margin: 40px auto;
        border-radius: 22px;
    }
    
    .cstar-benefits-title {
        font-size: 2.2rem;
    }
    
    .cstar-benefits-title::before,
    .cstar-benefits-title::after {
        display: none;
    }
    
    .cstar-benefits-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 20px;
        display: inline-block;
        transform: none;
    }
    
    .cstar-benefit-item {
        padding: 30px 25px;
    }
    
    .cstar-benefit-heading {
        font-size: 1.4rem;
    }
}

@media (max-width: 576px) {
    .cstar-benefits-title {
        font-size: 1.9rem;
    }
    
    .cstar-benefits-tagline {
        font-size: 1.1rem;
    }
    
    .cstar-benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .cstar-benefit-heading {
        font-size: 1.3rem;
    }
    
    .cstar-benefits-note {
        padding: 20px;
    }
}
/* Exam Syllabus Section */
.cstar-syllabus-section {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 87, 255, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 87, 255, 0.1);
}

.cstar-syllabus-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 87, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 0;
}

/* Header */
.cstar-syllabus-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.cstar-syllabus-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #046321;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-block;
}

.cstar-syllabus-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, #046321, #FFD700);
    border-radius: 3px;
}

.cstar-syllabus-subtitle {
    font-size: 1.3rem;
    color: #333;
    font-weight: 500;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.6;
    padding: 0 20px;
}

/* Syllabus Container */
.cstar-syllabus-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .cstar-syllabus-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Class Syllabus Card */
.cstar-class-syllabus {
    background: white;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.07);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cstar-class-syllabus:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 87, 255, 0.12);
}

.cstar-class-syllabus:nth-child(1) {
    border-color: rgba(0, 87, 255, 0.15);
}

.cstar-class-syllabus:nth-child(1):hover {
    border-color: #046321;
}

.cstar-class-syllabus:nth-child(2) {
    border-color: rgba(255, 140, 0, 0.15);
}

.cstar-class-syllabus:nth-child(2):hover {
    border-color: #FF8C00;
}

/* Class Header */
.cstar-class-header {
    text-align: center;
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 3px solid;
    position: relative;
}

.cstar-class-syllabus:nth-child(1) .cstar-class-header {
    border-color: #046321;
}

.cstar-class-syllabus:nth-child(2) .cstar-class-header {
    border-color: #FF8C00;
}

.cstar-class-range {
    font-size: 2.2rem;
    font-weight: 900;
    margin-bottom: 8px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.cstar-class-range::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

.cstar-class-syllabus:nth-child(1) .cstar-class-range::after {
    background: #046321;
}

.cstar-class-syllabus:nth-child(2) .cstar-class-range::after {
    background: #FF8C00;
}

.cstar-class-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
    margin-top: 10px;
}

/* Subjects List */
.cstar-subjects-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cstar-subject-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.cstar-subject-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cstar-subject-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #046321;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cstar-subject-name::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cstar-subject-item:nth-child(1) .cstar-subject-name::before {
    background: #046321;
}

.cstar-subject-item:nth-child(2) .cstar-subject-name::before {
    background: #FF8C00;
}

.cstar-subject-item:nth-child(3) .cstar-subject-name::before {
    background: #00C853;
}

.cstar-subject-item:nth-child(4) .cstar-subject-name::before {
    background: #9C27B0;
}

.cstar-subject-item:nth-child(5) .cstar-subject-name::before {
    background: #2196F3;
}

.cstar-subject-syllabus {
    color: #444;
    font-size: 1.1rem;
    line-height: 1.6;
    padding-left: 20px;
}

.cstar-topic-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 0 0;
}

.cstar-topic-list li {
    padding: 8px 0;
    color: #555;
    font-size: 1.05rem;
    position: relative;
    padding-left: 24px;
}

.cstar-topic-list li::before {
    content: '•';
    color: #046321;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0;
    top: 6px;
}

.cstar-class-syllabus:nth-child(2) .cstar-topic-list li::before {
    color: #FF8C00;
}

/* Note Section */
.cstar-syllabus-note {
    background: linear-gradient(135deg, rgba(0, 87, 255, 0.05) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 30px 40px;
    border-radius: 18px;
    border-left: 5px solid #046321;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.cstar-note-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    display: inline-block;
}

.cstar-note-text {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.7;
    font-weight: 500;
}

.cstar-note-text strong {
    color: #046321;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cstar-syllabus-section {
        padding: 40px 25px;
        margin: 40px auto;
        border-radius: 22px;
    }
    
    .cstar-syllabus-title {
        font-size: 2.2rem;
    }
    
    .cstar-syllabus-subtitle {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .cstar-class-syllabus {
        padding: 30px;
    }
    
    .cstar-class-range {
        font-size: 1.9rem;
    }
    
    .cstar-subject-name {
        font-size: 1.3rem;
    }
    
    .cstar-subject-syllabus {
        font-size: 1.05rem;
    }
    
    .cstar-syllabus-note {
        padding: 25px 30px;
    }
}

@media (max-width: 576px) {
    .cstar-syllabus-title {
        font-size: 1.9rem;
    }
    
    .cstar-class-syllabus {
        padding: 25px 20px;
    }
    
    .cstar-class-range {
        font-size: 1.7rem;
    }
    
    .cstar-subject-name {
        font-size: 1.2rem;
    }
    
    .cstar-topic-list li {
        font-size: 1rem;
    }
    
    .cstar-note-text {
        font-size: 1.05rem;
    }
}

/* Why CSTAR Section */
.cstar-trusted-section {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #046321 0%, #29994b 100%);
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    color: white;
}

.cstar-trusted-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    z-index: 0;
}

/* Header */
.cstar-trusted-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.cstar-trusted-title {
    font-size: 2.8rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cstar-trusted-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFFFFF, #FFD700);
    border-radius: 3px;
}

.cstar-trusted-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 800px;
    margin: 30px auto 0;
    line-height: 1.6;
    padding: 0 20px;
}

/* Features Grid */
.cstar-trusted-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .cstar-trusted-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Feature Card */
.cstar-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cstar-feature-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.cstar-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #FFD700, #FFFFFF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cstar-feature-card:hover::before {
    opacity: 1;
}

/* Feature Number */
.cstar-feature-number {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 50px;
    height: 50px;
    background: #FFD700;
    color: #046321;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* Feature Content */
.cstar-feature-content {
    position: relative;
    z-index: 1;
}

.cstar-feature-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    line-height: 1.3;
    color: black;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cstar-feature-highlight {
    color: #FFD700;
    display: block;
    font-size: 1.2rem;
    margin-top: 8px;
    font-weight: 700;
}

.cstar-feature-desc {
    opacity: 0.9;
    line-height: 1.5;
    font-size: 1.05rem;
}

/* Special Styling for First Feature */
.cstar-feature-card:nth-child(1) .cstar-feature-highlight {
    color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Bottom Note */
.cstar-trusted-note {
    margin-top: 50px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    text-align: center;
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.cstar-trusted-note-text {
    font-size: 1.15rem;
    line-height: 1.6;
    font-weight: 500;
}

.cstar-trusted-note-text strong {
    color: #FFD700;
    font-weight: 700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cstar-trusted-section {
        padding: 40px 25px;
        margin: 40px auto;
        border-radius: 22px;
    }
    
    .cstar-trusted-title {
        font-size: 2.2rem;
    }
    
    .cstar-trusted-subtitle {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .cstar-feature-card {
        padding: 25px;
    }
    
    .cstar-feature-title {
        font-size: 1.4rem;
    }
    
    .cstar-feature-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        top: -10px;
        right: -10px;
    }
}

@media (max-width: 576px) {
    .cstar-trusted-title {
        font-size: 1.9rem;
    }
    
    .cstar-trusted-grid {
        gap: 20px;
    }
    
    .cstar-feature-card {
        padding: 20px;
    }
    
    .cstar-feature-title {
        font-size: 1.3rem;
    }
    
    .cstar-feature-desc {
        font-size: 1rem;
    }
    
    .cstar-trusted-note {
        padding: 20px;
    }
    
    .cstar-trusted-note-text {
        font-size: 1.05rem;
    }
}


/* About CSTAR Section */
.cstar-about-section {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f9f7 100%);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(4, 99, 33, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(4, 99, 33, 0.1);
}

.cstar-about-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(4, 99, 33, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 0;
}

/* Header */
.cstar-about-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.cstar-about-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #046321;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-block;
}

.cstar-about-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    height: 5px;
    background: linear-gradient(90deg, #046321, #FFD700);
    border-radius: 3px;
}

.cstar-about-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
    margin-top: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

/* Content Container */
.cstar-about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

@media (max-width: 992px) {
    .cstar-about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Institute Card */
.cstar-institute-card {
    background: white;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(4, 99, 33, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cstar-institute-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(4, 99, 33, 0.12);
    border-color: #046321;
}

.cstar-institute-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #046321;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cstar-institute-card:hover::before {
    opacity: 1;
}

/* Card Header */
.cstar-card-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(4, 99, 33, 0.1);
}

.cstar-card-title {
    font-size: 2rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cstar-card-subtitle {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Card Content */
.cstar-card-content {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cstar-card-content p {
    margin-bottom: 20px;
}

.cstar-card-content p:last-child {
    margin-bottom: 0;
}

/* Highlighted Text */
.cstar-highlight {
    color: #046321;
    font-weight: 600;
    background: rgba(4, 99, 33, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
}

/* Mission Section */
.cstar-mission-box {
    background: linear-gradient(135deg, rgba(4, 99, 33, 0.05) 0%, rgba(4, 99, 33, 0.02) 100%);
    padding: 25px 30px;
    border-radius: 18px;
    margin-top: 30px;
    border-left: 4px solid #046321;
}

.cstar-mission-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #046321;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cstar-mission-title::before {
    content: '🎯';
    font-size: 1.2rem;
}

.cstar-mission-text {
    color: #333;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Exam Card */
.cstar-exam-card {
    background: white;
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cstar-exam-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 140, 0, 0.12);
    border-color: #FF8C00;
}

.cstar-exam-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #FF8C00, #FFD700);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cstar-exam-card:hover::before {
    opacity: 1;
}

/* Exam Header */
.cstar-exam-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 140, 0, 0.1);
}

.cstar-exam-title {
    font-size: 2rem;
    font-weight: 800;
    color: #FF8C00;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cstar-exam-year {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

/* Exam Content */
.cstar-exam-content {
    color: #333;
    line-height: 1.7;
    font-size: 1.1rem;
}

.cstar-exam-content p {
    margin-bottom: 20px;
}

.cstar-exam-content p:last-child {
    margin-bottom: 0;
}

/* Benefits List */
.cstar-benefits-list {
    list-style: none;
    padding: 0;
    margin: 25px 0 0 0;
}

.cstar-benefits-list li {
    padding: 12px 0;
    border-bottom: 1px dashed rgba(255, 140, 0, 0.2);
    color: #333;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cstar-benefits-list li:last-child {
    border-bottom: none;
}

.cstar-benefit-icon {
    color: #FF8C00;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cstar-about-section {
        padding: 40px 25px;
        margin: 40px auto;
        border-radius: 22px;
    }
    
    .cstar-about-title {
        font-size: 2.2rem;
    }
    
    .cstar-about-subtitle {
        font-size: 1rem;
        padding: 0;
    }
    
    .cstar-institute-card,
    .cstar-exam-card {
        padding: 30px;
    }
    
    .cstar-card-title,
    .cstar-exam-title {
        font-size: 1.8rem;
    }
    
    .cstar-card-content,
    .cstar-exam-content {
        font-size: 1.05rem;
    }
}

@media (max-width: 576px) {
    .cstar-about-title {
        font-size: 1.9rem;
    }
    
    .cstar-institute-card,
    .cstar-exam-card {
        padding: 25px 20px;
    }
    
    .cstar-card-title,
    .cstar-exam-title {
        font-size: 1.6rem;
    }
    
    .cstar-mission-box {
        padding: 20px;
    }
    
    .cstar-benefits-list li {
        font-size: 1rem;
    }
}


/* Why Choose Vatsalya Section */
.cstar-choose-section {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    max-width: 1200px;
    margin: 60px auto;
    padding: 50px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f7fbf9 100%);
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(4, 99, 33, 0.08);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(4, 99, 33, 0.1);
}

.cstar-choose-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(4, 99, 33, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    z-index: 0;
}

/* Header */
.cstar-choose-header {
    text-align: center;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.cstar-choose-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #046321;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    display: inline-block;
}

.cstar-choose-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 5px;
    background: linear-gradient(90deg, #046321, #FFD700);
    border-radius: 3px;
}

.cstar-choose-intro {
    font-size: 1.2rem;
    color: #333;
    font-weight: 500;
    max-width: 900px;
    margin: 30px auto 0;
    line-height: 1.6;
    padding: 0 20px;
}

/* What Makes Us Section */
.cstar-features-section {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.cstar-features-title {
    font-size: 2rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.cstar-features-title::before,
.cstar-features-title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 50px;
    height: 3px;
    background: #046321;
    border-radius: 2px;
    opacity: 0.5;
}

.cstar-features-title::before {
    right: 100%;
    margin-right: 20px;
}

.cstar-features-title::after {
    left: 100%;
    margin-left: 20px;
}

/* Features Grid */
.cstar-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .cstar-features-grid {
        grid-template-columns: 1fr;
    }
}

/* Feature Card */
.cstar-feature-card {
    background: white;
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(4, 99, 33, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cstar-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(4, 99, 33, 0.12);
    border-color: #046321;
}

.cstar-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: #046321;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cstar-feature-card:hover::before {
    opacity: 1;
}

/* Feature Content */
.cstar-feature-content {
    position: relative;
    z-index: 1;
}

.cstar-feature-icon {
    font-size: 2.5rem;
    color: #046321;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.cstar-feature-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cstar-feature-desc {
    color: #444;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Transform Future Section */
.cstar-transform-section {
    background: linear-gradient(135deg, rgba(4, 99, 33, 0.05) 0%, rgba(4, 99, 33, 0.02) 100%);
    padding: 40px;
    border-radius: 22px;
    margin: 50px 0;
    border-left: 5px solid #046321;
    position: relative;
    z-index: 1;
}

.cstar-transform-title {
    font-size: 2rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 25px;
    text-align: center;
}

.cstar-transform-text {
    color: #333;
    line-height: 1.7;
    font-size: 1.15rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Advantages Section */
.cstar-advantages-section {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.cstar-advantages-title {
    font-size: 2rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 35px;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.cstar-advantages-title::before,
.cstar-advantages-title::after {
    content: '⭐';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #FFD700;
}

.cstar-advantages-title::before {
    right: 100%;
    margin-right: 15px;
}

.cstar-advantages-title::after {
    left: 100%;
    margin-left: 15px;
}

/* Advantages Grid */
.cstar-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .cstar-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cstar-advantages-grid {
        grid-template-columns: 1fr;
    }
}

/* Advantage Card */
.cstar-advantage-card {
    background: white;
    padding: 30px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(4, 99, 33, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.cstar-advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(4, 99, 33, 0.12);
    border-color: #046321;
}

.cstar-advantage-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cstar-advantage-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 15px;
    line-height: 1.3;
}

.cstar-advantage-desc {
    color: #555;
    line-height: 1.5;
    font-size: 1.05rem;
}

/* Conclusion Section */
.cstar-conclusion-section {
    background: linear-gradient(135deg, rgba(4, 99, 33, 0.08) 0%, rgba(255, 215, 0, 0.05) 100%);
    padding: 40px;
    border-radius: 22px;
    margin: 50px 0;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(4, 99, 33, 0.15);
}

.cstar-conclusion-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 25px;
    text-align: center;
}

.cstar-conclusion-text {
    color: #333;
    line-height: 1.7;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.cstar-conclusion-text:last-child {
    margin-bottom: 0;
}

.cstar-conclusion-text strong {
    color: #046321;
    font-weight: 700;
}

/* FAQ Section */
.cstar-faq-section {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.cstar-faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.cstar-faq-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #046321, #FFD700);
    border-radius: 2px;
}

/* FAQ List */
.cstar-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cstar-faq-item {
    margin-bottom: 25px;
    background: white;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(4, 99, 33, 0.1);
    transition: all 0.3s ease;
}

.cstar-faq-item:hover {
    border-color: #046321;
    box-shadow: 0 15px 30px rgba(4, 99, 33, 0.1);
}

.cstar-faq-question {
    font-size: 1.4rem;
    font-weight: 700;
    color: #046321;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.cstar-faq-number {
    background: #046321;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.cstar-faq-answer {
    color: #444;
    line-height: 1.6;
    font-size: 1.1rem;
    padding-left: 51px;
}

/* Call to Action */
.cstar-cta-box {
    background: linear-gradient(135deg, #046321 0%, #03481a 100%);
    padding: 40px;
    border-radius: 22px;
    margin-top: 50px;
    text-align: center;
    position: relative;
    z-index: 1;
    color: white;
}

.cstar-cta-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.cstar-cta-text strong {
    color: #FFD700;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cstar-choose-section {
        padding: 40px 25px;
        margin: 40px auto;
        border-radius: 22px;
    }
    
    .cstar-choose-title {
        font-size: 2.2rem;
    }
    
    .cstar-choose-intro {
        font-size: 1.1rem;
        padding: 0;
    }
    
    .cstar-features-title,
    .cstar-advantages-title,
    .cstar-transform-title,
    .cstar-conclusion-title,
    .cstar-faq-title {
        font-size: 1.8rem;
    }
    
    .cstar-features-title::before,
    .cstar-features-title::after {
        width: 30px;
    }
    
    .cstar-feature-card,
    .cstar-advantage-card,
    .cstar-faq-item {
        padding: 25px;
    }
    
    .cstar-transform-section,
    .cstar-conclusion-section,
    .cstar-cta-box {
        padding: 30px;
    }
    
    .cstar-faq-question {
        font-size: 1.3rem;
    }
    
    .cstar-faq-answer {
        padding-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .cstar-choose-title {
        font-size: 1.9rem;
    }
    
    .cstar-feature-name,
    .cstar-advantage-name {
        font-size: 1.3rem;
    }
    
    .cstar-faq-number {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
    
    .cstar-cta-text {
        font-size: 1.3rem;
    }
}

/* Solochair Slider Section */
.solochair-section {
    position: relative;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    overflow: hidden;
}

/* Viewport */
.solochair-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track */
.solochair-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

/* Slide */
.solochair-slide {
    min-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 30px;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .solochair-slide {
        flex-direction: row;
        gap: 60px;
    }
}

/* Image */
.solochair-image {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    position: relative;
}

.solochair-image::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(45deg, #046321, #FFD700);
    border-radius: 22px;
    z-index: -1;
}

.solochair-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.solochair-slide:hover .solochair-image img {
    transform: scale(1.05);
}

/* Content */
.solochair-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .solochair-content {
        text-align: left;
    }
}

/* Name */
.solochair-name {
    font-size: 2.2rem;
    font-weight: 800;
    color: #046321;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Title */
.solochair-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FF8C00;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    display: inline-block;
}

.solochair-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #046321;
    border-radius: 2px;
}

@media (min-width: 768px) {
    .solochair-title::after {
        left: 0;
    }
}

/* Message */
.solochair-message {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    padding: 20px;
    background: rgba(4, 99, 33, 0.03);
    border-radius: 15px;
    border-left: 4px solid #046321;
    position: relative;
}

.solochair-message::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 10px;
    font-size: 5rem;
    color: rgba(4, 99, 33, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

/* Arrows */
.solochair-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #046321;
    color: white;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.8;
}

.solochair-arrow:hover {
    background: #03481a;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 5px 15px rgba(4, 99, 33, 0.3);
}

.solochair-arrow.left {
    left: 10px;
}

.solochair-arrow.right {
    right: 10px;
}

@media (max-width: 768px) {
    .solochair-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .solochair-arrow.left {
        left: 5px;
    }
    
    .solochair-arrow.right {
        right: 5px;
    }
}

/* Dots */
.solochair-dots {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.solochair-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.solochair-dot:hover {
    background: #046321;
    transform: scale(1.2);
}

.solochair-dot.active {
    background: #046321;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 576px) {
    .solochair-section {
        padding: 30px 15px;
        margin: 40px auto;
    }
    
    .solochair-slide {
        padding: 20px;
        gap: 30px;
    }
    
    .solochair-image {
        width: 220px;
        height: 220px;
    }
    
    .solochair-name {
        font-size: 1.8rem;
    }
    
    .solochair-title {
        font-size: 1.1rem;
    }
    
    .solochair-message {
        font-size: 1.05rem;
        padding: 15px;
        line-height: 1.6;
    }
    
    .solochair-message::before {
        top: -15px;
        font-size: 4rem;
    }
}

/* Update existing CSS or add these styles */

/* Form Grid Layout */
.cstar-registration-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Form Row for 2 fields */
.cstar-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

@media (max-width: 768px) {
    .cstar-form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Keep existing styles but update as needed */
.cstar-form-group {
    margin-bottom: 0; /* Remove bottom margin since row handles spacing */
}

/* If you want specific fields in specific positions, use this structure */
.cstar-form-group.full-width {
    grid-column: 1 / -1; /* Spans full width */
}