*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f7f9fc;
    color:#222;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.header{
    background:white;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    position:sticky;
    top:0;
    z-index:100;
}

.nav{
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:#003b7a;
    font-weight:700;
    font-size:20px;
}

.logo img{
    width:55px;
    height:55px;
    object-fit:contain;
}

.menu{
    display:flex;
    gap:28px;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.menu a:hover{
    color:#0056d6;
}

.nav-btn{
    background:#f5b400;
    color:#111;
    padding:12px 22px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
}

.nav-btn:hover{
    background:#d99b00;
}
.hero{
    padding:90px 0;
    background:linear-gradient(135deg,#eaf3ff,#ffffff);
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:50px;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:52px;
    line-height:1.2;
    color:#003b7a;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    color:#555;
    margin-bottom:30px;
    max-width:560px;
}

.hero-btn,
.hero-btn2{
    display:inline-block;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    font-weight:600;
    margin-right:12px;
}

.hero-btn{
    background:#f5b400;
    color:#111;
}

.hero-btn2{
    background:#0aa84f;
    color:white;
}

.hero-image{
    flex:1;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:620px;
    border-radius:30px;
    transition:0.4s;
    cursor: pointer;
    height: 360px;
    object-fit:cover;
    box-shadow:0 15x rgba(0,0,0,0.15);
}
.hero-image img:hover{
    transform: scale(1.03);
}

.universities{
    padding:60px 8%;
    text-align:center;
    background:#fff;
}

.universities h2{
    font-size:36px;
    color:#004aad;
}

.universities p{
    margin:15px 0 30px;
}

.university-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.university-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    font-weight:bold;
    transition:0.4s;
    cursor:pointer;
}
.university-card img{
    width:80px;
    height:80px;
    object-fit:contain;
    display:block;
    margin:auto;
.university-card:hover{
        transform: translateY(-10px);
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    }
}
.courses{
    padding:60px;
    text-align:center;
}

.course-card{
    display:inline-block;
    width:300px;
    margin:15px;
    padding:25px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}
.courses{
    padding:60px 8%;
    text-align:center;
}

.course-box{
    background:white;
    width:400px;
    margin:20px auto;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.course-box h2{
    color:#004aad;
    margin-bottom:10px;
}

.course-box p{
    margin:8px 0;
}
/* Apply Form Page */
#apply-page{
    min-height:100vh;
    background:#f4f8fb;
    padding:60px 20px;
}

.apply-box{
    max-width:450px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.apply-box h2{
    text-align:center;
    color:#004aad;
    margin-bottom:25px;
}

.apply-box p{
    font-weight:600;
    margin:12px 0 6px;
}

.apply-box input,
.apply-box select{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:10px;
}

.apply-box button{
    width:100%;
    margin-top:20px;
    padding:14px;
    border:none;
    border-radius:30px;
    background:#f4b400;
    font-weight:bold;
    cursor:pointer;
}
#apply-page{
    background:#f4f8fb;
    padding:50px;
}

.apply-box{
    width:400px;
    margin:auto;
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 0 15px rgba(0,0,0,0.2);
}

.apply-box h2{
    text-align:center;
    color:#004aad;
}

.apply-box input,
.apply-box select{
    width:100%;
    padding:10px;
    margin-bottom:15px;
}

.apply-box button{
    width:100%;
    padding:12px;
    background:#004aad;
    color:white;
    border:none;
    border-radius:8px;
    cursor:pointer;
}
/* ===== Apply Form ===== */

.apply-section{
    max-width:700px;
    margin:60px auto;
    background:#fff;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.apply-section h2{
    text-align:center;
    color:#004aad;
    margin-bottom:30px;
}

.apply-section input,
.apply-section select,
.apply-section textarea{
    width:100%;
    padding:15px;
    margin-bottom:20px;
    border:1px solid #ddd;
    border-radius:8px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.apply-section input:focus,
.apply-section select:focus,
.apply-section textarea:focus{
    border-color:#004aad;
    box-shadow:0 0 8px rgba(0,74,173,.2);
}

.apply-section button{
    width:100%;
    background:#004aad;
    color:#fff;
    padding:15px;
    border:none;
    border-radius:8px;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
}

.apply-section button:hover{
    background:#00327a;
}
/* ===== FIX FOR UNIVERSITIES PAGE ===== */

header{
    background:white;
    box-shadow:0 4px 20px rgba(0,0,0,0.08);
    padding:15px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:sticky;
    top:0;
    z-index:100;
}

header .logo{
    display:flex;
    align-items:center;
    gap:10px;
}

header .logo img{
    width:60px;
    height:60px;
    object-fit:contain;
}

header nav{
    display:flex;
    gap:25px;
}

header nav a{
    text-decoration:none;
    color:#333;
    font-weight:600;
}

header nav a:hover{
    color:#004aad;
}

.hero-small{
    padding:70px 8%;
    text-align:center;
    background:linear-gradient(135deg,#eaf3ff,#ffffff);
}

.hero-small h1{
    font-size:42px;
    color:#004aad;
    margin-bottom:10px;
}

.hero-small p{
    font-size:18px;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    background:#f5b400;
    color:#111;
    padding:12px 25px;
    border-radius:25px;
    text-decoration:none;
    font-weight:700;
}

.university-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-top:35px;
}

.university-box{
    background:white;
    padding:25px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,0.10);
    text-align:center;
}

.university-box img{
    width:130px;
    height:90px;
    object-fit:contain;
    margin-bottom:15px;
}

.university-box h3{
    color:#004aad;
    margin-bottom:15px;
}

.footer{
    background:#003b7a;
    color:white;
    text-align:center;
    padding:40px 20px;
}

.footer img{
    width:90px;
    margin-bottom:10px;
}

.footer a{
    color:#f5b400;
}

.whatsapp-float{
    position:fixed;
    right:20px;
    bottom:20px;
    z-index:999;
}

.whatsapp-float img{
    width:55px;
}

@media(max-width:768px){
    header{
        flex-direction:column;
        gap:15px;
    }

    header nav{
        flex-wrap:wrap;
        justify-content:center;
    }

    .university-container{
        grid-template-columns:1fr;
    }

    .hero-small h1{
        font-size:32px;
    }
}
.university-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.university-card{
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    text-align:center;
}

.university-card img{
    width:140px;
    height:90px;
    object-fit:contain;
    display:block;
    margin:0 auto 20px;
}

.university-card h3{
    margin-bottom:15px;
}

.btn{
    display:inline-block;
    background:#f5b400;
    color:#111;
    padding:12px 24px;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
}
/* WHY US */

.why-us{
    padding:70px 8%;
    text-align:center;
    background:#f7f9fc;
    }
    
    .why-us h2{
    font-size:36px;
    color:#004aad;
    margin-bottom:40px;
    }
    
    .why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    }
    
    .why-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
    transition:.3s;
    }
    
    .why-box:hover{
    transform:translateY(-5px);
    }
    
    .why-box h3{
    color:#004aad;
    margin-bottom:15px;
    }
    /* HOME HERO */

