/* ===== GOOGLE FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:
    linear-gradient(
        135deg,
        #f8fbff,
        #eef4ff
    );
    min-height:100vh;
}

/* NAVBAR */

.navbar{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:1400px;
    z-index:1000;

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:blur(18px);

    border:1px solid
    rgba(255,255,255,0.5);

    border-radius:20px;

    box-shadow:
    0 8px 30px
    rgba(0,0,0,0.08);
}

.container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:16px 35px;
}

/* LOGO */

.logo{
    display:flex;
    align-items:center;
    gap:14px;
    text-decoration:none;
}

.logo-icon{
    width:55px;
    height:55px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;
    font-size:28px;

    box-shadow:
    0 10px 25px
    rgba(37,99,235,.3);
}

.logo-text h2{
    color:#0f172a;
    font-size:22px;
    font-weight:700;
    line-height:1;
}

.logo-text p{
    color:#64748b;
    font-size:11px;
    letter-spacing:4px;
    margin-top:4px;
}

/* NAVIGATION */

.nav-menu{
    display:flex;
    gap:35px;
}

.nav-menu a{
    text-decoration:none;
    color:#334155;
    font-weight:500;
    position:relative;
    transition:.3s;
}

.nav-menu a:hover{
    color:#2563eb;
}

.nav-menu a::after{
    content:'';
    position:absolute;
    bottom:-8px;
    left:0;

    width:0%;
    height:3px;

    background:#2563eb;
    border-radius:10px;

    transition:.3s;
}

.nav-menu a:hover::after{
    width:100%;
}

.nav-menu .active{
    color:#2563eb;
    font-weight:600;
}

.nav-menu .active::after{
    width:100%;
}

/* BUTTON */

.admission-btn{
    border:none;
    outline:none;

    background:
    linear-gradient(
        135deg,
        #f97316,
        #fb923c
    );

    color:white;

    padding:14px 28px;

    border-radius:50px;

    font-size:15px;
    font-weight:600;

    cursor:pointer;

    transition:.3s;

    box-shadow:
    0 10px 25px
    rgba(249,115,22,.35);
}

.admission-btn:hover{
    transform:
    translateY(-3px);

    box-shadow:
    0 15px 35px
    rgba(249,115,22,.45);
}

/* MOBILE */

.hamburger{
    display:none;
    flex-direction:column;
    gap:5px;
    cursor:pointer;
}

.hamburger span{
    width:28px;
    height:3px;
    background:#0f172a;
    border-radius:20px;
}

/* RESPONSIVE */

@media(max-width:992px){

    .nav-menu,
    .admission-btn{
        display:none;
    }

    .hamburger{
        display:flex;
    }

    .container{
        padding:15px 20px;
    }

    .logo-text h2{
        font-size:18px;
    }

}

/* ===== HERO SECTION ===== */

.hero{
    position:relative;
    min-height:100vh;

    background:
    linear-gradient(
        135deg,
        #1a4191,
        #19284d,
        #172554
    );

    overflow:hidden;

    display:flex;
    align-items:center;

    padding:120px 8%;
}

/* BACKGROUND SHAPES */

