body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1f2937;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

a {
    transition: 0.25s ease;
}

img {
    max-width: 100%;
}

/* Top Strip */
.top-strip {
    background: #062b4f;
    color: #ffffff;
    padding: 8px 0;
    font-size: 14px;
}

.top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.top-left {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.top-right a {
    color: #ffffff;
    margin-left: 12px;
    text-decoration: none;
}

.top-right a:hover {
    color: #f7b731;
}

/* Header */
.main-header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.brand img {
    max-height: 64px;
    max-width: 230px;
}

.brand-text {
    font-size: 30px;
    font-weight: 900;
    color: #062b4f;
    text-decoration: none;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 6px;
    padding: 0;
    margin: 0;
}

.main-nav ul li {
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: #062b4f;
    font-weight: 800;
    padding: 13px 12px;
    display: block;
    font-size: 14px;
}

.main-nav a:hover {
    background: #f7b731;
    color: #02182d;
    border-radius: 6px;
}

/* Dropdown / Mega Menu */
.main-nav ul li ul,
.main-nav .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    z-index: 1000;
}

.main-nav ul li:hover > ul,
.main-nav ul li:hover > .dropdown {
    display: block;
}

.main-nav ul li ul li,
.main-nav .dropdown li {
    display: block;
    width: 100%;
}

.main-nav ul li ul li a,
.main-nav .dropdown li a {
    display: block;
    padding: 12px 18px;
    color: #062b4f;
    white-space: nowrap;
    border-bottom: 1px solid #f1f1f1;
}

.main-nav ul li ul li a:hover,
.main-nav .dropdown li a:hover {
    background: #f7b731;
    color: #02182d;
}

.header-cta {
    background: #f7b731;
    padding: 11px 16px;
    text-decoration: none;
    color: #062b4f;
    border-radius: 7px;
    font-weight: 900;
    white-space: nowrap;
}

.header-cta:hover {
    background: #062b4f;
    color: #ffffff;
}

.mobile-menu-btn {
    display: none;
    background: #062b4f;
    color: #ffffff;
    border: none;
    font-size: 24px;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
}

/* Notice Bar */
.notice-bar {
    background: #f7b731;
    color: #062b4f;
    padding: 10px 0;
    font-weight: 800;
}

.notice-inner {
    display: flex;
    gap: 15px;
    align-items: center;
}

.notice-inner marquee {
    flex: 1;
}

.notice-inner a {
    color: #062b4f;
    text-decoration: none;
}

/* Homepage Hero */
.hero {
    background: linear-gradient(135deg, #062b4f, #02182d);
    color: #ffffff;
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(247,183,49,0.13);
    border-radius: 50%;
    right: -120px;
    top: -140px;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 46px;
    margin: 0 0 15px;
}

.hero p {
    font-size: 20px;
    max-width: 720px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.btn-primary {
    background: #f7b731;
    padding: 13px 22px;
    text-decoration: none;
    color: #062b4f;
    border-radius: 8px;
    font-weight: 900;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #ffffff;
    color: #062b4f;
}

.btn-small {
    display: inline-block;
    margin-top: 10px;
    background: #062b4f;
    color: #ffffff;
    padding: 9px 14px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 800;
}

.btn-small:hover {
    background: #f7b731;
    color: #062b4f;
}

/* Sections */
.section {
    padding: 65px 0;
}

.bg-light {
    background: #f5f7fb;
}

.section-title {
    text-align: center;
    margin: 0 0 35px;
    color: #062b4f;
    font-size: 34px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    border: 1px solid #edf2f7;
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 14px;
}

.card h3 {
    color: #062b4f;
    margin-top: 0;
}

.card p {
    line-height: 1.6;
    color: #4b5563;
}

/* STEP 20 - Programs UI */

.inner-hero {
    background: linear-gradient(135deg, #062b4f, #02182d);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.inner-hero::after {
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    background: rgba(247,183,49,0.15);
    border-radius: 50%;
    right: -120px;
    top: -120px;
}

.inner-hero h1 {
    font-size: 46px;
    margin: 12px 0;
}

.inner-hero p {
    font-size: 18px;
    max-width: 720px;
    line-height: 1.6;
}

.hero-badge {
    display: inline-block;
    background: #f7b731;
    color: #062b4f;
    padding: 8px 14px;
    border-radius: 30px;
    font-weight: 900;
}

.program-page-section {
    padding: 60px 0;
    background: #f8fafc;
}

.program-filter {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.program-filter a {
    text-decoration: none;
    background: #fff;
    border: 1px solid #dbe3ef;
    color: #062b4f;
    padding: 10px 16px;
    border-radius: 30px;
    font-weight: 800;
}

.program-filter a.active,
.program-filter a:hover {
    background: #062b4f;
    color: #fff;
}

.premium-program-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.premium-program-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08);
    border: 1px solid #e8eef7;
    transition: 0.25s ease;
}

.premium-program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(15,23,42,0.14);
}

.program-img {
    height: 220px;
    overflow: hidden;
    background: #062b4f;
}

.program-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.35s ease;
}

