        /* Global Styles */
        :root {
            --primary: #2c5aa0;
            --secondary: #f5a623;
            --dark: #333;
            --light: #f9f9f9;
            --gray: #777;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark);
        }
        
        /* .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        } */
         .container{
    padding: 0px 0px 0px 0px;
}
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .btn:hover {
            background: #1d4377;
            transform: translateY(-2px);
        }
        
        .btn-secondary {
            background: var(--secondary);
        }
        
        .btn-secondary:hover {
            background: #e0951f;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            /* color: var(--primary); */
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        
        /* Hero Section */
        /* Hero Section with Carousel */
.hero {
    height: 100vh;
    position: relative;
    /* margin-top: 80px; */
}

.hero-carousel {
    height: 100%;
}

.hero-slide {
    /* background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)); */
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: white;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Owl Carousel Navigation Arrows */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.owl-prev, .owl-next {
    background: rgba(255,255,255,0.3) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    color: white !important;
    font-size: 2rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 20px !important;
    transition: all 0.3s ease;
}

.owl-prev:hover, .owl-next:hover {
    background: var(--primary) !important;
}

/* Owl Carousel Dots */
.owl-dots {
    position: absolute;
    bottom: -40px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5) !important;
}

.owl-dot.active {
    background: var(--secondary) !important;
}
        
.hero-content {
    max-width: 800px;
    margin: 0 auto;
}
        
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        /* Features Section */
        .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .feature-card {
        position: relative;
        height: 345px;
        perspective: 1000px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .feature-front,
    .feature-back {
        position: absolute;
        width: 100%;
        /* height: 100%; */
        backface-visibility: hidden;
        transition: transform 0.6s ease, opacity 0.4s ease;
        /* padding: 30px; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        background: white;
    }
    
    .feature-front {
        z-index: 2;
    }
    
    .feature-back {
        transform: rotateY(180deg);
        background: #2c5aa0;
        color: white;
    }
    
    .feature-card:hover .feature-front {
        transform: rotateY(180deg);
        opacity: 0;
    }
    
    .feature-card:hover .feature-back {
        transform: rotateY(0deg);
        opacity: 1;
    }
    
    .feature-icon {
            /* width: 80px; */
    /* height: 80px; */
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    }
    
    .feature-icon img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 5px;
    }
    
    h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: #2c5aa0;
    }
    
    .feature-back h4 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        color: #f5a623;
    }
    
    .tech-list {
        list-style: none;
        text-align: left;
        width: 100%;
        padding: 0 20px;
    }
    
    .tech-list li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 25px;
        font-size: 0.95rem;
    }
    
    .tech-list li:before {
        content: "▹";
        position: absolute;
        left: 0;
        color: #f5a623;
    }
    
    @media (max-width: 768px) {
        .feature-card {
            height: auto;
            min-height: 250px;
        }
        
        .feature-front,
        .feature-back {
            position: relative;
            height: auto;
            transform: none !important;
            opacity: 1 !important;
            padding: 20px;
        }
        
        .feature-back {
            display: none;
        }
        
        .feature-card:hover .feature-back,
        .feature-card:focus .feature-back {
            display: block;
        }
    }
        
        /* Courses Section */
        .courses-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .course-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .course-card:hover {
            transform: translateY(-10px);
        }
        
        .course-img {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .course-content {
            padding: 20px;
        }
        
        .course-content h3 {
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .course-meta {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Why Choose Us */
        .why-us {
            background: var(--light);
        }
        
        .why-us-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        
        .stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        
        .stat-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .benefits-list {
            list-style: none;
        }
        
        .benefits-list li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .benefits-list li:before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--secondary);
        }
        
        /* Testimonials */
        .testimonials-slider {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .testimonial {
            padding: 30px;
        }
        
        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            font-weight: 700;
        }
        
        .testimonial-role {
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        /* Events */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .event-card {
            display: grid;
            grid-template-columns: 80px 1fr;
            gap: 20px;
            align-items: center;
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .event-date {
            text-align: center;
        }
        
        .event-day {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary);
        }
        
        .event-month {
            color: var(--gray);
            text-transform: uppercase;
            font-size: 0.9rem;
        }
        
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .why-us-content {
                grid-template-columns: 1fr;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
        padding: 0;
        top: 80px;
        left: -100%;
        width: 100%;
        /* height: calc(100vh - 80px); */
        background: white;
        flex-direction: column;
        align-items: center;
        /* padding: 40px 0; */
        transition: left 0.3s ease;
            }
            
            .nav-links.active {
                left: 0;
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero-btns {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
            }
        }

.parent{
    display: flex;
    justify-content: space-between;
}
/* .mission{
    width: 200px;
    height: 200px;
} */









/* Mission & About Us Section Styles */
.mission-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5% 2%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-section,
.about-section,
.vision-section {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.mission-content,
.about-content,
.vision-content {
    flex: 1;
    padding: 19px;
    background: #f8f9fa;
    border-radius: 8px;
}

.mission-image,
.about-image,
.vision-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

.mission-image img,
.about-image img,
.vision-image img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mission-image:hover img,
.about-image:hover img,
.vision-image:hover img {
    transform: scale(1.03);
}

h2 {
    color: #2c5aa0;
    font-size: 2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

/* h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: #f5a623;
} */

p {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    font-family: sans-serif;
    font-size: 15px;
}
.about_img{
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-section,
    .about-section,
    .vision-section {
        flex-direction: column;
        gap: 30px;
    }
    
    .about-section {
        flex-direction: column;
    }
    
    .mission-content,
    .about-content,
    .vision-content,
    .mission-image,
    .about-image,
    .vision-image {
        width: 100%;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}



.partners-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
    position: relative;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f5a623;
} */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    align-content: center;
}

.partner-logo {
    transition: all 0.3s ease;
    text-align: center;
    padding: 5px;
}

.partner-logo img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-info {
    padding: 20px;
    text-align: center;
    background: #2c5aa0;
    color: white;
    transition: all 0.3s ease;
}

.partner-info h3 {
    margin: 0;
    font-size: 1.5rem;
}

.partner-info p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    color: #f5a623;
    font-weight: 600;
}

.partner-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 90, 160, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.partner-hover p {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.6;
}

.partner-link {
    display: inline-block;
    padding: 10px 25px;
    background: #f5a623;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background: white;
    color: #2c5aa0;
    transform: translateY(-3px);
}

/* Hover Effects */
.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.partner-card:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-card:hover .partner-hover {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .partner-card {
        height: 250px;
    }
    
    .partner-logo {
        height: 120px;
    }
}


/* partners */
/* Font Awesome for icons */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
    position: relative;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f5a623;
} */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-items: center;
    padding: 0px 130px;
}
.classes{
    padding: 40px;
}
.service-card {
    /* background: white;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1; */
    background: white;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    width: 157px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 157px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2c5aa0, #3a6bb8);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 1;
}