.shape{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.shape1{
    width:400px;
    height:400px;
    background:#2563eb;
    top:-100px;
    left:-100px;
    opacity:.3;
}

.shape2{
    width:300px;
    height:300px;
    background:#f97316;
    right:-80px;
    top:30%;
    opacity:.3;
}

.shape3{
    width:250px;
    height:250px;
    background:#7c3aed;
    bottom:-100px;
    left:40%;
    opacity:.25;
}

.hero-container{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
    position:relative;
    z-index:10;
}

/* LEFT SIDE */

.hero-content{
    flex:1;
}

.hero-badge{
    display:inline-block;

    background:
    rgba(240, 32, 32, 0.08);

    border:
    1px solid rgba(255,255,255,.1);

    color:#60a5fa;

    padding:12px 20px;

    border-radius:50px;

    margin-bottom:30px;

    backdrop-filter:blur(10px);
}

.hero-content h1{
    font-size:72px;
    color:white;
    line-height:1.1;
    margin-bottom:25px;
}

.hero-content h1 span{
    background:
    linear-gradient(
        90deg,
        #2563eb,
        #60a5fa,
        #f97316
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.hero-content p{
    color:#cbd5e1;
    font-size:20px;
    line-height:1.8;
    max-width:650px;
    margin-bottom:40px;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;
    margin-bottom:60px;
}

.btn-primary{
    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:white;
    text-decoration:none;

    padding:18px 35px;

    border-radius:60px;

    font-weight:600;

    box-shadow:
    0 15px 35px
    rgba(37,99,235,.4);

    transition:.3s;
}

.btn-primary:hover{
    transform:
    translateY(-5px);
}

.btn-secondary{
    padding:18px 35px;

    border-radius:60px;

    color:white;

    text-decoration:none;

    border:1px solid
    rgba(255,255,255,.2);

    backdrop-filter:blur(10px);

    transition:.3s;
}

.btn-secondary:hover{
    background:
    rgba(255,255,255,.08);
}

/* STATS */

.stats{
    display:flex;
    gap:50px;
}

.stat h2{
    color:white;
    font-size:42px;
}

.stat span{
    color:#94a3b8;
}

/* RIGHT SIDE */

.hero-image{
    flex:1;

    display:flex;
    justify-content:center;
}

.glass-card{

    width:450px;

    padding:50px;

    background:
    rgba(255,255,255,.06);

    border:
    1px solid rgba(255,255,255,.1);

    border-radius:30px;

    backdrop-filter:blur(25px);

    box-shadow:
    0 25px 60px
    rgba(0,0,0,.3);

    animation:
    floating 4s ease-in-out infinite;
}

.atom{
    font-size:80px;
    text-align:center;
    margin-bottom:25px;
}

.glass-card h3{
    color:white;
    font-size:30px;
    margin-bottom:20px;
}

.glass-card p{
    color:#cbd5e1;
    line-height:1.7;
    margin-bottom:30px;
}

.features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
}

.features div{
    background:
    rgba(255,255,255,.08);

    color:white;

    padding:15px;

    border-radius:15px;

    text-align:center;
}

@keyframes floating{

    0%{
        transform:
        translateY(0);
    }

    50%{
        transform:
        translateY(-20px);
    }

    100%{
        transform:
        translateY(0);
    }

}

/* MOBILE */

@media(max-width:992px){

    .hero-container{
        flex-direction:column;
    }

    .hero-content h1{
        font-size:48px;
    }

    .glass-card{
        width:100%;
    }

    .stats{
        gap:25px;
    }

}


/* =======================================
   WHY US SECTION
======================================= */

.why-us{
    position:relative;
    padding:120px 8%;
    background:#ffffff;
    overflow:hidden;
}

/* Header */

.section-header{
    text-align:center;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.section-tag{
    display:inline-block;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:white;

    padding:10px 25px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    letter-spacing:2px;
}

.section-header h2{
    font-size:52px;
    margin-top:25px;
    color:#0f172a;
}

.section-header h2 span{
    background:
    linear-gradient(
        90deg,
        #2563eb,
        #f97316
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.section-header p{
    color:#64748b;
    font-size:18px;
    line-height:1.8;
    margin-top:20px;
}

/* Grid */

.why-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(320px,1fr));

    gap:30px;
}

/* Card */

.why-card{

    background:
    rgba(255,255,255,0.75);

    backdrop-filter:
    blur(20px);

    border:
    1px solid rgba(226,232,240,0.8);

    border-radius:28px;

    padding:40px;

    transition:0.4s;

    box-shadow:
    0 10px 35px
    rgba(0,0,0,0.05);

    position:relative;

    overflow:hidden;
}

/* Gradient Top Border */

.why-card::before{
    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:
    linear-gradient(
        90deg,
        #2563eb,
        #f97316
    );
}

/* Hover */

.why-card:hover{
    transform:
    translateY(-15px);

    box-shadow:
    0 30px 60px
    rgba(37,99,235,0.15);
}

/* Icon */

.icon{

    width:80px;
    height:80px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    border-radius:20px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:36px;

    margin-bottom:25px;

    box-shadow:
    0 15px 35px
    rgba(37,99,235,.2);
}

.why-card h3{
    font-size:26px;
    color:#0f172a;
    margin-bottom:15px;
}

.why-card p{
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

/* Responsive */

@media(max-width:768px){

    .section-header h2{
        font-size:36px;
    }

    .why-card{
        padding:30px;
    }

}



/* =======================================
   ABOUT SECTION
======================================= */

.about-section{

    position:relative;

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    overflow:hidden;
}

/* Background */

.about-blob{

    position:absolute;

    border-radius:50%;

    filter:blur(120px);
}

.blob1{

    width:250px;
    height:250px;

    background:#2563eb;

    opacity:.12;

    left:-100px;
    top:100px;
}

.blob2{

    width:250px;
    height:250px;

    background:#f97316;

    opacity:.12;

    right:-100px;
    bottom:100px;
}

/* Layout */

.about-container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:80px;
}

/* Left Side */

.about-image{

    flex:1;

    position:relative;
}

.image-card{

    position:relative;

    border-radius:35px;

    overflow:hidden;

    box-shadow:
    0 30px 60px
    rgba(0,0,0,.1);
}

.image-card img{

    width:100%;

    display:block;

    border-radius:35px;
}

/* Experience Card */

.experience-card{

    position:absolute;

    right:-30px;
    bottom:40px;

    background:
    rgba(255,255,255,.85);

    backdrop-filter:blur(20px);

    padding:25px 35px;

    border-radius:25px;

    box-shadow:
    0 20px 40px
    rgba(0,0,0,.1);
}

.experience-card h2{

    font-size:42px;

    color:#2563eb;
}

.experience-card p{

    color:#64748b;
}

/* Right Side */

.about-content{

    flex:1;
}

.about-content h2{

    font-size:52px;

    color:#0f172a;

    margin:20px 0;
}

.about-content h2 span{

    background:
    linear-gradient(
        90deg,
        #2563eb,
        #f97316
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.about-content p{

    color:#64748b;

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;
}

/* Features */

.about-features{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:20px;

    margin-bottom:40px;
}

.feature{

    background:white;

    padding:18px;

    border-radius:15px;

    box-shadow:
    0 10px 25px
    rgba(0,0,0,.05);

    color:#0f172a;

    font-weight:500;
}

/* Stats */

.about-stats{

    display:flex;

    gap:20px;
}

.stat-box{

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:white;

    padding:25px;

    border-radius:20px;

    min-width:120px;

    text-align:center;

    box-shadow:
    0 20px 40px
    rgba(37,99,235,.2);
}

.stat-box h3{

    font-size:32px;

    margin-bottom:5px;
}

/* Responsive */

@media(max-width:992px){

    .about-container{

        flex-direction:column;
    }

    .about-content h2{

        font-size:40px;
    }

    .about-stats{

        flex-wrap:wrap;
    }

}

/* =======================================
   COURSES SECTION
======================================= */

.courses{

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #f8fbff,
        #ffffff
    );
}

/* GRID */

.courses-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(330px,1fr));

    gap:35px;
}

/* CARD */

.course-card{

    background:#fff;

    border-radius:30px;

    padding:40px;

    position:relative;

    overflow:hidden;

    transition:0.4s;

    box-shadow:
    0 15px 40px
    rgba(0,0,0,0.06);

    border:
    1px solid
    rgba(226,232,240,.8);
}

/* FEATURED CARD */

.featured{

    transform:scale(1.05);

    background:
    linear-gradient(
        135deg,
        #475a88,
        #5582ca
    );
    
}
#fea{
    color:white;
}



/* BADGE */

.course-badge{

    position:absolute;

    top:25px;
    right:25px;

    background:
    linear-gradient(
        135deg,
        #f97316,
        #fb923c
    );

    color:white;

    padding:8px 18px;

    border-radius:50px;

    font-size:13px;

    font-weight:600;
}

/* ICON */

.course-icon{

    width:90px;
    height:90px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    border-radius:24px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:42px;

    margin-bottom:30px;

    box-shadow:
    0 20px 40px
    rgba(37,99,235,.25);
}

/* TEXT */

.course-card h3{

    font-size:30px;

    margin-bottom:15px;

    color:#0f172a;
}

.course-card p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;
}