.premium-program-card:hover .program-img img {
    transform: scale(1.06);
}

.no-img {
    height: 100%;
    display: grid;
    place-items: center;
    color: #fff;
    font-weight: 900;
    text-align: center;
    padding: 20px;
}

.no-img.big {
    height: 360px;
    border-radius: 18px;
}

.program-info {
    padding: 24px;
}

.program-category {
    display: inline-block;
    background: #fff4d6;
    color: #8a5a00;
    padding: 6px 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 12px;
}

.program-info h3 {
    color: #062b4f;
    margin: 0 0 10px;
    font-size: 22px;
}

.program-info p {
    color: #4b5563;
    line-height: 1.6;
}

.program-link {
    color: #062b4f;
    font-weight: 900;
    text-decoration: none;
}

.empty-box {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    grid-column: 1 / -1;
    text-align: center;
}

/* Program Detail */

.program-detail-hero {
    background: linear-gradient(135deg, #062b4f, #02182d);
    color: #fff;
    padding: 70px 0;
}

.detail-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 38px;
    align-items: center;
}

.program-detail-hero h1 {
    font-size: 44px;
    margin: 16px 0;
}

.program-detail-hero p {
    font-size: 18px;
    line-height: 1.65;
}

.detail-hero-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.detail-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.btn-outline {
    display: inline-block;
    border: 2px solid #f7b731;
    color: #f7b731;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
}

.btn-outline:hover {
    background: #f7b731;
    color: #062b4f;
}

.program-detail-section {
    padding: 60px 0;
    background: #f8fafc;
}

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 330px;
    gap: 28px;
}

.detail-card,
.sidebar-card {
    background: #fff;
    padding: 28px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08);
    border: 1px solid #e8eef7;
    margin-bottom: 22px;
}

.detail-card h2,
.sidebar-card h3 {
    color: #062b4f;
    margin-top: 0;
}

.info-row {
    border-bottom: 1px solid #e5e7eb;
    padding: 14px 0;
}

.info-row span {
    display: block;
    color: #6b7280;
    font-size: 13px;
}

.info-row strong {
    color: #062b4f;
}

.sidebar-btn {
    display: block;
    text-align: center;
    background: #062b4f;
    color: #fff;
    text-decoration: none;
    padding: 13px;
    border-radius: 10px;
    font-weight: 900;
    margin-top: 20px;
}

.sidebar-card.highlight {
    background: #fff7df;
    border-color: #f7b731;
}

.sidebar-card.highlight a {
    color: #062b4f;
    font-weight: 900;
}


/* Blog / Gallery / Contact */

.gallery-grid,
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.gallery-card,
.blog-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08);
    border: 1px solid #e8eef7;
}

.gallery-card img,
.blog-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.gallery-card-body,
.blog-card-body {
    padding: 22px;
}

.gallery-card-body h3,
.blog-card-body h3 {
    color: #062b4f;
    margin-top: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 28px;
    padding: 60px 0;
}

.contact-info-box,
.contact-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08);
    border: 1px solid #e8eef7;
}

