/* ===== ROOT ===== */
:root{
    --primary:#2B9FD8;
    --dark:#363E4B;
    --dark-soft:#2E373E;
}

/* ===== RESET ===== */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family:Arial;
    padding-top:130px;   /* 50px topbar + 70px navbar */
    background:#f4f8fb;
}

/* ===== TOPBAR ===== */
.topbar{
    position:fixed;
    top:0;
    left:0;
    z-index:9999;
    width:100%;
    height:50px;
    background:linear-gradient(90deg,var(--dark),var(--dark-soft));
    display:flex;
    align-items:center;
    transition:0.4s;
}

.top-container{
    width:90%;
    margin:auto;
    position:relative;
}

/* CENTER CONTACT TEXT */
.top-contact{
    text-align:center;
    color:white;
    font-size:15px;
    line-height:50px;
}

/* RIGHT SOCIAL ICON */
.top-social{
    position:absolute;
    right:0;
    top:0;
    height:50px;
    display:flex;
    align-items:center;
    gap:15px;
}

/* SOCIAL ICON COLOR WHITE */
.top-social i{
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.top-contact a{
    text-decoration: none;
    color: white;
}

.top-social i:hover{
    color:#00e5ff;
}


/* ===== FLOATING LOGO ===== */

.floating-logo{
    position:fixed;
    top:5px;
    left:40px;
    width:110px;
    height:110px;
    border-radius:50%;
    z-index:99999;
    
    display:flex;
    justify-content:center;
    align-items:center;

    background:#fff;   /* white base */
}

/* SCROLL PE LOGO BIG */
.floating-logo.big{
    width:140px;
    height:140px;
    top:0px;
    transition:0.4s;
}

/* ===== 3D LOGO EFFECT ===== */
.floating-logo img{
    width:100%;
    height:100%;
    border-radius:50%;
    padding:6px;
    background:#fff;
    z-index:2;
    position:relative;

    box-shadow:
    inset 0 0 8px rgba(0,0,0,0.2),
    0 10px 20px rgba(0,0,0,0.35);
}

.floating-logo img:hover{
    transform: perspective(800px) rotateX(0deg) rotateY(0deg) scale(1.1);

    box-shadow:
    0 0 20px #00e5ff,
    0 0 40px #00e5ff,
    0 0 60px #00e5ff,
    0 0 80px #00e5ff,
    0 0 100px #00e5ff,
    0 15px 30px rgba(0,0,0,0.5);
}
.floating-logo::before{
    content:'';
    position:absolute;
    top:-10px;
    left:-10px;
    right:-10px;
    bottom:-10px;
    border-radius:50%;
    z-index:1;

    border:5px solid #2B9FD8;

    box-shadow:
    0 0 15px #2B9FD8,
    0 0 30px #2B9FD8,
    0 0 60px #2B9FD8,
    0 0 90px #2B9FD8,
    0 0 120px #2B9FD8,
    inset 0 0 25px rgba(43,159,216,0.8);
}

.floating-logo:hover::before{
    box-shadow:
    0 0 30px #00e5ff,
    0 0 60px #00e5ff,
    0 0 100px #00e5ff,
    0 0 150px #00e5ff,
    0 0 200px #00e5ff,
    inset 0 0 40px rgba(0,229,255,0.9);
}

.floating-logo:hover::after{
    background:radial-gradient(circle,
    rgba(0,229,255,1) 0%,
    rgba(0,229,255,0.8) 40%,
    transparent 80%);
}


.floating-logo::after{
    content:'';
    position:absolute;
    top:-18px;
    left:-18px;
    right:-18px;
    bottom:-18px;
    border-radius:50%;
    z-index:0;

    background:radial-gradient(circle,
    rgba(43,159,216,0.9) 0%,
    rgba(0,229,255,0.6) 40%,
    transparent 75%);

    filter:blur(18px);
}



/* ===== HEADER ===== */
/* ===== GLASS NAVBAR ===== */
.header{
position:fixed;
top:50px;
left:0;
width:100%;
height:80px;

display:flex;
align-items:center;

background:rgba(43,159,216,0.65);   /* 🔥 Logo Blue */
backdrop-filter:blur(12px);
-webkit-backdrop-filter:blur(12px);

border-bottom:1px solid rgba(255,255,255,0.2);
z-index:9998;
transition:0.4s;
}


/* SCROLL EFFECT */
.header.glass-scroll{
height:60px;
top:0;
background:rgba(39,155,212,0.95);
box-shadow:0 5px 25px rgba(0,0,0,0.4);
}


/* TOPBAR HIDE HONE PE NAVBAR UPAR AA JAYE */
.header.move-up{
top:0;
}

.header.shrink ~ .main-logo{
    width:70px;
    height:70px;
    top:2px;
}

/* ===== NAV ===== */
.nav-container{
    height: 100%;
    width:90%;
    margin:auto;
    display:flex;
    justify-content:center;
    align-items:center;
    position: relative;
}
.nav-menu li a{
    display:flex;
    align-items:center;
    gap:8px;

}
.nav-menu li a i{
    font-size:14px;
}



/* ===== MENU ===== */
.menu{
    display:flex;
    height: 100%;
    list-style:none;
    gap:25px;
    align-items:center;
    gap: 15px;
}

.menu li{
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    font-size:17px;
    transition:0.4s;
    
}

.menu a{
    text-decoration:none;
    color:white;
    font-size:17px;
    display:flex;
    align-items:center;
    height:100%;
    padding:0 18px;
}

/* NAVBAR ICON GAP FIX */
.menu li a{
    display:flex;
    height: 100%;
    padding: 0 18px;
    align-items:center;
    gap:8px;   /* 👈 icon aur text ke beech gap */
    color:#fff;
    font-size:17px;
    font-weight:600;
    text-shadow:0 2px 8px rgba(0,0,0,0.6);
    transition:0.3s;
}
.menu li a:hover{
color:#00e5ff;
text-shadow:0 2px 10px rgba(0,0,0,0.8);
}

.header.glass-scroll .menu li a{
    font-size:14px;
}

/* ICON SIZE + EXTRA SPACE */
.menu li a i{
    font-size:15px;
    transition:0.4s;
    color:#fff;
}
.header.shrink .menu li a i{
font-size:12px;
}

/* ===== LOGIN DROPDOWN ===== */
.dropdown-menu{
    position:absolute;
    top:100%;
    right:0;
    background:white;
    min-width:200px;
    display:none;
    box-shadow:0 5px 20px rgba(0,0,0,0.2);
}

.dropdown-menu a{
    color:#333;
    padding:10px;
}

.dropdown.open .dropdown-menu{
    display:block;
}

/* ===== MEGA MENU ===== */
.mega-menu{
    position:absolute;
    top:80px;
    right:0;
    width:500px;
    background:white;
    display:none;
    grid-template-columns:1fr 1fr;
    gap:20px;
    padding:20px;
}
.mega-menu li{
    height:auto !important;
    display:block !important;
}
.mega-menu a{
    height:auto !important;
    padding:8px 0 !important;
    display:block !important;
    color:#333 !important;
    text-shadow:none !important;
    align-items:flex-start !important;
}

.mega-parent:hover .mega-menu{
    display:grid;
}

.mega-col a{
    display:block;
    color:#333;
    padding:5px;
}
.mega-col{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
}


/* ===== MOBILE ===== */
.menu-toggle{
    display:none;
    font-size:25px;
    cursor:pointer;
    color:white;
}

@media(max-width:768px){

.menu-toggle{
    display:block;
}

.menu{
    display:none;
    flex-direction:column;
    width:100%;
    background:#0d47a1;
    position:absolute;
    top:60px;
    left:0;
}

.menu.show{
    display:flex;
}

.mega-menu{
    position:static;
    width:100%;
    display:none;
}

.mega-parent.open .mega-menu{
    display:grid;
}

.dropdown-menu{
    position:static;
}

}
/* ===== TABLET FIX ===== */
@media (max-width: 1024px){

.floating-logo{
    left:15px;      /* thoda side me */
    width:85px;     /* chhota size */
    height:85px;
    top:5px;
}

.nav-container{
    justify-content:flex-end;   /* menu right shift */
    padding-left:90px;          /* logo ke liye space */
}

}

/* ===== SLIDER ===== */
/* ===== SLIDER ===== */

.slider{
width:100%;
overflow:hidden;
}

/* swiper container */

.swiper{
width:100%;
height:auto;
}

/* slide */

.swiper-slide{
width:100%;
}

/* image responsive */

.swiper-slide img{
width:100%;
height:auto;
display:block;
}

/* pagination */

.swiper-pagination-bullet{
background:#fff;
opacity:0.7;
}

.swiper-pagination-bullet-active{
background:#2B9FD8;
}

/* ===== OUR ADVANTAGES ===== */
.advantages{
    width:100%;
    padding:80px 0;
    background:#f4f8fb;
}

.adv-container{
    width:90%;
    margin:auto;
    text-align:center;
}
.adv-subtitle{
    color:#2B9FD8;
    font-size:18px;
    font-weight:600;
    margin-bottom:5px;
    letter-spacing:1px;
}
/* ===== ADV HEADING ===== */

.adv-heading{
    text-align:center;
    margin-bottom:60px;
}

/* 🔵 Our Strengths Button Style */
.adv-badge{
    display:inline-block;
    font-size:18px;
    font-weight:800;
    padding:8px 25px;
    border-radius:40px;

    /* 🔥 DO COLOR TEXT */
    background:linear-gradient(90deg,#2B9FD8,#00e5ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    border:2px solid #2B9FD8;
    letter-spacing:1px;
    margin-bottom:10px;
}
.adv-badge{
    display:inline-block;
    margin-bottom:15px;   /* 🔥 line break create karega */
}

/* Shine Animation Start*/
.adv-badge::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(255,255,255,0.6),transparent);
    transition:0.5s;
}