.course-card ul{

    list-style:none;

    margin-bottom:30px;
}

.course-card li{

    padding:10px 0;

    color:#334155;
}

/* BUTTON */

.course-card button{

    width:100%;

    border:none;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:white;

    padding:16px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    transition:.3s;
}

.course-card button:hover{

    transform:
    translateY(-3px);

    box-shadow:
    0 15px 35px
    rgba(37,99,235,.3);
}

/* HOVER */

.course-card:hover{

    transform:
    translateY(-15px);

    box-shadow:
    0 35px 70px
    rgba(0,0,0,.1);
}

.featured:hover{

    transform:
    scale(1.05)
    translateY(-15px);
}

/* MOBILE */

@media(max-width:768px){

    .featured{
        transform:none;
    }

    .featured:hover{
        transform:
        translateY(-10px);
    }

}

/* =======================================
   RESULTS SECTION
======================================= */

.results{

    position:relative;

    padding:120px 8%;

    background:
    linear-gradient(
        135deg,
        #071426,
        #0f172a
    );

    overflow:hidden;
}

/* Background */

.results-bg-circle{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.circle1{
    width:300px;
    height:300px;
    background:#2563eb;
    top:-100px;
    left:-100px;
    opacity:.3;
}

.circle2{
    width:300px;
    height:300px;
    background:#f97316;
    bottom:-100px;
    right:-100px;
    opacity:.3;
}

/* Header */

.results .section-header h2,
.results .section-header p{
    color:white;
}

.results .section-header p{
    color:#cbd5e1;
}

/* Stats */

.stats-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;

    margin-top:80px;
}

