        /* ========== CSS VARIABLES ========== */
        :root {
            --primary-color: #2d57d9;
            --primary-hover: #1e3a8a;
            --secondary-color: #f59e0b;
            --text-color: #333;
            --text-light: #777;
            --white: #fff;
            --light-bg: #f8f9fa;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
            --transition: all 0.3s ease;
            --navbar-height: 70px;
        }

        /* ========== BASE STYLES ========== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto''Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            overflow-x: hidden;
        }

          .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

         .section {
            padding: 80px 0;
        }


        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--text-color);
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }





        .btn-welcome {
            display: inline-block;
            padding: 14px 32px;
            background: var(--primary-color);
            color: var(--white);
            text-decoration: none;
            border-radius: 6px;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--primary-color);
        }

        .btn-welcome:hover {
            background: var(--primary-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: var(--white);
        }








        /* ========== NAVIGATION CONTAINER ========== */
        .nav-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: var(--navbar-height);
            background: var(--white);
            box-shadow: var(--shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 5%;
            z-index: 1000;
        }

        /* ========== LOGO STYLES ========== */
        .nav-logo a {
            display: flex;
            align-items: center;
            text-decoration: none;
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-logo img {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        /* ========== MOBILE MENU TOGGLE ========== */
        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            color: var(--text-color);
            cursor: pointer;
            transition: var(--transition);
            z-index: 1001;
        }

        .menu-toggle:hover {
            color: var(--primary-color);
        }

        /* ========== NAVIGATION LINKS ========== */
        .nav-links-container {
            display: flex;
            align-items: center;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.5rem;
        }

        .nav-link-item {
            position: relative;
        }

        .nav-link-item > a {
            display: flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.8rem 1.2rem;
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            border-radius: 4px;
        }

        .nav-link-item > a:hover {
            color: var(--primary-color);
            background-color: rgba(45, 87, 217, 0.05);
        }

        /* ========== CHEVRON ANIMATION ========== */
        .fa-chevron-down {
            font-size: 0.75rem;
            transition: transform 0.3s ease;
        }

        .nav-link-item:hover .fa-chevron-down {
            transform: rotate(180deg);
        }

        /* ========== DROPDOWN MENU ========== */
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            min-width: 200px;
            background: var(--white);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
            border-radius: 8px;
            overflow: hidden;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            margin-top: 0.5rem;
        }

        .nav-link-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu-item {
            list-style: none;
        }

        .dropdown-menu-item a {
            display: block;
            padding: 0.9rem 1.2rem;
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.9rem;
            transition: var(--transition);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .dropdown-menu-item:last-child a {
            border-bottom: none;
        }

        .dropdown-menu-item a:hover {
            color: var(--primary-color);
            background-color: rgba(45, 87, 217, 0.08);
            padding-left: 1.5rem;
        }

        /* ====== MENU ICON VISIBILITY & TRANSITIONS ====== */

            /* Hide both icons by default (desktop) */
            .menu-toggle,
            .close-menu {
                display: none;
            }

         /* ========== OVERLAY FOR MOBILE MENU ========== */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .overlay.active {
            display: block;
            opacity: 1;
        } 
        
        
       
/*Home =====Hero Section======*/


#home{
    background-image: linear-gradient(rgba(9, 5, 54, 0.5), rgba(102, 102, 152, 0.7)), url(./Images/hero\ img.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    text-shadow: black;
}



#home h2{
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    
}

#home p{
    width: 100%;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
}



#home .btn{
    margin-top: 30px;
}


#home a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#home a.blue{
    color: white;
    background: #2d57d9;
    transition: 2s ease;
}

#home a.blue:hover{
    background: #ffffff;
    color: #2d57d9;
  
}

#home a.yellow{
    color: #2d57d9;
    background: white;
    transition: 2s ease;

}

#home a.yellow:hover{
    background: #2d57d9;
    color: white;
  
}

/* ========== WELCOME SECTION ========== */
        .welcome {
            background: var(--white);
        }

        .welcome-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .welcome-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: var(--text-color);
        }

        .welcome-content p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }

        .welcome-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .welcome-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            transition: var(--transition);
        }

        .welcome-image:hover img {
            transform: scale(1.05);
        }


           /* ========== FEATURES SECTION ========== */
        .features {
            background: var(--light-bg);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 35px;
            margin-top: 50px;
        }

        .feature-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), var(--primary-hover));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 25px;
        }

        .feature-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.7;
        }


        
        /* ========== PROGRAMS SECTION ========== */
        .programs {
            background: var(--white);
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .program-card {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .program-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .program-image {
            height: 220px;
            overflow: hidden;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .program-card:hover .program-image img {
            transform: scale(1.1);
        }

        .program-content {
            padding: 30px;
        }

        .program-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .program-content p {
            color: var(--text-light);
            margin-bottom: 20px;
        }

        .program-content .btn {
            font-size: 0.95rem;
            padding: 10px 25px;
        }

         /* ========== TESTIMONIALS SECTION ========== */
        .testimonials {
            background: var(--light-bg);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--white);
            padding: 35px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .quote-icon {
            font-size: 3rem;
            color: var(--primary-color);
            opacity: 0.2;
            position: absolute;
            top: 20px;
            left: 30px;
        }

        .testimonial-text {
            color: var(--text-light);
            font-style: italic;
            margin-bottom: 25px;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .author-image {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
        }

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

        .author-info h4 {
            color: var(--text-color);
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .author-info p {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* ========== CTA SECTION ========== */
        .cta {
            background: linear-gradient(135deg, rgba(245, 158, 11, 0.95), rgba(217, 119, 6, 0.95)),
                        url('https://images.unsplash.com/photo-1427504494785-3a9ca7044f45?w=1600') center/cover;
            color: var(--white);
            text-align: center;
            padding: 80px 0;
        }

        .cta h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta p {
            font-size: 1.2rem;
            margin-bottom: 35px;
            opacity: 0.95;
        }

        /* ========== FOOTER ========== */
        .footer {
            background: #1a202c;
            color: var(--white);
            padding: 60px 0 20px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--white);
        }

        .footer-section p,
        .footer-section a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .footer-section a:hover {
            color: var(--white);
            padding-left: 5px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 50px;
            width: auto;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }


        
/* Floating Button
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-btn {
  background: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Popup Window 
.whatsapp-popup {
  display: none;
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  overflow: hidden;
}

.popup-header {
  background: #25d366;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup-body {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.popup-body textarea {
  resize: none;
  height: 60px;
  padding: 5px;
  margin-bottom: 10px;
}

.popup-body button {
  background: #25d366;
  border: none;
  color: white;
  padding: 8px;
  border-radius: 5px;
  cursor: pointer;
}
*/







/* About Page Styles*/
#homeOurStory{
    background-image: linear-gradient(rgba(9, 5, 54, 0.5), rgba(5, 4, 46, 0.7)), url(./Images/aboutushero.JPG);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    color: white;
    font-size: 25px;
    text-shadow: black;
}




/* About Section Styles */


#about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
    padding: 5rem;
}

#about-container .about-img,
#about-container .about-text {
    width: 50%;
}

#about-container .about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

#about-container .about-text h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

#about-container .about-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
}






/* Blog Page Styles */
#blog-home {
    background-image: linear-gradient(rgba(9, 5, 54, 0.5), rgba(5, 4, 46, 0.7)), url(./Images/vintage\ school.jpg);
    height: 60vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    font-size: xx-large;
    margin-top: 72px;
    columns: var(--white);
}

#blog-home h2 {
    color: #fff;
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}


/*Blog*/

#blog-container{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vw;
}

#about-container .blogs{
    width: 60%;
}

#about-container .blogs img{
    width: 100%;
    border-radius: 19px;
}

#about-container .blogs .post{
    padding-bottom: 60px;
}

img:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}


#blog-container .blogs .post h3{
    color: #29303b;
    padding: 15px 0 10px 0;
}

#about-container .cate{
    width: 30%;
}


/*above Checked Up---- */

#blog-container .blogs .blogpost{
            width: 60%;
            margin: 0 auto;


}

/*REFERENCE*/

