/* =========================
   RESET
========================= */
@import url("responsive.css");

html,
body{
    overflow-x:hidden;
    width:100%;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f8fbfd;
    color:#222;
}

/* =========================
   CONTAINER
========================= */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* =========================
   NAVBAR
========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    z-index:999;
}

.navbar{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 0;
}

.logo img{
    height:60px;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
    flex-wrap:wrap;
}

.nav-links a{
    text-decoration:none;
    color:#0A5C73;
    font-weight:600;
    transition:.3s;
}

.nav-links a:hover{
    color:#4CB7C5;
}

/* =========================
   BUTTONS
========================= */

.btn{
    background:#0A5C73;
    color:#fff !important;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    display:inline-block;
    font-weight:600;
}

.btn:hover{
    background:#4CB7C5;
}

.btn2{
    border:2px solid #fff;
    color:#fff;
    padding:12px 28px;
    border-radius:30px;
    text-decoration:none;
    margin-left:15px;
    transition:.3s;
}

.btn2:hover{
    background:#fff;
    color:#0A5C73;
}

/* =========================
   HERO
========================= */

.hero{
    width:100%;
    min-height:100vh;
    background:linear-gradient(135deg,#0A5C73,#4CB7C5);
    display:flex;
    justify-content:center;
    align-items:center;
    padding:120px 20px;
    color:#fff;
}

.hero-text h1{
    font-size:60px;
    margin-bottom:15px;
}

.hero-text h2{
    font-size:35px;
    margin-bottom:20px;
}

.hero-text p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    align-items:center;
}

.hero-image{
    width:40%;
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:420px;
    animation:float 4s ease-in-out infinite;
}
.hero-content{
    width:100%;
    max-width:1200px;
    margin:auto;
}


/* =========================
   ANIMATION
========================= */

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-15px);
}

100%{
transform:translateY(0);
}

}
/* ABOUT PAGE */

.about-page{
    padding:140px 8% 80px;
    background:#f8fbfd;
}

.about-container{
    max-width:1100px;
    margin:auto;
}

.about-container h1{
    font-size:50px;
    color:#0A5C73;
    margin-bottom:30px;
}

.about-container p{
    font-size:18px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
    margin-top:60px;
}

.about-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.about-card:hover{
    transform:translateY(-10px);
}

.about-card i{
    font-size:50px;
    color:#0A5C73;
    margin-bottom:20px;
}

.about-card h3{
    margin-bottom:10px;
    color:#0A5C73;
}
/* =========================
   SERVICES
========================= */

.services-page{
    padding:140px 8% 80px;
    text-align:center;
}

.services-page h1{
    font-size:50px;
    color:#0A5C73;
    margin-bottom:20px;
}