.stat-card{

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.1);

    padding:40px;

    border-radius:25px;

    text-align:center;

    transition:.4s;
}

.stat-card:hover{

    transform:
    translateY(-10px);

    background:
    rgba(255,255,255,.1);
}

.stat-card h1{

    font-size:52px;

    background:
    linear-gradient(
        90deg,
        #60a5fa,
        #f97316
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.stat-card p{

    color:#e2e8f0;

    margin-top:10px;
}

/* Topper Cards */

.topper-container{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-top:80px;
}

.topper-card{

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.1);

    border-radius:30px;

    padding:40px;

    text-align:center;

    transition:.4s;
}

.topper-card:hover{

    transform:
    translateY(-15px);
}

.topper-card.featured{

    transform:scale(1.08);

    background:
    linear-gradient(
        135deg,
        rgba(37,99,235,.2),
        rgba(249,115,22,.2)
    );
}

.rank{

    font-size:40px;

    margin-bottom:20px;
}

/* Student Image */

.student-photo{

    width:120px;
    height:120px;

    border-radius:50%;

    margin:auto;

    margin-bottom:25px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #f97316
    );
}

.topper-card h3{

    color:white;

    font-size:28px;
}

.topper-card span{

    color:#94a3b8;
}

.topper-card h2{

    margin:20px 0;

    color:#60a5fa;

    font-size:42px;
}

.topper-card p{

    color:#cbd5e1;
}

/* Responsive */

@media(max-width:768px){

    .topper-card.featured{
        transform:none;
    }

}

/* =======================================
   GALLERY SECTION
======================================= */

.gallery-section{

    position:relative;

    padding:120px 8%;

    background:
    linear-gradient(
        180deg,
        #ffffff,
        #f8fbff
    );

    overflow:hidden;
}

/* Background Glow */

.gallery-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
}

.glow1{
    width:300px;
    height:300px;

    background:#2563eb;

    top:-100px;
    left:-100px;

    opacity:.12;
}

.glow2{
    width:250px;
    height:250px;

    background:#f97316;

    right:-50px;
    bottom:-50px;

    opacity:.12;
}

/* Masonry Grid */

.gallery-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    grid-auto-rows:220px;

    gap:20px;

    margin-top:70px;
}

/* Card */

.gallery-item{

    position:relative;

    overflow:hidden;

    border-radius:25px;

    cursor:pointer;

    box-shadow:
    0 15px 40px
    rgba(0,0,0,.08);
}

/* Sizes */

.gallery-item.large{
    grid-column:span 2;
}

.gallery-item.wide{
    grid-column:span 2;
}

.gallery-item.tall{
    grid-row:span 2;
}

/* Image */

.gallery-item img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.6s;
}

/* Overlay */

.gallery-overlay{

    position:absolute;

    bottom:0;
    left:0;

    width:100%;

    padding:30px;

    background:
    linear-gradient(
        transparent,
        rgba(0,0,0,.85)
    );

    color:white;

    transform:
    translateY(100%);

    transition:.4s;
}

.gallery-overlay h3{
    font-size:24px;
}

/* Hover */

.gallery-item:hover img{

    transform:
    scale(1.12);
}

.gallery-item:hover .gallery-overlay{

    transform:
    translateY(0);
}

/* Button */

.gallery-button{

    text-align:center;

    margin-top:60px;
}

.gallery-button button{

    border:none;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:white;

    padding:18px 40px;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    cursor:pointer;

    box-shadow:
    0 20px 40px
    rgba(37,99,235,.25);

    transition:.3s;
}

.gallery-button button:hover{

    transform:
    translateY(-5px);
}

/* Mobile */

@media(max-width:992px){

    .gallery-grid{

        grid-template-columns:
        repeat(2,1fr);

        grid-auto-rows:180px;
    }

}