.adv-badge:hover::before{
    left:100%;
}

/* Shine Animation end*/

/* 🔥 Main Title */
.adv-title{
    font-size:42px;
    font-weight:800;
    margin-top:10px;
    color:#2E373E;
    position:relative;
    display:inline-block;   /* 🔥 TEXT JITNA HI WIDTH */
    padding-bottom:10px;
}
.adv-title{
    display:block;        /* 🔥 force next line */
}

/* 🔵 Blue Line Animation */
.adv-title::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background:linear-gradient(90deg,#2B9FD8,#00e5ff);
    transition:0.4s ease;
}

.adv-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.adv-box{
    position:relative;
    background:#fff;
    padding:35px 25px;
    border-radius:12px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    z-index:1;
    border:1px solid rgba(43,159,216,0.2);
    transition:0.4s;
    /*AUTO PULSE GLOW EFFECT (Breathing Animation) */
    animation:glowPulse 2.5s infinite ease-in-out;
  
    /* DEFAULT GLOW */
    box-shadow:
    0 0 10px rgba(43,159,216,0.4),
    0 0 20px rgba(43,159,216,0.3),
    0 0 30px rgba(43,159,216,0.2);
}

/* TOP BLUE LINE */
.adv-box::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,#2B9FD8,#00e5ff);
    opacity:0;
    transition:0.4s;
    z-index:0;
}
.adv-box::after{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#2B9FD8;
    box-shadow:0 0 10px #2B9FD8;
}

