        :root {
            --pastel-green: #a8d5ba;
            --light-green: #d4e9d7;
            --beige: #f5f1e6;
            --dark-green: #5a7d5a;
            --text-color: #3a3a3a;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 400;
        }
        .btn-enroll
        /* Navbar Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95);
            padding: 15px 0;
            transition: all 0.3s ease;
            box-shadow: none;
        } 
        .navbar.scrolled {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
        }
        
        .navbar-brand {
            font-family: 'Merriweather', serif;
            font-size: 1.8rem;
            color: var(--dark-green) !important;
            font-weight: 500;
        }
        
        .nav-link {
            color: var(--text-color) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .nav-link:hover {
            color: var(--dark-green) !important;
        }
        
        




        /* Hero Section */
        /* .hero-section {
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://images.unsplash.com/photo-1544367567-0f2fcb009e0b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1820&q=80') no-repeat center center/cover;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
        } */
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease;
        }
        
        .btn-join {
            background-color: var(--pastel-green);
            border: none;
            color: var(--text-color);
            padding: 12px 30px;
            font-size: 1.1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            animation: fadeIn 1.5s ease;
        }
        
        .btn-join:hover {
            background-color: var(--dark-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--dark-green);
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #777;
            max-width: 600px;
            margin: 0 auto;
        }
        
        /* About Section */
        .about-section {
            background-color: var(--white);
        }
        
        .about-img {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content h3 {
            color: var(--dark-green);
            margin-bottom: 20px;
        }
        
        /* Classes Section */
        .class-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            margin-bottom: 30px;
        }
        
        .class-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .class-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .class-content {
            padding: 20px;
        }
        
        .class-content h4 {
            color: var(--dark-green);
            margin-bottom: 10px;
        }
        
        /* Instructors Section */
        .instructor-card {
            text-align: center;
            margin-bottom: 30px;
            transition: all 0.3s ease;
        }
        
        .instructor-card:hover {
            transform: translateY(-5px);
        }
        
        .instructor-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 5px solid var(--light-green);
        }
        
        /* Testimonials */
        .testimonials-section {
            background-color: var(--light-green);
        }
        
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin: 0 15px;
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--dark-green);
        }
        
        .carousel-indicators button {
            background-color: var(--dark-green);
            width: 10px;
            height: 10px;
            border-radius: 50%;
        }
        
        /* Pricing Section */
        .pricing-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-align: center;
            margin-bottom: 30px;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-header {
            background-color: var(--pastel-green);
            padding: 30px 20px;
        }
        
        .pricing-header h3 {
            color: var(--text-color);
            margin-bottom: 10px;
        }
        
        .price {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--dark-green);
        }
        
        .pricing-body {
            padding: 30px 20px;
        }
        
        .pricing-body ul {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .pricing-body ul li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
        }
        
        .btn-pricing {
            background-color: var(--dark-green);
            color: white;
            border: none;
            padding: 10px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-pricing:hover {
            background-color: var(--pastel-green);
            color: var(--text-color);
        }
        
       
        
       
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background-color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.8rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            color: white;
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--dark-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--pastel-green);
            color: var(--text-color);
            transform: translateY(-3px);
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .back-to-top {
                left: 20px;
                bottom: 20px;
            }
            
            .whatsapp-btn {
                right: 20px;
                bottom: 20px;
            }
        }












        /* Hero Section */
        :root {
            --pastel-green: #a8d5ba;
            --light-green: #d4e9d7;
            --beige: #f5f1e6;
            --dark-green: #5a7d5a;
            --text-color: #3a3a3a;
            --white: #ffffff;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-color);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--beige);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'Merriweather', serif;
            font-weight: 400;
        }
        
        .hero-section {
            background-color: var(--pastel-green);
            height: 100vh;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/images/new-hero1.jpg") no-repeat center center/cover ;
            /* background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                        url('https://images.unsplash.com/photo-1588286840104-8957b019727f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover; */
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            max-width: 900px;
            text-align: start;
            margin: 1rem 2.5rem;
            /* margin: 0 auto; */
            padding: 0 20px;
            z-index: 2;
            position: relative;
            /* left: 10%;
            transform: translate(-15%,-15%); */
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-content p {
            text-align: start;
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            animation: fadeInUp 1s ease;
            max-width: 700px;
            /* margin-left: auto; */
            margin-right: auto;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
        }
        
        .btn-container {
            display: flex;
            justify-content: flex-start;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeIn 1.5s ease;
        }
        
        .btn-join {
            background-color: var(--pastel-green);
            border: none;
            color: var(--text-color);
            padding: 14px 32px;
            font-size: 1.1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .btn-join:hover {
            background-color: var(--dark-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }
        
        .btn-online {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            padding: 14px 32px;
            font-size: 1.1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn-online:hover {
            background-color: white;
            color: var(--dark-green);
            transform: translateY(-3px);
        }
        
        .location-badge {
            position: absolute;
            bottom: 30px;
            left: 10%;
            transform: translate(-10%,-90%);
            background-color: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            animation: fadeIn 2s ease;
        }
        
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }
        
        .floating-element {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out;
        }
        
        .floating-element:nth-child(1) {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 120px;
            height: 120px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }
        
        .floating-element:nth-child(3) {
            width: 60px;
            height: 60px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }
        
        .floating-element:nth-child(4) {
            width: 100px;
            height: 100px;
            top: 30%;
            left: 70%;
            animation-delay: 6s;
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 834px) {
            .hero-content{
                position: relative;
                left: 10%;
                transform: translate(-10%,-30%);
            }
             .hero-section{
                  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/images/new-hero1.jpg") no-repeat center center/cover ;
            }
            .class-card{
                margin-top: 10px;
                max-height: 34vh;
            }
        }
         @media (max-width: 820px) {
            .hero-content{
                position: relative;
                left: 10%;
                transform: translate(-10%,-20%);
            }
             .hero-section{
                  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/images/new-hero1.jpg") no-repeat center center/cover ;
            }
            .class-card{
                margin-top: 10px;
                max-height: 36vh;
            }
             .class-features{
                display: none;
            }
        }

        @media (max-width: 768px) {
             .hero-content{
                position: relative;
                left: 10%;
                transform: translate(-10%,-15%);
            }
             .hero-section{
                  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/images/new-hero1.jpg") no-repeat center center/cover ;
            }
            .class-card{
                margin-top: 10px;
                max-height: 42vh;
            }
            #class-card{
                height: 90vh;
            }
            .class-features{
                display: none;
            }
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .btn-container {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-join, .btn-online {
                width: 80%;
                justify-content: center;
            }
        }
        
        @media (max-width: 480px) {
            .hero-section{
                  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/images/new-hero1.jpg") no-repeat center center/cover;
            }
            .hero-content{
                position: relative;
                left: 10%;
                transform: translate(-20%,-7.5%);
                /* margin: auto; */
                /* padding: 2rem 1.5rem; */
            }
            .hero-content h1,p{
                text-align: center;
            }
            #btn-hero-2{
                min-width: 90vw;
                margin-bottom: 5px;
            }
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 0.9rem;
                display: none;
            }
            .location-badge{
                margin-bottom: -1.2rem;
                 position: absolute;
                 bottom: 30px;
                 left: 50%;
                 transform: translateX(-50%);
            }
        }
    
       



     
        
     /* FAQS Section    */
        .faq-section {
            padding: 80px 0;
            background-color: var(--light-green);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--pastel-green);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            max-width: 600px;
            margin: 20px auto 0;
            font-size: 1.1rem;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-item {
            background: white;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-item:hover {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }
        
        .faq-question {
            padding: 25px 30px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background-color: rgba(168, 213, 186, 0.1);
        }
        
        .faq-question h3 {
            font-size: 1.2rem;
            color: var(--dark-green);
            margin: 0;
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .faq-icon {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .faq-answer.active {
            padding: 0 30px 25px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: #666;
            margin-bottom: 15px;
        }
        
        .faq-answer ul {
            padding-left: 20px;
            margin-bottom: 15px;
        }
        
        .faq-answer li {
            margin-bottom: 8px;
            color: #666;
        }
        
        .faq-answer a {
            color: var(--dark-green);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .faq-answer a:hover {
            color: var(--pastel-green);
            text-decoration: underline;
        }
        
        .contact-cta {
            background: white;
            border-radius: 15px;
            padding: 40px;
            text-align: center;
            margin-top: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .contact-cta h3 {
            color: var(--dark-green);
            margin-bottom: 20px;
        }
        
        .contact-cta p {
            color: #666;
            margin-bottom: 25px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .contact-methods {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
        
        .contact-method {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 20px;
            background-color: var(--light-green);
            border-radius: 30px;
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .contact-method:hover {
            background-color: var(--pastel-green);
            transform: translateY(-3px);
            color: var(--text-color);
        }
        
        .btn-contact {
            background-color: var(--pastel-green);
            border: none;
            color: var(--text-color);
            padding: 14px 30px;
            font-size: 1.1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
            text-decoration: none;
            display: inline-block;
        }
        
        .btn-contact:hover {
            background-color: var(--dark-green);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Animation for FAQ items */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .faq-item {
            animation: fadeInUp 0.5s ease forwards;
            opacity: 0;
        }
        
        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }
        .faq-item:nth-child(6) { animation-delay: 0.6s; }
        .faq-item:nth-child(7) { animation-delay: 0.7s; }
        .faq-item:nth-child(8) { animation-delay: 0.8s; }
        .faq-item:nth-child(9) { animation-delay: 0.9s; }
        .faq-item:nth-child(10) { animation-delay: 1.0s; }
        .faq-item:nth-child(11) { animation-delay: 1.1s; }
        .faq-item:nth-child(12) { animation-delay: 1.2s; }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
            
            .faq-question {
                padding: 20px;
            }
            
            .faq-question h3 {
                font-size: 1.1rem;
            }
            
            .faq-answer {
                padding: 0 20px;
            }
            
            .faq-answer.active {
                padding: 0 20px 20px;
            }
            
            .contact-cta {
                padding: 30px 20px;
            }
            
            .contact-methods {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
        }
    




    /* Classes Section */
        
        .classes-section {
            padding: 80px 0;
            background-color: var(--beige);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background-color: var(--pastel-green);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #777;
            max-width: 600px;
            margin: 20px auto 0;
            font-size: 1.1rem;
        }
        
        .class-cards {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            height: 92%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .class-cards:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .class-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background-color: var(--light-green);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--dark-green);
            font-size: 2rem;
            transition: all 0.3s ease;
        }
        
        .class-cards:hover .class-icon {
            background-color: var(--pastel-green);
            transform: scale(1.1);
        }
        
        .class-header {
            padding: 30px 20px 20px;
            text-align: center;
            background: linear-gradient(to bottom, var(--light-green), rgba(212, 233, 215, 0.3));
        }
        
        .class-header h3 {
            color: var(--dark-green);
            margin-bottom: 10px;
            font-size: 1.5rem;
        }
        
        .class-body {
            padding: 20px 25px 30px;
        }
        
        .class-body p {
            color: #666;
            margin-bottom: 20px;
        }
        
        .class-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }
        
        .class-features li {
            padding: 8px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .class-features li:last-child {
            border-bottom: none;
        }
        
        .class-features i {
            color: var(--pastel-green);
            margin-right: 10px;
            font-size: 0.9rem;
        }
        
        .btn-enroll {
            background-color: var(--pastel-green);
            border: none;
            color: var(--text-color);
            padding: 10px 25px;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 500;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }
        
        .btn-enroll:hover {
            background-color: var(--dark-green);
            color: white;
            transform: translateY(-2px);
        }


        
        .book-btn{
            color: var(--dark-green);
            text-decoration: none;
        }
        .book-btn:hover{
            color: var(--beige);
        }
        .join-btn{
            color: var(--dark-green);
            text-decoration: none;
        }
        .join-btn:hover{
            color: var(--beige);
        }
        .inquire-btn{
            color: var(--dark-green);
            text-decoration: none;
        }
        .inquire-btn:hover{
            color: var(--beige);
        }
         .btn-enroll:hover {
            background-color: var(--dark-green);
            color: white;
            transform: translateY(-2px);
        }





        
        .online-card {
            position: relative;
            overflow: hidden;
        }
        
        .online-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, #ff9a9e, #fad0c4, #fad0c4, #a1c4fd);
        }
        
        .online-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background-color: var(--dark-green);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* Animation for cards */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .class-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        .class-card:nth-child(1) { animation-delay: 0.1s; }
        .class-card:nth-child(2) { animation-delay: 0.2s; }
        .class-card:nth-child(3) { animation-delay: 0.3s; }
        .class-card:nth-child(4) { animation-delay: 0.4s; }
        .class-card:nth-child(5) { animation-delay: 0.5s; }
        
        /* Responsive Design */
        @media (max-width: 834px) {
            #classes{
                margin: 5px 10px;
            }
        }
        
        @media (max-width: 768px) {
            .classes-section {
                padding: 60px 0;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1rem;
            }
        }
    






        
        .cardss{
            max-height: 53vh;
        }

       







         
        /* Instructor Section */
        .instructor-section {
            padding: 100px 0;
            background: linear-gradient(135deg, rgba(168, 213, 186, 0.1) 0%, rgba(212, 233, 215, 0.2) 50%, rgba(245, 241, 230, 0.1) 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Background Elements */
        .floating-element {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--pastel-green) 0%, transparent 70%);
            opacity: 0.1;
            animation: float 20s infinite ease-in-out;
        }
        
        .floating-element:nth-child(1) {
            width: 300px;
            height: 300px;
            top: -150px;
            left: -150px;
            animation-delay: 0s;
        }
        
        .floating-element:nth-child(2) {
            width: 200px;
            height: 200px;
            bottom: 100px;
            right: -100px;
            animation-delay: 5s;
        }
        
        .floating-element:nth-child(3) {
            width: 150px;
            height: 150px;
            top: 30%;
            right: 20%;
            animation-delay: 10s;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2:after {
            content: '';
            position: absolute;
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, transparent, var(--pastel-green), transparent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: #666;
            font-size: 1.2rem;
            max-width: 600px;
            margin: 25px auto 0;
        }
        
        /* Instructor Layout */
        .instructor-layout {
            position: relative;
            z-index: 2;
        }
        
        .instructor-profile {
            display: flex;
            align-items: center;
            margin-bottom: 60px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.8);
        }
        
        .instructor-image {
            flex: 0 0 280px;
            margin-right: 50px;
            position: relative;
        }
        
        .image-container {
            width: 280px;
            height: 280px;
            border-radius: 50%;
            overflow: hidden;
            position: relative;
            box-shadow: 0 15px 30px rgba(90, 125, 90, 0.2);
            border: 5px solid white;
        }
        
        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .instructor-profile:hover .image-container img {
            transform: scale(1.05);
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(168, 213, 186, 0.3), transparent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .instructor-profile:hover .image-overlay {
            opacity: 1;
        }
        
        .experience-badge {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: var(--dark-green);
            color: white;
            padding: 10px 20px;
            border-radius: 30px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .instructor-info {
            flex: 1;
        }
        
        .instructor-name {
            font-size: 2.5rem;
            color: var(--dark-green);
            margin-bottom: 10px;
            position: relative;
            display: inline-block;
        }
        
        .instructor-name:after {
            content: '';
            position: absolute;
            width: 50%;
            height: 3px;
            background: var(--pastel-green);
            bottom: -8px;
            left: 0;
        }
        
        .instructor-title {
            font-size: 1.3rem;
            color: #777;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .instructor-location {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--dark-green);
            font-weight: 500;
            margin-bottom: 25px;
        }
        
        .instructor-bio {
            color: #555;
            margin-bottom: 30px;
        }
        
        .instructor-bio p {
            margin-bottom: 15px;
        }
        
        /* Qualifications Grid */
        .qualifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }
        
        .qualification-item {
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border-left: 4px solid var(--pastel-green);
            position: relative;
            overflow: hidden;
        }
        
        .qualification-item:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, transparent, rgba(168, 213, 186, 0.05));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .qualification-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .qualification-item:hover:before {
            opacity: 1;
        }
        
        .qualification-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--light-green);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-green);
            font-size: 1.5rem;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .qualification-item:hover .qualification-icon {
            background: var(--pastel-green);
            transform: scale(1.1);
        }
        
        .qualification-text {
            color: #555;
            font-weight: 500;
        }
        
        /* Philosophy Section */
        .philosophy-container {
            background: linear-gradient(135deg, var(--light-green), var(--pastel-green));
            padding: 50px;
            border-radius: 25px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(90, 125, 90, 0.15);
        }
        
        .philosophy-container:before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }
        
        .philosophy-title {
            font-size: 1.8rem;
            color: var(--dark-green);
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            z-index: 2;
        }
        
        .philosophy-quote {
            font-size: 1.8rem;
            color: var(--dark-green);
            font-style: italic;
            margin-bottom: 25px;
            position: relative;
            z-index: 2;
            line-height: 1.4;
            text-align: center;
            padding: 0 40px;
        }
        
        .philosophy-quote:before, .philosophy-quote:after {
            content: '"';
            font-size: 4rem;
            color: rgba(90, 125, 90, 0.2);
            position: absolute;
            font-family: serif;
        }
        
        .philosophy-quote:before {
            top: -20px;
            left: 0;
        }
        
        .philosophy-quote:after {
            bottom: -40px;
            right: 0;
        }
        
        .philosophy-text {
            color: #555;
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Social Links */
        .instructor-social {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 40px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-green);
            font-size: 1.3rem;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .social-link:hover {
            background: var(--pastel-green);
            color: var(--text-color);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        /* Animations */
        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
            100% {
                transform: translateY(0) rotate(0deg);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .instructor-profile, .qualification-item, .philosophy-container {
            animation: fadeInUp 0.8s ease forwards;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .instructor-profile {
                flex-direction: column;
                text-align: center;
                padding: 30px;
            }
            
            .instructor-image {
                flex: none;
                margin-right: 0;
                margin-bottom: 30px;
            }
            
            .image-container {
                width: 220px;
                height: 220px;
            }
            
            .instructor-name:after {
                left: 50%;
                transform: translateX(-50%);
            }
        }
        
        @media (max-width: 768px) {
            .instructor-section {
                padding: 80px 0;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .instructor-name {
                font-size: 2rem;
            }
            
            .qualifications-grid {
                grid-template-columns: 1fr;
            }
            
            .philosophy-container {
                padding: 30px;
            }
            
            .philosophy-quote {
                font-size: 1.5rem;
                padding: 0 20px;
            }
        }
        
        @media (max-width: 576px) {
            .experience-badge{
                display: none;
            }
            .instructor-profile {
                padding: 25px 20px;
            }
            
            .image-container {
                width: 180px;
                height: 180px;
            }
            
            .instructor-name {
                font-size: 1.7rem;
            }
            
            .philosophy-quote {
                font-size: 1.3rem;
            }
        }


























/* Why Choose Us section */
        
        .container-2 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section-header-2 {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title-2 {
            font-size: 2.8rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title-2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background-color: var(--pastel-green);
            border-radius: 2px;
        }
        
        .section-subtitle-2 {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .features-grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .feature-card-2 {
            background-color: var(--white);
            border-radius: 15px;
            padding: 35px 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            border-top: 5px solid var(--pastel-green);
        }
        
        .feature-card-2:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon-2 {
            width: 80px;
            height: 80px;
            background-color: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 2.2rem;
            color: var(--dark-green);
        }
        
        .feature-title-2 {
            font-size: 1.5rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .feature-description-2 {
            color: var(--text-color);
            font-size: 1.05rem;
        }
        
        .highlight-2 {
            color: var(--dark-green);
            font-weight: 600;
        }
        
        .cta-section-2 {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background-color: var(--light-green);
            border-radius: 15px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-title-2 {
            font-size: 1.8rem;
            color: var(--dark-green);
            margin-bottom: 20px;
        }
        
        .cta-button-2 {
            display: inline-block;
            background-color: var(--dark-green);
            color: var(--white);
            padding: 15px 40px;
            font-size: 1.2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 15px;
            border: 2px solid var(--dark-green);
        }
        
        .cta-button-2:hover {
            background-color: transparent;
            color: var(--dark-green);
        }
        
        .footer-note-2 {
            text-align: center;
            margin-top: 50px;
            font-style: italic;
            color: var(--dark-green);
            padding-top: 20px;
            border-top: 1px solid var(--pastel-green);
        }
        
        @media (max-width: 768px) {
            .section-title-2 {
                font-size: 2.2rem;
            }
            
            .features-grid-2 {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .cta-section-2 {
                padding: 30px 20px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title-2 {
                font-size: 1.8rem;
            }
            
            .feature-card-2 {
                padding: 25px 20px;
            }
        }














/* Programs Offered Section */
        .container-3 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .section-header-3 {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title-3 {
            font-size: 2.8rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title-3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background-color: var(--pastel-green);
            border-radius: 2px;
        }
        
        .section-subtitle-3 {
            font-size: 1.2rem;
            color: var(--text-color);
            max-width: 700px;
            margin: 20px auto 0;
        }
        
        .programs-container-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .program-card-3 {
            background-color: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        
        .program-card-3:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
        }
        
        .program-header-3 {
            padding: 25px 25px 15px;
            text-align: center;
            position: relative;
        }
        
        .program-icon-3 {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 1.8rem;
            color: var(--dark-green);
        }
        
        .program-card-3:nth-child(1) .program-icon-3 {
            background: linear-gradient(135deg, var(--accent-orange), #ffcc33);
        }
        
        .program-card-3:nth-child(2) .program-icon-3 {
            background: linear-gradient(135deg, var(--accent-red), #ff8a8a);
        }
        
        .program-card-3:nth-child(3) .program-icon-3 {
            background: linear-gradient(135deg, var(--accent-blue), #a1d6e2);
        }
        
        .program-card-3:nth-child(4) .program-icon-3 {
            background: linear-gradient(135deg, var(--accent-purple), #c9b0e8);
        }
        
        .program-title-3 {
            font-size: 1.6rem;
            color: var(--dark-green);
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .program-subtitle-3 {
            font-size: 1rem;
            color: var(--text-color);
            opacity: 0.8;
        }
        
        .program-body-3 {
            padding: 0 25px 20px;
            flex-grow: 1;
        }
        
        .program-description-3 {
            margin-bottom: 20px;
            color: var(--text-color);
            font-size: 1.05rem;
        }
        
        .program-features-3 {
            list-style-type: none;
            margin-top: 15px;
        }
        
        .program-features-3 li {
            padding: 8px 0;
            padding-left: 28px;
            position: relative;
        }
        
        .program-features-3 li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--dark-green);
            font-weight: bold;
            font-size: 1.1rem;
        }
        
        .program-footer-3 {
            padding: 20px 25px 25px;
            background-color: rgba(168, 213, 186, 0.1);
            border-top: 1px solid rgba(90, 125, 90, 0.1);
        }
        
        .program-duration-3 {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            font-size: 0.95rem;
        }
        
        .program-duration- span {
            background-color: var(--light-green);
            padding: 5px 12px;
            border-radius: 20px;
            font-weight: 600;
            color: var(--dark-green);
        }
        
        .program-button-3 {
            display: block;
            width: 100%;
            padding: 14px;
            background-color: var(--dark-green);
            color: var(--white);
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-align: center;
            text-decoration: none;
        }
        
        .program-button-3:hover {
            background-color: var(--pastel-green);
            color: var(--text-color);
            transform: translateY(-2px);
        }
        
        .batch-info-3 {
            text-align: center;
            margin-top: 60px;
            padding: 25px;
            background-color: var(--light-green);
            border-radius: 15px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .batch-info-3 h3 {
            font-size: 1.5rem;
            color: var(--dark-green);
            margin-bottom: 15px;
        }
        
        .batch-schedule-3 {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 30px;
            margin-top: 20px;
        }
        
        .batch-time-3 {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px 25px;
            background-color: var(--white);
            border-radius: 10px;
            min-width: 180px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .batch-time-3 i {
            font-size: 1.8rem;
            color: var(--dark-green);
            margin-bottom: 10px;
        }
        
        .time-label-3 {
            font-weight: 600;
            color: var(--dark-green);
        }
        
        .time-detail-3 {
            font-size: 1.1rem;
            margin-top: 5px;
        }
        
        .program-note-3 {
            text-align: center;
            margin-top: 50px;
            font-style: italic;
            color: var(--dark-green);
            padding-top: 20px;
            border-top: 1px solid var(--pastel-green);
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        @media (max-width: 768px) {
            .section-title-3 {
                font-size: 2.2rem;
            }
            
            .programs-container-3 {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .batch-schedule-3 {
                flex-direction: column;
                align-items: center;
            }
            
            .batch-time-3 {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title-3 {
                font-size: 1.8rem;
            }
            
            .program-header-3, .program-body-3, .program-footer-3 {
                padding-left: 20px;
                padding-right: 20px;
            }
        }
   



















/* Trust section */
 .container-4 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        /* Trust Section Styles */
        .trust-section-4 {
            margin-bottom: 80px;
        }
        
        .section-header-4 {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title-4 {
            font-size: 2.8rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title-4::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 4px;
            background-color: var(--pastel-green);
            border-radius: 2px;
        }
        
        .trust-grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .trust-card-4 {
            background-color: var(--white);
            border-radius: 15px;
            padding: 35px 25px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 2px solid transparent;
        }
        
        .trust-card-4:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border-color: var(--pastel-green);
        }
        
        .trust-icon-4 {
            width: 80px;
            height: 80px;
            background-color: var(--light-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: var(--dark-green);
            transition: transform 0.3s ease;
        }
        
        .trust-card-4:hover .trust-icon-4 {
            transform: scale(1.1);
        }
        
        .trust-title-4 {
            font-size: 1.4rem;
            color: var(--dark-green);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .trust-description-4 {
            color: var(--text-color);
            font-size: 1.05rem;
        }
        
        .trust-badge-4 {
            display: inline-block;
            margin-top: 15px;
            padding: 5px 15px;
            background-color: var(--pastel-green);
            color: var(--dark-green);
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Student Testimonials */
        .testimonial-section-4 {
            background-color: var(--light-green);
            border-radius: 15px;
            padding: 40px;
            margin-top: 60px;
            text-align: center;
        }
        
        .testimonial-title-4 {
            font-size: 1.8rem;
            color: var(--dark-green);
            margin-bottom: 30px;
        }
        
        .testimonial-grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .testimonial-card-4 {
            background-color: var(--white);
            border-radius: 10px;
            padding: 25px;
            text-align: left;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .testimonial-text-4 {
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        
        .testimonial-text-4::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: var(--pastel-green);
            font-family: Georgia, serif;
        }
        
        .testimonial-author-4 {
            display: flex;
            align-items: center;
        }
        
        .author-avatar-4 {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--pastel-green);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-green);
            font-weight: bold;
        }
        
        .author-info-4 h4 {
            color: var(--dark-green);
            margin-bottom: 5px;
        }
        
        .author-info-4 p {
            font-size: 0.9rem;
            color: var(--text-color);
            opacity: 0.8;
        }
        
        /* Final CTA Section */
        .final-cta-section-4 {
            background: linear-gradient(135deg, var(--dark-green), #3a5f3a);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            color: var(--white);
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }
        
        .final-cta-section-4::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23a8d5ba" stroke-width="0.5" stroke-opacity="0.3"/></svg>');
            background-size: 120px;
            opacity: 0.2;
        }
        
        .cta-title-4 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
        .cta-subtitle-4 {
            font-size: 1.3rem;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
            z-index: 2;
            opacity: 0.95;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
        }
        
        .cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 18px 35px;
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            min-width: 220px;
            border: 2px solid transparent;
        }
        
        .whatsapp-button {
            background-color: #25D366;
            color: white;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .call-button {
            background-color: transparent;
            color: white;
            border-color: white;
        }
        
        .call-button:hover {
            background-color: white;
            color: var(--dark-green);
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }
        
        .button-icon {
            margin-right: 12px;
            font-size: 1.4rem;
        }
        
        .demo-note {
            background-color: rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 10px;
            max-width: 600px;
            margin: 40px auto 0;
            position: relative;
            z-index: 2;
        }
        
        .demo-note-4 i {
            color: var(--accent-yellow);
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .guarantee-badge-4 {
            display: inline-flex;
            align-items: center;
            background-color: rgba(255, 255, 255, 0.2);
            padding: 10px 20px;
            border-radius: 30px;
            margin-top: 30px;
            position: relative;
            z-index: 2;
        }
        
        .guarantee-badge-4 i {
            color: var(--accent-yellow);
            margin-right: 10px;
            font-size: 1.3rem;
        }
        
        @media (max-width: 768px) {
            .section-title-4 {
                font-size: 2.2rem;
            }
            
            .trust-grid-4 {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .final-cta-section-4 {
                padding: 40px 25px;
            }
            
            .cta-title-4 {
                font-size: 2rem;
            }
            
            .cta-subtitle-4 {
                font-size: 1.1rem;
            }
            
            .cta-buttons-4 {
                flex-direction: column;
                align-items: center;
            }
            
            .cta-button-4 {
                width: 100%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 480px) {
            .section-title-4 {
                font-size: 1.8rem;
            }
            
            .trust-card-4 {
                padding: 25px 20px;
            }
            
            .testimonial-section-4 {
                padding: 30px 20px;
            }
            
            .cta-title-4 {
                font-size: 1.7rem;
            }
        }
  