/* Blog styles */
#blog-container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 8vw;
    gap: 30px;
}

#blog-container .blogs {
    flex: 2;
}

#blog-container .blogs img {
    width: 100%;
    border-radius: 19px;
    margin-bottom: 20px;
}

#blog-container .blogs .post {
    padding-bottom: 60px;
}

#blog-container .blogs .post h3 {
    color: rgb(29, 29, 29);
    padding: 15px 0;
    font-size: 1.5rem;
}

#blog-container .blogs .post p {
    color: rgb(70, 70, 70);
    padding-bottom: 20px;
    line-height: 24px;
}

#blog-container .blogs .post a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

#blog-container .blogs .post a:hover {
    background: #fdc93b;
    color: #2d57d9;
    transition: 0.3s ease;
}

/* Categories sidebar */
#blog-container .cate {
    flex: 1;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

#blog-container .cate h2 {
    padding-bottom: 15px;
    color: rgb(29, 29, 29);
}

#blog-container .cate a {
    text-decoration: none;
    color: rgb(70, 70, 70);
    font-weight: 500;
    display: block;
    padding: 15px 0;
    transition: 0.3s ease;
}

#blog-container .cate a:hover {
    color: #2d57d9;
    padding-left: 0.5rem;
}

#blog-container .cate hr {
    border: none;
    height: 1px;
    background: rgb(212, 212, 212);
}



/*POST PAGE-BLOG */
/* Post page specific styles */
#blog-container .blogs .post {
    padding: 0 0 60px 0;
    margin-bottom: 40px;
}

#blog-container .blogs .post img {
    width: 50%;
    max-height: 750px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

#blog-container .blogs .post h3 {
    color: rgb(29, 29, 29);
    padding: 15px 0;
    font-size: 1.5rem;
}

#blog-container .blogs .post p {
    color: rgb(70, 70, 70);
    padding-bottom: 20px;
    line-height: 1.7;
}

#blog-container .blogs .post a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background: rgb(21, 21, 100);
    color: #fff;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

#blog-container .blogs .post a:hover {
    background: #fdc93b;
    color: rgb(21, 21, 100);
}




#theHub .learn-container{
    display: flex;
    align-items: flex-start;
    gap:40px;
    margin: 30px 0;
    width: 100%;
    height: 50%;
    
}

#theHub .learn{
    width: 60%;
}


#theHub .learn-container h5{
text-align: center;
 /* border: 1px solid blue;  For visualization */
  padding: 10px;
  font-size: 35px;

}
    

#theHub .learn-container h6{
    text-align: center;
    font-size: 25px;
    color: #569ae3;
    font-weight: lighter;
    padding-bottom: 10px;

}

#theHub .learn-container .learn hr{
       border: none;
        height: 1px;
        background-image: linear-gradient(to right, rgba(15, 114, 181, 0), rgba(61, 7, 223, 0.75), rgba(149, 101, 252, 0));  
}

#theHub .learn-container .learn p{
    padding: 40px 5px 5px 40px;
    width: 70%;
}

#theHub .learn-container .learn-img{
    width: 35%;
}

#theHub .learn-container .learn-img img{
    width: 90%;
    align-items: center;
}


/* Contact */

#contact{
    padding: 8vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

#contact .getin{
    width: 350px;
}

#contact .getin h2{
    color: black;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 16px;
}

#contact .getin p{
    color: #29303b;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgb(105, 161, 224);
}

#contact .getin h3{
    color: #33425a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

#contact .getin .gettin-details div{
    display: flex;
}

#contact .getin .gettin-details div .get{
    font-size: 16px;
    color: #600dd4;
    margin-right: 20px;
}

#contact .getin .gettin-details div p{
    font-size: 14px;
    margin-bottom: 15px;
}

#contact .getin .gettin-details .pro-links i{
    margin-right: 8px;

}

#contact .form{
    width: 60%;
    background: rgb(245, 246, 246);
    padding: 40px;
    border-radius: 10px;
}


#contact .form h4{
    font-size: 24px;
    color: #33425a;
    margin-bottom: 8px;
}

#contact .form p{
    color: #29303b;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgb(105, 161, 224);
}

#contact .form .form-row{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#contact .form .form-row input{
    width: 48%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border: none;
    background:#ffffff;
    color: #908b8b;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}

#contact .form .form-col input,
#contact .form .form-col textarea{
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border: none;
    background:#ffffff;
    color: #908b8b;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}


#contact .form button{
    font-size: .9rem;
    padding: 13px 25px;
    background: rgb(21, 21, 100);
    border-radius: 5px;
    outline: none;
    border: none;
    font-weight: 600;
    cursor: pointer;
    color: white;
}





#map{
    width: 100%;
    height: 70vh;
    margin-bottom: 8vw;
}

#map iframe{
    width: 100%;
    height: 100%;

}



/* Start Button Section (CSS) */
.btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.school-btn {
    flex: 1;
    min-width: 200px;
    padding: 12px 24px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    border: 1px solid rgba(45, 87, 217, 0.2);
    border-radius: 8px;
    color: #2d57d9;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(45, 87, 217, 0.1);
}

.school-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(145deg, #2d57d9, #2448b8);
    color: white;
    box-shadow: 0 4px 12px rgba(45, 87, 217, 0.2);
    border-color: transparent;
}

.school-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(45, 87, 217, 0.1);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .btn-group {
        flex-direction: column;
        gap: 12px;
    }

    .school-btn {
        width: 100%;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}
/* End Button Section (CSS) */


/*facilities*/
/*IMPORTANT DOCUMENTS*/

#homeFacilities{
    background-image: linear-gradient(rgba(9, 5, 54, 0.5), rgba(5, 4, 46, 0.7)), url(./Images/hall.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    color: white;
    font-size: 25px;
    text-shadow: black;
}

#homeFacilities h2{
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    
}

#homeFacilities p{
    width: 100%;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
}



#homeFacilities .btn{
    margin-top: 30px;
}


#homeFacilities a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#homeFacilities a.blue{
    color: white;
    background: #2d57d9;
    transition: 2s ease;
}

#homeFacilities a.blue:hover{
    background: #ffffff;
    color: #2d57d9;
  
}

#homeFacilities a.yellow{
    color: #2d57d9;
    background: white;
    transition: 2s ease;

}

#homeFacilities a.yellow:hover{
    background: #2d57d9;
    color: white;
  
}

/* application page hero section*/
#homeApp{
    background-image: linear-gradient(rgba(9, 5, 54, 0.5), rgba(5, 4, 46, 0.7)), url(./Images/onlineapplicationimagebackground.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    color: white;
    font-size: 25px;
    text-shadow: black;
}

#homeApp h2{
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    
}

#homeApp p{
    width: 100%;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
}



#homeApp .btn{
    margin-top: 30px;
}


#homeApp a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#homeApp a.blue{
    color: white;
    background: #2d57d9;
    transition: 2s ease;
}

#homeApp a.blue:hover{
    background: #ffffff;
    color: #2d57d9;
  
}

#homeApp a.yellow{
    color: #2d57d9;
    background: white;
    transition: 2s ease;

}

#homeApp a.yellow:hover{
    background: #2d57d9;
    color: white;
  
}


/* Komarock home hero section*/

#homeKomarock{
    background-image:  url(./Images/creativeart.JPG);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    color: white;
    font-size: 25px;
    text-shadow: black;
}

#homeKomarock h2{
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    
}

#homeKomarock p{
    width: 100%;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
}



#homeKomarock .btn{
    margin-top: 30px;
}


#homeKomarock a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#homeKomarock a.blue{
    color: white;
    background: #2d57d9;
    transition: 2s ease;
}

#homeKomarock a.blue:hover{
    background: #ffffff;
    color: #2d57d9;
  
}

#homeKomarock a.yellow{
    color: #2d57d9;
    background: white;
    transition: 2s ease;

}

#homeKomarock a.yellow:hover{
    background: #2d57d9;
    color: white;
  
}


/* lwd Premier home hero section*/

#homeKomarock1{
    background-image:  url(./Images/lwdpremier.JPG);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    color: white;
    font-size: 25px;
    text-shadow: black;
}