.adv-box i,
.adv-box h3,
.adv-box p{
    position:relative;
    z-index:2;
}
/* ICON CIRCLE */
.adv-box i{
    width:60px;
    height:60px;
    line-height:60px;
    text-align:center;
    font-size:22px;
    border-radius:50%;
    background:rgba(43,159,216,0.1);
    color:#2B9FD8;
    margin-bottom:20px;
    transition:0.4s;

      /* ICON DEFAULT GLOW */
    text-shadow:
    0 0 5px rgba(43,159,216,0.8),
    0 0 10px rgba(43,159,216,0.6),
    0 0 20px rgba(43,159,216,0.5);
}

/* TITLE */
.adv-box h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
    color:#2E373E;
}

/* DESCRIPTION */
.adv-box p{
    font-size:15px;
    line-height:1.7;
    color:#6c757d;
}

/* HOVER EFFECT START*/
.adv-title:hover::after{
    width:100%;   /* 🔥 Ab sirf text ke equal hi hoga */
}
.adv-box:hover::before{
    height:100%;
    opacity:1;
}
.adv-box:hover h3,
.adv-box:hover p
{ 
    color:#fff;
}
.adv-box:hover::after{
    background:#fff;
}

.adv-box:hover{

    transform:translateY(-10px) scale(1.03);
    animation:none;
    box-shadow:
    0 0 25px rgba(43,159,216,0.8),
    0 0 50px rgba(43,159,216,0.6),
    0 0 80px rgba(43,159,216,0.5);
}