.service-icon {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    img{
        width: 100%;
        height: 170px;
        object-fit: cover;
    }
}

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.1) translateY(-5px);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    transition: all 0.4s ease;
}

.service-card:hover h3 {
    color: white;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.4s ease;
}

/* .service-card:hover p {
    color: rgba(255,255,255,0.9);
} */

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        max-width: 300px;
        margin: 0 auto;
    }
}




.partners-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.partners img{
    height: 130px;
    object-fit: cover;
    width: 80%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
    position: relative;
}

/* .section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #f5a623;
} */

.partner-item {
    background: white;
    border-radius: 8px;
    /* padding: 30px; */
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-item img {
    width: 100%;
    object-fit: contain;
    /* filter: grayscale(100%); */
    opacity: 0.8;
    transition: all 0.3s ease;
}

.partner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(44, 90, 160, 0.9); */
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 20px;
}

.partner-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.partner-overlay p {
    font-size: 0.9rem;
    text-align: center;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* .partner-item:hover .partner-overlay {
    opacity: 1;
} */

/* Owl Carousel Navigation */
/* .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
} */

.owl-prev, .owl-next {
    background: rgba(255,255,255,0.8) !important;
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    color: #2c5aa0 !important;
    font-size: 1.5rem !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 0 10px !important;
    transition: all 0.3s ease;
    pointer-events: all;
}

.owl-prev:hover, .owl-next:hover {
    background: #2c5aa0 !important;
    color: white !important;
}

/* Owl Carousel Dots */
.owl-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.owl-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc !important;
}