.services-page>p{
    max-width:700px;
    margin:0 auto 60px;
    color:#666;
    line-height:1.8;
}
.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.card{
    background:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.card i{
    font-size:60px;
    color:#0A5C73;
    margin-bottom:20px;
}

.card h3{
    font-size:24px;
    margin-bottom:15px;
    color:#0A5C73;
}

.card p{
    color:#666;
    line-height:1.8;
    font-size:16px;
}
/* Universities Page */

.universities-page{

padding:140px 8% 80px;

text-align:center;

}

.universities-page h1{

font-size:50px;

color:#0A5C73;

margin-bottom:20px;

}

.universities-page>p{

max-width:700px;

margin:0 auto 60px;

line-height:1.8;

color:#666;

}

.universities-page .card{

padding:40px;

}

.universities-page .card i{

font-size:55px;

color:#0A5C73;

margin-bottom:20px;

}

.universities-page .btn{

display:inline-block;

margin-top:20px;

}
/* =========================
   STATISTICS
========================= */

.stats{
    background:#0A5C73;
    color:#fff;
    padding:80px 8%;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:30px;

    text-align:center;
}

.stat-box h2{
    font-size:50px;
    margin-bottom:10px;
}

.stat-box p{
    font-size:20px;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonials{
    padding:100px 8%;
    background:#f7f9fc;
}

.testimonials h2{
    text-align:center;
    font-size:42px;
    color:#0A5C73;
    margin-bottom:60px;
}

.testimonials .card p:first-child{
    color:#FFD700;
    font-size:22px;
}
/* =========================
   FOOTER
========================= */

footer{
    background:#072f3b;
    color:#fff;
    text-align:center;
    padding:60px 20px;
}

.footer-content img{
    margin-bottom:20px;
}

.socials{
    margin:25px 0;
}

.socials i{
    font-size:28px;
    margin:0 12px;
    cursor:pointer;
    transition:.3s;
}

.socials i:hover{
    color:#4CB7C5;
}
.why-choose{
    padding:100px 10%;
    background:#f8fbfd;
    text-align:center;
}

.why-choose h2{
    font-size:40px;
    margin-bottom:50px;
}

.features{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.feature{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature:hover{
    transform:translateY(-8px);
}

.feature h3{
    margin-bottom:15px;
    color:#0099cc;
}

.feature p{
    color:#555;
    line-height:1.7;
}

.stats{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    padding:80px 10%;
    background:#0099cc;
    text-align:center;
}

.stat h2{
    color:white;
    font-size:45px;
}

.stat p{
    color:white;
    margin-top:10px;
}
/* =========================
   CONTACT PAGE
========================= */

.contact-page{
    padding:140px 8%;
    background:#f8fbfd;
    min-height:100vh;
}

.contact-title{
    text-align:center;
    margin-bottom:60px;
}

.contact-title h1{
    font-size:50px;
    color:#0A5C73;
    margin-bottom:15px;
}

.contact-title p{
    font-size:18px;
    color:#666;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

/* Contact Information */

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-card{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.info-card:hover{
    transform:translateY(-8px);
}

.info-card i{
    font-size:30px;
    color:#0A5C73;
    margin-bottom:15px;
}

.info-card h3{
    color:#0A5C73;
    margin-bottom:10px;
}

.info-card p{
    color:#555;
    line-height:1.8;
}

/* Contact Form */

.contact-form{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0A5C73;
}

.contact-form textarea{
    resize:none;
}

.contact-form button{
    background:#0A5C73;
    color:white;
    border:none;
    padding:15px;
    border-radius:10px;
    cursor:pointer;
    font-size:17px;
    transition:.3s;
}

.contact-form button:hover{
    background:#4CB7C5;
}

/* Responsive */

@media(max-width:900px){

.contact-container{
grid-template-columns:1fr;
}

.contact-title h1{
font-size:40px;
}

}
/* UNIVERSITY DETAILS */

.university-details{

padding:140px 8% 80px;

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.university-image img{

width:100%;

border-radius:20px;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}

.university-content h1{

font-size:45px;

color:#0A5C73;

margin-bottom:20px;

}

.location{

color:#0099cc;

font-size:18px;

margin-bottom:20px;

}

.university-content p{

line-height:1.8;

margin-bottom:15px;

}

.university-content h2{

margin-top:30px;

margin-bottom:15px;

color:#0A5C73;

}

.university-content ul{

padding-left:20px;

margin-bottom:20px;

}

.university-content li{

margin-bottom:10px;

}

@media(max-width:900px){

.university-details{

grid-template-columns:1fr;

}

}
.accept-btn{

background:#28a745;
color:white;
border:none;
padding:10px 18px;
border-radius:8px;
cursor:pointer;
margin-right:8px;

}

.reject-btn{

background:#ffc107;
color:black;
border:none;
padding:10px 18px;
border-radius:8px;
cursor:pointer;
margin-right:8px;

}
.stats-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:20px;
margin-bottom:40px;
}

.stat-card{
background:white;
padding:30px;
text-align:center;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.stat-card h2{
font-size:45px;
color:#0A5C73;
}

.stat-card p{
margin-top:10px;
font-size:18px;
color:#555;
}

.search-box{
margin-bottom:30px;
}

.search-box input{
width:100%;
padding:15px;
font-size:18px;
border-radius:10px;
border:1px solid #ddd;
}
.login-container{

width:400px;

margin:120px auto;

background:white;

padding:40px;

border-radius:15px;

box-shadow:0 10px 25px rgba(0,0,0,.08);

text-align:center;

}

.login-container h1{

margin-bottom:30px;

color:#0A5C73;

}

.login-container input{

width:100%;

padding:15px;

margin:15px 0;

border:1px solid #ddd;

border-radius:8px;

font-size:16px;

}

#error{

margin-top:20px;

color:red;

font-weight:bold;

}
.login-btn{
    background:#2b7a9a;
    color:white;
    padding:10px 20px;
    border-radius:25px;
    text-decoration:none;
    transition:0.3s;
}

.login-btn:hover{
    background:#1f5f78;
}
/* ===== Login Page ===== */

.login-container{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    background:linear-gradient(135deg,#eef6fb,#d9edf7);
}

.login-card{
    width:380px;
    background:#fff;
    padding:40px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.lock-icon{
    width:80px;
    height:80px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#5b8fb9;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:38px;
}

.login-card h2{
    color:#2c3e50;
    margin-bottom:10px;
}

.login-card p{
    color:#777;
    margin-bottom:20px;
}

.login-card input{
    width:100%;
    padding:14px;
    margin:12px 0;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
}

.login-card input:focus{
    border-color:#5b8fb9;
}

.login-card .btn{
    width:100%;
    padding:14px;
    margin-top:15px;
    border:none;
    border-radius:30px;
    background:#5b8fb9;
    color:white;
    font-size:17px;
    cursor:pointer;
    transition:.3s;
}

.login-card .btn:hover{
    background:#3f6d91;
    transform:translateY(-2px);
}

#error{
    color:red;
    margin-top:15px;
}
.dashboard-header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    background:#1e3a8a;
    color:white;

    padding:20px 40px;
}

.dashboard-header h1{
    margin:0;
}

.logout-btn{
    background:#ef4444;
    color:white;
    border:none;
    padding:12px 22px;
    border-radius:8px;
    cursor:pointer;
    font-weight:bold;
}
table{
    width:95%;
    margin:30px auto;
}
.accept-btn,
.reject-btn,
.delete-btn{

padding:10px 18px;

border:none;

border-radius:8px;

color:white;

font-weight:bold;

cursor:pointer;

margin:3px;

}
body{
    margin:0;
    background:#f5f7fb;
    font-family:Arial,sans-serif;
}
.dashboard-header{

display:flex;
justify-content:space-between;
align-items:center;

padding:20px 40px;

background:#1e3a8a;
color:white;

box-shadow:0 5px 15px rgba(0,0,0,.15);

}
/* ===== Status Colors ===== */

.status{
    padding:8px 15px;
    border-radius:20px;
    font-weight:600;
    color:#fff;
}

.pending{
    background:#f39c12;
}

.accepted{
    background:#27ae60;
}

.rejected{
    background:#e74c3c;
}
.deleted{
    background:#1a0301;
}
table{
    width:100%;
    border-collapse:collapse;
}

th,td{
    padding:15px;
    text-align:center;
}

.actions{
    display:flex;
    justify-content:center;
    gap:8px;
}
.menu-toggle{
    display:none;
}

@media (max-width:900px){

.navbar{
    position:relative;
}

.menu-toggle{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:5px;
    width:42px;
    height:42px;
    background:#0A5C73;
    border:none;
    border-radius:8px;
    cursor:pointer;
}

.menu-toggle span{
    width:24px;
    height:3px;
    background:#fff;
}

.nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:white;
    flex-direction:column;
    box-shadow:0 10px 20px rgba(0,0,0,.15);
    padding:15px 0;
}

.nav-links.open{
    display:flex;
}

.nav-links li{
    width:100%;
    text-align:center;
    padding:12px 0;
}

.nav-links a{
    display:block;
}
}
.review-form{
    max-width:700px;
    margin:60px auto;
    padding:30px;
    background:#fff;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.review-form input,
.review-form textarea,
.review-form select{
    width:100%;
    padding:15px;
    margin:10px 0;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.review-form textarea{
    min-height:140px;
    resize:none;
}
.comment-card{
    background:#fff;
    margin:20px auto;
    max-width:700px;
    padding:20px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.comment-card h3{
    color:#0A5C73;
    margin-bottom:10px;
}

.comment-card p{
    margin:8px 0;
}