.contact-info-box {
    background: linear-gradient(135deg, #062b4f, #02182d);
    color: #fff;
}

.contact-info-box h2 {
    color: #f7b731;
    margin-top: 0;
}

.contact-info-box a {
    color: #fff;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 800;
    color: #062b4f;
    margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    border: 1px solid #d1d5db;
    padding: 12px;
    border-radius: 9px;
    font-size: 15px;
}

.form-group textarea {
    min-height: 120px;
}

/* User Dashboard Base */

.user-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    max-width: 1200px;
    width: 90%;
    margin: 40px auto;
}

.user-sidebar {
    background: #062b4f;
    border-radius: 18px;
    padding: 20px;
    color: #fff;
    align-self: start;
}

.user-sidebar h3 {
    color: #f7b731;
    margin-top: 0;
}

.user-sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-radius: 9px;
    background: rgba(255,255,255,0.08);
    margin-bottom: 8px;
}

.user-sidebar a:hover {
    background: #f7b731;
    color: #062b4f;
    font-weight: 900;
}

.user-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08);
    border: 1px solid #e8eef7;
    margin-bottom: 24px;
}

.user-card h2 {
    color: #062b4f;
    margin-top: 0;
}

.user-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.full-width {
    grid-column: 1 / -1;
}

.user-btn {
    background: #062b4f;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 900;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.user-btn:hover {
    background: #f7b731;
    color: #062b4f;
}

.user-table {
    width: 100%;
    border-collapse: collapse;
}

.user-table th,
.user-table td {
    padding: 12px;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
}

.user-table th {
    background: #f8fafc;
    color: #062b4f;
}

.profile-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f7b731;
}

/* Alerts */

.alert-success {
    background: #dcfce7;
    color: #166534;
    padding: 13px 15px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-weight: 800;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    padding: 13px 15px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-weight: 800;
}

/* Footer */

.site-footer {
    background: #02182d;
    color: #ffffff;
    padding: 50px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}

.site-footer h3,
.site-footer h4 {
    color: #f7b731;
    margin-top: 0;
}

.site-footer p {
    line-height: 1.7;
}

.footer-grid a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    margin: 8px 0;
}

.footer-grid a:hover {
    color: #f7b731;
}

.footer-bottom {
    margin-top: 35px;
    text-align: center;
    padding: 16px;
    background: rgba(0,0,0,0.25);
}

/* Fixed Social / WhatsApp */

.fixed-social {
    position: fixed;
    right: 0;
    top: 38%;
    z-index: 70;
    display: flex;
    flex-direction: column;
}

.fixed-social a {
    background: #062b4f;
    color: #fff;
    text-decoration: none;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    min-width: 42px;
    text-align: center;
    font-weight: 900;
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #25d366;
    color: #fff;
    padding: 14px 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 80;
}

/* Auth Box */

.auth-box {
    max-width: 480px;
    margin: 55px auto;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08);
    border: 1px solid #e8eef7;
}

.auth-box h1 {
    color: #062b4f;
    text-align: center;
    margin-top: 0;
}

/* Resume Print */

.resume-paper {
    max-width: 900px;
    margin: 30px auto;
    background: #fff;
    padding: 45px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 35px rgba(15,23,42,0.12);
}

.resume-header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 4px solid #062b4f;
    padding-bottom: 18px;
    margin-bottom: 22px;
}

.resume-header h1 {
    margin: 0;
    color: #062b4f;
    font-size: 34px;
}

.resume-photo {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid #e5e7eb;
}

.resume-section {
    margin-bottom: 22px;
}

.resume-section h2 {
    color: #062b4f;
    border-bottom: 1px solid #e5e7eb;
    padding-bottom: 7px;
    font-size: 20px;
}