.home-hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    padding:80px 8%;
    background:linear-gradient(135deg,#eaf3ff,#ffffff);
}

.home-hero-text{
    flex:1;
}

.home-hero-text h1{
    font-size:48px;
    color:#004aad;
    margin-bottom:20px;
}

.home-hero-text p{
    font-size:18px;
    margin-bottom:25px;
    color:#555;
}

.hero-btn{
    display:inline-block;
    padding:14px 28px;
    background:#f5b400;
    color:#111;
    border-radius:30px;
    text-decoration:none;
    font-weight:bold;
    margin-right:10px;
}

.hero-btn.whatsapp{
    background:#0aa84f;
    color:white;
}

.home-hero-img img{
    width:420px;
    max-width:100%;
    border-radius:25px;
}

@media(max-width:768px){
    .home-hero{
        flex-direction:column;
        text-align:center;
    }

    .home-hero-text h1{
        font-size:34px;
    }
}
.footer{
    background:#003b7a;
    color:white;
    text-align:center;
    padding:40px 20px;
    margin-top:50px;
}

.footer h3{
    font-size:26px;
    margin-bottom:10px;
}

.footer p{
    margin:8px 0;
    color:white;
}
.whatsapp-float{
    position:fixed;
    bottom:20px;
    right:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    text-decoration:none;
    box-shadow:0 5px 15px rgba(0,0,0,.3);
    z-index:999;
    transition:.3s;
}

.whatsapp-float:hover{
    transform:scale(1.1);
}
/* University Cards Fix */
.university-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:30px;
    margin-top:40px;
}

.university-card{
    background:#fff;
    border-radius:20px;
    padding:30px 20px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    transition:0.4s;
    text-decoration:none;
    color:#222;
    min-height:280px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:space-between;
}

.university-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.18);
}

.university-card img{
    width:150px;
    height:120px;
    object-fit:contain;
}

.university-card h3{
    color:#004aad;
    font-size:18px;
    margin:15px 0;
}

.university-card button{
    background:#f5b400;
    color:#111;
    border:none;
    padding:12px 25px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
}
/* Universities Page Final Fix */

.university-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    padding:40px;
}

.university-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.3s;
}

.university-card:hover{
    transform:translateY(-10px);
}

.university-card img{
    width:140px;
    height:100px;
    object-fit:contain;
    margin:auto;
    display:block;
}

.university-card h3{
    margin:20px 0 15px;
}

.university-card button{
    background:#f5b400;
    color:#fff;
    border:none;
    padding:12px 28px;
    border-radius:30px;
    cursor:pointer;
    font-weight:bold;
}
/* Courses Page */

.courses{
    padding:80px 8%;
    text-align:center;
}

.courses h1{
    font-size:42px;
    color:#004aad;
    margin-bottom:10px;
}