#homeKomarock1 h2{
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    
}

#homeKomarock1 p{
    width: 100%;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
}



#homeKomarock1 .btn{
    margin-top: 30px;
}


#homeKomarock1 a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#homeKomarock1 a.blue{
    color: white;
    background: #2d57d9;
    transition: 2s ease;
}

#homeKomarock1 a.blue:hover{
    background: #ffffff;
    color: #2d57d9;
  
}

#homeKomarock1 a.yellow{
    color: #2d57d9;
    background: white;
    transition: 2s ease;

}

#homeKomarock1 a.yellow:hover{
    background: #2d57d9;
    color: white;
  
}


/*EMERALD*/

#homeKomarock2{
    background-image: url(./Images/Emerald.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    color: white;
    font-size: 25px;
    text-shadow: black;
}

#homeKomarock2 h2{
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    
}

#homeKomarock2 p{
    width: 100%;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
}



#homeKomarock2 .btn{
    margin-top: 30px;
}


#homeKomarock2 a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#homeKomarock2 a.blue{
    color: white;
    background: #2d57d9;
    transition: 2s ease;
}

#homeKomarock2 a.blue:hover{
    background: #ffffff;
    color: #2d57d9;
  
}

#homeKomarock2 a.yellow{
    color: #2d57d9;
    background: white;
    transition: 2s ease;

}

#homeKomarock2 a.yellow:hover{
    background: #2d57d9;
    color: white;
  
}


#homeKomarock3{
    background-image: url(./Images/bmxriders2.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    color: white;
    font-size: 25px;
    text-shadow: black;
}

#homeKomarock3 h2{
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    
}

#homeKomarock3 p{
    width: 100%;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
}



#homeKomarock3 .btn{
    margin-top: 30px;
}


#homeKomarock3 a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#homeKomarock3 a.blue{
    color: white;
    background: #2d57d9;
    transition: 2s ease;
}

#homeKomarock3 a.blue:hover{
    background: #ffffff;
    color: #2d57d9;
  
}

#homeKomarock3 a.yellow{
    color: #2d57d9;
    background: white;
    transition: 2s ease;

}

#homeKomarock3 a.yellow:hover{
    background: #2d57d9;
    color: white;
  
}

/*Senior Girls */

#homeKomarock4{
    background-image: url(./Images/senior\ girlsuilding.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    color: white;
    font-size: 25px;
    text-shadow: black;
}

#homeKomarock4 h2{
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    
}

#homeKomarock4 p{
    width: 100%;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
}



#homeKomarock4 .btn{
    margin-top: 30px;
}


#homeKomarock4 a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#homeKomarock4 a.blue{
    color: white;
    background: #2d57d9;
    transition: 2s ease;
}

#homeKomarock4 a.blue:hover{
    background: #ffffff;
    color: #2d57d9;
  
}

#homeKomarock4 a.yellow{
    color: #2d57d9;
    background: white;
    transition: 2s ease;

}

#homeKomarock4 a.yellow:hover{
    background: #2d57d9;
    color: white;
  
}


/* vantage*/

#homeKomarock5{
    background-image: url(./Images/vantagebuilding.jpg);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top:40px ;
    margin-top: 72px;
    color: white;
    font-size: 25px;
    text-shadow: black;
}

#homeKomarock5 h2{
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    
}

#homeKomarock5 p{
    width: 100%;
    color: #ddd;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
}



#homeKomarock5 .btn{
    margin-top: 30px;
}


#homeKomarock5 a{
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
}

#homeKomarock5 a.blue{
    color: white;
    background: #2d57d9;
    transition: 2s ease;
}

#homeKomarock5 a.blue:hover{
    background: #ffffff;
    color: #2d57d9;
  
}

#homeKomarock5 a.yellow{
    color: #2d57d9;
    background: white;
    transition: 2s ease;

}

#homeKomarock5 a.yellow:hover{
    background: #2d57d9;
    color: white;
  
}
























#documents .all-doc{
    
   text-align: center;
   margin-top: 50px;
   margin-bottom: 50px;
   justify-content: space-between;
}

#documents .all-doc .doc-text{
    margin-bottom: 40px;
}


/* Button styling */
.doc-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
    padding: 20px 0;
}

.doc-btns a {
    text-decoration: none;
    font-size: 1.8rem;
    padding: 13px 35px;
    font-weight: 600;
    border-radius: 56px;
    transition: 0.3s ease;
    min-width: 150px; /* Added minimum width */
    text-align: center;
}

/* Blue button variant */
.doc-btns a.feestr {
    color: #fff;
    background: rgb(21, 21, 100);
}

.doc-btns a.feestr:hover {
    color: rgb(21, 21, 100);
    background: #6fd1fa;
}





 .accordion {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    
    
    background-color: #f9fbff;

  }

  .accordion-item {
    border-bottom: 1px solid #d1d9e6;
  }

  .accordion-header {
    background-color: #ffffff;
    color: #0a2a52;
    cursor: pointer;
    padding: 18px 20px;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    
    transition: background-color 0.3s ease;
  }

  .accordion-header:hover {
    background-color: #f3f8ff;
  }

  .accordion-header.active {
    color: #0056d2;
    border-bottom: 2px solid #0056d2;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    background-color: #fafcff;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 20px;
  }

  .accordion-content ul {
    margin: 15px 0;
    line-height: 1.6;
  }

  .accordion-content.open {
    padding: 15px 20px;
  }

  .icon {
    font-size: 1.5rem;
    color: #0056d2;
    transition: transform 0.3s ease;
  }

  .icon.rotate {
    transform: rotate(180deg);
  }








































































/* Animation classes */
.animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-left {
    animation-name: slideLeft;
}

.slide-right {
    animation-name: slideRight;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideLeft {
    from {
        transform: translateX(-100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}



/* Animation Classes */
.animate {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.fade-in {
    animation-name: fadeIn;
}

.slide-left {
    animation-name: slideLeft;
}

.slide-right {
    animation-name: slideRight;
}

.slide-up {
    animation-name: slideUp;
}

.scale-up {
    animation-name: scaleUp;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes scaleUp {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}





        























































































































































































/* ========== HERO BACKGROUND SLIDER ========== */

/* INDEX.HTML */

/* ========== HOME PAGE HERO SLIDER ========== */

.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    margin-top: 72px;
}

.slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-background:nth-child(1) {
    background-image: url('./Images/home-slide-1.jpg');
}

.slide-background:nth-child(2) {
    background-image:  url('./Images/impact\ swimming\ image.jpg');
}

.slide-background:nth-child(3) {
    background-image: url('./Images/kidsdoingnumbers2.webp');
}

.slide-background:nth-child(4) {
    background-image: url('./Images/SANDPITKIDS.webp');
}

.slide-background:nth-child(5) {
    background-image: url('./Images/salsa\ kinder.jpg');
}


.slide-background.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h2 {
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    width: 100%;
    color: #000000;
    font-size: 0.9rem;
    letter-spacing: 1px;
    line-height: 25px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-content .btn {
    margin-top: 30px;
}

.hero-content a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.hero-content a.blue {
    color: white;
    background: #2d57d9;
}

.hero-content a.blue:hover {
    background: #ffffff;
    color: #2d57d9;
}

.hero-content a.yellow {
    color: #2d57d9;
    background: white;
}

.hero-content a.yellow:hover {
    background: #2d57d9;
    color: white;
}

.hero-slider .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow);
}

.hero-slider .slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.hero-slider .prev-btn {
    left: 30px;
}

.hero-slider .next-btn {
    right: 30px;
}

.hero-slider .slider-btn i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.hero-slider .slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-slider .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-slider .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: white;
}

.hero-slider .indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .hero-slider {
        height: 80vh;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-slider .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-slider .slider-btn i {
        font-size: 1.1rem;
    }
    
    .hero-slider .prev-btn {
        left: 15px;
    }
    
    .hero-slider .next-btn {
        right: 15px;
    }
    
    .hero-slider .indicator {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 480px) {
    .hero-slider {
        height: 70vh;
        padding-top: 20px;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.8rem;
    }
    
    .hero-slider .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .hero-slider .prev-btn {
        left: 10px;
    }
    
    .hero-slider .next-btn {
        right: 10px;
    }
    
    .hero-slider .slide-indicators {
        bottom: 20px;
    }
    
    .hero-slider .indicator {
        width: 8px;
        height: 8px;
    }
}







/* ========== ABOUT US PAGE HERO SLIDER ========== */

#homeOurStory.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    margin-top: 72px;
}

#homeOurStory .slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#homeOurStory .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#homeOurStory .slide-background:nth-child(1) {
    background-image:  url('./Images/about-us-slide-1.jpg');
}

#homeOurStory .slide-background:nth-child(2) {
    background-image:  url('./Images/adultpool.jpg');
}

