/* Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Styles */

body {
    font-family: 'Poppins', Arial, sans-serif;
    line-height: 1.6;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
}

:root {
    --bt-blue: #3A6FD8;
    --bt-magenta: #A020A0;
    --bt-navy: #2A1F6E;
    --bt-light-blue: #E8EFFE;

    --hindi-accent: #F28A00;
    --hindi-accent-dark: #8A4700;
    --hindi-accent-soft: #FFF8EF;
    --hindi-accent-light: #FFF3E2;

    --english-accent: #EC2F86;
    --english-accent-dark: #9E1453;
    --english-accent-soft: #FFF1F7;
    --english-accent-light: #FFE4F0;

    --maths-accent: #F5B400;
    --maths-accent-dark: #9B6A00;
    --maths-accent-soft: #FFF8DA;
    --maths-accent-light: #FFF1B8;
}

/* Start Desktop: Announcement Section */

.announcement-bar {
    background-color: var(--bt-navy);

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

    padding: 14px 20px;

    font-family: 'Poppins', sans-serif;
    font-size: 14px;
}

.announcement-link {
    display: flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    color: white;

    transition: 0.3s;
}

.announcement-link:hover {
    opacity: 0.9;
}

.announcement-icon {
    width: 16px;
    height: 16px;
    fill: white;
}

.announcement-highlight {
    color: #BDEFFF;
    font-weight: 600;
}

.announcement-separator {
    color: rgba(255,255,255,0.5);
}
/* End Desktop: Announcement Section */

/* Start Desktop: Navbar Section */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 14px 40px;

    background-color: white;
    border-bottom: 3px solid var(--bt-navy);

    transition: 0.3s ease;
}

.logo-area {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.desktop-logo {
    height: 72px;
    width: auto;
    display: block;
    transition: 0.3s ease;
}

.mobile-logo {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu-toggle {
    display: none;
}

.nav-links a,
.dropdown-toggle {
    position: relative;

    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 600;

    color: var(--bt-navy);
    text-decoration: none;

    background: none;
    border: none;
    cursor: pointer;
}

.nav-links a::after,
.dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;

    width: 0;
    height: 2px;

    background-color: var(--bt-magenta);
    transition: 0.3s ease;
}

.nav-links a:hover,
.dropdown-toggle:hover {
    color: var(--bt-magenta);
}

.nav-links a:hover::after,
.dropdown-toggle:hover::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 0;

    min-width: 190px;

    background-color: white;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    display: none;
    flex-direction: column;

    padding: 10px 0;
}

.dropdown-menu a {
    padding: 10px 16px;
    white-space: nowrap;
}

.dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown.active .dropdown-menu {
    display: flex;
}

.login-menu {
    display: none;
}

.login-button {
    background-color: var(--bt-magenta);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
}

.login-button:hover {
    color: white;
}

/* Start Desktop: Navbar Section */

.page {
    max-width: 1400px;
    margin: 0 auto;
}

.section {
    padding: 60px 50px;
}

#about,
#team,
#contact {
    scroll-margin-top: 110px;
}

#classes {
    scroll-margin-top: 105px;
}