.print-actions {
    max-width: 900px;
    margin: 20px auto;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Mobile Responsive */

@media(max-width: 900px) {
    .top-strip-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .top-right a {
        margin-left: 0;
        margin-right: 10px;
    }

    .header-inner {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: block;
    }

    .main-nav {
        display: none;
        width: 100%;
        background: #fff;
        margin-top: 15px;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav ul li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        padding: 13px;
        border-bottom: 1px solid #eee;
    }

    .main-nav ul li ul,
    .main-nav .dropdown {
        position: static;
        box-shadow: none;
        border-radius: 0;
        padding-left: 15px;
        display: block;
        background: #f8f8f8;
    }

    .header-cta {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .notice-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding: 70px 0;
    }

    .hero h1,
    .inner-hero h1,
    .program-detail-hero h1 {
        font-size: 32px;
    }

    .hero p,
    .inner-hero p,
    .program-detail-hero p {
        font-size: 16px;
    }

    .grid-3,
    .premium-program-grid,
    .detail-hero-grid,
    .detail-layout,
    .gallery-grid,
    .blog-grid,
    .contact-grid,
    .user-layout,
    .user-form-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .detail-hero-image img {
        height: 260px;
    }

    .full-width {
        grid-column: auto;
    }

    .fixed-social {
        display: none;
    }

    .resume-header {
        flex-direction: column;
    }
}

@media print {
    .top-strip,
    .main-header,
    .notice-bar,
    .site-footer,
    .fixed-social,
    .whatsapp-float,
    .print-actions {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .resume-paper {
        margin: 0;
        box-shadow: none;
        border: 0;
        max-width: 100%;
        padding: 20px;
    }
}


/* FINAL PREMIUM HOMEPAGE */

.premium-hero-slider {
    position: relative;
    height: 620px;
    overflow: hidden;
    background: #02182d;
}

.premium-slide {
    position: relative;
    height: 620px;
    display: flex;
    align-items: center;
}

.premium-slide img,
.premium-slide video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.default-slide {
    background: linear-gradient(135deg, #062b4f, #02182d);
}

.premium-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,24,45,0.92), rgba(2,24,45,0.45), rgba(2,24,45,0.2));
}

.premium-slide-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    color: #fff;
}

.premium-slide-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin: 18px 0;
}

.premium-slide-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.stats-section {
    margin-top: -55px;
    position: relative;
    z-index: 5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.stat-box {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 16px 38px rgba(15,23,42,0.14);
    border: 1px solid #e8eef7;
}

.stat-box h2 {
    margin: 0;
    color: #062b4f;
    font-size: 38px;
}

.stat-box p {
    margin: 8px 0 0;
    color: #4b5563;
    font-weight: 800;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.why-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08);
    border: 1px solid #e8eef7;
    transition: 0.25s ease;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: #fff4d6;
    border-radius: 16px;
    font-size: 28px;
    margin-bottom: 16px;
}

.why-card h3 {
    color: #062b4f;
    margin: 0 0 10px;
}

.why-card p {
    color: #4b5563;
    line-height: 1.6;
}

.section-head-flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: end;
    margin-bottom: 30px;
}

.section-title.left {
    text-align: left;
    margin-bottom: 8px;
}

.section-head-flex p {
    margin: 0;
    color: #4b5563;
}

.jobs-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.job-preview-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    border: 1px solid #e8eef7;
    box-shadow: 0 12px 35px rgba(15,23,42,0.08);
}

.job-preview-card span {
    background: #e0f2fe;
    color: #075985;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 900;
}

.job-preview-card h3 {
    color: #062b4f;
    margin: 18px 0 12px;
}

.job-preview-card p {
    color: #4b5563;
}

