/* =====================
   ROOT COLORS
===================== */

:root{
--primary:#2563eb;
--secondary:#1e40af;
--bg:#f1f5f9;
--text:#0f172a;
--muted:#475569;
--card:#ffffff;
}


/* =====================
   BODY
===================== */

body{
margin:0;
padding:0;
font-family:'Inter', Arial, sans-serif;
background:var(--bg);
color:var(--text);
line-height:1.8;
}


/* =====================
   TOPBAR
===================== */

.topbar{
background:#0f172a;
color:#fff;
font-size:14px;
padding:6px 0;
}


/* =====================
   NAVBAR
===================== */

.navbar{
background:#ffffff;
box-shadow:0 3px 15px rgba(0,0,0,0.05);
}

.navbar-brand{
font-weight:700;
display:flex;
align-items:center;
gap:10px;
font-size:18px;
color:#0f172a !important;
}

.navbar-brand img{
height:40px;
}

.nav-link{
font-weight:500;
color:#111827 !important;
margin-left:10px;
display:flex;
align-items:center;
gap:6px;
}

.nav-link:hover{
color:var(--primary) !important;
}

.nav-link i{
font-size:16px;
}


/* =====================
   DROPDOWN
===================== */

.dropdown-menu{
border-radius:10px;
border:none;
box-shadow:0 8px 25px rgba(0,0,0,0.15);
padding:10px 0;
}

.dropdown-item{
font-size:14px;
padding:10px 18px;
transition:0.3s;
}

.dropdown-item:hover{
background:#f1f5f9;
color:var(--primary);
}

.dropdown-item i{
margin-right:8px;
color:var(--primary);
}


/* =====================
   LOGIN BUTTON
===================== */

.login-btn{
border:1px solid var(--primary);
color:var(--primary);
padding:6px 14px;
border-radius:8px;
font-size:14px;
transition:.3s;
}

.login-btn:hover{
background:var(--primary);
color:white;
}


/* =====================
   HERO SECTION
===================== */

.hero-section{
padding:100px 0;
background:#f8fafc;
}

.hero-title{
font-size:48px;
font-weight:700;
line-height:1.2;
}

.highlight{
background:#fde047;
padding:3px 8px;
border-radius:5px;
}

.hero-desc{
font-size:18px;
margin-top:15px;
color:#6b7280;
}

.hero-buttons{
margin-top:25px;
}

.hero-buttons .btn{
padding:12px 28px;
border-radius:10px;
font-size:16px;
}

.hero-features span{
margin-right:15px;
font-size:14px;
color:#374151;
}


/* =====================
   CTA SECTION
===================== */

.cta-section{
background:linear-gradient(135deg,#2563eb,#4f46e5);
color:#fff;
padding:70px 0;
border-radius:20px;
margin:60px 0;
}

.cta-title{
font-size:36px;
font-weight:700;
}

.cta-text{
margin-top:10px;
font-size:17px;
opacity:.9;
}

.cta-section .btn{
padding:12px 28px;
font-size:16px;
border-radius:10px;
}


/* =====================
   HOME BUTTON CARD
===================== */

.main-card{
background:#fff;
padding:30px;
border-radius:12px;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
}

.home-btn{
display:block;
width:100%;
padding:18px;
border-radius:10px;
font-size:16px;
font-weight:600;
text-align:center;
color:#fff;
text-decoration:none;
transition:0.3s;
}

.home-btn i{
margin-right:8px;
}

.btn-blue{ background:#22b8cf; }
.btn-green{ background:#2b8a3e; }
.btn-yellow{ background:#f59f00; color:#000; }
.btn-red{ background:#e03131; }

.home-btn:hover{
transform:translateY(-3px);
box-shadow:0 6px 15px rgba(0,0,0,0.2);
}


/* =====================
   NOTICE TICKER
===================== */

.notice-ticker{
background:#fff;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.08);
overflow:hidden;
margin-top:20px;
}

.ticker-title{
background:#0ea5e9;
color:#fff;
padding:10px 15px;
font-weight:600;
}

.ticker-box{
padding:10px;
background:#f8f9fa;
}

.ticker-item{
margin-right:50px;
font-weight:500;
color:#333;
}


/* =====================
   RECENT ADMISSIONS
===================== */

.recent-card{
background:#fff;
padding:20px;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.recent-title{
font-weight:600;
margin-bottom:15px;
border-bottom:1px solid #eee;
padding-bottom:8px;
font-size:18px;
}

.student-row{
display:flex;
align-items:center;
gap:12px;
margin-bottom:15px;
padding:10px;
border-radius:8px;
transition:0.3s;
}

.student-row:hover{
background:#f8fafc;
transform:translateY(-2px);
}

.student-avatar img{
width:45px;
height:45px;
border-radius:50%;
object-fit:cover;
}

.student-info{
flex:1;
}

.student-name{
font-weight:600;
font-size:14px;
color:#111827;
}

.student-course{
font-size:13px;
color:#2563eb;
}

.student-district{
font-size:12px;
color:#6b7280;
}


/* =====================
   FOOTER
===================== */

.site-footer{
background:#0f172a;
color:#e2e8f0;
padding:60px 0 20px;
margin-top:80px;
}

.footer-about h5{
font-weight:600;
margin-bottom:10px;
}

.footer-about p{
font-size:14px;
color:#cbd5f1;
line-height:1.6;
}

/* SOCIAL */

.footer-social a{
display:inline-flex;
align-items:center;
justify-content:center;
width:40px;
height:40px;
background:#1e293b;
border-radius:50%;
color:white;
margin:0 6px;
font-size:16px;
transition:.3s;
text-decoration:none;
}

.footer-social a:hover{
background:#2563eb;
transform:translateY(-3px);
}

/* LINKS */

.footer-links a{
display:inline-block;
margin-left:15px;
font-size:14px;
color:#cbd5f1;
text-decoration:none;
transition:.3s;
}

.footer-links a:hover{
color:#38bdf8;
}

/* LINE */

.footer-line{
border-color:#334155;
margin:30px 0 20px;
}

/* COPY */

.footer-copy{
font-size:14px;
color:#94a3b8;
}


/* =====================
   MOBILE RESPONSIVE
===================== */

@media(max-width:768px){

.hero-title{
font-size:34px;
}

.main-card{
padding:20px;
}

}
.verify-section{
padding:60px 0;
background:#f4f7fb;
}

.verify-box{
background:white;
padding:40px;
border-radius:14px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
text-align:center;
}

.verify-title{
font-weight:700;
margin-bottom:10px;
}

.verify-sub{
color:#777;
margin-bottom:25px;
}

.verify-form{
display:flex;
gap:10px;
}

.verify-input{
flex:1;
padding:12px;
border:1px solid #ddd;
border-radius:8px;
}

.verify-btn{
background:#2563eb;
color:white;
border:none;
padding:12px 25px;
border-radius:8px;
}

.student-card{
margin-top:30px;
display:flex;
align-items:center;
gap:30px;
padding:25px;
border-radius:12px;
background:#f9fafc;
}

.student-photo img{
width:120px;
border-radius:10px;
}

.verified{
color:#16a34a;
font-weight:600;
}

.not-found{
margin-top:20px;
color:red;
font-weight:600;
}
