body {
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}

/* Top strip */
.top-strip {
    background: #1a2b48;
    color: #fff;
    font-size: 13px;
    padding: 6px 0;
}
.top-strip .pull-right {
    color: #ffd76a;
}

/* Navbar */
.main-navbar {
    border-radius: 0;
    margin-bottom: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    color: #1a2b48 !important;
}
.navbar-brand span {
    color: #d9534f;
}
.main-navbar .nav > li > a {
    font-weight: 600;
    color: #1a2b48;
}
.btn-admission {
    background: #d9534f !important;
    color: #fff !important;
    border-radius: 4px;
    margin-top: 8px;
    padding: 6px 16px !important;
}

/* Hero banner */
.hero-banner {
    background: linear-gradient(rgba(26,43,72,0.85), rgba(26,43,72,0.85)), url('../Images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.hero-banner h1 {
    font-size: 42px;
    font-weight: 700;
}
.hero-banner p {
    font-size: 18px;
    max-width: 700px;
    margin: 15px auto 25px;
}
.hero-banner .btn {
    background: #d9534f;
    color: #fff;
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 4px;
}

/* Notice ticker */
.notice-bar {
    background: #ffd76a;
    padding: 10px 0;
    font-weight: 600;
    color: #1a2b48;
    overflow: hidden;
    white-space: nowrap;
}
.notice-bar marquee {
    display: inline-block;
}

/* Sections */
.section {
    padding: 50px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 35px;
}
.section-title h2 {
    font-weight: 700;
    color: #1a2b48;
}
.section-title .underline {
    width: 60px;
    height: 3px;
    background: #d9534f;
    margin: 10px auto 0;
}

/* Class cards */
.class-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 6px;
    text-align: center;
    padding: 25px 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: 0.2s;
}
.class-card:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.12);
    transform: translateY(-3px);
}
.class-card h3 {
    color: #1a2b48;
    font-weight: 700;
}

/* Stream tabs */
.stream-tab-content {
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    padding: 25px;
}

/* Footer */
.site-footer {
    background: #1a2b48;
    color: #ccd3e0;
    padding: 40px 0 15px;
    margin-top: 30px;
}
.site-footer h4 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-links li a {
    color: #ccd3e0;
}
.footer-links li a:hover {
    color: #ffd76a;
    text-decoration: none;
}
.copyright {
    color: #8b93a7;
    font-size: 13px;
}

/* Admin panel */
.admin-login-box {
    max-width: 380px;
    margin: 80px auto;
    background: #fff;
    padding: 30px;
    border-radius: 6px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.1);
}
.admin-sidebar {
    background: #1a2b48;
    min-height: 100vh;
    padding-top: 20px;
}
.admin-sidebar a {
    display: block;
    color: #ccd3e0;
    padding: 12px 20px;
    font-weight: 600;
}
.admin-sidebar a:hover, .admin-sidebar a.active {
    background: #26385c;
    color: #fff;
    text-decoration: none;
}
.admin-topbar {
    background: #fff;
    padding: 12px 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}