.view-all-container {
    text-align: center;
    margin-top: 50px;
    padding: 0 20px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #2c5aa0, #3a6bb8);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.view-all-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5a623, #f8b84e);
    transition: all 0.4s ease;
    z-index: -1;
}

.view-all-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
}

.view-all-btn:hover::before {
    left: 0;
}
.class{
    height: 180px;
    border-radius: 50%;
    width: 180px;
    object-fit: cover;
}

.arrow-icon {
    width: 20px;
    height: 20px;
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover .arrow-icon {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .view-all-btn {
        padding: 10px 25px;
        font-size: 1rem;
    }
}

/* .owl-dot.active {
    background: #2c5aa0 !important;
} */

/* teachers */
.teachers-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 50px;
    position: relative;
}

/* Teachers Grid */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.teacher-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Teacher Image */
.teacher-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.teacher-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.teacher-card:hover .teacher-image img {
    transform: scale(1.05);
}

.teacher-badge {
    position: absolute;
    bottom: 8px;
    right: 7px;
    background: #f5a623;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Teacher Info */
.teacher-info {
    /* padding: 12px 0px 7px; */
    padding: 12px;
}

.teacher-name {
       font-size: 1.3rem;
    color: #2c5aa0;
    text-align: center;
}

.teacher-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
}

.detail-label {
    font-weight: 600;
    color: #555;
    font-size: 0.8rem;
}

.detail-value {
    color: #333;
    font-size: 0.85rem;
    text-align: right;
    max-width: 60%;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .teachers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .teachers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .teachers-grid {
        grid-template-columns: 1fr;
    }
    
    
}


.owl-stage{
    display: flex;
    align-items: center;
}

.features{
    padding-bottom: 4%;
}











 .section {
      padding: 4% 13%;
      text-align: center;
    }

    .section-title {
      /* font-size: 28px; */
      font-weight: bold;
      margin-bottom: 40px;
      color: #222;
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      max-width: 1200px;
      margin: auto;
    }

    .category-card {
      border: 1px solid #ddd;
      padding: 20px;
      border-radius: 8px;
      background: #fafafa;
      transition: transform 0.2s;
      opacity: 0.8;
    }

    .category-card:hover {
      opacity: 1;
      transition: transform 0.2s;
      transform: translateY(-5px);
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .category-icon{
      img{
          height: 80px;
        width: 100px;
        margin-bottom: 10px;
        object-fit: cover;
        border-radius: 6px;
      }
    }

    .category-title {
      font-size: 16px;
      font-weight: 600;
      color: #333;
    }

    /* @media (max-width: 768px) {
      .section-title {
        font-size: 22px;
      }
    } */


.learn{
    margin-bottom: 50px;
}


      














.stats-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 60px 0;
            font-family: 'Montserrat', sans-serif;
        }
        
        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-around;
        }
        
        .stat-item {
            flex: 1;
            min-width: 200px;
            margin: 20px;
            padding: 30px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            border-top: 4px solid #3603c8;
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .stat-icon {
            font-size: 2.5rem;
            color: #3498db;
            margin-bottom: 15px;
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #2c3e50;
            margin: 10px 0;
        }
        
        .stat-title {
            font-size: 1.1rem;
            color: #7f8c8d;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .stat-suffix {
            color: #e74c3c;
            font-size: 1.5rem;
            margin-left: 3px;
        }
        
        @media (max-width: 768px) {
            .logo-main {
                font-size: 2rem;
            }
            
            .stat-item {
                min-width: 150px;
                padding: 20px 15px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
        }