.testimonials-section {
    background: linear-gradient(135deg, #062b4f, #02182d);
    color: #fff;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 18px;
    padding: 28px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
}

.testimonial-card strong {
    color: #f7b731;
}

.home-cta {
    background: #f7b731;
    color: #062b4f;
    padding: 45px 0;
}

.home-cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.home-cta h2 {
    margin: 0 0 8px;
    font-size: 32px;
}

.home-cta p {
    margin: 0;
    font-weight: 700;
}

.home-cta .btn-primary {
    background: #062b4f;
    color: #fff;
}

.home-cta .btn-primary:hover {
    background: #02182d;
}

@media(max-width: 900px) {
    .premium-hero-slider,
    .premium-slide {
        height: 520px;
    }

    .premium-slide-content h1 {
        font-size: 36px;
    }

    .premium-slide-content p {
        font-size: 16px;
    }

    .stats-section {
        margin-top: 0;
        padding: 25px 0;
        background: #f8fafc;
    }

    .stats-grid,
    .why-grid,
    .jobs-preview-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .section-head-flex,
    .home-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-cta h2 {
        font-size: 26px;
    }
}

/* IIM-style order: logo -> marquee -> menu -> slider */

.logo-header {
    background: #ffffff;
    padding: 14px 0;
}

.logo-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-header .brand img {
    max-height: 75px;
    max-width: 260px;
}

.notice-bar {
    background: #f7b731;
    color: #062b4f;
    padding: 10px 0;
    font-weight: 900;
}

.notice-inner {
    width: 100%;
    display: flex;
    gap: 12px;
    align-items: center;
}

.notice-inner strong {
    padding-left: 14px;
    white-space: nowrap;
}

.notice-inner marquee {
    flex: 1;
}

.notice-inner a {
    color: #062b4f;
    text-decoration: none;
}

.main-header {
    background: #174b82 !important;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.header-inner {
    padding: 0 !important;
}

.main-nav {
    width: 100%;
}

.main-nav ul {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav a {
    color: #ffffff !important;
    padding: 16px 14px;
    display: block;
    text-decoration: none;
    font-weight: 900;
    font-size: 14px;
}

.main-nav a:hover {
    background: #1e9bd7;
    color: #ffffff !important;
    border-radius: 0;
}

.main-nav ul li ul,
.main-nav .dropdown {
    background: #ffffff;
}

.main-nav ul li ul li a,
.main-nav .dropdown li a {
    color: #174b82 !important;
}

.main-nav ul li ul li a:hover,
.main-nav .dropdown li a:hover {
    background: #f7b731;
    color: #062b4f !important;
}

@media(max-width: 900px) {
    .logo-header-inner {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }

    .notice-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .notice-inner strong {
        padding-left: 10px;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
    }

    .mobile-menu-btn {
        display: block;
        margin: 8px 0;
    }
}

/* 3 Level Mega Menu */

.main-nav li {
    position: relative;
}

.main-nav .mega-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 280px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
    z-index: 9999;
}

.main-nav li:hover > .mega-dropdown {
    display: block;
}

.main-nav .mega-dropdown li {
    position: relative;
    width: 100%;
}

.main-nav .mega-dropdown a {
    color: #174b82 !important;
    background: #ffffff;
    padding: 12px 18px;
    border-bottom: 1px solid #e5e7eb;
    white-space: nowrap;
}

.main-nav .mega-dropdown a:hover {
    background: #f7b731;
    color: #062b4f !important;
}

.main-nav .sub-dropdown {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(0,0,0,0.18);
    padding: 8px 0;
    z-index: 10000;
}

.main-nav .has-submenu:hover > .sub-dropdown {
    display: block;
}

.main-nav .has-submenu > a::after {
    content: "›";
    float: right;
    margin-left: 20px;
    font-weight: 900;
}

/* Mobile 3 Level Menu */
@media(max-width: 900px) {
    .main-nav .mega-dropdown,
    .main-nav .sub-dropdown {
        display: block;
        position: static;
        box-shadow: none;
        min-width: 100%;
        padding: 0;
        background: #f8fafc;
    }

    .main-nav .sub-dropdown {
        padding-left: 15px;
        background: #eef4fb;
    }

    .main-nav .mega-dropdown a,
    .main-nav .sub-dropdown a {
        white-space: normal;
    }

    .main-nav .has-submenu > a::after {
        content: "";
    }
}

/* Premium Institute Header */

.premium-institute-header {
    display: grid;
    grid-template-columns: 180px 1fr 180px;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.brand-left img {
    max-height: 82px;
    max-width: 160px;
    object-fit: contain;
}

.premium-title-box {
    text-align: center;
}

.premium-title-box h1 {
    margin: 0;
    color: #062b4f;
    font-size: 44px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 4px;
}

.premium-title-box h2 {
    margin: 6px 0 3px;
    color: #174b82;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: 1px;
}

.premium-title-box p {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    font-weight: 700;
}

.brand-right {
    text-align: right;
}

@media(max-width: 900px) {
    .premium-institute-header {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .brand-right {
        text-align: center;
    }

    .premium-title-box h1 {
        font-size: 34px;
    }

    .premium-title-box h2 {
        font-size: 18px;
    }

    .premium-title-box p {
        font-size: 13px;
    }
}
/* FIX Premium Header Layout */

.logo-header {
    background: #ffffff;
    padding: 10px 0 !important;
    border-bottom: 1px solid #e5e7eb;
}

.logo-header .container,
.premium-institute-header {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.premium-institute-header {
    display: grid !important;
    grid-template-columns: 180px 1fr 180px !important;
    align-items: center !important;
    gap: 20px !important;
    min-height: 105px;
}

.brand-left {
    text-align: left !important;
}

.brand-left img {
    width: auto !important;
    height: 85px !important;
    max-width: 160px !important;
    object-fit: contain !important;
    display: block;
}

.premium-title-box {
    text-align: center !important;
}

.premium-title-box h1 {
    margin: 0 !important;
    color: #062b4f !important;
    font-size: 42px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
    letter-spacing: 3px !important;
}

.premium-title-box h2 {
    margin: 6px 0 4px !important;
    color: #174b82 !important;
    font-size: 22px !important;
    font-weight: 900 !important;
}

.premium-title-box p {
    margin: 0 !important;
    color: #374151 !important;
    font-size: 14px !important;
    font-weight: 700 !important;
}

.brand-right {
    text-align: right !important;
}

.brand-right .header-cta {
    display: inline-block !important;
    background: #f7b731 !important;
    color: #062b4f !important;
    padding: 12px 18px !important;
    border-radius: 8px !important;
    font-weight: 900 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
}

@media(max-width: 900px) {
    .premium-institute-header {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        min-height: auto;
    }

    .brand-left,
    .brand-right {
        text-align: center !important;
    }

    .brand-left img {
        margin: 0 auto;
        height: 75px !important;
    }

    .premium-title-box h1 {
        font-size: 34px !important;
    }

    .premium-title-box h2 {
        font-size: 18px !important;
    }
}


body{margin:0;font-family:Arial,Helvetica,sans-serif;color:#111827}
.container{width:90%;max-width:1200px;margin:auto}

.top-strip{background:#062b4f;color:#fff;padding:7px 0;font-size:14px}
.top-strip-inner{display:flex;justify-content:space-between;align-items:center}
.top-left span{margin-right:15px}
.top-right a{color:#fff;text-decoration:none;margin-left:10px}

.ssle-logo-header{background:#fff;padding:12px 0;border-bottom:1px solid #e5e7eb}
.ssle-header-wrap{
    width:90%;
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:180px 1fr 180px;
    align-items:center;
    gap:20px;
}
.ssle-header-logo img{
    width:110px!important;
    height:110px!important;
    max-width:110px!important;
    max-height:110px!important;
    object-fit:contain!important;
    display:block;
}
.ssle-header-title{text-align:center}
.ssle-header-title h1{margin:0;font-size:46px;color:#062b4f;font-weight:900;letter-spacing:4px}
.ssle-header-title h2{margin:7px 0 4px;font-size:22px;color:#174b82;font-weight:900}
.ssle-header-title p{margin:0;font-size:14px;color:#374151;font-weight:700}
.ssle-header-action{text-align:right}
.ssle-header-action a{background:#f7b731;color:#062b4f;padding:12px 18px;border-radius:8px;font-weight:900;text-decoration:none}

.notice-bar{background:#f7b731;color:#062b4f;padding:10px 0;font-weight:900}
.notice-inner{display:flex;gap:12px;align-items:center}
.notice-inner marquee{flex:1}

.main-header{background:#174b82;position:sticky;top:0;z-index:999}
.header-inner{padding:0}
.main-nav ul{display:flex;align-items:center;list-style:none;margin:0;padding:0}
.main-nav a{color:#fff;text-decoration:none;padding:15px 14px;display:block;font-weight:900}
.main-nav a:hover{background:#1e9bd7}

@media(max-width:900px){
    .top-strip-inner{flex-direction:column;align-items:flex-start}
    .ssle-header-wrap{grid-template-columns:1fr;text-align:center}
    .ssle-header-logo img{margin:auto;width:90px!important;height:90px!important}
    .ssle-header-action{text-align:center}
    .ssle-header-title h1{font-size:34px}
    .main-nav ul{flex-direction:column}
}


/* ===== SSLE Dynamic 3-Level Frontend Menu Override ===== */
.main-header {
    background: #174b82;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.main-header .header-inner {
    position: relative;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 14px;
    font-weight: 800;
    white-space: nowrap;
}

.main-nav > ul > li:hover > a,
.main-nav > ul > li > a:hover {
    background: #f5b400;
    color: #111111;
}

.main-nav .mega-dropdown,
.main-nav .sub-dropdown {
    display: none;
    position: absolute;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
    border-radius: 0 0 10px 10px;
    z-index: 99999;
}

.main-nav .mega-dropdown {
    top: 100%;
    left: 0;
}

.main-nav .sub-dropdown {
    top: 0;
    left: 100%;
    border-radius: 10px;
}

.main-nav li:hover > .mega-dropdown,
.main-nav li:hover > .sub-dropdown {
    display: block;
}

.main-nav .mega-dropdown a,
.main-nav .sub-dropdown a {
    color: #1f2937;
    padding: 12px 15px;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
    font-weight: 700;
    background: #ffffff;
}

.main-nav .mega-dropdown a:hover,
.main-nav .sub-dropdown a:hover {
    background: #174b82;
    color: #ffffff;
}

.submenu-arrow,
.top-arrow {
    font-size: 14px;
    line-height: 1;
}

.mobile-menu-btn {
    display: none;
    background: #f5b400;
    color: #111111;
    border: 0;
    padding: 10px 13px;
    border-radius: 8px;
    font-size: 22px;
    font-weight: 900;
    cursor: pointer;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: inline-block;
        margin: 8px 0;
    }

    .main-nav {
        display: none;
        width: 100%;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav > ul {
        display: block;
        background: #174b82;
    }

    .main-nav a {
        white-space: normal;
        border-bottom: 1px solid rgba(255,255,255,0.12);
    }

    .main-nav .mega-dropdown,
    .main-nav .sub-dropdown {
        position: static;
        display: none;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #f8fafc;
    }

    .main-nav li:hover > .mega-dropdown,
    .main-nav li:hover > .sub-dropdown {
        display: block;
    }

    .main-nav .sub-dropdown a {
        padding-left: 32px;
    }

    .main-nav .sub-dropdown .sub-dropdown a {
        padding-left: 48px;
    }
}

/* NAVBAR MAIN */
.ssle-navbar {
    background: #003b73;
    width: 100%;
    position: relative;
    z-index: 9999;
}

/* MAIN MENU */
.ssle-navbar > ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ssle-navbar > ul > li {
    position: relative;
}

.ssle-navbar > ul > li > a {
    display: block;
    padding: 14px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

/* HOVER EFFECT */
.ssle-navbar > ul > li:hover > a {
    background: #f5b400;
    color: #111;
}

/* DROPDOWN LEVEL 1 */
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown li a {
    display: block;
    padding: 10px 15px;
    color: #222;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}

.dropdown li a:hover {
    background: #003b73;
    color: #fff;
}

/* SHOW DROPDOWN */
.has-dropdown:hover > .dropdown {
    display: block;
}

/* SUB DROPDOWN (LEVEL 2 / 3) */
.sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 230px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    list-style: none;
    padding: 0;
}

.sub-dropdown li a {
    padding: 10px 15px;
}

/* SHOW SUBMENU */
.has-submenu:hover > .sub-dropdown {
    display: block;
}

/* ARROWS */
.top-arrow {
    font-size: 10px;
    margin-left: 5px;
}

.submenu-arrow {
    float: right;
    font-size: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
    .ssle-navbar > ul {
        flex-direction: column;
    }

    .dropdown,
    .sub-dropdown {
        position: static;
        display: none;
        box-shadow: none;
    }

    .has-dropdown.active > .dropdown,
    .has-submenu.active > .sub-dropdown {
        display: block;
    }
}

/* ===== FINAL FIX: Dynamic 3-level frontend menu ===== */
.nav-strip {
    background: #174b82;
    width: 100%;
    position: relative;
    z-index: 9999;
}

.main-nav {
    background: #174b82;
    width: 100%;
}

.main-nav ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.main-nav > ul {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav li {
    position: relative;
    list-style: none !important;
}

.main-nav a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 14px 16px;
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.main-nav > ul > li:hover > a,
.main-nav > ul > li > a:hover {
    background: #f5b400 !important;
    color: #111111 !important;
}

.main-nav .mega-dropdown,
.main-nav .sub-dropdown {
    display: none !important;
    position: absolute;
    min-width: 260px;
    background: #ffffff;
    box-shadow: 0 14px 35px rgba(0,0,0,0.18);
    border-radius: 0 0 10px 10px;
    z-index: 99999;
}

.main-nav .mega-dropdown {
    top: 100%;
    left: 0;
}

.main-nav .sub-dropdown {
    top: 0;
    left: 100%;
    border-radius: 10px;
}

.main-nav li:hover > .mega-dropdown,
.main-nav li:hover > .sub-dropdown {
    display: block !important;
}

.main-nav .mega-dropdown a,
.main-nav .sub-dropdown a {
    color: #1f2937 !important;
    background: #ffffff !important;
    padding: 12px 15px;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
    font-weight: 700;
}

.main-nav .mega-dropdown a:hover,
.main-nav .sub-dropdown a:hover {
    background: #174b82 !important;
    color: #ffffff !important;
}

.top-arrow,
.submenu-arrow {
    font-size: 14px;
    line-height: 1;
    margin-left: 6px;
}

.mobile-menu-btn {
    display: none;
    background: #f5b400;
    color: #111111;
    border: 0;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    margin: 8px 12px;
}

@media (max-width: 900px) {
    .mobile-menu-btn {
        display: inline-block;
    }

    .main-nav {
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav > ul {
        display: block !important;
    }

    .main-nav a {
        white-space: normal;
        border-bottom: 1px solid rgba(255,255,255,0.15);
    }

    .main-nav .mega-dropdown,
    .main-nav .sub-dropdown {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        background: #f8fafc;
    }

    .main-nav li:hover > .mega-dropdown,
    .main-nav li:hover > .sub-dropdown {
        display: block !important;
    }

    .main-nav .mega-dropdown a,
    .main-nav .sub-dropdown a {
        color: #1f2937 !important;
    }

    .main-nav .sub-dropdown a {
        padding-left: 32px;
    }

    .main-nav .sub-dropdown .sub-dropdown a {
        padding-left: 48px;
    }
}


.social-floating {
    position: fixed;
    top: 40%;
    right: 0;
    z-index: 9999;
}

.social-btn {
    display: block;
    width: 45px;
    height: 45px;
    color: #fff;
    text-align: center;
    line-height: 45px;
    margin: 5px 0;
    font-size: 18px;
    transition: 0.3s;
}

.social-btn:hover {
    transform: translateX(-5px);
}

/* COLORS */
.facebook { background:#3b5998; }
.twitter { background:#1da1f2; }
.youtube { background:#ff0000; }
.instagram { background:#e4405f; }
.linkedin { background:#0077b5; }


.home-dynamic-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 60px;
}

/* LEFT TEXT */
.home-dynamic-content {
    flex: 1;
}

/* RIGHT IMAGE */
.home-dynamic-image {
    flex: 1;
    text-align: right;
}

/* IMAGE CONTROL */
.about-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 10px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .home-dynamic-section {
        flex-direction: column;
        text-align: center;
    }

    .home-dynamic-image {
        text-align: center;
    }
}



.job-notice-section {
    padding: 40px 0;
    background: #f4f7fb;
}

.job-notice-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 25px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.job-notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    border-bottom: 2px solid #f5b400;
    padding-bottom: 10px;
}

.job-notice-header h2 {
    margin: 0;
    color: #003b73;
    font-size: 26px;
}

.job-notice-header span {
    background: #f5b400;
    color: #111;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 13px;
}

.job-scroll-document {
    max-height: 450px;
    overflow-y: auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #d8dee9;
    border-radius: 10px;
    line-height: 1.8;
    font-size: 15px;
}

.job-scroll-document table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}

.job-scroll-document table,
.job-scroll-document th,
.job-scroll-document td {
    border: 1px solid #ccc;
}

.job-scroll-document th,
.job-scroll-document td {
    padding: 8px;
}

.job-scroll-document h1,
.job-scroll-document h2,
.job-scroll-document h3 {
    color: #003b73;
}

@media (max-width: 768px) {
    .job-notice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}