html {
    scroll-behavior: smooth;
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 35px 50px 40px;

    background:
    radial-gradient(circle at top left, rgba(160, 32, 160, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(58, 111, 216, 0.16), transparent 35%),
    linear-gradient(135deg, #F4F8FF 0%, #E8EFFE 50%, #FFFFFF 100%);
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.55);
    z-index: 0;
}

.hero::before {
    width: 180px;
    height: 180px;
    top: 35px;
    right: 38%;
}

.hero::after {
    width: 260px;
    height: 260px;
    bottom: -90px;
    left: 35%;
}

.hero-content,
.hero-stats {
    position: relative;
    z-index: 1;
}

.hero-content {
    width: 60%;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.25;
    transform: translateY(-35px);
}

.hero-content p {
    font-size: 18px;
    color: var(--bt-navy);
    max-width: 720px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-buttons a {
    text-decoration: none;
}

.hero-buttons button {
    padding: 12px 20px;
    cursor: pointer;
}

.hero-stats {
    width: 22%;
    max-width: 360px;
}

.stat-card {
    background-color: white;
    padding: 22px;
    margin-bottom: 16px;
    border-radius: 10px;
}

.stat-card h2 {
    font-size: 26px;
    margin-bottom: 6px;
}

.stat-card p {
    font-size: 16px;
}

.btn-primary {
    background-color: var(--bt-magenta);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
} 

 .btn-secondary {
    background-color: white;
    color: var(--bt-blue);
    border: 1px solid var(--bt-blue);
    padding: 12px 20px;
    border-radius: 6px;
    cursor: pointer;
}

  /* Hindi Detail Section - Compact Desktop Layout */

    #hindi-classes {
        scroll-margin-top: 100px;
    }

    #subject-details-area {
        scroll-margin-top: 100px;
    }

    .subject-detail-section {
        display: none;
    }

    .subject-detail-section.active-subject {
        display: block;
    }

    .subject-detail-section {
        --subject-accent: var(--hindi-accent);
        --subject-accent-dark: var(--hindi-accent-dark);
        --subject-accent-soft: var(--hindi-accent-soft);
        --subject-accent-light: var(--hindi-accent-light);
        --subject-glow: rgba(255, 149, 0, 0.18);
        --subject-border: rgba(242, 138, 0, 0.20);
        --subject-hover-shadow: rgba(242, 138, 0, 0.16);
        --subject-active-gradient: linear-gradient(135deg, #FF9F1C, #F26A00);

        padding-top: 32px;
        padding-bottom: 32px;

        background:
            radial-gradient(circle at top left, var(--subject-glow), transparent 28%),
            radial-gradient(circle at bottom right, rgba(160, 32, 160, 0.10), transparent 30%),
            linear-gradient(135deg, var(--subject-accent-soft) 0%, #FFFFFF 55%, #F4F8FF 100%);
    }

    .english-classes-section {
        --subject-accent: var(--english-accent);
        --subject-accent-dark: var(--english-accent-dark);
        --subject-accent-soft: var(--english-accent-soft);
        --subject-accent-light: var(--english-accent-light);
        --subject-glow: rgba(236, 47, 134, 0.16);
        --subject-border: rgba(236, 47, 134, 0.20);
        --subject-hover-shadow: rgba(236, 47, 134, 0.16);
        --subject-active-gradient: linear-gradient(135deg, #FF5CA8, #EC2F86);
    }

    .maths-classes-section {
        --subject-accent: var(--maths-accent);
        --subject-accent-dark: var(--maths-accent-dark);
        --subject-accent-soft: var(--maths-accent-soft);
        --subject-accent-light: var(--maths-accent-light);
        --subject-glow: rgba(245, 180, 0, 0.20);
        --subject-border: rgba(245, 180, 0, 0.24);
        --subject-hover-shadow: rgba(245, 180, 0, 0.18);
        --subject-active-gradient: linear-gradient(135deg, #FFD735, #F5A800);
    }

    /* Header */

    .subject-detail-header {
        display: grid;
        grid-template-columns: 0.85fr 2.15fr;
        gap: 22px;
        align-items: center;

        margin-bottom: 16px;
    }

    .subject-header-left {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .subject-header-right {
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }

     .subject-header-right h2 {
        font-size: 30px;
        color: var(--subject-accent-dark);
        margin: 0;
        text-align: left;
    }

    .section-label {
        display: inline-block;
        margin-bottom: 0;

        color: var(--subject-accent);
        font-weight: 800;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        font-size: 20px;
    }

    /* Main Layout */

    .subject-detail-layout {
        display: grid;
        grid-template-columns: 0.85fr 2.15fr;
        gap: 22px;
        align-items: stretch;
    }

    /* Inner Details / Fees Tabs */

    .inner-tab-row {
        display: none;
        gap: 10px;
        margin-bottom: 14px;
    }

    .inner-tab {
        padding: 8px 16px;
        border-radius: 999px;

        border: 1px solid rgba(242, 138, 0, 0.25);
        background-color: #FFF8EF;
        color: var(--subject-accent-dark);

        font-size: 13px;
        font-weight: 700;

        cursor: pointer;
        transition: 0.3s ease;
    }

    .inner-tab.active {
        background-color: var(--subject-accent);
        color: white;
        border-color: var(--subject-accent);
    }

    .inner-content {
        display: none;
    }

    .inner-content.active {
        display: block;
    }

    /* Hide fees system for now */
    .inner-tab.fees-tab {
        display: none;
    }

    /* Left Vertical Tabs */

    .subject-tab-note {
        padding: 12px 16px 8px;
        border-radius: 16px;

        background: linear-gradient(135deg, var(--subject-accent-light), #FFFFFF);
        border: 1px solid var(--subject-border);

        color: var(--bt-navy);
        font-weight: 600;
        font-size: 14px;
        line-height: 1.35;

        text-align: center;
    }

    .subject-tab-note span {
        display: block;
    }

    .tab-note-arrow {
        display: block;
        margin-top: 2px;

        color: var(--subject-accent);
        font-size: 24px;
        font-weight: 900;
        line-height: 0.8;
    }

    .subject-tabs-panel {
        display: flex;
        flex-direction: column;
        gap: 12px;

        background: rgba(255, 255, 255, 0.70);
        border: 1px solid var(--subject-border);
        border-radius: 24px;
        padding: 16px;

        box-shadow: 0 16px 35px rgba(42, 31, 110, 0.08);
    }

    .subject-tab {
        display: flex;
        gap: 12px;
        align-items: flex-start;

        width: 100%;
        padding: 16px;
        border-radius: 17px;

        border: 1px solid rgba(242, 138, 0, 0.25);
        background-color: white;
        color: var(--bt-navy);

        text-align: left;
        cursor: pointer;

        box-shadow: 0 10px 22px rgba(42, 31, 110, 0.07);
        transition: 0.3s ease;
    }

    .subject-tab:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px var(--subject-hover-shadow);
    }

    .subject-tab span {
        width: 34px;
        height: 34px;
        flex-shrink: 0;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 50%;

        background-color: var(--subject-accent-light);
        color: var(--subject-accent);

        font-weight: 800;
        font-size: 13px;
    }

    .subject-tab strong {
        display: block;
        font-size: 15px;
        margin-bottom: 2px;
    }

    .subject-tab small {
        color: #666;
        font-size: 12px;
    }

    .subject-tab.active {
        background: var(--subject-active-gradient);
        color: white;
        border-color: transparent;
    }

    .subject-tab.active span {
        background-color: white;
        color: var(--subject-accent);
    }

    .subject-tab.active small {
        color: white;
    }

    /* Right Details Panel */

    .subject-info-panel {
        background-color: white;
        border-radius: 24px;
        padding: 22px;

        border: 1px solid var(--subject-border);
        box-shadow: 0 20px 45px rgba(42, 31, 110, 0.10);
    }

    .subject-tab-content {
        display: none;
    }

    .subject-tab-content.active {
        display: block;
    }

    .subject-content-heading {
        margin-bottom: 14px;
    }

    /* .subject-content-label {
        color: #F28A00;
        font-size: 12px;
        font-weight: 700;
        margin-bottom: 3px;
    } */

    .subject-content-heading h3 {
        font-size: 25px;
        color: var(--bt-navy);
        margin-bottom: 5px;
    }

    .subject-content-heading p {
        color: #4d4d4d;
        font-size: 13.5px;
        line-height: 1.45;
        max-width: 840px;
    }

      /* Timings */

        .timings-row {
            align-items: start;
        }

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

        .timings-grid div {
            color: var(--bt-navy);
            font-size: 13.2px;
            font-weight: 600;
            line-height: 1.4;
            white-space: nowrap;
        }


    /* Details */

    .subject-details-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .subject-detail-row {
        display: grid;
        grid-template-columns: 130px 1fr;
        gap: 10px;
        align-items: start;

        padding: 10px 12px;
        border-radius: 14px;

        background-color: var(--subject-accent-soft);
        border: 1px solid var(--subject-border);
    }

    .subject-detail-row.full-row {
        grid-column: 1 / -1;
    }

    .subject-detail-row span {
        color: var(--subject-accent-dark);
        font-size: 12.5px;
        font-weight: 700;
    }

    .subject-detail-row strong {
        color: var(--bt-navy);
        font-size: 13.2px;
        font-weight: 600;
        line-height: 1.38;
    }

    /* CTA */

    .subject-cta {
        display: flex;
        gap: 12px;

        margin-top: 16px;
        padding-top: 16px;

        border-top: 1px solid #f0e0ca;
    }

    .subject-call-btn,
    .subject-whatsapp-btn {
        display: inline-block;
        padding: 11px 20px;

        border-radius: 10px;
        text-decoration: none;
        font-weight: 600;
        font-size: 14px;

        transition: 0.3s ease;
    }

    .subject-call-btn {
        background-color: var(--subject-accent);
        color: white;
    }

    .subject-whatsapp-btn {
        background-color: #25D366;
        color: white;
    }

    .subject-call-btn:hover,
    .subject-whatsapp-btn:hover {
        transform: translateY(-2px);
        opacity: 0.92;
    }

    /* Extra compact mode for shorter laptop screens */

    @media (min-width: 769px) and (max-height: 760px) {
        .subject-detail-section {
            padding-top: 24px;
            padding-bottom: 24px;
        }

        .subject-detail-header {
            margin-bottom: 14px;
        }

        .subject-detail-header h2 {
            font-size: 27px;
        }

        .subject-info-panel {
            padding: 18px;
        }

        .subject-content-heading {
            margin-bottom: 10px;
        }

        .subject-content-heading h3 {
            font-size: 23px;
        }

        .subject-content-heading p {
            font-size: 13px;
        }

        .subject-detail-row {
            padding: 8px 10px;
        }

        .subject-cta {
            margin-top: 12px;
            padding-top: 12px;
        }
    }


/* ====================================
   About Us Section
   ==================================== */

.about-section {
    background:
        radial-gradient(circle at top right, rgba(58, 111, 216, 0.08), transparent 28%),
        linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 55%, #FFFFFF 100%);
}

.about-heading {
    max-width: 950px;
}

.about-story {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
    margin-bottom: 26px;
}

.about-story-content,
.about-highlight-box,
.about-value-card {
    background-color: #FFFFFF;
    border: 1px solid rgba(58, 111, 216, 0.14);
    border-radius: 20px;
    box-shadow: 0 14px 32px rgba(42, 31, 110, 0.06);
}

.about-story-content {
    padding: 30px;

    border: 2px solid rgba(160, 32, 160, 0.28);

    background:
        linear-gradient(135deg, #FFFFFF 0%, #FAF5FF 48%, #F4F8FF 100%);

    box-shadow:
        0 18px 42px rgba(42, 31, 110, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.about-highlight-box {
    padding: 30px;

    background:
        linear-gradient(135deg, #FFFFFF 0%, #F4F8FF 50%, #EEF3FF 100%);

    border: 2px solid rgba(58, 111, 216, 0.22);

    box-shadow:
        0 18px 42px rgba(58, 111, 216, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

.about-story-content h3,
.about-highlight-box h3,
.about-value-card h3 {
    color: var(--bt-navy);
    font-size: 20px;
    margin-bottom: 12px;
}

.about-value-card h3 {
    color: var(--bt-magenta);
}

.about-value-card p {
    color: var(--bt-navy);
    font-weight: 500;
}

.about-story-content p,
.about-highlight-box p,
.about-value-card p {
    color: #444;
    font-size: 15px;
    line-height: 1.75;
}

.about-story-content p:not(:last-child) {
    margin-bottom: 14px;
}

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

.about-value-card {
    padding: 24px;

    background:
        linear-gradient(135deg, #FFFFFF 0%, #FBF7FF 55%, #F4F8FF 100%);

    border: 1.5px solid rgba(160, 32, 160, 0.20);

    box-shadow:
        0 14px 32px rgba(42, 31, 110, 0.12),
        0 0 0 1px rgba(160, 32, 160, 0.04);

    transition: 0.3s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(42, 31, 110, 0.10);
}

/* ====================================
   Meet Our Team Section - Flow Layout
   ==================================== */

.team-section {
    background:
        radial-gradient(circle at top left, rgba(58, 111, 216, 0.06), transparent 28%),
        linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 55%, #FFFFFF 100%);
}

.team-heading {
    max-width: 950px;
}

/* Leadership Top Row */

.team-leadership-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 340px));
    justify-content: center;
    gap: 34px;

    margin-bottom: 36px;
}

.team-profile-card {
    text-align: center;

    background:
        linear-gradient(135deg, #FFFFFF 0%, #F4F8FF 100%);

    border: 1.5px solid rgba(58, 111, 216, 0.20);
    border-radius: 24px;

    padding: 28px 24px;

    box-shadow:
        0 16px 36px rgba(42, 31, 110, 0.10),
        0 0 0 1px rgba(160, 32, 160, 0.04);

    transition: 0.3s ease;
}

.team-profile-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 22px 46px rgba(42, 31, 110, 0.15),
        0 0 0 1px rgba(160, 32, 160, 0.08);
}

.leadership-card {
    border-top: 5px solid var(--bt-magenta);
}

/* Circular Photos */

.team-photo-wrap {
    width: 138px;
    height: 138px;

    margin: 0 auto 18px;

    border-radius: 50%;
    padding: 6px;

    background:
        linear-gradient(135deg, var(--bt-blue), var(--bt-magenta));

    box-shadow: 0 12px 28px rgba(42, 31, 110, 0.18);
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;

    border-radius: 50%;
    object-fit: cover;
    display: block;

    border: 4px solid white;
}

/* Text Styles */

.team-profile-card h3,
.team-mini-card h3 {
    color: var(--bt-navy);
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 6px;
}

.team-role {
    color: var(--bt-magenta);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 10px;
}

.team-meta {
    color: var(--bt-blue);
    font-size: 13.5px;
    font-weight: 700;
    line-height: 1.45;
}

.team-exp {
    display: inline-block;

    margin-top: 10px;
    margin-bottom: 18px;
    padding: 7px 14px;

    color: var(--bt-navy);
    background-color: white;

    border: 1px solid rgba(58, 111, 216, 0.16);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
}

/* Faculty Flow Rows */

.team-flow {
    max-width: 1050px;
    margin: 0 auto;

    display: flex;
    flex-direction: column;
    gap: 22px;
}

.team-flow-row {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 24px;
    align-items: center;

    background:
        linear-gradient(135deg, #FFFFFF 0%, #F8FBFF 100%);

    border: 1.5px solid rgba(58, 111, 216, 0.18);
    border-radius: 24px;

    padding: 22px;

    box-shadow:
        0 14px 34px rgba(42, 31, 110, 0.09),
        0 0 0 1px rgba(160, 32, 160, 0.03);

    transition: 0.3s ease;
}

.team-flow-row:hover {
    transform: translateY(-4px);
    box-shadow:
        0 20px 44px rgba(42, 31, 110, 0.14),
        0 0 0 1px rgba(160, 32, 160, 0.07);
}

.team-mini-card {
    text-align: center;

    background-color: #FFFFFF;
    border: 1px solid rgba(58, 111, 216, 0.14);
    border-radius: 20px;

    padding: 22px 18px;

    box-shadow: 0 10px 24px rgba(42, 31, 110, 0.07);
}

.team-mini-card .team-photo-wrap {
    width: 120px;
    height: 120px;
    margin-bottom: 14px;
}

.team-flow-content {
    padding: 4px 8px;
}

.team-badge {
    display: inline-block;

    margin-bottom: 8px;
    padding: 6px 12px;

    color: var(--bt-magenta);
    background-color: #FBF1FF;

    border: 1px solid rgba(160, 32, 160, 0.16);
    border-radius: 999px;

    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.team-flow-content h3 {
    color: var(--bt-navy);
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 8px;
}

.team-flow-content p {
    color: #444;
    font-size: 14.5px;
    line-height: 1.7;
}

.team-flow-content .team-meta {
    color: var(--bt-blue);
    font-weight: 700;
}

.team-flow-content .team-exp {
    margin-top: 8px;
    margin-bottom: 12px;
}

.classes-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
    text-align: center;
}

.classes-section.section {
    padding-top: 5px;
    padding-bottom: 20px;
}

.classes-section > p {
    margin-bottom: 18px;
    max-width: none;
}

/* .classes-section {
    padding-bottom: 0;
}

.hindi-classes-section {
    padding-top: 0;
} */



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

.class-card {
    display: flex;
    justify-content: center;

    background: transparent;
    border: none;
    padding: 0;

    border-radius: 22px;
    overflow: hidden;
}

.class-card img {
    width: 82%;
    max-width: 320px;
    height: auto;
    display: block;
}

/* ==============================
   Sainik School Section
   Desktop First Version
   ============================== */

#sainik {
    scroll-margin-top: 105px;
}

.sainik-section {
    background: linear-gradient(135deg, #eef3e4, #f8f4e6);
    padding: 35px 50px 60px;
}

.sainik-container {
    max-width: 1100px;
    margin: 0 auto;
}

/* Intro Area - Desktop */

.sainik-intro {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.sainik-intro-content {
    width: 65%;
    margin-top: 35px;
}

.sainik-intro-image {
    width: 35%;
}

.sainik-intro h2 {
    color: #263b1f;
    font-size: 2.4rem;
    margin-bottom: 16px;
    padding: 10px 0;
}

.sainik-intro p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 14px;
}

.sainik-intro strong {
    color: #1f3218;
}

.sainik-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(38, 59, 31, 0.2);
}

/* Common Sainik Blocks */

.sainik-block {
    background-color: #ffffff;
    border: 1px solid rgba(38, 59, 31, 0.18);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: 0 10px 24px rgba(38, 59, 31, 0.08);
}

.sainik-block h3 {
    color: #263b1f;
    font-size: 1.45rem;
    margin-bottom: 16px;
}

.sainik-block p {
    color: #333;
    line-height: 1.7;
    margin-bottom: 14px;
}

.sainik-block ul {
    padding-left: 20px;
}

.sainik-block li {
    color: #333;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* Eligibility and Syllabus Cards - Desktop */

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

.sainik-card {
    background-color: #f8faf4;
    border: 1px solid rgba(38, 59, 31, 0.2);
    border-radius: 16px;
    padding: 22px;
}

.sainik-card h4 {
    color: #263b1f;
    font-size: 1.35rem;
    margin-bottom: 14px;
}

.sainik-card h5 {
    color: #4f612f;
    font-size: 1rem;
    margin: 16px 0 8px;
}

/* Qualification Criteria Highlight */

.qualification-box {
    background-color: #fff8dc;
    border-right: 6px solid #8a7a32;
}

.qualification-box h3 {
    color: #4b4218;
}

/* Collaboration Box */

.collaboration-box {
    background-color: #f5f8ef;
    border: 1px solid rgba(38, 59, 31, 0.25);
}

.collaboration-contact {
    margin-top: 16px;
}

.collaboration-contact a {
    color: #263b1f;
    font-weight: 700;
    text-decoration: none;
}

.collaboration-contact a:hover {
    text-decoration: underline;
}

/* Buttons - Desktop */

.collaboration-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.sainik-btn {
    display: inline-block;
    background-color: #263b1f;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 999px;
    border: 2px solid #263b1f;
    transition: 0.3s ease;
}

.sainik-btn:hover {
    background-color: #1a2815;
    border-color: #1a2815;
}

.sainik-btn-outline {
    background-color: transparent;
    color: #263b1f;
}

.sainik-btn-outline:hover {
    background-color: #263b1f;
    color: #ffffff;
}

/* ====================================
   Why Bolster / Results / Testimonials
   ==================================== */

.why-us-section,
.testimonials-section {
    background:
        radial-gradient(circle at top left, rgba(160, 32, 160, 0.14), transparent 30%),
        radial-gradient(circle at bottom right, rgba(58, 111, 216, 0.12), transparent 32%),
        linear-gradient(135deg, #FBF7FF 0%, #F4F8FF 52%, #FFFFFF 100%);
}

.why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.results-section {
    background:
        radial-gradient(circle at top right, rgba(160, 32, 160, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(58, 111, 216, 0.12), transparent 34%),
        linear-gradient(135deg, #F4F8FF 0%, #FBF7FF 55%, #FFFFFF 100%);
}

.why-us-section,
.results-section,
.testimonials-section {
    padding-top: 42px;
    padding-bottom: 42px;
}

.section-heading {
    max-width: 1060px;
    margin-bottom: 30px;
}

.section-kicker {
    position: relative;

    display: inline-block;
    margin-bottom: 8px;
    padding-left: 26px;

    color: var(--bt-magenta);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.section-kicker::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;

    width: 18px;
    height: 2px;

    background-color: var(--bt-magenta);
    transform: translateY(-50%);
}

.section-heading h2 {
    color: var(--bt-navy);
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.section-intro {
    color: #2A1F6E;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

/* Why Bolster Cards */

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

.why-card {
    background-color: white;
    padding: 24px;
    border-radius: 18px;

    border: 1px solid rgba(42, 31, 110, 0.10);
    box-shadow: 0 14px 32px rgba(42, 31, 110, 0.08);

    transition: 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(42, 31, 110, 0.13);
}

.why-icon {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 16px;
    border-radius: 16px;

    background:
        linear-gradient(145deg, #ffffff 0%, #e8effe 45%, #f7e8ff 100%);

    color: var(--bt-navy);
    font-family: 'Montserrat', sans-serif;
    font-size: 23px;
    font-weight: 800;

    border: 1px solid rgba(42, 31, 110, 0.12);

    box-shadow:
        0 10px 18px rgba(42, 31, 110, 0.16),
        inset 3px 3px 8px rgba(255, 255, 255, 0.9),
        inset -4px -4px 8px rgba(42, 31, 110, 0.08);

    text-shadow:
        1px 1px 0 rgba(255, 255, 255, 0.9),
        2px 3px 4px rgba(42, 31, 110, 0.18);
}

.why-card h3 {
    color: var(--bt-navy);
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.why-card p {
    color: #444;
    font-size: 14.5px;
    line-height: 1.65;
}

/* Visible Results Cards */

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

.result-card {
    position: relative;

    background-color: white;
    padding: 26px 22px;
    border-radius: 18px;

    border: 1px solid rgba(58, 111, 216, 0.14);
    box-shadow: 0 14px 32px rgba(42, 31, 110, 0.08);

    overflow: hidden;
}

.result-card::after {
    content: "";
    position: absolute;
    right: -30px;
    bottom: -30px;

    width: 90px;
    height: 90px;

    border-radius: 50%;
    background-color: rgba(58, 111, 216, 0.08);
}

.result-number {
    color: var(--bt-magenta);
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 12px;
}

.result-card h3 {
    color: var(--bt-navy);
    font-size: 18px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.result-card p {
    color: #444;
    font-size: 14.5px;
    line-height: 1.65;
}

/* Testimonials */

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

.testimonial-card {
    background-color: white;
    padding: 26px;
    border-radius: 18px;

    border: 1px solid rgba(160, 32, 160, 0.12);
    box-shadow: 0 14px 32px rgba(42, 31, 110, 0.08);
}

.testimonial-stars {
    color: #F5B400;
    font-size: 17px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.testimonial-card p {
    color: #333;
    font-size: 15px;
    line-height: 1.75;
    font-style: italic;
    margin-bottom: 18px;
}

.testimonial-card h3 {
    color: var(--bt-navy);
    font-size: 15px;
}


/* ====================================
   Contact Section
   ==================================== */

.contact-section {
    padding-top: 18px;
    padding-bottom: 36px;

    background:
        radial-gradient(circle at top right, rgba(160, 32, 160, 0.12), transparent 30%),
        radial-gradient(circle at bottom left, rgba(58, 111, 216, 0.12), transparent 34%),
        linear-gradient(135deg, #F4F8FF 0%, #FBF7FF 55%, #FFFFFF 100%);
}

.contact-heading {
    max-width: 1050px;
    margin-bottom: 20px;
}

.contact-heading .section-kicker {
    margin-bottom: 6px;
}

.contact-heading h2 {
    line-height: 1.15;
    margin-bottom: 8px;
}

.contact-heading .section-intro {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.55;
}

.contact-container {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 24px;
    align-items: stretch;
}

.contact-info-card,
.contact-map-card {
    background-color: white;
    border: 1px solid rgba(58, 111, 216, 0.16);
    border-radius: 22px;
    padding: 22px;

    box-shadow:
        0 16px 36px rgba(42, 31, 110, 0.10),
        0 0 0 1px rgba(160, 32, 160, 0.04);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 26px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;

    padding: 14px 0;
    border-bottom: 1px solid rgba(42, 31, 110, 0.08);
}

.contact-item h3 {
    color: var(--bt-navy);
    font-size: 17px;
    margin-bottom: 3px;
}

.contact-item p,
.contact-item a {
    color: #444;
    font-size: 14.5px;
    line-height: 1.55;
    text-decoration: none;
}

.contact-item a {
    color: var(--bt-blue);
    font-weight: 700;
}

.contact-item a:hover {
    color: var(--bt-magenta);
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;
    background: linear-gradient(135deg, #E8EFFE, #FBF1FF);

    font-size: 19px;
}

.contact-note {
    margin-top: 4px;
    padding: 11px 16px;

    color: var(--bt-navy);
    background-color: #F4F8FF;

    /* border-left: none; */
    border-left: 5px solid var(--bt-magenta);
    border-right: 5px solid var(--bt-magenta);
    border-radius: 14px;

    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
}

.contact-info-grid .contact-item:nth-child(3),
.contact-info-grid .contact-item:nth-child(4) {
    border-bottom: none;
    padding-bottom: 4px;
}

.contact-map-card {
    display: flex;
    flex-direction: column;
}

.map-frame {
    width: 100%;
    height: 210px;

    overflow: hidden;
    border-radius: 16px;

    border: 1px solid rgba(42, 31, 110, 0.10);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-btn {
    display: inline-block;
    width: 100%;

    margin-top: 14px;
    padding: 11px 16px;

    color: white;
    background-color: var(--bt-magenta);

    border: 2px solid var(--bt-magenta);
    border-radius: 12px;

    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.map-btn:hover {
    transform: translateY(-2px);
    opacity: 0.92;
}


/* ====================================
   Footer Section
   ==================================== */

.footer {
    background:
        linear-gradient(135deg, #1F1758 0%, var(--bt-navy) 55%, #351E7A 100%);

    color: white;
    padding: 42px 50px 22px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 36px;

    max-width: 1150px;
    margin: 0 auto 28px;
}

.footer-column h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 14px;
}

.footer-about p {
    max-width: 380px;

    color: rgba(255, 255, 255, 0.82);
    font-size: 14.5px;
    line-height: 1.75;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.82);

    font-size: 14px;
    text-decoration: none;

    transition: 0.3s ease;
}

.footer-column a:hover {
    color: #BDEFFF;
    padding-left: 4px;
}

.footer-bottom {
    max-width: 1150px;
    margin: 0 auto;
    padding-top: 18px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.admin-link {
    color: rgba(255, 255, 255, 0.28);

    font-size: 10px;
    text-decoration: none;

    transition: 0.3s ease;
}

.admin-link:hover {
    color: rgba(255, 255, 255, 0.75);
}


/* ==================================================================== */

/* Mobile Responsive Section - Starts */

@media (max-width: 768px) {

    .page {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
    }

    body {
    overflow-x: hidden;
    }

     .announcement-bar {
        display: none;
    }

  /* Start Mobile Responsive: Navbar Section */
 
    .navbar {
        position: sticky;
        top: 0;
        z-index: 1000;

        padding: 8px 20px;
        flex-wrap: wrap;
        justify-content: center;

        background-color: white;
        border-bottom: 3px solid var(--bt-navy);
    }

    .logo-area {
    margin: 0 auto;
    }

    .desktop-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        height: 68px;
        width: auto;
    }

    .menu-toggle {
        display: block;
        position: absolute;
        left: 20px;
        top: 28px;
        font-size: 26px;
        background: none;
        border: none;
        color: var(--bt-navy);
        cursor: pointer;
    }

     .nav-links {
        display: none;
        width: 100%;

        flex-direction: column;
        align-items: flex-start;
        gap: 16px;

        padding-top: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a::after,
    .dropdown-toggle::after {
        display: none;
    }

    .nav-links a:hover,
    .dropdown-toggle:hover {
        color: var(--bt-navy);
    }

    .dropdown {
        width: 100%;
    }

    .dropdown-toggle {
        width: 100%;
        text-align: left;
    }

     .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;

        display: none;
        padding-left: 15px;
        margin-top: 8px;
    }

    .dropdown.active .dropdown-menu {
        display: flex;
    }
 
    /* End Mobile Responsive: Navbar Section */

    #classes,
    #subject-details-area,
    #hindi-classes,
    #english-classes,
    #math-classes,
    #sainik,
    #why-bolster,
    #testimonials,
    #about,
    #team,
    #contact {
        scroll-margin-top: 85px;
    }




    /* Start Mobile Responsive: Hero Section */

    .hero {
        width: 100%;
    }

   .hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 45px 20px 30px;

    background:
        radial-gradient(circle at top right, rgba(160, 32, 160, 0.12), transparent 35%),
        linear-gradient(180deg, #F4F8FF 0%, #E8EFFE 60%, #FFFFFF 100%);
    }

    .hero::before {
    width: 120px;
    height: 120px;
    top: 25px;
    right: -35px;
    }

    .hero::after {
        width: 180px;
        height: 180px;
        bottom: -80px;
        left: -60px;
    }

    .hero-content {
        width: 100%;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-stats {
        width: 100%;
        max-width: none;
        margin-top: 20px;

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

    /* .stat-card {
        margin-bottom: 0;
        padding: 12px 8px;
        text-align: center;
        border-radius: 10px;
    }

    .stat-card h2 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .stat-card p {
        font-size: 11px;
        line-height: 1.25;
    } */

    .stat-card {
    background-color: white;
    margin-bottom: 0;
    padding: 12px 8px;
    text-align: center;
    border-radius: 10px;
    }

    .stat-card h2 {
        font-size: 18px;
        line-height: 1.2;
        margin-bottom: 4px;
    }

    .stat-card p {
        font-size: 11px;
        line-height: 1.25;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }   

    .hero-buttons button {
        width: 100%;
    }

    /* Mobile Responsive: About Section */
    .about-section {
    padding: 40px 20px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Responsive: classes Section */
    .classes-section {
    padding: 40px 20px;
    }

    .classes-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile Responsive: Hindi Detail Section */

    #hindi-classes {
        scroll-margin-top: 20px;
    }

    #subject-details-area {
        scroll-margin-top: 20px;
    }

    .subject-detail-section {
        padding: 32px 20px;
    }

    .subject-detail-header {
        display: block;
        margin-bottom: 20px;
        text-align: center;
    }

    .subject-header-left,
    .subject-header-right {
        display: block;
    }

    .section-label {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .subject-header-right h2 {
        font-size: 24px;
        line-height: 1.25;
        text-align: center;
    }

    .subject-detail-layout {
        display: block;
    }

    .subject-tabs-panel {
        margin-bottom: 18px;
        padding: 14px;
        border-radius: 20px;
    }

    .subject-tab-note {
        font-size: 13px;
        padding: 10px 12px;
    }

    .subject-tab {
        padding: 14px;
        border-radius: 15px;
    }

    .subject-tab span {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .subject-tab strong {
        font-size: 14px;
    }

    .subject-tab small {
        font-size: 11.5px;
    }

    .subject-info-panel {
        padding: 16px;
        border-radius: 20px;
    }

    .subject-content-heading h3 {
        font-size: 21px;
        line-height: 1.25;
    }

    .subject-content-heading p {
        font-size: 13px;
    }

    .subject-details-list {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .subject-detail-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 11px 12px;
    }

    .subject-detail-row span {
        font-size: 12px;
    }

    .subject-detail-row strong {
        font-size: 13px;
    }

    .timings-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .timings-grid div {
        font-size: 13px;
        white-space: normal;
    }

    .subject-cta {
        flex-direction: column;
        gap: 10px;
    }

    .subject-call-btn,
    .subject-whatsapp-btn {
        width: 100%;
        text-align: center;
    }

        /* Mobile Responsive: Sainik Section */

    .sainik-section {
        padding: 25px 20px 50px;
    }

    .sainik-intro {
        flex-direction: column;
        gap: 28px;
        align-items: flex-start;
    }

    .sainik-intro-content,
    .sainik-intro-image {
        width: 100%;
    }

    .sainik-intro-image img {
        width: 85%;
        height: auto;
        margin: 0 auto;
    }

    .sainik-intro h2 {
        font-size: 2rem;
    }

    .sainik-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sainik-block {
        padding: 22px;
    }

    .collaboration-buttons {
        flex-direction: column;
    }

    .sainik-btn {
        width: 100%;
    }

/* Mobile Responsive: Why / Results / Testimonials Sections */

    .why-us-section,
    .results-section,
    .testimonials-section {
        padding: 34px 20px;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .section-heading h2 {
        font-size: 26px;
    }

    .section-intro {
        font-size: 16px;
        line-height: 1.75;
    }

    .why-us-grid,
    .results-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .why-card,
    .result-card,
    .testimonial-card {
        padding: 22px;
    }

    .why-card h3,
    .result-card h3 {
        font-size: 17px;
    }

    .why-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }


    /* Mobile Responsive: About Us Section */

    .about-section {
        padding: 36px 20px;
    }

    .about-story {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-story-content,
    .about-highlight-box,
    .about-value-card {
        padding: 22px;
        border-radius: 18px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Mobile Responsive: Meet Our Team Section */

    .team-section {
        padding: 36px 20px;
    }

    .team-leadership-row {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }

    .team-profile-card {
        padding: 24px 20px;
    }

    .team-photo-wrap {
        width: 125px;
        height: 125px;
    }

    .team-flow {
        gap: 18px;
    }

    .team-flow-row {
        grid-template-columns: 1fr;
        gap: 16px;

        padding: 18px;
    }

    .team-mini-card {
        padding: 20px 16px;
    }

    .team-mini-card .team-photo-wrap {
        width: 112px;
        height: 112px;
    }

    .team-flow-content {
        padding: 0;
        text-align: center;
    }

    .team-flow-content h3 {
        font-size: 20px;
    }

    .team-flow-content p {
        font-size: 14px;
    }
  

    /* Mobile Responsive: Contact Section */
    .contact-section {
        padding: 34px 20px;
    }

    .contact-container,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card,
    .contact-map-card {
        padding: 20px;
    }

    .contact-item {
        padding: 13px 0;
    }

    .map-frame {
        height: 240px;
    }

    /* Mobile Responsive: Footer Section */
    .footer {
        padding: 30px 20px 20px;
    }

   .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 22px 18px;
    }

    .footer-about {
        grid-column: 1 / -1;
    }

    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .footer-column li {
        margin-bottom: 6px;
    }

    .footer-column a {
        font-size: 13px;
    }

   .footer-about p {
        max-width: 100%;
        width: 100%;
        font-size: 13.5px;
        line-height: 1.6;
    }

    .footer-bottom {
        margin-top: 20px;
    }
/* ==================================================================== */

/* Tab Responsive Section - Starts */

    @media (min-width: 600px) and (max-width: 768px) {

        .mobile-logo {
            height: 82px;
        }

        .menu-toggle {
            top: 35px;
        }

        .classes-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 14px;
            align-items: center;
        }

        .class-card img {
            width: 100%;
            max-width: 220px;
        }

        .stat-card {
            padding: 16px 10px;
        }

        .stat-card h2 {
            font-size: 22px;
        }

        .stat-card p {
            font-size: 13px;
        }
    }

/* Tablet Responsive: Hindi Detail Section */

    @media (min-width: 700px) and (max-width: 768px) {

        .subject-tabs-panel {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
        }

        .subject-tab-note {
            grid-column: 1 / -1;
        }

        .subject-tab {
            height: 100%;
            padding: 14px 12px;
        }

        .subject-detail-row {
            grid-template-columns: 1fr;
        }

        .subject-details-list {
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
        }

        .timings-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 8px 14px;
        }

        .timings-grid div {
            white-space: nowrap;
            text-align: center;
        }

        .subject-cta {
            flex-direction: row;
        }

        .subject-call-btn,
        .subject-whatsapp-btn {
            width: 50%;
        }
    }
}   