/* ICON CIRCLE */
.adv-box:hover i{
    animation:none;
    background:rgba(255,255,255,0.2);
    color:#fff;
    box-shadow:
    0 0 15px #fff,
    0 0 25px #00e5ff;
}
.adv-box:hover h3,
.adv-box:hover p,
.adv-box:hover i{
    color:#fff;
}

/* HOVER EFFECT END*/
/* TITLE */
.adv-box h3{
    font-size:20px;
    font-weight:700;
    margin-bottom:12px;
    color:#2E373E;
    position:relative;
    z-index:2;
    transition:0.4s;
}
/* DESCRIPTION */
.adv-box p{
    font-size:15px;
    line-height:1.7;
    color:#6c757d;
    position:relative;
    z-index:2;
    transition:0.4s;
}
/*AUTO PULSE GLOW EFFECT (Breathing Animation) start */
@keyframes glowPulse{
    0%{
        box-shadow:
        0 0 10px rgba(43,159,216,0.4),
        0 0 20px rgba(43,159,216,0.3),
        0 0 30px rgba(43,159,216,0.2);
    }
    50%{
        box-shadow:
        0 0 20px rgba(43,159,216,0.6),
        0 0 40px rgba(43,159,216,0.5),
        0 0 60px rgba(43,159,216,0.4);
    }
    100%{
        box-shadow:
        0 0 10px rgba(43,159,216,0.4),
        0 0 20px rgba(43,159,216,0.3),
        0 0 30px rgba(43,159,216,0.2);
    }
}
/*AUTO PULSE GLOW EFFECT (Breathing Animation) End*/
/*ICON Pulse Animation Start*/
@keyframes iconGlow{
    0%{
        text-shadow:0 0 5px #2B9FD8;
    }
    50%{
        text-shadow:
        0 0 10px #2B9FD8,
        0 0 20px #00e5ff,
        0 0 30px #00e5ff;
    }
    100%{
        text-shadow:0 0 5px #2B9FD8;
    }
}

.adv-box i{
    font-size:40px;
    color:#2B9FD8;
    margin-bottom:15px;
    animation:iconGlow 2.5s infinite ease-in-out;
}
/*ICON Pulse Animation End*/


/*-- ===== POPULAR-COURSE START==Section Title Design (2 Color + Hover Line)=== --*/

/* ===== Professional Popular Courses ===== */

/* ===== COURSE GRID FINAL ===== */