#homeOurStory .slide-background:nth-child(3) {
    background-image:  url('./Images/transport5.jpg');
}

#homeOurStory .slide-background:nth-child(4) {
    background-image:  url('./Images/PE4.webp');
}

#homeOurStory .slide-background:nth-child(5) {
    background-image: url('./Images/lablesson1.jpg');
}

#homeOurStory .slide-background.active {
    opacity: 1;
}

#homeOurStory .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

#homeOurStory .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

#homeOurStory .hero-content h2 {
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#homeOurStory .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow);
}

#homeOurStory .slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#homeOurStory .prev-btn {
    left: 30px;
}

#homeOurStory .next-btn {
    right: 30px;
}

#homeOurStory .slider-btn i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

#homeOurStory .slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

#homeOurStory .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#homeOurStory .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: white;
}

#homeOurStory .indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    #homeOurStory.hero-slider {
        height: 80vh;
    }
    
    #homeOurStory .hero-content h2 {
        font-size: 2rem;
    }
    
    #homeOurStory .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    #homeOurStory .slider-btn i {
        font-size: 1.1rem;
    }
    
    #homeOurStory .prev-btn {
        left: 15px;
    }
    
    #homeOurStory .next-btn {
        right: 15px;
    }
    
    #homeOurStory .indicator {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 480px) {
    #homeOurStory.hero-slider {
        height: 70vh;
        padding-top: 20px;
    }
    
    #homeOurStory .hero-content h2 {
        font-size: 1.8rem;
    }
    
    #homeOurStory .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    #homeOurStory .prev-btn {
        left: 10px;
    }
    
    #homeOurStory .next-btn {
        right: 10px;
    }
    
    #homeOurStory .slide-indicators {
        bottom: 20px;
    }
    
    #homeOurStory .indicator {
        width: 8px;
        height: 8px;
    }
}






/* ========== FACILITIES PAGE HERO SLIDER ========== */

#homeFacilities.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    margin-top: 72px;
}

#homeFacilities .slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#homeFacilities .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#homeFacilities .slide-background:nth-child(1) {
    background-image:  url('./Images/athletics.jpg');
}

#homeFacilities .slide-background:nth-child(2) {
    background-image: url('./Images/sciencelab.jpg');
}

#homeFacilities .slide-background:nth-child(3) {
    background-image:  url('./Images/bmxriders2.jpg');
}

#homeFacilities .slide-background:nth-child(4) {
    background-image:  url('./Images/desk3.jpg');
}

#homeFacilities .slide-background:nth-child(5) {
    background-image:  url('./Images/football.jpg');
}

#homeFacilities .slide-background.active {
    opacity: 1;
}

#homeFacilities .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

#homeFacilities .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

#homeFacilities .hero-content h2 {
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#homeFacilities .hero-content .btn {
    margin-top: 30px;
}

#homeFacilities .hero-content a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#homeFacilities .hero-content a.blue {
    color: white;
    background: #2d57d9;
}

#homeFacilities .hero-content a.blue:hover {
    background: #ffffff;
    color: #2d57d9;
}

#homeFacilities .hero-content a.yellow {
    color: #2d57d9;
    background: white;
}

#homeFacilities .hero-content a.yellow:hover {
    background: #2d57d9;
    color: white;
}

#homeFacilities .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow);
}

#homeFacilities .slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#homeFacilities .prev-btn {
    left: 30px;
}

#homeFacilities .next-btn {
    right: 30px;
}

#homeFacilities .slider-btn i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

#homeFacilities .slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

#homeFacilities .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#homeFacilities .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: white;
}

#homeFacilities .indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    #homeFacilities.hero-slider {
        height: 80vh;
    }
    
    #homeFacilities .hero-content h2 {
        font-size: 2rem;
    }
    
    #homeFacilities .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    #homeFacilities .slider-btn i {
        font-size: 1.1rem;
    }
    
    #homeFacilities .prev-btn {
        left: 15px;
    }
    
    #homeFacilities .next-btn {
        right: 15px;
    }
    
    #homeFacilities .indicator {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 480px) {
    #homeFacilities.hero-slider {
        height: 70vh;
        padding-top: 20px;
    }
    
    #homeFacilities .hero-content h2 {
        font-size: 1.8rem;
    }
    
    #homeFacilities .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    #homeFacilities .prev-btn {
        left: 10px;
    }
    
    #homeFacilities .next-btn {
        right: 10px;
    }
    
    #homeFacilities .slide-indicators {
        bottom: 20px;
    }
    
    #homeFacilities .indicator {
        width: 8px;
        height: 8px;
    }
}




/* ========== APPLICATION PAGE HERO SLIDER ========== */

#homeApp.hero-slider {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    margin-top: 72px;
}

#homeApp .slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#homeApp .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#homeApp .slide-background:nth-child(1) {
    background-image:  url('./Images/application-slide-1.jpg');
}

#homeApp .slide-background:nth-child(2) {
    background-image:  url('./Images/kindergartenclass.jpg');
}

#homeApp .slide-background:nth-child(3) {
    background-image:  url('./Images/COMPKIDSLESSON.JPG');
}

#homeApp .slide-background:nth-child(4) {
    background-image:  url('./Images/Graduation.jpg');
}

#homeApp .slide-background:nth-child(5) {
    background-image:  url('./Images/photography.jpg');
}

#homeApp .slide-background.active {
    opacity: 1;
}

#homeApp .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

#homeApp .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

#homeApp .hero-content h2 {
    color: #fff;
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#homeApp .hero-content .btn {
    margin-top: 30px;
}

#homeApp .hero-content a {
    text-decoration: none;
    font-size: 0.9rem;
    padding: 13px 35px;
    background-color: #fff;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#homeApp .hero-content a.blue {
    color: white;
    background: #2d57d9;
}

#homeApp .hero-content a.blue:hover {
    background: #ffffff;
    color: #2d57d9;
}

#homeApp .hero-content a.yellow {
    color: #2d57d9;
    background: white;
}

#homeApp .hero-content a.yellow:hover {
    background: #2d57d9;
    color: white;
}

#homeApp .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow);
}

#homeApp .slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#homeApp .prev-btn {
    left: 30px;
}

#homeApp .next-btn {
    right: 30px;
}

#homeApp .slider-btn i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

#homeApp .slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

#homeApp .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#homeApp .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: white;
}

#homeApp .indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    #homeApp.hero-slider {
        height: 80vh;
    }
    
    #homeApp .hero-content h2 {
        font-size: 2rem;
    }
    
    #homeApp .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    #homeApp .slider-btn i {
        font-size: 1.1rem;
    }
    
    #homeApp .prev-btn {
        left: 15px;
    }
    
    #homeApp .next-btn {
        right: 15px;
    }
    
    #homeApp .indicator {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 480px) {
    #homeApp.hero-slider {
        height: 70vh;
        padding-top: 20px;
    }
    
    #homeApp .hero-content h2 {
        font-size: 1.8rem;
    }
    
    #homeApp .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    #homeApp .prev-btn {
        left: 10px;
    }
    
    #homeApp .next-btn {
        right: 10px;
    }
    
    #homeApp .slide-indicators {
        bottom: 20px;
    }
    
    #homeApp .indicator {
        width: 8px;
        height: 8px;
    }
}




















/* ========== BLOG PAGE HERO SLIDER ========== */

#blog-home.hero-slider {
    position: relative;
    height: 60vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 40px;
    margin-top: 72px;
}

