    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: #ffffff;
        color: #1e293b;
        line-height: 1.5;
        scroll-behavior: smooth;
    }

    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }

    

    /* hero section */
    .hero {
        background: linear-gradient(110deg, #fafcff 0%, #f0f5fa 100%);
        padding: 56px 0 48px;
        border-bottom: 1px solid #e2e8f0;
    }

    .hero-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        align-items: center;
        justify-content: space-between;
    }

    .hero-left {
        flex: 1.2;
    }

    .hero-badge {
        background: #ffedd5;
        color: #b45309;
        padding: 6px 14px;
        border-radius: 30px;
        font-size: 0.8rem;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 20px;
    }

    .hero-left h1 {
        font-size: 2.9rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 20px;
        color: #0c2e3e;
    }

    .hero-left p {
        color: #2c3e4e;
        font-size: 1.1rem;
        max-width: 550px;
        margin-bottom: 32px;
    }

    .hero-visual {
        flex: 0.8;
        text-align: center;
    }

    .hero-visual-inner {
        background: linear-gradient(145deg, #fff3e8, #ffe6db);
        border-radius: 32px;
        padding: 28px 12px;
        box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.1);
    }

    .hero-visual-inner i {
        font-size: 5rem;
        color: #e5572c;
        opacity: 0.9;
    }

    /* responsive: hide visual on mobile, show hamburger menu */
    
    /* rest of the styling (cards, tables, faq) */
    .section-title {
        font-size: 2rem;
        font-weight: 700;
        margin: 48px 0 24px;
        color: #0f2b3d;
        text-align: center;
    }

    .benefits-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 28px;
        margin: 40px 0;
    }

    .benefit-card {
        background: #ffffff;
        border-radius: 28px;
        padding: 28px 20px;
        text-align: center;
        box-shadow: 0 12px 28px -8px rgba(0, 0, 0, 0.05);
        border: 1px solid #eef2f0;
        transition: all 0.25s;
    }

    .benefit-card:hover {
        transform: translateY(-6px);
        border-color: #ffd9cc;
    }

    .benefit-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
        color: #e5572c;
    }

    .benefit-card h3 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .badge-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        margin: 28px 0 20px;
    }

    .badge {
        background: #f8fafc;
        border-radius: 60px;
        padding: 8px 20px;
        font-weight: 500;
        border: 1px solid #e2edf2;
    }

    .comp-table-wrapper {
        overflow-x: auto;
        margin: 32px 0;
        border-radius: 24px;
        border: 1px solid #e9eef3;
        background: white;
    }

    .comp-table {
        width: 100%;
        border-collapse: collapse;
        font-size: 0.9rem;
        min-width: 560px;
        text-align: center;
    }

    .comp-table th {
        background: linear-gradient(135deg, #111827, #1f2937);
        padding: 18px 16px;
        text-align: center;
        font-size: 22px;
        justify-content: center;
    }

    .comp-table td {
        padding: 20px;
        border-top: 1px solid #eef2f8;
        font-size: 19px;
    }

    .highlight {
        background: #fff7f0;
    }

    .support-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: center;
        margin: 32px 0;
    }

    .support-item {
        background: #fefcf9;
        border-radius: 40px;
        padding: 16px 32px;
        font-weight: 600;
        border: 1px solid #ffe5da;
    }

    .support-item i {
        margin-right: 10px;
        color: #e5572c;
    }

    .faq-grid {
        max-width: 880px;
        margin: 40px auto;
    }

    .faq-item {
        border-bottom: 1px solid #e2edf2;
        padding: 16px 0;
    }

    .faq-question {
        font-weight: 700;
        font-size: 1.1rem;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        color: #1e3a4b;
    }

    .faq-question span:first-child i {
        margin-right: 12px;
        color: #e5572c;
        width: 24px;
    }

    .faq-icon {
        font-size: 1.4rem;
        color: #e5572c;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease;
        color: #2c4c6c;
        padding-left: 32px;
    }

    .faq-answer.show {
        max-height: 380px;
        padding-bottom: 12px;
    }

    .video-chip {
        background: #f1f5f9;
        border-radius: 40px;
        padding: 12px 28px;
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
    }

    footer {
        background: #0e2838;
        color: #cddfe8;
        margin-top: 64px;
        padding: 48px 0 24px;
    }

    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 32px;
    }

    .copyright {
        text-align: center;
        margin-top: 40px;
        font-size: 0.8rem;
    }

    @media (max-width: 550px) {
        .faq-question {
            font-size: 0.9rem;
        }

        .faq-answer {
            padding-left: 16px;
        }
    }

    .top-header {
        background: #034363;
        color: white;
        padding: 10px;
    }

    .btn-primary {
        display: inline-block;
        animation: rubber 1.5s infinite;
    }

    @keyframes rubber {
        0% {
            transform: scale(1);
        }

        30% {
            transform: scale(1.1, 0.9);
        }

        40% {
            transform: scale(0.9, 1.1);
        }

        50% {
            transform: scale(1.05, 0.95);
        }

        65% {
            transform: scale(0.98, 1.02);
        }

        75% {
            transform: scale(1);
        }

        100% {
            transform: scale(1);
        }
    }

    .logo {
        font-weight: 800;
        font-size: 1.7rem;
        background: linear-gradient(135deg, #ff7a2f, #e03a1a);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        letter-spacing: -0.3px;
    }

    .logo img {
        height: 50px;
        /* Adjust size here */
        width: auto;
        display: block;
    }

    .video-slider {
    overflow: hidden;
    width: 100%;
    }

    /* =========================
   GLOBAL
========================= */

    button,
    a {
        cursor: pointer;
    }

    .animate-pop {
        transition: all 0.2s;
    }

    body {
        overflow-x: hidden;
    }

    /* =========================
   HERO RESPONSIVE
========================= */

  

    /* =========================
   VIDEO TESTIMONIALS
========================= */

    .video-testimonials {
        background: linear-gradient(120deg, #1e293b, #0f172a);
        padding: 60px 0;
        border-radius: 48px;
        margin: 60px 0;
        color: white;
    }

    .video-grid {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    /* =========================
   LEFT CONTENT
========================= */

    .video-heading {
        flex: 1;
    }

    .video-heading h2 {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.3;
    }

    .video-heading span {
        background: linear-gradient(120deg, #ff7a2f, #ff4d2e);
        -webkit-background-clip: text;
        color: transparent;
    }
/* DROPDOWN */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 180px;
    display: none;
    flex-direction: column;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 999;
}

.dropdown-menu a {
    padding: 12px;
    color: #000;
    text-decoration: none;
    display: block;
}

.dropdown-menu a:hover {
    background: #f2f2f2;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

/* MOBILE DROPDOWN */

.mobile-dropdown-btn {
    width: 100%;
    border: none;
    background: none;
    padding: 12px;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
}

.mobile-dropdown-menu a {
    padding: 10px;
}

/* HELP SECTION */

.help-container {
    max-width: 1200px;
    margin: 40px auto;
        background: linear-gradient(135deg, #111827, #1f2937);
    border: 1px solid rgba(0, 51, 153, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.08);

    padding: 40px;

    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

/* DESKTOP */

@media (min-width: 992px) {

    .help-container {
        grid-template-columns: 2.5fr 1fr;
        gap: 60px;
        padding: 40px 50px;
    }

}

/* TEXT */

.help-content h2 {
    color: white;
    font-size: 35px;
    font-weight: 800;
    line-height: 1.3;
    margin-bottom: 18px;
}

.highlightnew {
    color: #ffcc00;
}

.descriptionnew {
    color: rgba(255,255,255,0.9);
    font-size: 22px;
    line-height: 1.7;
}

/* BUTTON AREA */

.action-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* BUTTON */

.btn-register {
    background: #ffcc00;
    color: #000;

    border: none;
    border-radius: 16px;

    padding: 22px 38px;

    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;

    transition: 0.3s ease;
}

.btn-register:hover {
    transform: translateY(-3px);
}

/* MOBILE */

@media (max-width: 768px) {

    .help-container {
        padding: 30px 20px;
    }

    .help-content h2 {
        font-size: 28px;
    }

    .descriptionnew {
        font-size: 16px;
    }

    .btn-register {
        width: 100%;
        font-size: 18px;
        padding: 18px;
    }

}

.longtext{
    font-size: 11px;
    text-align: center;
    justify-content: center;
}

.breadcrumbs {
    padding: 40px 40px 23px 40px;
    border-bottom: 1px solid #eee;
    background: #034363;
    font-size: 19px;
    width: 100%;
    box-sizing: border-box;
}
section {
    scroll-margin-top: 90px;
    margin-bottom: 32px;
    color: white;
}

.pdflink a{
   background-color: #e2e8f0;
    color: black;
    text-decoration: none;

    padding: 10px 22px;
    border-radius: 6px;
}

.pdflink a:hover {
   background-color: #92b9ec;
   color: white;
}



/* TABLE RESPONSIVE */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e1e5f0;
    border-radius: 10px;
}

/* TABLE */

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1000px;
    background: #fff;
    border: 1px solid #e1e5f0;
}

/* TABLE HEADER */

thead {
    background: #004aad;
}

thead th {
    color: #fff;
    padding: 16px;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    border: 1px solid #dbe2f0;
}

/* TABLE BODY */

tbody tr {
    border-bottom: 1px solid #e1e5f0;
    transition: 0.3s;
}

tbody tr:hover {
    background: #f5f7fb;
}

tbody td {
    padding: 16px;
    font-size: 14px;
    color: #1c1f2a;
    border: 1px solid #e1e5f0;
}

/* BUTTON */

.btn-bulletin {
    display: inline-flex;
    align-items: center;
    gap: 6px;

    background: #004aad;
    color: #fff;

    padding: 8px 14px;

    border-radius: 6px;

    text-decoration: none;
    font-size: 14px;

    transition: 0.3s;
}

.btn-bulletin:hover {
    background: #003180;
}

/* MOBILE */

@media (max-width: 768px) {

    table {
        min-width: 850px;
    }

    thead th,
    tbody td {
        padding: 12px;
        font-size: 13px;
    }

    .btn-bulletin {
        font-size: 12px;
        padding: 7px 12px;
    }

}

.section1{
    padding-bottom: 18px;
    font-size: 15px;
    font-weight: bolder;
    padding-top: 20px;
    justify-content: center;
    text-align: center;
}
.noteforacc{
    padding-top: 28px;
}

/* Main Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 240px;
    background: #f5f5f5;
    display: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    z-index: 100;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* Section */
.menu-section {
    border-bottom: 1px solid #ddd;
}

/* Blue Heading */
.course-tile {
    background: linear-gradient(135deg, #111827, #1f2937);
    color: white;
    padding: 12px;
    font-weight: bold;
}

/* Links */
.dropdown-menu a,
.dropdown-sub > a {
    display: block;
    padding: 12px;
    color: #222;
    text-decoration: none;
    background: #f5f5f5;
}

.dropdown-menu a:hover,
.dropdown-sub > a:hover {
    background: #e9e9e9;
}

/* Submenu */
.dropdown-sub {
    position: relative;
}

.sub-menu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 260px;
    background: white;
    display: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

/* Hover on Examination */
.dropdown-sub:hover .sub-menu {
    display: block;
}

.sub-menu a {
    padding: 12px;
    display: block;
    color: #222;
    background: white;
}

.sub-menu a:hover {
    background: #f0f0f0;
}

.sec-white{
    color: black;
    background-color: white;
}

.sec-gray{
    color: black;
    background-color: #f7faff;
    padding: 45px;
}

/* Main aur Nested dono lists par hollow circle apply karega */
ul.circle {
    list-style-type: circle; 
    padding-left: 25px; /* Ye wo indentation (left spacing) dega jo aapko chahiye */
    margin-bottom: 15px;
}

/* List items ke beech mein thoda sa gap laane ke liye */
ul.circle li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Nested list (list ke andar list) ke upar thoda extra gap */
ul.circle ul.circle {
    margin-top: 5px; 
    margin-bottom: 0; /* Kyunki last item ke baad extra space na aaye */
}

/* Typography & Basic Spacing */
.sec-white {
    font-family: 'Inter', sans-serif;
    color: #333333; /* Dark gray for readability */
    line-height: 1.6;
}

.sec-white h3, 
.sec-white h4 {
    color: #000000;
    font-weight: 600;
    margin-bottom: 10px;
    margin-top: 20px;
}

.sec-white p {
    margin-bottom: 12px;
    font-size: 15px;
}

/* === Main List Styling === */
ul.circle {
    list-style-type: circle; /* Hollow circles (◦) */
    padding-left: 20px; /* Text se pehle thodi space */
    margin-bottom: 15px;
}

ul.circle li {
    margin-bottom: 10px; /* Har bullet point ke beech ka gap */
    padding-left: 5px; /* Bullet (◦) aur text ke beech ka chhota sa gap */
    font-size: 15px;
}

/* === Nested List (Andar wali list) Styling === */
ul.circle ul.circle {
    margin-top: 10px; /* Andar wali list shuru hone se pehle ka gap */
    margin-bottom: 0; 
    padding-left: 25px; /* Image ki tarah ise thoda aur aage (right) khiskane ke liye */
}

/* Links Styling */
ul.circle li a {
    color: #0056b3; /* Standard blue link color */
    text-decoration: none;
}

ul.circle li a:hover {
    text-decoration: underline;
}
.news-content{
    width: 100%;
    padding: 40px 20px;
    background: #f5f7fb;
}

.all-articles{
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.featured-card{
    display: flex;
    gap: 25px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.featured-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.featured-img{
    width: 35%;
    min-height: 280px;
}

.featured-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-content{
    width: 65%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.tag {
    display: inline-block;
    background: #1e73ff;
    color: #fff;
    padding: 6px 14px;   /* reduced padding */
    border-radius: 30px;
    font-size: 14px;     /* optional smaller text */
    font-weight: 600;
    width: fit-content;  /* makes bg fit text only */
}

.featured-title{
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: #111;
}

.featured-excerpt{
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.read-more{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #111;
    color: #fff;
    width: fit-content;
    padding: 12px 22px;
    border-radius: 50px;
    transition: 0.3s;
    font-weight: 600;
}

.read-more:hover{
    background: #1e73ff;
}

.multi-source-row{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.source-chip{
    text-decoration: none;
    color: #333;
    border: 1px solid #ddd;
    padding: 10px 14px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    font-size: 14px;
}

.source-chip:hover{
    background: #1e73ff;
    color: #fff;
    border-color: #1e73ff;
}

/* Responsive */

@media(max-width: 991px){

    .featured-card{
        flex-direction: column;
    }

    .featured-img{
        width: 100%;
        height: 250px;
    }

    .featured-content{
        width: 100%;
    }

    .featured-title{
        font-size: 22px;
    }
}

@media(max-width: 576px){

    .news-content{
        padding: 20px 10px;
    }

    .featured-content{
        padding: 18px;
    }

    .featured-title{
        font-size: 19px;
    }

    .featured-excerpt{
        font-size: 14px;
    }

    .read-more{
        width: 100%;
        justify-content: center;
    }
}
.prospectus-card{
    width: 920px;
    max-width: 100%;
    margin: auto;
    background: #034363;
}
.prospectus-card {
    border-radius: 20px;   /* smaller corners */
    padding: 1.2rem 1.5rem; /* shorter height & width */
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    justify-content: center;
    text-align: center;
}

.prospectus-card a{
    color: rgb(0, 0, 0);
}
/* ===== HEADER / NAVIGATION ===== */
    .navbar {
        background: white;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02), 0 1px 1px rgba(0, 0, 0, 0.05);
        position: sticky;
        top: 0;
        z-index: 1000;
        border-bottom: 1px solid #eef2f6;
        
    }

    .nav-flex {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 0;
        flex-wrap: wrap;
        gap: 16px;
    }

    .logo h1 {
        font-size: 1.6rem;
        font-weight: 800;
        background: linear-gradient(135deg, #0f2b3d, #1e4a76);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        letter-spacing: -0.3px;
    }

    .logo p {
        font-size: 0.7rem;
        font-weight: 500;
        color: #4b5563;
        letter-spacing: 0.2px;
    }

    /* desktop navigation links */
    .nav-links {
        display: flex;
        gap: 28px;
        align-items: center;
        flex-wrap: wrap;
    }

    .nav-links a {
        text-decoration: none;
        font-weight: 500;
        color: #1f3a4b;
        transition: color 0.2s;
    }

    .nav-links a:hover {
        color: #e5572c;
    }

    .btn-reg {
        background: #e5572c;
        color: white !important;
        padding: 8px 20px;
        border-radius: 40px;
        font-weight: 600;
        font-size: 0.85rem;
        transition: all 0.2s;
        box-shadow: 0 2px 6px rgba(229, 87, 44, 0.2);
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .btn-reg:hover {
        background: #c7441e;
        transform: scale(0.98);
    }

    .mobile-menu-btn {
        display: none;
        background: transparent;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: #1f3a4b;
        padding: 6px;
        transition: 0.2s;
    }

    .mobile-menu-btn:hover {
        color: #e5572c;
    }

    .mobile-nav {
        display: none;
        flex-direction: column;
        background: white;
        border-top: 1px solid #eef2f6;
        border-bottom: 1px solid #eef2f6;
        padding: 16px 24px;
        gap: 16px;
    }

    .mobile-nav a {
        text-decoration: none;
        font-weight: 600;
        color: #1f3a4b;
        padding: 10px 0;
        border-bottom: 1px solid #f0f2f5;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 1rem;
    }

    .mobile-nav a i {
        width: 24px;
        color: #e5572c;
    }

    .mobile-nav .mobile-reg {
        background: #e5572c;
        color: white !important;
        padding: 12px 16px;
        border-radius: 40px;
        justify-content: center;
        border: none;
        margin-top: 8px;
    }

    .mobile-nav.show-mobile {
        display: flex;
    }

    /* buttons general */
    .btn-outline {
        border: 1.5px solid #e5572c;
        background: transparent;
        padding: 10px 24px;
        border-radius: 40px;
        font-weight: 600;
        color: #e5572c;
        cursor: pointer;
        transition: 0.2s;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .btn-outline:hover {
        background: #e5572c10;
    }

    .btn-primary {
        background: linear-gradient(105deg, #ff7a2f 0%, #ff4d2e 100%);
        color: white;
        border: none;
        padding: 12px 28px;
        border-radius: 40px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.2s;
        font-size: 1rem;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
    }

    .btn-primary:hover {
        background: linear-gradient(105deg, #ff6a13 0%, #ff3916 100%);
        transform: translateY(-1px);
    }
@media (max-width: 780px) {
        .hero-visual {
            display: none;
        }

        .hero-left h1 {
            font-size: 2rem;
        }

        .container {
            padding: 0 20px;
        }

        .section-title {
            font-size: 1.7rem;
        }

        .nav-links {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .logo h1 {
            font-size: 1.4rem;
        }
    }
  @media (max-width: 780px) {

        .hero h1 {
            font-size: 2.3rem;
        }

        .subhead {
            max-width: 100%;
        }

        .container {
            padding: 0 20px;
        }

        .nav-buttons .btn-primary,
        .nav-buttons .btn-wa {
            padding: 8px 16px;
            font-size: 0.8rem;
        }
    }
.mobile-nav {
    display: none;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
}
.menu-toggle {
    /* background: var(--allen-blue); */
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.menu-toggle:hover {
    /* background: var(--allen-dark-blue); */
}

/* Navbar */
.mobile-navbar {
    display: none;
    background: #ffffff;
    margin-top: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.mobile-navbar.active {
    display: block;
}

.mobile-navbar ul {
    list-style: none;
}

.mobile-navbar ul li {
    border-bottom: 1px solid var(--border-soft);
}

.mobile-navbar ul li:last-child {
    border-bottom: none;
}

.mobile-navbar ul li a {
    display: block;
    padding: 14px 18px;
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    transition: var(--transition);
}

.mobile-navbar ul li a:hover {
    background: var(--bg-light);
    /* color: var(--allen-blue); */
}
.nav-link {
    padding: 10px 15px;
    display: inline-block;
    text-decoration: none;
    color: #000;
    font-weight: 600;
}
.under12{
    padding-left: 20px;
}
@media (max-width: 880px) {
    .nav-flex {
        padding: 10px 0;
    }
}
/* ==========================
   CTA SECTION
========================== */

.footer-cta {
    background: linear-gradient(135deg, #022c44 0%, #011a2b 100%);
    padding: 50px 20px;
}

.footer-cta-inner {
    max-width: 1200px;
    margin: auto;

    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-cta-content h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 12px;
}

.footer-cta-content h2 span {
    color: #f59e0b;
}

.footer-cta-content p {
    color: #dbeafe;
    max-width: 600px;
    line-height: 1.7;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #ff501b;
    color: #fff;

    text-decoration: none;

    padding: 14px 26px;
    border-radius: 50px;

    font-weight: 700;
    transition: .3s;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
}

/* ==========================
   FOOTER
========================== */

.site-footer {
    background: #081d2a;
    color: #d7e4ec;
    padding: 60px 20px 25px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.footer-card {
    text-align: center;
}

.footer-card i {
    font-size: 28px;
    margin-bottom: 15px;
    color: #f59e0b;
}

.footer-card h4 {
    margin-bottom: 12px;
    color: #fff;
}

.footer-card p {
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    text-align: center;
    color: #94a3b8;
    font-size: .9rem;
}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .footer-cta-inner{
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-content h2{
        font-size: 1.6rem;
    }

    .footer-grid{
        grid-template-columns: 1fr;
    }
}