.course-section{
width:100%;
padding:70px 0;
background:linear-gradient(135deg,#e3f2fd,#f4f8fb);
}

.course-container{
width:90%;
margin:auto;
text-align:center;
}

.course-heading{
font-size:40px;
font-weight:800;
margin-bottom:50px;
}

.course-heading span{
background:linear-gradient(90deg,#2B9FD8,#00e5ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

/* GRID START */
.course-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

/* CARD */
.course-box{
background:#fff;
padding:30px 20px;
border-radius:15px;
text-align:center;
transition:0.4s;
border-top:4px solid #2B9FD8;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.course-box i{
font-size:30px;
color:#2B9FD8;
margin-bottom:15px;
}

.course-box h3{
font-size:22px;
margin-bottom:5px;
}

.course-box p{
font-size:14px;
color:#555;
margin-bottom:8px;
}

.course-box h4{
font-size:14px;
color:#2B9FD8;
margin-bottom:15px;
}

.course-box a{
display:inline-block;
padding:8px 22px;
border-radius:30px;
text-decoration:none;
color:#2B9FD8;
border:2px solid #2B9FD8;
transition:0.3s;
}

.course-box a:hover{
background:#2B9FD8;
color:#fff;
}

.course-box:hover{
transform:translateY(-8px);
box-shadow:0 10px 40px rgba(43,159,216,0.4);
}

/*HOME PAGE ABOUT SECTION START*/

/* ===== ABOUT HEADING SAME AS POPULAR COURSE ===== */

/* ===== ABOUT SECTION ===== */

.about-section{
    padding:80px 10%;
    background:#f4f7fb;
}

.about-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

/* IMAGE */
.about-img{
    flex:1;
    text-align:center;
    overflow:hidden;
}

.about-img img{
    width:100%;
    max-width:420px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    transition:0.4s;
}

/* IMAGE HOVER EFFECT */
.about-img:hover img{
    transform:scale(1.08) rotate(1deg);
    box-shadow:0 20px 40px rgba(43,159,216,0.4);
}

/* CONTENT */
.about-heading{
    flex:1;
}

/* HEADING */
.section-title{
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
    position:relative;
    display:inline-block;
}

.about-black{
    color:#000;
}

.vci-v{
    background:linear-gradient(90deg,#2B9FD8,#00c6ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

/* TEXT */
.about-heading p{
    font-size:16px;
    line-height:1.8;
    color:#444;
    margin:20px 0;
}

.about-list{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.about-list li{
    margin-bottom:10px;
    font-size:15px;
    color:#333;
}

/* BUTTON */
.about-btn{
    display:inline-block;
    padding:12px 28px;
    background:#2B9FD8;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:0.3s;
}

.about-btn:hover{
    background:#000;
}

/* ===== TABLET RESPONSIVE ===== */
@media(max-width:992px){

.section-title::after{
    display:none;
}

}
/* ===== MOBILE RESPONSIVE ===== */

@media(max-width:992px){

.about-container{
    flex-direction:column;
    text-align:center;
}

.section-title::after{
    left:50%;
    transform:translateX(-50%);
}

.about-heading p{
    text-align:center;
}

.about-list{
    text-align:left;
    display:inline-block;
}

.about-img img{
    max-width:300px;
}

}
/*HOME PAGE ABOUT SECTION START*/

/* ===== COUNTER SECTION ===== */

.counter-section{
background:#2B9FD8;
padding:100px 0;
margin-bottom:120px; /* 🔥 GAP YAHI SE AAYEGA */
}

.counter-container{
width:90%;
margin:auto;
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
text-align:center;
}

.counter-box{
flex:1;
min-width:200px;
color:#fff;
padding:20px;
}

.counter-box h2{
font-size:48px;
font-weight:700;
margin-bottom:5px;
}

.counter-box p{
font-size:14px;
letter-spacing:1px;
color:#c9d8ec;
}

/* MOBILE */
@media(max-width:768px){

.counter-container{
flex-direction:column;
}

.counter-box{
margin-bottom:20px;
}

}


/* ===== TESTIMONIAL START===== */


/* ===== TESTIMONIAL HEADING ===== */

/* ===== TESTIMONIAL HEADING CENTER FIX ===== */

.testi-heading{
    width:100%;
    text-align:center;
    font-size:42px;
    font-weight:800;
    margin-bottom:20px;
    display:block;
}

/* BLACK TEXT */
.Our-black,
.Feedback-black{
    color:#000;
}

/* BLUE GRADIENT TEXT */
.Students{
    background:linear-gradient(90deg,#2B9FD8,#00c6ff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.testimonial-section{
padding:60px 0;
background:#f4f8fb;
overflow:hidden;
}

.testi-heading{
text-align:center;
margin-bottom:40px;
font-size:30px;
}

.testimonial-slider{
overflow:hidden;
position:relative;
}

.testimonial-track{
display:flex;
width:calc(300px * 12);
animation:scroll 25s linear infinite;
}

.testimonial-box{
width:300px;
background:#fff;
margin:0 15px;
padding:30px;
text-align:center;
border-radius:10px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
flex-shrink:0;
}

.student-img{
display:flex;
justify-content:center;
margin-bottom:15px;
}

.student-img img{
width:90px;
height:90px;
border-radius:50%;
border:4px solid #3a98c4;
box-shadow:0 0 25px rgba(58,152,196,0.9);
}

@keyframes scroll{
0%{
transform:translateX(0);
}
100%{
transform:translateX(-50%);
}
}
/* ===== TESTIMONIAL END===== */

/* ===== MODERN FOOTER START ===== */

.footer{
background:linear-gradient(135deg,#2B9FD8,#00c6ff);
padding:60px 0 0;
color:#fff;
position:relative;
overflow:hidden;
}

/* Glow Animation Background */
.footer::before{
content:"";
position:absolute;
top:-50%;
left:-50%;
width:200%;
height:200%;
background:radial-gradient(circle,#ffffff22 10%,transparent 70%);
animation:rotate 20s linear infinite;
}

@keyframes rotate{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

.footer-container{
width:90%;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:40px;
position:relative;
z-index:1;
}

/* LOGO */
.footer-logo{
width:110px;
height:110px;
border-radius:50%;
object-fit:cover;
border:3px solid #fff;
box-shadow:0 0 20px #fff;
transition:.4s;
}

.footer-logo:hover{
transform:scale(1.1) rotate(5deg);
box-shadow:0 0 35px #fff;
}

/* BOX GLASS EFFECT */
.footer-box{
background:rgba(255,255,255,0.1);
backdrop-filter:blur(10px);
padding:20px;
border-radius:15px;
transition:.4s;
}

.footer-box:hover{
transform:translateY(-5px);
background:rgba(255,255,255,0.2);
}

/* LINKS */
.footer-link{
display:block;
color:#fff;
margin-bottom:10px;
text-decoration:none;
transition:.3s;
}

.footer-link:hover{
padding-left:8px;
color:#000;
}

/* SOCIAL ICONS */
.social-icons{
display:flex;
gap:12px;
margin-top:15px;
}

.social-icons a{
width:42px;
height:42px;
border-radius:50%;
background:rgba(255,255,255,0.2);
display:flex;
align-items:center;
justify-content:center;
color:#fff;
font-size:18px;
transition:.4s;
box-shadow:0 0 10px #fff;
}

.social-icons a:hover{
background:#000;
transform:scale(1.2) rotate(360deg);
box-shadow:0 0 25px #000;
}

/* IMPORTANT LINKS FIX */
.footer-box ul{
list-style:none;
padding:0;
margin:0;
}

.footer-box ul li{
margin-bottom:8px;
}

.footer-box ul li a{
display:block;
color:#fff;
text-decoration:none;
transition:.3s;
}

.footer-box ul li a:hover{
padding-left:8px;
color:#000;
}

/* MAP */
.footer iframe{
border-radius:15px;
}

/* COPYRIGHT */
.footer-bottom{
text-align:center;
padding:15px;
margin-top:20px;
border-top:1px solid rgba(255,255,255,.4);
position:relative;
z-index:1;
}

/* ===== HEADING COLOR LINE ===== */
.footer-box h3{
position:relative;
display:inline-block;
padding-bottom:8px;
margin-bottom:20px;
}

.footer-box h3::after{
content:'';
position:absolute;
left:0;
bottom:0;
width:50px;
height:3px;
background:#fff;
border-radius:5px;
transition:.4s;
}

.footer-box h3:hover::after{
width:80px;
background:#000;
}

/* ===== LOGO MSG GAP ===== */
.footer-msg{
line-height:1.7;
margin-top:10px;
margin-bottom:15px;
text-align: justify;
}

/* IMPORTANT LINKS TICK */
.important-links{
list-style:none;
padding-left:0;
}

.important-links li{
position:relative;
padding-left:22px;
margin-bottom:8px;
}

.important-links li::before{
content:"✔";
position:absolute;
left:0;
color:#fff;
font-size:14px;
}

/* ===== FACILITY ICON STYLE ===== */

.facility-list{
list-style:none;
padding:0;
margin:0;
}

.facility-list li{
margin-bottom:14px;
}

.facility-list li a{
color:#fff;
text-decoration:none;
display:flex;
align-items:center;
gap:10px;
transition:.3s;
}

.facility-list li a i{
width:28px;
height:28px;
background:#fff;
color:#2B9FD8;
border-radius:50%;
text-align:center;
line-height:28px;
font-size:14px;
transition:.3s;
position: relative;
display:inline-block;
}

.facility-list li a:hover{
color:#000;
transform:translateX(5px);
}

.facility-list li a:hover i{
background:#000;
color:#fff;
}
.facility-list li::before{
display:none !important;
content:"";
}

/* MOBILE */
@media(max-width:768px){
.footer-container{
grid-template-columns:1fr;
text-align:center;
}
.footer-logo{
margin:auto;
}
.social-icons{
justify-content:center;
}
}

/* ===== MODERN FOOTER END ===== */

/* ===== CONTACT US PAGE START ===== */

body{
margin:0;
font-family:Arial;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 60px 20px;
  background: #f4f8fb;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

/* LEFT SIDE INFO */
.contact-info {
  flex: 1;
  min-width: 300px;
  background: #2B9FD8;
  color: #fff;
  padding: 40px;
}

.contact-info h2 {
  text-align: center;  /* Heading center */
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 17px;
  margin: 15px 0;
}

.contact-info i {
  margin-right: 10px;
}

/* SOCIAL ICONS */
.social-icons a {
  display: inline-block;
  margin: 10px 5px;
  font-size: 20px;
  color: #fff;
  background: rgba(255,255,255,0.2);
  padding: 10px;
  border-radius: 50%;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #fff;
  color: #2B9FD8;
}

/* RIGHT SIDE FORM */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 40px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #2B9FD8;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #2B9FD8;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #279BD4;
}

/* MAP */
.map iframe{
  width:100%;
  height:600px;
  border:0;
  border-radius:10px;
}


/* ===== MOBILE RESPONSIVE ===== */
@media(max-width:768px){
  .contact-container {
    flex-direction: column;
  }
}

@media(max-width:768px){
  .map iframe{
    height:350px;
  }
}

/* ===== CONTACT US PAGE END ===== */


/* ===== ABOUT US PAGE START ===== */
.section-heading{
text-align:center;
font-size:38px;
font-weight:800;
margin-bottom:50px;
position:relative;
padding: 50px;

}

.heading-dark{
color:#111;
}

.heading-gradient{
background:linear-gradient(90deg,#2B9FD8,#00c6ff);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.section-heading::after{
content:'';
width:80px;
height:4px;
background:linear-gradient(90deg,#2B9FD8,#00c6ff);
display:block;
margin:15px auto 0;
border-radius:5px;
}

.about-text{
text-align:center;
width:70%;
margin:auto;
margin-bottom:40px;
text-align: justify;
text-justify: inter-word;
}

.vm-container{
display:flex;
gap:30px;
justify-content:center;
padding:40px;
}

/* ===============================
VISION MISSION FINAL FIX
=============================== */

.vm-section{
padding:60px 0;
background:#f4f8fb;
}

.vm-row{
align-items:stretch;
}

.vm-box{
display:flex;
flex-direction:column;
justify-content:flex-start;
height:100%;
min-height:320px;
background:rgba(255,255,255,0.85);
border-radius:15px;
transition:0.4s;
}


.vm-card{
background:#fff;
padding:40px;
border-radius:15px;
text-align:center;
box-shadow:0 5px 25px rgba(0,0,0,0.1);
transition:.4s;
}

.vm-icon{
font-size:45px;
background:linear-gradient(45deg,#2B9FD8,#00C6FF);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
margin-bottom:10px;
}


.vm-box h3{
margin-top:15px;
font-weight:600;
}

.vm-box p{
flex-grow:1;
margin-top:10px;
font-size:15px;
text-align:justify;
text-justify:inter-word;
line-height:1.7;
}

/* Hover Effect */
.vm-box:hover .vm-icon{
transform:scale(1.2);
filter:drop-shadow(0 6px 15px rgba(40,192,228,0.45));
}

.vm-box:hover{
transform:translateY(-5px);
box-shadow:0 15px 35px rgba(14,107,168,0.25);
}

.why-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:30px;
padding:50px;
}

.why-box{
background:#fff;
padding:35px;
border-radius:15px;
box-shadow:0 5px 25px rgba(0,0,0,0.08);
text-align:center;
transition:.4s;
}

.why-box:hover{
background:linear-gradient(120deg,#2B9FD8,#00c6ff);
color:#fff;
}

.counter-container{
display:flex;
justify-content:space-around;
text-align:center;
padding:60px;
background:linear-gradient(120deg,#2B9FD8,#00c6ff);
}

.counter-card{
background:rgba(255,255,255,0.2);
padding:30px;
border-radius:15px;
backdrop-filter:blur(10px);
transition:.4s;
}

.counter-card:hover{
transform:scale(1.1);
}

.director-card{
display:flex;
background:#fff;
border-radius:12px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
width:80%;
margin:auto;
transition:.4s;
}

.director-card:hover{
transform:translateY(-5px);
}

.director-left{
width:300px;
}

.director-left img{
width:100%;
height:100%;
object-fit:cover;
}

.director-right{
padding:40px;
}

.director-right h3{
font-size:28px;
margin-bottom:5px;
}

.director-right h5{
color:#2B9FD8;
margin-bottom:15px;
font-weight:600;
}

.director-right p{
line-height:1.7;
color:#555;
text-align: justify;
text-justify: inter-word;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.vm-box{
min-height:auto;
}

.vm-icon{
font-size:38px;
}

}

@media(max-width:768px){

.director-card{
flex-direction:column;
}

.director-left{
width:100%;
height:300px;
}

}

@media(max-width:768px){
.vm-container,
.counter-container,
.director-container{
flex-direction:column;
}
}


/* TEAM SECTION */

.team-section{
padding:60px 0;
background:#f4f8fb;
}

.team-card{
background:#fff;
border-radius:15px;
overflow:hidden;
box-shadow:0 10px 40px rgba(0,0,0,0.08);
transition:.4s;
text-align:center;
width:100%;
}

.team-card:hover{
transform:translateY(-8px);
}

.team-img{
position:relative;
height:280px;
overflow:hidden;
background:#f4f8fb;
display:flex;
justify-content:center;
align-items:center;
}

.team-img img{
position:relative;
z-index:2;
max-width:90%;
max-height:100%;
object-fit:contain;
transition:.4s;
}

.team-img::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:url('../images/team1.png');
background-size:cover;
background-position:center;
filter:blur(25px);
transform:scale(1.2);
z-index:2;
}

.team-img:nth-child(1)::before{
background:url('../images/team2.png');
background-size:cover;
background-position:center;
}

.team-img:nth-child(1)::before{
background:url('../images/team3.png');
background-size:cover;
background-position:center;
}

.team-card:hover img{
transform:scale(1.05);
}

.team-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:linear-gradient(to top,rgba(0,0,0,0.85),rgba(0,0,0,0.3));
display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
opacity:0;
transition:.4s;
z-index:5;   /* 🔥 ADD THIS */
}

.team-card:hover .team-overlay{
opacity:1;
}

.exp-badge{
background:#2B9FD8;
color:#fff;
padding:6px 15px;
border-radius:20px;
font-size:12px;
margin-bottom:10px;
}

.subject-tag span{
background:#fff;
color:#2B9FD8;
padding:5px 12px;
border-radius:15px;
font-size:12px;
margin:4px;
display:inline-block;
font-weight:500;
}

.team-social a{
color:#fff;
margin:8px;
font-size:18px;
display:inline-block;
transition:.3s;
}

.team-social a:hover{
color:#2B9FD8;
transform:scale(1.2);
}

.team-card h3{
margin-top:15px;
font-size:20px;
font-weight:600;
}

.team-card p{
color:#2B9FD8;
font-weight:500;
margin-bottom:20px;
}

/* =========================
   TEAM RESPONSIVE FIX
========================= */

/* Tablet */
@media (max-width: 992px){

.team-img{
height:240px;
}

.team-card h3{
font-size:18px;
}

}

/* Mobile */
@media (max-width: 768px){

.team-section{
padding:40px 15px;
}

.team-img{
height:260px;
}

.team-card{
margin-bottom:20px;
}

.exp-badge{
font-size:11px;
padding:5px 12px;
}

.subject-tag span{
font-size:11px;
padding:4px 10px;
}

.team-social a{
font-size:16px;
margin:6px;
}

}

/* Small Mobile */
@media (max-width: 480px){

.team-img{
height:220px;
}

.team-card h3{
font-size:16px;
}

.team-card p{
font-size:14px;
}

}