#blog-home .slider-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#blog-home .slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#blog-home .slide-background:nth-child(1) {
    background-image:  url('./Images/about\ us\ premier\ pic.webp');
}

#blog-home .slide-background:nth-child(2) {
    background-image:  url('./Images/nurseblog.png');
}

#blog-home .slide-background:nth-child(3) {
    background-image: url('./Images/littlekidsinclass2.JPG');
}

#blog-home .slide-background:nth-child(4) {
    background-image:  url('./Images/extracurriculumBouncing.jpg');
}

#blog-home .slide-background:nth-child(5) {
    background-image:  url('./Images/KaribuTena.jpg');
}

#blog-home .slide-background.active {
    opacity: 1;
}

#blog-home .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

#blog-home .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

#blog-home .hero-content h2 {
    color: #fff;
    font-size: 3rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

#blog-home .slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow);
}

#blog-home .slider-btn:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

#blog-home .prev-btn {
    left: 30px;
}

#blog-home .next-btn {
    right: 30px;
}

#blog-home .slider-btn i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

#blog-home .slide-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

#blog-home .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#blog-home .indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
    border-color: white;
}

#blog-home .indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    #blog-home.hero-slider {
        height: 50vh;
    }
    
    #blog-home .hero-content h2 {
        font-size: 2.5rem;
    }
    
    #blog-home .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    #blog-home .slider-btn i {
        font-size: 1.1rem;
    }
    
    #blog-home .prev-btn {
        left: 15px;
    }
    
    #blog-home .next-btn {
        right: 15px;
    }
    
    #blog-home .indicator {
        width: 10px;
        height: 10px;
    }
}

@media screen and (max-width: 480px) {
    #blog-home.hero-slider {
        height: 40vh;
        padding-top: 20px;
    }
    
    #blog-home .hero-content h2 {
        font-size: 2rem;
    }
    
    #blog-home .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    #blog-home .prev-btn {
        left: 10px;
    }
    
    #blog-home .next-btn {
        right: 10px;
    }
    
    #blog-home .slide-indicators {
        bottom: 15px;
    }
    
    #blog-home .indicator {
        width: 8px;
        height: 8px;
    }
}

























































/* ========== HERO BACKGROUND SLIDER INTEGRATION END ========== */




/* ========== WELCOME IMAGE SLIDER INTEGRATION START ========== */

/* Welcome Image Slider Container */
.welcome-image-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px; /* Match your existing welcome image height */
}

/* Individual Image Slides */
.welcome-image-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.welcome-image-slide.active {
    opacity: 1;
}

.welcome-image-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.welcome-image-slider:hover .welcome-image-slide img {
    transform: scale(1.05);
}

/* Welcome Image Slider Controls */
.welcome-image-prev-btn,
.welcome-image-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 87, 217, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow);
    opacity: 0;
}

.welcome-image-slider:hover .welcome-image-prev-btn,
.welcome-image-slider:hover .welcome-image-next-btn {
    opacity: 1;
}

.welcome-image-prev-btn:hover,
.welcome-image-next-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.welcome-image-prev-btn {
    left: 15px;
}

.welcome-image-next-btn {
    right: 15px;
}

.welcome-image-prev-btn i,
.welcome-image-next-btn i {
    color: white;
    font-size: 1rem;
}

/* Welcome Image Slide Indicators */
.welcome-image-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.welcome-image-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.welcome-image-indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: white;
}

.welcome-image-indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Styles for Welcome Image Slider */
@media screen and (max-width: 768px) {
    .welcome-image-slider {
        height: 350px;
    }
    
    .welcome-image-prev-btn,
    .welcome-image-next-btn {
        width: 35px;
        height: 35px;
        opacity: 1; /* Always show on mobile */
    }
    
    .welcome-image-prev-btn i,
    .welcome-image-next-btn i {
        font-size: 0.9rem;
    }
    
    .welcome-image-prev-btn {
        left: 10px;
    }
    
    .welcome-image-next-btn {
        right: 10px;
    }
    
    .welcome-image-indicators {
        bottom: 10px;
    }
    
    .welcome-image-indicator {
        width: 6px;
        height: 6px;
    }
}

@media screen and (max-width: 480px) {
    .welcome-image-slider {
        height: 300px;
    }
    
    .welcome-image-prev-btn,
    .welcome-image-next-btn {
        width: 30px;
        height: 30px;
    }
    
    .welcome-image-prev-btn i,
    .welcome-image-next-btn i {
        font-size: 0.8rem;
    }
}

/* ========== WELCOME IMAGE SLIDER INTEGRATION END ========== */


/* ========== ABOUT PAGE IMAGE SLIDER History section========== */
.about-img-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 450px;
    width: 40%;
}

.about-img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.about-img-slide.active {
    opacity: 1;
}

.about-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-img-slider:hover .about-img-slide img {
    transform: scale(1.05);
}

/* About Image Slider Controls */
.about-img-prev-btn,
.about-img-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 87, 217, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow);
    opacity: 0;
}

.about-img-slider:hover .about-img-prev-btn,
.about-img-slider:hover .about-img-next-btn {
    opacity: 1;
}

.about-img-prev-btn:hover,
.about-img-next-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.about-img-prev-btn {
    left: 15px;
}

.about-img-next-btn {
    right: 15px;
}

.about-img-prev-btn i,
.about-img-next-btn i {
    color: white;
    font-size: 1rem;
}

/* About Image Slide Indicators */
.about-img-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.about-img-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-img-indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: white;
}

.about-img-indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Styles for About Image Slider */
@media screen and (max-width: 768px) {
    .about-img-slider {
        height: 350px;
        width: 100%;
    }
    
    .about-img-prev-btn,
    .about-img-next-btn {
        width: 35px;
        height: 35px;
        opacity: 1; /* Always show on mobile */
    }
    
    .about-img-prev-btn i,
    .about-img-next-btn i {
        font-size: 0.9rem;
    }
    
    .about-img-prev-btn {
        left: 10px;
    }
    
    .about-img-next-btn {
        right: 10px;
    }
    
    .about-img-indicators {
        bottom: 10px;
    }
    
    .about-img-indicator {
        width: 6px;
        height: 6px;
    }
}

@media screen and (max-width: 480px) {
    .about-img-slider {
        height: 300px;
    }
    
    .about-img-prev-btn,
    .about-img-next-btn {
        width: 30px;
        height: 30px;
    }
    
    .about-img-prev-btn i,
    .about-img-next-btn i {
        font-size: 0.8rem;
    }
}



/* ========== LEARN IMAGE SLIDER STYLES ========== */
.learn-img-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    width: 40%;
}

.learn-img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.learn-img-slide.active {
    opacity: 1;
}

.learn-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.learn-img-slider:hover .learn-img-slide img {
    transform: scale(1.05);
}

/* Learn Image Slider Controls */
.learn-img-prev-btn,
.learn-img-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 87, 217, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow);
    opacity: 0;
}

.learn-img-slider:hover .learn-img-prev-btn,
.learn-img-slider:hover .learn-img-next-btn {
    opacity: 1;
}

.learn-img-prev-btn:hover,
.learn-img-next-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.learn-img-prev-btn {
    left: 15px;
}

.learn-img-next-btn {
    right: 15px;
}

.learn-img-prev-btn i,
.learn-img-next-btn i {
    color: white;
    font-size: 1rem;
}

/* Learn Image Slide Indicators */
.learn-img-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.learn-img-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.learn-img-indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: white;
}

.learn-img-indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Styles for Learn Image Slider */
@media screen and (max-width: 768px) {
    .learn-img-slider {
        height: 350px;
    }
    
    .learn-img-prev-btn,
    .learn-img-next-btn {
        width: 35px;
        height: 35px;
        opacity: 1; /* Always show on mobile */
    }
    
    .learn-img-prev-btn i,
    .learn-img-next-btn i {
        font-size: 0.9rem;
    }
    
    .learn-img-prev-btn {
        left: 10px;
    }
    
    .learn-img-next-btn {
        right: 10px;
    }
    
    .learn-img-indicators {
        bottom: 10px;
    }
    
    .learn-img-indicator {
        width: 6px;
        height: 6px;
    }
}