.courses p{
    color:#666;
}

.course-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:50px;
}

.course-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    transition:.3s;
}

.course-card:hover{
    transform:translateY(-10px);
}

.course-card h2{
    color:#004aad;
    margin-bottom:20px;
}

.course-card p{
    margin:10px 0;
}

.course-card .btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#f5b400;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:bold;
}
/* About Page */

.about-page{
    padding:80px 8%;
    text-align:center;
    background:linear-gradient(135deg,#eef7ff,#ffffff);
}

.about-page h1{
    font-size:42px;
    color:#004aad;
    margin-bottom:15px;
}

.about-intro{
    max-width:750px;
    margin:0 auto 40px;
    color:#555;
    font-size:18px;
}

.about-box{
    background:#fff;
    max-width:850px;
    margin:25px auto;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    text-align:left;
}

.about-box h2{
    color:#004aad;
    margin-bottom:15px;
}

.about-box p{
    color:#555;
    line-height:1.7;
}

.about-page .btn{
    display:inline-block;
    margin:20px 8px;
}
.hero-image img{
    width:100%;
    max-width:550px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
    animation:float 4s ease-in-out infinite;
}

@keyframes float{
    0%{transform:translateY(0);}
    50%{transform:translateY(-12px);}
    100%{transform:translateY(0);}
}
.about-page{
    padding:80px 8%;
    text-align:center;
    background:linear-gradient(135deg,#eef7ff,#ffffff);
}

.about-page h1{
    font-size:42px;
    color:#004aad;
    margin-bottom:15px;
}

.about-intro{
    max-width:850px;
    margin:0 auto 40px;
    color:#555;
    font-size:18px;
    line-height:1.7;
}

.about-box{
    background:#fff;
    max-width:850px;
    margin:25px auto;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    text-align:left;
}

.about-box h2{
    color:#004aad;
    margin-bottom:15px;
}

.about-box p{
    color:#555;
    line-height:1.7;
}

.about-buttons{
    margin-top:30px;
}
.contact-page{
    padding:80px 8%;
    background:linear-gradient(135deg,#eef7ff,#ffffff);
    text-align:center;
}

.contact-page h1{
    font-size:42px;
    color:#004aad;
}

.contact-intro{
    color:#555;
    margin:10px 0 40px;
}

.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.contact-box{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
    text-align:left;
}

.contact-box h2{
    color:#004aad;
    margin-bottom:20px;
}

.contact-box p{
    margin:12px 0;
    color:#555;
}

.contact-box input,
.contact-box textarea{
    width:100%;
    padding:14px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:10px;
    font-family:inherit;
}

.contact-box textarea{
    height:130px;
    resize:none;
}

.contact-box button{
    background:#f5b400;
    color:#111;
    border:none;
    padding:14px 30px;
    border-radius:30px;
    font-weight:bold;
    cursor:pointer;
}
.footer{
    background:#003366;
    color:white;
    text-align:center;
    padding:40px 20px;
}

.footer h3{
    color:#fff;
    margin-bottom:15px;
}

.footer p{
    color:#ddd;
    margin:8px 0;
}
@media (max-width: 768px){

    .nav{
        flex-direction: column;
        gap: 15px;
    }

    .menu{
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .nav-btn{
        width: 100%;
        text-align: center;
    }

    .hero{
        padding: 60px 20px;
        text-align: center;
    }

    .hero-content{
        flex-direction: column;
    }

    .hero-text h1{
        font-size: 32px;
    }

    .hero-text p{
        font-size: 16px;
    }

    .university-grid,
    .courses-grid,
    .contact-section{
        grid-template-columns: 1fr;
    }

    .contact-box{
        width: 100%;
    }

    img{
        max-width: 100%;
        height: auto;
    }
}
/* Mobile Menu */
.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

@media (max-width:768px){
    .nav{
        position:relative;
    }

    .menu-toggle{
        display:block;
        font-size:30px;
        cursor:pointer;
    }

    .menu{
        display:none;
        width:100%;
        flex-direction:column;
        text-align:center;
        background:#ffffff;
        padding:15px 0;
    }

    .menu.active{
        display:flex !important;
    }

    .nav-btn{
        display:none;
    }
}
.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
    margin:50px 0;
}

.contact-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.contact-box h2{
    margin-bottom:20px;
    color:#004aad;
}

.contact-box p{
    margin:12px 0;
}

.contact-box input,
.contact-box textarea{
    width:100%;
    padding:12px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:8px;
}

.contact-box textarea{
    height:120px;
}

.contact-box button{
    background:#004aad;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
}

.whatsapp-btn{
    display:inline-block;
    margin-top:15px;
    background:#25D366;
    color:#fff;
    padding:12px 20px;
    border-radius:8px;
    text-decoration:none;
}
.map-section{
    padding:60px 0;
}

.map-section h2{
    text-align:center;
    margin-bottom:20px;
    color:#004aad;
}