@media(max-width:576px){

    .gallery-grid{

        grid-template-columns:1fr;
    }

    .gallery-item.large,
    .gallery-item.wide,
    .gallery-item.tall{

        grid-column:auto;
        grid-row:auto;
    }

}

/* =======================================
   CONTACT SECTION
======================================= */

.contact-section{

    padding:120px 8%;

    background:
    linear-gradient(
        135deg,
        #1c2a64,
        #1c2e5a
    );
}

/* Header */

.contact-section .section-header h2,
.contact-section .section-header p{
    color:white;
}

.contact-section .section-header p{
    color:#cbd5e1;
}

/* Grid */

.contact-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:25px;

    margin-top:70px;
}

/* Cards */

.contact-card{

    background:
    rgba(255,255,255,.06);

    backdrop-filter:blur(20px);

    border:
    1px solid rgba(255,255,255,.1);

    border-radius:25px;

    padding:40px;

    text-align:center;

    transition:.4s;
}

.contact-card:hover{

    transform:
    translateY(-10px);

    background:
    rgba(255,255,255,.1);
}

/* Icon */

.contact-icon{

    width:80px;
    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:50%;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:35px;

    box-shadow:
    0 15px 35px
    rgba(37,99,235,.25);
}

.whatsapp{

    background:
    linear-gradient(
        135deg,
        #16a34a,
        #22c55e
    );
}

.contact-card h3{

    color:white;

    font-size:24px;

    margin-bottom:15px;
}

.contact-card p{

    color:#cbd5e1;

    line-height:1.8;
}

/* Map */

.map-container{

    margin-top:70px;

    border-radius:30px;

    overflow:hidden;

    box-shadow:
    0 25px 60px
    rgba(0,0,0,.3);
}

.map-container iframe{

    width:100%;

    height:450px;

    border:none;
}

/* Mobile */

@media(max-width:768px){

    .map-container iframe{
        height:300px;
    }

}



/* =======================================
   FOOTER
======================================= */

.footer{

    background:#0f172a;

    position:relative;

    overflow:hidden;
}

/* Curve */

.footer-wave{

    line-height:0;

    transform:
    translateY(-2px);
}

.footer-wave svg{

    width:100%;

    height:120px;
}

/* Layout */

.footer-container{

    padding:80px 8% 50px;

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:50px;
}

/* Brand */

.footer-logo{

    width:70px;
    height:70px;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    color:white;

    margin-bottom:20px;

    box-shadow:
    0 15px 35px
    rgba(37,99,235,.3);
}

.footer h2,
.footer h3{

    color:white;

    margin-bottom:20px;
}

.footer p,
.footer a{

    color:#94a3b8;

    line-height:2;

    text-decoration:none;

    transition:.3s;
}

/* Links */

.footer-links a{

    display:block;
}

.footer-links a:hover{

    color:white;

    transform:
    translateX(5px);
}

/* Social */

.social-icons{

    display:flex;

    gap:15px;
}

.social-icons a{

    width:50px;
    height:50px;

    border-radius:50%;

    background:
    rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:22px;

    transition:.3s;
}

.social-icons a:hover{

    background:
    #2563eb;

    transform:
    translateY(-5px);
}

/* Bottom */

.footer-bottom{

    border-top:
    1px solid rgba(255,255,255,.1);

    padding:25px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;
}

.footer-bottom span{

    color:#60a5fa;

    font-weight:700;
}

/* Mobile */

@media(max-width:992px){

    .footer-container{

        grid-template-columns:
        1fr 1fr;

        gap:40px;
    }

    .footer-bottom{

        flex-direction:column;

        gap:10px;

        text-align:center;
    }

}

@media(max-width:600px){

    .footer-container{

        grid-template-columns:
        1fr;
    }

}


/* MOBILE MENU */

@media(max-width:992px){

    .nav-menu{
        position:fixed;

        top:95px;
        left:50%;

        transform:
        translateX(-50%)
        translateY(-30px);

        width:92%;

        background:white;

        border-radius:20px;

        padding:30px;

        display:flex;

        flex-direction:column;

        gap:25px;

        box-shadow:
        0 20px 50px
        rgba(0,0,0,.1);

        opacity:0;
        visibility:hidden;

        transition:.3s;
    }

    .nav-menu.active{

        opacity:1;
        visibility:visible;

        transform:
        translateX(-50%)
        translateY(0);
    }

    .nav-menu a{
        font-size:18px;
    }

    .admission-btn{
        display:none;
    }
}