@media screen and (max-width: 480px) {
    .learn-img-slider {
        height: 300px;
    }
    
    .learn-img-prev-btn,
    .learn-img-next-btn {
        width: 30px;
        height: 30px;
    }
    
    .learn-img-prev-btn i,
    .learn-img-next-btn i {
        font-size: 0.8rem;
    }
}

/* The Hub Container Responsive Styles */
@media (max-width: 769px) {
    #theHub .learn-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    #theHub .learn {
        width: 100%;
    }

    #theHub .learn-container .learn p {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    .learn-img-slider {
        width: 100%;
    }

    .learn-img-slider img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    #theHub .learn-container h5 {
        font-size: 24px;
    }

    #theHub .learn-container h6 {
        font-size: 20px;
    }
}

/* Small screen adjustments */
@media (max-width: 475px) {
    #theHub .learn-container h5 {
        font-size: 20px;
    }

    #theHub .learn-container h6 {
        font-size: 16px;
    }

    #theHub .learn-container .learn p {
        padding: 10px;
        font-size: 14px;
    }

    .learn-img-slider {
        height: 250px;
    }
}

/* Tablet adjustments */
@media (min-width: 770px) and (max-width: 1024px) {
    #theHub .learn-container {
        padding: 30px;
    }

    #theHub .learn {
        width: 55%;
    }

    .learn-img-slider {
        width: 45%;
    }
}








/* ========== PROGRAMMES IMAGE SLIDER STYLES ========== */
.programmes-img-slider,
.extracurricular-img-slider,
.events-img-slider {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    width: 40%;
}

.programmes-img-slide,
.extracurricular-img-slide,
.events-img-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.programmes-img-slide.active,
.extracurricular-img-slide.active,
.events-img-slide.active {
    opacity: 1;
}

.programmes-img-slide img,
.extracurricular-img-slide img,
.events-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.programmes-img-slider:hover .programmes-img-slide img,
.extracurricular-img-slider:hover .extracurricular-img-slide img,
.events-img-slider:hover .events-img-slide img {
    transform: scale(1.05);
}

/* Slider Controls for All Sections */
.programmes-img-prev-btn,
.programmes-img-next-btn,
.extracurricular-img-prev-btn,
.extracurricular-img-next-btn,
.events-img-prev-btn,
.events-img-next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(45, 87, 217, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: var(--shadow);
    opacity: 0;
}

.programmes-img-slider:hover .programmes-img-prev-btn,
.programmes-img-slider:hover .programmes-img-next-btn,
.extracurricular-img-slider:hover .extracurricular-img-prev-btn,
.extracurricular-img-slider:hover .extracurricular-img-next-btn,
.events-img-slider:hover .events-img-prev-btn,
.events-img-slider:hover .events-img-next-btn {
    opacity: 1;
}

.programmes-img-prev-btn:hover,
.programmes-img-next-btn:hover,
.extracurricular-img-prev-btn:hover,
.extracurricular-img-next-btn:hover,
.events-img-prev-btn:hover,
.events-img-next-btn:hover {
    background: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.programmes-img-prev-btn,
.extracurricular-img-prev-btn,
.events-img-prev-btn {
    left: 15px;
}

.programmes-img-next-btn,
.extracurricular-img-next-btn,
.events-img-next-btn {
    right: 15px;
}

.programmes-img-prev-btn i,
.programmes-img-next-btn i,
.extracurricular-img-prev-btn i,
.extracurricular-img-next-btn i,
.events-img-prev-btn i,
.events-img-next-btn i {
    color: white;
    font-size: 1rem;
}

/* Slide Indicators for All Sections */
.programmes-img-indicators,
.extracurricular-img-indicators,
.events-img-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.programmes-img-indicator,
.extracurricular-img-indicator,
.events-img-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.programmes-img-indicator.active,
.extracurricular-img-indicator.active,
.events-img-indicator.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: white;
}

.programmes-img-indicator:hover,
.extracurricular-img-indicator:hover,
.events-img-indicator:hover {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Styles for All Sliders */
@media screen and (max-width: 768px) {
    .programmes-img-slider,
    .extracurricular-img-slider,
    .events-img-slider {
        height: 350px;
        width: 100%;
    }
    
    .programmes-img-prev-btn,
    .programmes-img-next-btn,
    .extracurricular-img-prev-btn,
    .extracurricular-img-next-btn,
    .events-img-prev-btn,
    .events-img-next-btn {
        width: 35px;
        height: 35px;
        opacity: 1; /* Always show on mobile */
    }
    
    .programmes-img-prev-btn i,
    .programmes-img-next-btn i,
    .extracurricular-img-prev-btn i,
    .extracurricular-img-next-btn i,
    .events-img-prev-btn i,
    .events-img-next-btn i {
        font-size: 0.9rem;
    }
    
    .programmes-img-prev-btn,
    .extracurricular-img-prev-btn,
    .events-img-prev-btn {
        left: 10px;
    }
    
    .programmes-img-next-btn,
    .extracurricular-img-next-btn,
    .events-img-next-btn {
        right: 10px;
    }
    
    .programmes-img-indicators,
    .extracurricular-img-indicators,
    .events-img-indicators {
        bottom: 10px;
    }
    
    .programmes-img-indicator,
    .extracurricular-img-indicator,
    .events-img-indicator {
        width: 6px;
        height: 6px;
    }
}

@media screen and (max-width: 480px) {
    .programmes-img-slider,
    .extracurricular-img-slider,
    .events-img-slider {
        height: 300px;
    }
    
    .programmes-img-prev-btn,
    .programmes-img-next-btn,
    .extracurricular-img-prev-btn,
    .extracurricular-img-next-btn,
    .events-img-prev-btn,
    .events-img-next-btn {
        width: 30px;
        height: 30px;
    }
    
    .programmes-img-prev-btn i,
    .programmes-img-next-btn i,
    .extracurricular-img-prev-btn i,
    .extracurricular-img-next-btn i,
    .events-img-prev-btn i,
    .events-img-next-btn i {
        font-size: 0.8rem;
    }
}









/* SLIDER STYLES -  */

/* Base slider styles */
.image-slider {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    
}

.slider-container {
    position: relative;
    width: 100%;      /*review*/
    height: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    transition: opacity 0.5s ease;
    opacity: 0;
    display: none;
}

.slide.active {
    opacity: 1;
    display: block;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Slider navigation buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 18px;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* Slider dots indicator */
.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.dot {
    height: 12px;
    width: 12px;
    background-color: rgba(37, 53, 120, 0.489);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s;
}

.dot.active, .dot:hover {
    background-color: white;
}































































































































                /* ========== RESPONSIVE DESIGN ========== */
        @media screen and (max-width: 992px) {
            /* Show hamburger menu */
            .menu-toggle {
                    display: block;
                    position: relative;
                    z-index: 1002;
                    transition: opacity 0.3s, transform 0.3s;
                    opacity: 1;
                    pointer-events: auto;
            }

            /* Hide hamburger when menu is open */
            .menu-toggle.hidden {
                display: none !important;
            }
            

            /* Mobile navigation container */
            .nav-links-container {
                position: fixed;
                top: 0;
                right: -100%;
                width: 320px;
                height: 100vh;
                background: var(--primary-color);
                flex-direction: column;
                justify-content: flex-start;
                padding: 5rem 2rem 2rem;
                overflow-y: auto;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            }

            .nav-links-container.active {
                right: 0;
            }

            /* Close button */
            .close-menu {
                display: none;
                position: absolute;
                top: 1.5rem;
                right: 1.5rem;
                font-size: 1.8rem;
                color: var(--white);
                cursor: pointer;
                transition: var(--transition);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.3s, transform 0.3s;
            }



             

            .close-menu:hover {
                transform: rotate(90deg);
            }

            /* Show close icon only when menu is open */
               
                .nav-links-container.active .close-menu {
                    display: block;
                    opacity: 1;
                    pointer-events: auto;
                    position: absolute;
                    top: 1.5rem;
                    right: 1.5rem;
                    font-size: 1.8rem;
                    color: var(--white);
                    background: none;
                    border: none;
                    outline: none;
                    transition: var(--transition);
                    z-index: 1003;
                }

            /* Mobile navigation links */
            .nav-links {
                flex-direction: column;
                width: 100%;
                gap: 0;
            }

            .nav-link-item {
                width: 100%;
            }

            .nav-link-item > a {
                color: var(--white);
                padding: 1rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                border-radius: 0;
                justify-content: space-between;
            }

            .nav-link-item > a:hover {
                background-color: rgba(255, 255, 255, 0.1);
            }

            /* Mobile dropdown */
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                border-radius: 0;
                background: rgba(0, 0, 0, 0.2);
                margin-top: 0;
                max-height: 0;
                overflow: hidden;
                opacity: 1;
                visibility: visible;
                transform: none;
                transition: max-height 0.3s ease;
            }

            .dropdown-menu.active {
                max-height: 500px;
            }

            .dropdown-menu-item a {
                color: rgba(255, 255, 255, 0.8);
                padding: 0.8rem 1.5rem;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }

            .dropdown-menu-item a:hover {
                color: var(--white);
                background-color: rgba(255, 255, 255, 0.1);
                padding-left: 2rem;
            }

            
            .welcome-grid {
                grid-template-columns: 1fr;
            }

            .section-title h2 {
                font-size: 2rem;
            }

        }

        @media screen and (max-width: 768px) {
            .nav-container {
                padding: 0 4%;
            }

            .nav-links-container {
                width: 280px;
            }

             .section {
                padding: 60px 0;
            }

            .features-grid,
            .programs-grid,
            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            
        }

        @media screen and (max-width: 480px) {
            .nav-logo a {
                font-size: 1.2rem;
            }

            .nav-logo img {
                height: 35px;
            }

             .section-title h2 {
                font-size: 1.7rem;
            }

            .welcome-content h2 {
                font-size: 2rem;
            }

            
        }






/* WhatsApp Floating Button and Popup Styles CURRENTLY IN USE ON THE HUB PAGE
.whatsapp-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.whatsapp-btn i {
    font-size: 2rem;
    color: white;
}

.whatsapp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    display: none;
    transform-origin: bottom right;
}

.popup-header {
    background: #075E54;
    color: white;
    padding: 15px 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-header h3 {
    font-size: 1rem;
    margin: 0;
}

.popup-header .close-popup {
    cursor: pointer;
    font-size: 1.2rem;
}

.popup-body {
    padding: 20px;
}

.popup-body textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    resize: vertical;
}

.popup-body button {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.popup-body button:hover {
    background: #128C7E;
}

/* Responsive Breakpoints 
@media screen and (max-width: 1024px) {
    .whatsapp-container {
        bottom: 25px;
        right: 25px;
    }
}

@media screen and (max-width: 768px) {
    .whatsapp-container {
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn i {
        font-size: 1.75rem;
    }

    .whatsapp-popup {
        width: 280px;
        bottom: 70px;
    }

    .popup-header {
        padding: 12px 15px;
    }

    .popup-body {
        padding: 15px;
    }
}

@media screen and (max-width: 480px) {
    .whatsapp-container {
        bottom: 15px;
        right: 15px;
    }

    .whatsapp-btn {
        width: 45px;
        height: 45px;
    }

    .whatsapp-btn i {
        font-size: 1.5rem;
    }

    .whatsapp-popup {
        width: calc(100vw - 30px);
        right: -15px;
        bottom: 65px;
    }

    .popup-header {
        padding: 10px 15px;
    }

    .popup-header h3 {
        font-size: 0.9rem;
    }

    .popup-body {
        padding: 12px;
    }

    .popup-body textarea {
        min-height: 100px;
        padding: 10px;
        font-size: 0.85rem;
    }

    .popup-body button {
        padding: 10px;
        font-size: 0.85rem;
    }
}

/* Animation for popup */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.whatsapp-popup.active {
    display: block;
    animation: scaleIn 0.3s ease forwards;
}









/* Responsive Styles for Index Page */
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    #home {
        padding: 6rem 2rem 4rem;
    }

    #home h2 {
        font-size: 2.2rem;
    }

    .welcome-grid, 
    .features-grid,
    .programs-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 768px) {
    #home {
        padding: 5rem 1rem 3rem;
        text-align: center;
    }

    #home h2 {
        font-size: 1.8rem;
    }

    #home p {
        font-size: 1rem;
        max-width: 100%;
    }

    .welcome-grid,
    .features-grid,
    .programs-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .welcome-content {
        text-align: center;
        order: 2;
    }

    .welcome-image {
        order: 1;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .program-card {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .cta {
        padding: 3rem 1rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media screen and (max-width: 480px) {
    #home h2 {
        font-size: 1.5rem;
    }

    .btn {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn a {
        width: 100%;
        text-align: center;
    }

    .feature-card {
        padding: 1rem;
    }

    .testimonial-card {
        padding: 1rem;
    }

    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }

    .author-image {
        margin-bottom: 0.5rem;
    }

    .whatsapp-popup {
        width: 90%;
        right: 5%;
    }
}

/* Base grid layouts */
.welcome-grid,
.features-grid,
.programs-grid,
.testimonials-grid,
.footer-grid {
    display: grid;
    gap: 3rem;
}

@media screen and (min-width: 1025px) {
    .welcome-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .programs-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}









        /* About Page Responsive Styles */
@media screen and (max-width: 1024px) {
    #home {
        padding: 6rem 2rem 2rem;
    }

    #home h2 {
        font-size: 2.5rem;
    }

    #about-container {
        padding: 3rem 2rem;
        flex-direction: column;
        gap: 2rem;
    }

    #about-container .about-img,
    #about-container .about-text {
        width: 100%;
    }

    #about-container .about-img img {
        height: 400px;
        object-fit: cover;
    }
}

@media screen and (max-width: 768px) {
    #home h2 {
        font-size: 2rem;
        padding: 1rem;
    }

    #about-container {
        padding: 2rem 1rem;
    }

    #about-container .about-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    #about-container .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    #about-container .about-img img {
        height: 300px;
    }
}

@media screen and (max-width: 480px) {
    #home h2 {
        font-size: 1.8rem;
    }

    #about-container .about-img img {
        height: 250px;
    }

    #about-container .about-text h2 {
        font-size: 1.5rem;
    }

    .animate {
        animation-duration: 0.5s;
    }
}

 

/* Blog Page Responsive Styles */
@media screen and (max-width: 1024px) {
    #blog-home {
        height: 50vh;
    }

    #blog-home h2 {
        font-size: 2.5rem;
    }

    #blog-container {
        padding: 4rem 2rem;
        gap: 2rem;
    }

    #blog-container .blogs .post img {
        width: 100%;
        max-height: 400px;
    }
}

@media screen and (max-width: 768px) {
    #blog-home {
        height: 40vh;
    }

    #blog-home h2 {
        font-size: 2rem;
    }

    #blog-container {
        flex-direction: column;
        padding: 2rem 1rem;
    }

    #blog-container .blogs,
    #blog-container .cate {
        width: 100%;
    }

    #blog-container .blogs .post {
        padding-bottom: 2rem;
    }

    #blog-container .blogs .post h3 {
        font-size: 1.3rem;
        padding: 10px 0;
    }

    #blog-container .blogs .post img {
        max-height: 300px;
    }

    #blog-container .cate {
        margin-top: 2rem;
    }

    #blog-container .cate h2 {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    #blog-home {
        height: 30vh;
        margin-top: 60px;
    }

    #blog-home h2 {
        font-size: 1.8rem;
    }

    #blog-container {
        padding: 1.5rem 1rem;
    }

    #blog-container .blogs .post h3 {
        font-size: 1.2rem;
    }

    #blog-container .blogs .post p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    #blog-container .blogs .post img {
        max-height: 250px;
    }

    #blog-container .blogs .post a {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    #blog-container .cate {
        padding: 15px;
    }

    #blog-container .cate a {
        padding: 10px 0;
        font-size: 0.9rem;
    }
}

/* Blog Post Page Specific Responsive Styles */
@media screen and (max-width: 768px) {
    #blog-container .blogs .post img {
        width: 100%;
        max-height: 350px;
    }

        #blog-container .blogs.blogpost {
        margin-top: 60px;
    }
}

@media screen and (max-width: 480px) {
    #blog-container .blogs .post img {
        max-height: 250px;
    }
}




/* Post Page Responsive Styles */
@media screen and (max-width: 1024px) {
    #blog-container .blogs.blogpost {
        padding: 3rem 2rem;
    }

    #blog-container .blogs .post img {
        height: 400px;
        
    }

    #blog-container .blogs .post h3 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 768px) {
    #blog-container .blogs.blogpost {
        padding: 2rem 1.5rem;
    }

    #blog-container .blogs .post {
        padding: 0 0 2rem;
        margin-bottom: 2rem;
    }

    #blog-container .blogs .post img {
        height: 300px;
    }

    #blog-container .blogs .post h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    #blog-container .blogs .post p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media screen and (max-width: 480px) {
    #blog-container .blogs.blogpost {
        padding: 1.5rem 1rem;
    }

    #blog-container .blogs .post img {
        height: 250px;
    }

    #blog-container .blogs .post h3 {
        font-size: 1.5rem;
    }

    #blog-container .blogs .post p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    #blog-container .blogs .post a {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}





/* Eventsandact page  Responsive Breakpoints */

/*
@media screen and (max-width: 1024px) {
    #theHub {
        padding: 60px 0;
    }

    #theHub .learn-container {
        padding: 0 2rem;
        gap: 30px;
    }

    #theHub .learn-container h5 {
        font-size: 30px;
    }

    #theHub .learn-container h6 {
        font-size: 22px;
    }
}

@media screen and (max-width: 768px) {
    #theHub {
        padding: 40px 0;
    }

    #theHub .learn-container {
        flex-direction: column;
        padding: 0 1.5rem;
        gap: 25px;
    }

    #theHub .learn,
    #theHub .learn-img {
        width: 100%;
    }

    #theHub .learn-container h5 {
        font-size: 26px;
    }

    #theHub .learn-container h6 {
        font-size: 20px;
    }

    #theHub .learn-container .learn p {
        padding: 20px 0;
        width: 100%;
    }

    #theHub .learn-img img {
        max-height: 300px;
        object-fit: cover;
    }
}

@media screen and (max-width: 480px) {
    #theHub {
        padding: 30px 0;
    }

    #theHub .learn-container {
        padding: 0 1rem;
        gap: 20px;
    }

    #theHub .learn-container h5 {
        font-size: 22px;
        padding: 8px;
    }

    #theHub .learn-container h6 {
        font-size: 18px;
    }

    #theHub .learn-container .learn p {
        padding: 15px 0;
        font-size: 0.9rem;
        line-height: 1.6;
    }

    #theHub .learn-img img {
        max-height: 250px;
    }
}

/* Animation classes for events page */
.learn-container {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.learn-img img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}








/* Contact Page Responsive Styles */

/* Contact Page Responsive Styles 
@media screen and (max-width: 1024px) {
    #contact {
        padding: 6vw;
        gap: 3rem;
    }

    #contact .getin {
        width: 300px;
    }

    #contact .form {
        width: 55%;
    }

    #map {
        height: 60vh;
    }
}

@media screen and (max-width: 768px) {
    #contact {
        flex-direction: column;
        padding: 4vw;
    }

    #contact .getin {
        width: 100%;
        margin-bottom: 2rem;
    }

    #contact .getin h2 {
        font-size: 24px;
    }

    #contact .form {
        width: 100%;
        padding: 30px;
    }

    #contact .form .form-row {
        flex-direction: column;
    }

    #contact .form .form-row input {
        width: 100%;
    }

    #map {
        height: 50vh;
        margin-bottom: 4vw;
    }

    .gettin-details div {
        margin-bottom: 1rem;
    }
}

@media screen and (max-width: 480px) {
    #contact {
        padding: 4vw 15px;
    }

    #contact .getin h2 {
        font-size: 22px;
    }

    #contact .getin p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    #contact .getin h3 {
        font-size: 14px;
    }

    #contact .getin .gettin-details div .get {
        font-size: 14px;
        margin-right: 10px;
    }

    #contact .getin .gettin-details div p {
        font-size: 13px;
        margin-bottom: 10px;
    }

    #contact .form {
        padding: 20px;
    }

    #contact .form h4 {
        font-size: 20px;
    }

    #contact .form p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

    #contact .form .form-row input,
    #contact .form .form-col input,
    #contact .form .form-col textarea {
        padding: 15px 20px;
        font-size: 13px;
    }

    #contact .form button {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    #map {
        height: 40vh;
        margin-bottom: 4vw;
    }

    .pro-links i {
        padding: 6px 10px;
        font-size: 14px;
    }
}











/* Contact Page Responsive Styles */
@media (max-width: 968px) {
    #contact {
        padding: 8vw 4vw;
        flex-direction: column;
        gap: 30px;
    }

    #contact .getin {
        width: 100%;
        margin-bottom: 30px;
    }

    #contact .form {
        width: 100%;
        padding: 20px;
    }

    #contact .form .form-row {
        flex-direction: column;
    }

    #contact .form .form-row input {
        width: 100%;
    }

    #map {
        height: 50vh;
    }
}

@media (max-width: 475px) {
    #contact {
        padding: 20px;
    }

    #contact .getin h2 {
        font-size: 24px;
    }

    #contact .form h4 {
        font-size: 20px;
    }

    #contact .form {
        padding: 15px;
    }

    #contact .form .form-row input,
    #contact .form .form-col input,
    #contact .form .form-col textarea {
        padding: 12px 20px;
        font-size: 13px;
    }

    #contact .form button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    #contact .getin .gettin-details div .get {
        font-size: 14px;
        margin-right: 10px;
    }

    #contact .getin .gettin-details div p {
        font-size: 13px;
    }

    #map {
        height: 40vh;
        margin-bottom: 4vw;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    #contact {
        padding: 8vw 6vw;
    }

    #contact .getin {
        width: 300px;
    }

    #contact .form {
        width: 55%;
    }
}





















/* The Hub Container Responsive Styles */
@media (max-width: 769px) {
    /* TheHub section responsive */
    #theHub .learn-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    #theHub .learn {
        width: 100%;
    }

    #theHub .learn-container .learn p {
        width: 100%;
        padding: 20px;
        text-align: center;
    }

    #theHub .learn-container .learn-img {
        width: 100%;
    }

    #theHub .learn-container .learn-img img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }

    #theHub .learn-container h5 {
        font-size: 24px;
    }

    #theHub .learn-container h6 {
        font-size: 20px;
    }

    /* Documents section responsive */
    #documents .all-doc {
        padding: 20px;
    }

    .doc-btns {
        flex-direction: column;
        gap: 15px;
    }

    .doc-btns a {
        width: 100%;
        max-width: 300px;
        font-size: 1.4rem;
        padding: 10px 20px;
    }
}

/* Small screen adjustments */
@media (max-width: 475px) {
    #theHub .learn-container h5 {
        font-size: 20px;
    }

    #theHub .learn-container h6 {
        font-size: 16px;
    }

    #theHub .learn-container .learn p {
        padding: 10px;
        font-size: 14px;
    }

    /* Adjust tutor section */
    #campuse-inner .tutor {
        padding: 20px;
    }

    #campuse-inner .tutor-det {
        padding-top: 15px;
    }

    #campuse-inner .enroll {
        box-shadow: 0px 10px 5px rgb(239, 224, 15);
    }

    /* Document buttons */
    .doc-btns a {
        font-size: 1.2rem;
        padding: 8px 15px;
    }
}

/* Tablet adjustments */
@media (min-width: 770px) and (max-width: 1024px) {
    #theHub .learn-container {
        padding: 30px;
    }

    #theHub .learn {
        width: 55%;
    }

    #theHub .learn-container .learn-img {
        width: 45%;
    }

    #campuse-inner .overview .campuse-head {
        flex-wrap: wrap;
        gap: 20px;
    }
}

