* {margin:0; padding:0; box-sizing:border-box; font-family: Arial, sans-serif;}
:root {
    --blue: #0F2043;
    --red: #C62828;
    --white: #ffffff;
    --yellow: #FFD600;
    --bg-color: #ffffff;
    --text-color: #000000;
    --border-color: #ddd;
}

/* Dark Mode */
html.dark-mode {
    --blue: #ffffff;
    --red: #FFB3B3;
    --white: #1a1a1a;
    --bg-color: #1a1a1a;
    --text-color: #e0e0e0;
    --border-color: #333;
}

body {overflow-x:hidden; background-color: var(--bg-color); color: var(--text-color); transition: background-color 0.3s, color 0.3s;}

/* Mini Blog */
.blog-public,
.blog-admin-shell {
    background: #f6f8fc;
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 20px 76px;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 214, 0, 0.22), transparent 28%),
        linear-gradient(135deg, #fffaf0 0%, #f7fbff 44%, #ffffff 100%);
}

.blog-hero::before,
.blog-hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
}

.blog-hero::before {
    width: 280px;
    height: 280px;
    right: -80px;
    top: 42px;
    background: rgba(198, 40, 40, 0.08);
}

.blog-hero::after {
    width: 170px;
    height: 170px;
    left: 9%;
    bottom: -78px;
    background: rgba(15, 32, 67, 0.08);
}

.blog-hero-inner,
.blog-list-container,
.blog-article,
.blog-admin-panel {
    max-width: 1160px;
    margin: 0 auto;
}

.blog-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
    align-items: center;
    gap: 58px;
}

.blog-hero h1 {
    max-width: 760px;
    color: #071b4d;
    font-size: 56px;
    line-height: 1.06;
    font-weight: 900;
    margin: 16px 0 20px;
}

.blog-hero p,
.blog-article-excerpt {
    max-width: 690px;
    color: #3d4966;
    font-size: 18px;
    line-height: 1.78;
}

.blog-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 34px;
}

.blog-hero-metrics div {
    padding: 18px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 32, 67, 0.09);
    border-radius: 8px;
    box-shadow: 0 16px 34px rgba(15, 32, 67, 0.07);
}

.blog-hero-metrics strong {
    display: block;
    color: #c62828;
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 7px;
}

.blog-hero-metrics span {
    color: #4b5874;
    font-size: 13px;
    line-height: 1.45;
}

.blog-hero-media {
    position: relative;
}

.blog-hero-media::before {
    content: "";
    position: absolute;
    inset: 24px -18px -18px 24px;
    border-radius: 8px;
    background: #ffd600;
    opacity: 0.62;
}

.blog-hero-media img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 28px 60px rgba(15, 32, 67, 0.18);
}

.blog-list-section {
    padding: 74px 20px 96px;
}

.blog-featured-post {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    align-items: stretch;
    overflow: hidden;
    margin-bottom: 64px;
    background: #ffffff;
    border: 1px solid #e4e9f4;
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(15, 32, 67, 0.1);
}

.blog-featured-image {
    display: block;
    min-height: 430px;
    background: #e8edf6;
    overflow: hidden;
}

.blog-featured-image img,
.blog-card-image img,
.blog-article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-featured-content {
    padding: 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-featured-content h2 {
    font-size: 34px;
    line-height: 1.16;
    margin: 8px 0 16px;
}

.blog-featured-content h2 a,
.blog-card h2 a {
    color: #071b4d;
    text-decoration: none;
}

.blog-featured-content p,
.blog-card p,
.blog-empty p,
.blog-section-heading p {
    color: #4c5872;
    line-height: 1.76;
}

.blog-section-heading {
    max-width: 720px;
    margin-bottom: 28px;
}

.blog-section-heading h2 {
    color: #071b4d;
    font-size: 38px;
    line-height: 1.15;
    margin: 10px 0 10px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.blog-card,
.blog-empty,
.blog-admin-panel {
    background: #ffffff;
    border: 1px solid #e4e9f4;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(15, 32, 67, 0.08);
}

.blog-card {
    overflow: hidden;
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.blog-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 28px 58px rgba(15, 32, 67, 0.13);
}

.blog-card-image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #e9eef8;
}

.blog-card-image img {
    transition: transform 0.42s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 25px;
}

.blog-date {
    color: #c62828;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.blog-card h2 {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 12px;
}

.blog-read-link,
.blog-back-link,
.blog-admin-link,
.blog-table-actions a,
.blog-table-actions button {
    color: #c62828;
    font-weight: 800;
    text-decoration: none;
}

.blog-read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.blog-read-link::after {
    content: ">";
    font-weight: 900;
    transition: transform 0.25s ease;
}

.blog-read-link:hover::after {
    transform: translateX(4px);
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 46px;
}

.blog-pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-pagination a,
.blog-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid #e1e7f2;
    background: #ffffff;
    color: #071b4d;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 32, 67, 0.06);
}

.blog-pagination a:hover,
.blog-pagination .active {
    background: #c62828;
    border-color: #c62828;
    color: #ffffff;
}

.blog-pagination-control {
    min-width: 104px;
}

.blog-pagination .disabled {
    color: #9aa5ba;
    background: #f2f5fa;
    box-shadow: none;
}

.blog-empty {
    position: relative;
    overflow: hidden;
    padding: 52px;
    text-align: center;
}

.blog-empty::before {
    content: "";
    position: absolute;
    width: 190px;
    height: 190px;
    right: -70px;
    top: -86px;
    border-radius: 999px;
    background: rgba(255, 214, 0, 0.34);
}

.blog-empty h1,
.blog-empty h2 {
    position: relative;
    color: #071b4d;
    margin-bottom: 12px;
}

.blog-empty p {
    position: relative;
}

.blog-article {
    max-width: none;
    margin: 0;
}

.blog-reading-progress {
    position: sticky;
    top: 91px;
    z-index: 999;
    border-bottom: 1px solid rgba(228, 233, 244, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 26px rgba(15, 32, 67, 0.06);
}

.blog-reading-progress-track {
    height: 5px;
    background: #edf1f8;
}

.blog-reading-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #c62828, #ffd600);
    transition: width 0.12s linear;
}

.blog-reading-progress-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    max-width: 1160px;
    min-height: 38px;
    margin: 0 auto;
    padding: 8px 20px;
    color: #4c5872;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blog-reading-progress-meta strong {
    color: #c62828;
}

.blog-article-hero {
    position: relative;
    overflow: hidden;
    padding: 72px 20px 78px;
    background:
        radial-gradient(circle at 85% 12%, rgba(255, 214, 0, 0.28), transparent 24%),
        linear-gradient(135deg, #fff9eb 0%, #f8fbff 50%, #ffffff 100%);
}

.blog-article-hero::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -110px;
    border-radius: 999px;
    background: rgba(198, 40, 40, 0.08);
}

.blog-article-hero-inner,
.blog-article-layout,
.blog-article-cta-inner {
    max-width: 1160px;
    margin: 0 auto;
}

.blog-article-kicker {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    color: #4c5872;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.blog-article-kicker span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-article-kicker span::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: #ffd600;
}

.blog-article-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
    align-items: center;
    gap: 56px;
}

.blog-article-header {
    max-width: 760px;
}

.blog-article-header h1 {
    color: #071b4d;
    font-size: 56px;
    font-weight: 900;
    line-height: 1.06;
    margin: 16px 0 18px;
}

.blog-article-excerpt {
    font-size: 19px;
}

.blog-article-media {
    position: relative;
}

.blog-article-media::before {
    content: "";
    position: absolute;
    inset: 22px 22px -18px -18px;
    border-radius: 8px;
    background: #ffd600;
    opacity: 0.72;
}

.blog-article-image {
    position: relative;
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: none;
    margin: 0;
    border-radius: 8px;
    box-shadow: 0 30px 64px rgba(15, 32, 67, 0.2);
}

.blog-article-body-section {
    padding: 76px 20px 86px;
    background:
        linear-gradient(90deg, rgba(15, 32, 67, 0.035) 1px, transparent 1px),
        #f6f8fc;
    background-size: 52px 52px;
}

.blog-article-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 820px);
    align-items: start;
    gap: 42px;
}

.blog-article-aside {
    position: sticky;
    top: 110px;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e4e9f4;
    border-radius: 8px;
    box-shadow: 0 18px 44px rgba(15, 32, 67, 0.08);
}

.blog-article-aside p {
    color: #4c5872;
    line-height: 1.7;
    margin: 12px 0 18px;
}

.blog-article-aside a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 11px 15px;
    border-radius: 6px;
    background: #c62828;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
}

.blog-article-content {
    margin: 0;
    padding: 46px;
    background: #ffffff;
    border: 1px solid #e4e9f4;
    border-radius: 8px;
    box-shadow: 0 22px 54px rgba(15, 32, 67, 0.08);
    color: #24304a;
    font-size: 18px;
    line-height: 1.95;
}

.blog-article-content::first-letter {
    color: #c62828;
    float: left;
    font-size: 64px;
    line-height: 0.9;
    font-weight: 900;
    padding: 8px 10px 0 0;
}

.blog-article-content p {
    margin-bottom: 24px;
}

.blog-article-content p:last-child {
    margin-bottom: 0;
}

.blog-article-content h2,
.blog-article-content h3,
.blog-article-content h4 {
    color: #071b4d;
    line-height: 1.25;
    margin: 34px 0 14px;
}

.blog-article-content h2 {
    font-size: 30px;
}

.blog-article-content h3 {
    font-size: 24px;
}

.blog-article-content h4 {
    font-size: 20px;
}

.blog-article-content ul,
.blog-article-content ol {
    margin: 0 0 26px;
    padding-left: 30px;
}

.blog-article-content li {
    margin-bottom: 10px;
}

.blog-article-content blockquote {
    margin: 32px 0;
    padding: 18px 22px;
    border-left: 5px solid #c62828;
    background: #fff8f8;
    color: #3f4b66;
    font-weight: 700;
}

.blog-article-content a {
    color: #c62828;
    font-weight: 800;
}

.blog-article-content hr {
    border: none;
    border-top: 1px solid #e4e9f4;
    margin: 34px 0;
}

.blog-content-image {
    margin: 34px 0;
}

.blog-content-image figcaption {
    color: #5d6982;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    text-align: center;
}

.blog-content-image img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 44px rgba(15, 32, 67, 0.14);
}

.blog-article-cta {
    padding: 82px 20px;
    background: #071b4d;
}

.blog-article-cta-inner {
    position: relative;
    overflow: hidden;
    padding: 52px;
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 214, 0, 0.18), transparent 34%),
        #0f2043;
    color: #ffffff;
}

.blog-article-cta-inner::after {
    content: "";
    position: absolute;
    width: 210px;
    height: 210px;
    right: -80px;
    top: -90px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
}

.blog-article-cta h2 {
    position: relative;
    max-width: 760px;
    font-size: 38px;
    line-height: 1.15;
    margin: 12px 0 14px;
}

.blog-article-cta p {
    position: relative;
    max-width: 680px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.75;
}

.blog-article-cta-actions {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.blog-article-cta-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 13px 18px;
    border-radius: 6px;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    background: #c62828;
}

.blog-article-cta-actions a:last-child {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.34);
}

.blog-admin-shell {
    padding: 56px 20px 80px;
}

.blog-admin-panel {
    padding: 32px;
}

.blog-auth-panel {
    max-width: 520px;
}

.blog-admin-panel h1 {
    color: #071b4d;
    margin: 10px 0 18px;
}

.blog-admin-form,
.blog-editor-form {
    display: grid;
    gap: 12px;
}

.blog-admin-form label,
.blog-editor-form label {
    color: #071b4d;
    font-weight: 700;
}

.blog-admin-form input,
.blog-editor-form input,
.blog-editor-form textarea,
.blog-editor-form select {
    width: 100%;
    border: 1px solid #ced7e6;
    border-radius: 6px;
    padding: 13px 14px;
    font-size: 15px;
    color: #17223b;
    background: #ffffff;
}

.blog-editor-form textarea {
    resize: vertical;
}

.blog-rich-editor {
    border: 1px solid #ced7e6;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.blog-editor-toolbar {
    display: none;
    flex-wrap: wrap;
    gap: 6px;
    padding: 10px;
    border-bottom: 1px solid #e1e7f2;
    background: #f8fbff;
}

.blog-editor-toolbar button {
    min-height: 34px;
    border: 1px solid #ced7e6;
    border-radius: 6px;
    padding: 7px 10px;
    background: #ffffff;
    color: #17223b;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.blog-editor-toolbar button:hover,
.blog-editor-toolbar button:focus {
    border-color: #c62828;
    color: #c62828;
}

.blog-editor-surface {
    display: none;
    min-height: 420px;
    padding: 18px;
    color: #17223b;
    font-size: 16px;
    line-height: 1.75;
    outline: none;
}

.blog-editor-surface:focus {
    box-shadow: inset 0 0 0 2px rgba(198, 40, 40, 0.16);
}

.blog-editor-surface p,
.blog-editor-surface ul,
.blog-editor-surface ol,
.blog-editor-surface blockquote,
.blog-editor-surface h2,
.blog-editor-surface h3 {
    margin: 0 0 16px;
}

.blog-editor-surface ul,
.blog-editor-surface ol {
    padding-left: 28px;
}

.blog-editor-surface blockquote {
    border-left: 4px solid #c62828;
    padding: 8px 0 8px 16px;
    color: #4c5872;
    background: #fff8f8;
}

.blog-editor-surface img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.blog-rich-editor.is-enhanced .blog-editor-toolbar {
    display: flex;
}

.blog-rich-editor.is-enhanced .blog-editor-surface {
    display: block;
}

.blog-rich-editor.is-enhanced textarea[name="content"] {
    display: none;
}

.blog-image-field {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid #e1e7f2;
    border-radius: 8px;
    background: #f8fbff;
}

.blog-image-field p {
    color: #5d6982;
    font-size: 13px;
    line-height: 1.55;
}

.blog-current-image {
    width: 100%;
    max-width: 360px;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #dfe6f2;
}

.blog-admin-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 44px;
    border: none;
    border-radius: 6px;
    padding: 12px 18px;
    background: #c62828;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.blog-admin-topbar,
.blog-admin-actions,
.blog-editor-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-admin-actions,
.blog-editor-actions {
    justify-content: flex-start;
}

.blog-admin-alert {
    padding: 14px 16px;
    border-radius: 6px;
    margin: 16px 0;
    background: #eaf7ee;
    color: #176334;
    font-weight: 700;
}

.blog-admin-alert.error {
    background: #fff0f0;
    color: #b71c1c;
}

.blog-admin-table-wrap {
    overflow-x: auto;
}

.blog-admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.blog-admin-table th,
.blog-admin-table td {
    padding: 16px;
    border-bottom: 1px solid #e5eaf4;
    text-align: left;
    vertical-align: top;
}

.blog-admin-table th {
    color: #071b4d;
    font-size: 13px;
    text-transform: uppercase;
}

.blog-admin-table td span {
    display: block;
    color: #6c7892;
    font-size: 13px;
    margin-top: 5px;
}

.blog-table-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-table-actions button {
    border: none;
    background: transparent;
    cursor: pointer;
    font: inherit;
    padding: 0;
}

@media (max-width: 900px) {
    .blog-hero-inner,
    .blog-featured-post,
    .blog-article-hero-grid,
    .blog-article-layout {
        grid-template-columns: 1fr;
    }

    .blog-article-aside {
        position: static;
    }

    .blog-featured-image {
        min-height: 340px;
    }

    .blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .blog-hero h1,
    .blog-article-header h1 {
        font-size: 38px;
    }
}

@media (max-width: 640px) {
    .blog-hero-inner {
        gap: 34px;
    }

    .blog-hero-metrics {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero {
        padding: 72px 18px 56px;
    }

    .blog-hero h1,
    .blog-article-header h1 {
        font-size: 32px;
    }

    .blog-article-hero,
    .blog-article-body-section,
    .blog-article-cta {
        padding-left: 18px;
        padding-right: 18px;
    }

    .blog-featured-content {
        padding: 28px;
    }

    .blog-featured-content h2,
    .blog-section-heading h2,
    .blog-article-cta h2 {
        font-size: 28px;
    }

    .blog-article-content,
    .blog-article-cta-inner {
        padding: 28px;
    }

    .blog-article-content {
        font-size: 16px;
        line-height: 1.85;
    }

    .blog-reading-progress-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
        min-height: 48px;
        padding: 8px 18px;
        font-size: 11px;
    }

    .blog-reading-progress {
        top: 81px;
    }

    .blog-article-content::first-letter {
        font-size: 46px;
    }

    .blog-admin-panel,
    .blog-empty {
        padding: 24px;
    }
}

/* Header */
header {
    width: 100%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.navbar {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {height: 60px;}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: var(--blue);
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover {color: var(--red);}

/* Dark Mode Toggle */
.dark-mode-toggle {
    background: none;
    border: 2px solid var(--blue);
    color: var(--blue);
    padding: 8px 12px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.dark-mode-toggle:hover {
    background-color: var(--blue);
    color: var(--white);
    transform: rotate(20deg);
}

.cta-btn {
    background: var(--red);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.cta-btn:hover {background: #b71c1c;}

/* Hamburger */
.hamburger {display:none; flex-direction: column; cursor:pointer; gap:5px;}
.hamburger div {width: 25px; height: 3px; background: var(--blue);}
    
/* Off-canvas menu */
.mobile-menu {
    position: fixed;
    top:0; left:-100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.9)), url('../offcanvas-bg.png') left/cover no-repeat;
    transition: left 0.4s ease;
    z-index: 1500;
    padding: 50px 20px;
    display:flex; flex-direction:column; gap:25px;
}
.mobile-menu a {color: var(--white); font-size: 1.2rem; text-decoration: none;}
.mobile-menu a:hover {color: var(--yellow);}

/* Mobile menu active state */
.mobile-menu.active {
    left: 0;
}

/* Overlay when menu is open */
.mobile-menu.active::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

/* Hero */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 50px 50px 50px;
    overflow: hidden;
    color: var(--white);
}

.hero video, .hero img {position:absolute; top:0; left:0; width:100%; height:100%; object-fit:cover; z-index:0;}

.hero-content {
    position: relative;
    max-width: 650px;
    z-index: 2;
}

.hero h1 {font-size: 3rem; margin-bottom: 20px; color: var(--blue);}
.hero h2 {font-size: 1.8rem; margin-bottom: 25px; color: var(--red);}

/* ================================
   HOMEPAGE TYPOGRAPHY ALIGNMENT
================================ */

.homepage .hero h1,
.homepage .why-sobay h2,

.homepage .section-header h2,
.homepage .learning-journey .section-header h2,
.homepage .media-header h2,
.homepage .proprietor-content h2,
.homepage .partners-header h2,
.homepage .gallery-header h2,
.homepage .contact-section h2,
.homepage .about-content h2 {
    color: #071b4d;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.homepage .final-cta h2 {
    color: #ffffff;
    font-weight: 800;
}

.homepage .programs-header h2 {
    color: #ffffff;
}

.homepage .hero h1 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    margin-bottom: 18px;
}

.homepage .hero h2 {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #34405f;
    font-weight: 500;
}

.homepage .why-sobay h2,
.homepage .programs-header h2,
.homepage .section-header h2,
.homepage .learning-journey .section-header h2,
.homepage .media-header h2,
.homepage .proprietor-content h2,
.homepage .partners-header h2,
.homepage .gallery-header h2,
.homepage .final-cta h2,
.homepage .contact-section h2,
.homepage .about-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
}

.homepage .why-sobay p,

.homepage .section-header p,
.homepage .learning-journey .section-header p,
.homepage .media-header p,
.homepage .proprietor-content p,
.homepage .partners-header p,
.homepage .gallery-header p,
.homepage .final-cta p,
.homepage .contact-section p,
.homepage .about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #3d4966;
}

.homepage .final-cta p {
    color: #ffffff;
}

.homepage .programs-header p {
    color: #ffffff;
}


.homepage .gallery-item .overlay h3 {
    color: #fcfdff;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}
.homepage .step-content h3 {
    color: #071b4d;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}

.homepage .benefit-cards h3 {
    color: #071b4d;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}
.homepage .program-content h3 {
    color: #071b4d;
    font-weight: 800;
}
.homepage .partner-cta-box h3 {
    color: #071b4d;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 800;
}
.homepage .benefit-cards p,
.homepage .program-content p,
.homepage .step-content p,
.homepage .partner-cta-box p,
.homepage .video-card p,
.homepage .gallery-item .overlay h3 {
    line-height: 1.75;
}

.homepage .benefit-item {
    font-size: 0.95rem;
    font-weight: 700;
}

.homepage .program-number,
.homepage .step-number {
    font-weight: 800;
}

/* ================================
   ABOUT PAGE - HERO SECTION
================================ */

.about-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 7% 90px;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.08), transparent 35%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef5ff 100%);
}

.about-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-hero-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-hero-content h1 {
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.05;
    color: #071b4d;
    margin-bottom: 22px;
    font-weight: 800;
}

.about-hero-content h1 span {
    color: #d90012;
}

.about-hero-content p {
    max-width: 520px;
    color: #34405f;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.about-hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.about-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-hero-btn.primary {
    background: #d90012;
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(217, 0, 18, 0.22);
}

.about-hero-btn.primary:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

.about-hero-btn.secondary {
    border: 2px solid #071b4d;
    color: #071b4d;
    background: #ffffff;
}

.about-hero-btn.secondary:hover {
    background: #071b4d;
    color: #ffffff;
    transform: translateY(-3px);
}

.about-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.about-hero-image img {
    width: 100%;
    max-width: 620px;
    display: block;
    position: relative;
    z-index: 2;
}

.about-hero-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 78%;
    right: -30px;
    bottom: 8px;
    background: linear-gradient(135deg, #071b4d, #0637b8);
    border-radius: 45% 0 0 45%;
    z-index: 1;
}

.about-hero-image::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 16px;
    left: 0;
    bottom: 22px;
    background: #d90012;
    border-radius: 50px;
    transform: rotate(-8deg);
    z-index: 1;
}

.about-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-shape-one {
    width: 230px;
    height: 230px;
    background: rgba(217, 0, 18, 0.08);
    top: 80px;
    left: -90px;
}

.about-hero-shape-two {
    width: 320px;
    height: 320px;
    background: rgba(7, 27, 77, 0.07);
    right: -120px;
    bottom: -130px;
}

@media (max-width: 900px) {
    .about-hero {
        padding: 115px 6% 70px;
    }

    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .about-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-buttons {
        justify-content: center;
    }

    .about-hero-image::before {
        right: 0;
        width: 85%;
    }
}

@media (max-width: 520px) {
    .about-hero {
        padding: 100px 5% 60px;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 15px;
    }

    .about-hero-btn {
        width: 100%;
    }
}

/* ================================
   ABOUT PAGE - WHO WE ARE SECTION
================================ */

.about-who-we-are {
    position: relative;
    padding: 90px 7%;
    background: #ffffff;
    overflow: hidden;
}

.about-who-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 60px;
}

.about-who-image {
    position: relative;
}

.about-who-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 77, 0.16);
}

.about-who-image::before {
    content: "";
    position: absolute;
    width: 90%;
    height: 90%;
    left: -18px;
    bottom: -18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #d90012, #071b4d);
    z-index: -1;
    opacity: 0.18;
}

.about-who-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-who-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 22px;
    font-weight: 800;
}

.about-who-content p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-who-btn {
    display: inline-flex;
    margin-top: 14px;
    padding: 14px 24px;
    background: #d90012;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 25px rgba(217, 0, 18, 0.2);
    transition: all 0.3s ease;
}

.about-who-btn:hover {
    background: #b8000f;
    transform: translateY(-3px);
}

@media (max-width: 900px) {
    .about-who-we-are {
        padding: 75px 6%;
    }

    .about-who-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-who-content {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .about-who-we-are {
        padding: 60px 5%;
    }

    .about-who-content p {
        font-size: 15px;
    }

    .about-who-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ================================
   ABOUT PAGE - ABACUS POWER SECTION
================================ */

.abacus-power-section {
    position: relative;
    padding: 90px 7%;
    background:
        radial-gradient(circle at top right, rgba(7, 27, 77, 0.06), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.abacus-power-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 60px;
}

.abacus-power-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.abacus-power-content h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 22px;
    font-weight: 800;
}

.abacus-power-content p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.abacus-power-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.power-point-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 14px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.06);
    transition: all 0.3s ease;
}

.power-point-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(7, 27, 77, 0.13);
}

.power-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50%;
    font-size: 23px;
}

.power-point-card h3 {
    color: #071b4d;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 800;
}

.abacus-power-image {
    position: relative;
}

.abacus-power-image img {
    width: 100%;
    display: block;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(7, 27, 77, 0.16);
}

.abacus-power-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    right: -18px;
    bottom: -18px;
    border-radius: 18px;
    background: linear-gradient(135deg, #071b4d, #d90012);
    z-index: -1;
    opacity: 0.16;
}

@media (max-width: 1000px) {
    .abacus-power-points {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .abacus-power-section {
        padding: 75px 6%;
    }

    .abacus-power-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .abacus-power-content {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .abacus-power-section {
        padding: 60px 5%;
    }

    .abacus-power-content p {
        font-size: 15px;
    }

    .abacus-power-points {
        grid-template-columns: 1fr;
    }
}

/* ================================
   ABOUT PAGE - PURPOSE SECTION
================================ */

.about-purpose-section {
    position: relative;
    padding: 90px 7%;
    background: #ffffff;
    overflow: hidden;
}

.about-purpose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-purpose-header {
    max-width: 720px;
    margin: 0 auto 45px;
    text-align: center;
}

.about-purpose-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-purpose-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 18px;
    font-weight: 800;
}

.about-purpose-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.about-purpose-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.purpose-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.09);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.purpose-card::before {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    right: -28px;
    top: -28px;
    background: rgba(217, 0, 18, 0.08);
    border-radius: 50%;
}

.purpose-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.14);
}

.purpose-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 16px;
    font-size: 27px;
}

.purpose-card h3 {
    color: #071b4d;
    font-size: 22px;
    margin-bottom: 14px;
    font-weight: 800;
}

.purpose-card p {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .about-purpose-section {
        padding: 75px 6%;
    }

    .about-purpose-cards {
        grid-template-columns: 1fr;
    }

    .purpose-card {
        text-align: center;
    }

    .purpose-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 520px) {
    .about-purpose-section {
        padding: 60px 5%;
    }

    .purpose-card {
        padding: 30px 22px;
    }

    .about-purpose-header p,
    .purpose-card p {
        font-size: 15px;
    }
}

/* ================================
   ABOUT PAGE - LEARNING APPROACH
================================ */

.about-learning-approach {
    position: relative;
    padding: 95px 7%;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.07), transparent 32%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #eef5ff 100%);
    overflow: hidden;
}

.about-learning-container {
    max-width: 1050px;
    margin: 0 auto;
}

.about-learning-header {
    max-width: 760px;
    margin: 0 auto 60px;
    text-align: center;
}

.about-learning-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-learning-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 18px;
    font-weight: 800;
}

.about-learning-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.about-learning-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 34px;
}

.about-learning-steps::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 25px;
    bottom: 25px;
    width: 3px;
    background: linear-gradient(to bottom, #d90012, #071b4d);
    transform: translateX(-50%);
    border-radius: 50px;
    opacity: 0.25;
}

.about-learning-step {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 90px 1fr;
    align-items: center;
}

.about-learning-step.reverse .learning-step-content {
    grid-column: 1;
    grid-row: 1;
}

.about-learning-step.reverse .learning-step-number {
    grid-column: 2;
}

.learning-step-number {
    grid-column: 2;
    width: 74px;
    height: 74px;
    margin: 0 auto;
    background: #d90012;
    color: #ffffff;
    border: 7px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(217, 0, 18, 0.25);
    position: relative;
    z-index: 2;
}

.learning-step-content {
    grid-column: 3;
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.09);
    border: 1px solid rgba(7, 27, 77, 0.06);
    transition: all 0.3s ease;
}

.learning-step-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.14);
}

.learning-step-content h3 {
    color: #071b4d;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 800;
}

.learning-step-content p {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 900px) {
    .about-learning-approach {
        padding: 75px 6%;
    }

    .about-learning-steps::before {
        left: 36px;
    }

    .about-learning-step,
    .about-learning-step.reverse {
        grid-template-columns: 72px 1fr;
        gap: 18px;
    }

    .learning-step-number,
    .about-learning-step.reverse .learning-step-number {
        grid-column: 1;
        grid-row: 1;
        width: 64px;
        height: 64px;
        font-size: 18px;
    }

    .learning-step-content,
    .about-learning-step.reverse .learning-step-content {
        grid-column: 2;
        grid-row: 1;
    }
}

@media (max-width: 520px) {
    .about-learning-approach {
        padding: 60px 5%;
    }

    .about-learning-header p,
    .learning-step-content p {
        font-size: 15px;
    }

    .about-learning-step,
    .about-learning-step.reverse {
        grid-template-columns: 1fr;
    }

    .about-learning-steps::before {
        display: none;
    }

    .learning-step-number,
    .about-learning-step.reverse .learning-step-number {
        grid-column: 1;
        margin-bottom: -12px;
    }

    .learning-step-content,
    .about-learning-step.reverse .learning-step-content {
        grid-column: 1;
        text-align: center;
    }
}
/* ================================
   ABOUT PAGE - LEARNING GOALS
================================ */

.about-learning-goals {
    position: relative;
    padding: 90px 7%;
    background: #ffffff;
    overflow: hidden;
}

.about-goals-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-goals-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-goals-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-goals-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 18px;
    font-weight: 800;
}

.about-goals-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.about-goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.goal-card {
    position: relative;
    background: #ffffff;
    border-radius: 18px;
    padding: 34px 26px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.goal-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    top: -60px;
    right: -60px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.goal-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.14);
}

.goal-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    border-radius: 18px;
    position: relative;
    z-index: 2;
}

.goal-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.goal-icon.goal-emoji {
    color: #d90012;
    font-size: 31px;
}

.goal-card h3 {
    color: #071b4d;
    font-size: 20px;
    margin-bottom: 13px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.goal-card p {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

@media (max-width: 1000px) {
    .about-goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .about-learning-goals {
        padding: 75px 6%;
    }

    .about-goals-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .about-learning-goals {
        padding: 60px 5%;
    }

    .about-goals-header p,
    .goal-card p {
        font-size: 15px;
    }

    .goal-card {
        padding: 30px 22px;
    }
}

/* ================================
   ABOUT PAGE - FOUNDER SECTION
================================ */

.about-founder-section {
    position: relative;
    padding: 95px 7%;
    background:
        radial-gradient(circle at bottom left, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #071b4d 0%, #092765 55%, #d90012 140%);
    overflow: hidden;
}

.about-founder-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 65px;
}

.about-founder-image {
    position: relative;
}

.about-founder-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.28);
    position: relative;
    z-index: 2;
}

.about-founder-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    left: -18px;
    bottom: -18px;
    border-radius: 22px;
    background: #d90012;
    opacity: 0.5;
    z-index: 1;
}

.about-founder-content {
    color: #ffffff;
}

.about-founder-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-founder-content h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-founder-content p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.about-founder-quote {
    margin: 30px 0 24px;
    padding: 24px 26px;
    background: rgba(255, 255, 255, 0.1);
    border-left: 5px solid #ffffff;
    border-radius: 14px;
    color: #ffffff;
    font-size: 22px;
    line-height: 1.45;
    font-weight: 800;
    font-style: italic;
}

.about-founder-signature strong {
    display: block;
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 5px;
}

.about-founder-signature span {
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
}

@media (max-width: 900px) {
    .about-founder-section {
        padding: 75px 6%;
    }

    .about-founder-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .about-founder-content {
        text-align: center;
    }

    .about-founder-quote {
        border-left: none;
        border-top: 5px solid #ffffff;
    }
}

@media (max-width: 520px) {
    .about-founder-section {
        padding: 60px 5%;
    }

    .about-founder-content p {
        font-size: 15px;
    }

    .about-founder-quote {
        font-size: 18px;
        padding: 22px 20px;
    }
}

/* ================================
   ABOUT PAGE - SOBAY IN ACTION
================================ */

.about-action-section {
    position: relative;
    padding: 90px 7%;
    background: #ffffff;
    overflow: hidden;
}

.about-action-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-action-header {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-action-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-action-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 18px;
    font-weight: 800;
}

.about-action-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.about-action-video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.about-action-video-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(7, 27, 77, 0.1);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
}

.about-action-video-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.15);
}

.about-video-frame {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #071b4d;
    overflow: hidden;
}

.about-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-video-content {
    padding: 26px 26px 30px;
}

.about-video-content h3 {
    color: #071b4d;
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 800;
}

.about-video-content p {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.75;
}

@media (max-width: 850px) {
    .about-action-section {
        padding: 75px 6%;
    }

    .about-action-video-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .about-action-section {
        padding: 60px 5%;
    }

    .about-action-header p,
    .about-video-content p {
        font-size: 15px;
    }

    .about-video-content {
        padding: 24px 22px 28px;
    }
}
/* ================================
   ABOUT PAGE - IMPACT SECTION
================================ */

.about-impact-section {
    position: relative;
    padding: 90px 7%;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.08), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.about-impact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-impact-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.about-impact-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-impact-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 18px;
    font-weight: 800;
}

.about-impact-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.about-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.impact-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.09);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.impact-card::before {
    content: "";
    position: absolute;
    width: 95px;
    height: 95px;
    top: -45px;
    right: -45px;
    background: rgba(217, 0, 18, 0.08);
    border-radius: 50%;
}

.impact-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.impact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    border-radius: 18px;
    color: #d90012;
    font-size: 30px;
    position: relative;
    z-index: 2;
}

.impact-card h3 {
    color: #d90012;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 14px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.impact-card p {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

@media (max-width: 1000px) {
    .about-impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .about-impact-section {
        padding: 75px 6%;
    }

    .about-impact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .about-impact-section {
        padding: 60px 5%;
    }

    .about-impact-header p,
    .impact-card p {
        font-size: 15px;
    }

    .impact-card {
        padding: 30px 22px;
    }
}
/* ================================
   ABOUT PAGE - COMMITMENT SECTION
================================ */

.about-commitment-section {
    position: relative;
    padding: 95px 7%;
    background: #ffffff;
    overflow: hidden;
}

.about-commitment-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-commitment-header {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.about-commitment-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-commitment-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 18px;
    font-weight: 800;
}

.about-commitment-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.about-commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.commitment-card {
    position: relative;
    padding: 42px 34px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(7, 27, 77, 0.1);
    transition: all 0.3s ease;
}

.commitment-card.parents {
    background:
        linear-gradient(135deg, rgba(217, 0, 18, 0.95), rgba(184, 0, 15, 0.96)),
        url("../gallery/Abacus-Training.JPEG");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.commitment-card.schools {
    background:
        linear-gradient(135deg, rgba(7, 27, 77, 0.96), rgba(6, 55, 184, 0.9)),
        url("../sobay_par.png");
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.commitment-card::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -70px;
    right: -70px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.commitment-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 65px rgba(7, 27, 77, 0.18);
}

.commitment-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    font-size: 31px;
    position: relative;
    z-index: 2;
}

.commitment-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 850;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.commitment-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 22px;
    position: relative;
    z-index: 2;
}

.commitment-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    position: relative;
    z-index: 2;
}

.commitment-card ul li {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 10px;
    padding-left: 26px;
    position: relative;
}

.commitment-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 900;
    color: #ffffff;
}

.commitment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    background: #ffffff;
    color: #071b4d;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.commitment-btn:hover {
    transform: translateY(-3px);
    background: #f4f7ff;
}

@media (max-width: 900px) {
    .about-commitment-section {
        padding: 75px 6%;
    }

    .about-commitment-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .about-commitment-section {
        padding: 60px 5%;
    }

    .commitment-card {
        padding: 34px 24px;
    }

    .about-commitment-header p,
    .commitment-card p,
    .commitment-card ul li {
        font-size: 15px;
    }

    .commitment-btn {
        width: 100%;
    }
}/* ================================
   ABOUT PAGE - GALLERY PREVIEW
================================ */

.about-gallery-preview {
    position: relative;
    padding: 95px 7%;
    background:
        radial-gradient(circle at top right, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.about-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-gallery-header {
    max-width: 780px;
    margin: 0 auto 52px;
    text-align: center;
}

.about-gallery-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-gallery-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 18px;
    font-weight: 800;
}

.about-gallery-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    grid-auto-rows: 250px;
    gap: 22px;
}

.about-gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(7, 27, 77, 0.12);
}

.about-gallery-item.large {
    grid-row: span 2;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.about-gallery-item:hover img {
    transform: scale(1.08);
}

.about-gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(7, 27, 77, 0.82), rgba(7, 27, 77, 0.05));
}

.about-gallery-overlay h3 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 850;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}

.about-gallery-item:hover .about-gallery-overlay h3 {
    transform: translateY(0);
}

@media (max-width: 1000px) {
    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-gallery-item.large {
        grid-row: span 1;
    }
}

@media (max-width: 700px) {
    .about-gallery-preview {
        padding: 75px 6%;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
    }
}

@media (max-width: 520px) {
    .about-gallery-preview {
        padding: 60px 5%;
    }

    .about-gallery-header p {
        font-size: 15px;
    }

    .about-gallery-overlay {
        padding: 20px;
    }

    .about-gallery-overlay h3 {
        font-size: 18px;
    }
}
/* ================================
   ABOUT PAGE - FINAL CTA
================================ */

.about-final-cta {
    position: relative;
    padding: 100px 7%;
    background: linear-gradient(135deg, #071b4d 0%, #092765 55%, #d90012 135%);
    overflow: hidden;
    text-align: center;
}

.about-final-cta-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-final-cta .section-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.about-final-cta h2 {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.12;
    margin-bottom: 22px;
    font-weight: 900;
}

.about-final-cta p {
    max-width: 690px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.8;
}

.about-final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.about-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-final-btn.primary {
    background: #ffffff;
    color: #071b4d;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.about-final-btn.primary:hover {
    transform: translateY(-3px);
    background: #f4f7ff;
}

.about-final-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.about-final-btn.secondary:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #071b4d;
}

.about-final-note {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 50px;
    font-size: 14px;
}

.about-final-cta-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.about-final-cta-shape.shape-one {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    top: -100px;
    left: -90px;
}

.about-final-cta-shape.shape-two {
    width: 360px;
    height: 360px;
    background: rgba(217, 0, 18, 0.18);
    right: -140px;
    bottom: -150px;
}

@media (max-width: 700px) {
    .about-final-cta {
        padding: 80px 6%;
    }

    .about-final-cta p {
        font-size: 15px;
    }

    .about-final-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .about-final-cta {
        padding: 70px 5%;
    }

    .about-final-note {
        border-radius: 16px;
        line-height: 1.5;
    }
}

/* ================================
   PROGRAMS PAGE - HERO SECTION
================================ */

.programs-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 7% 90px;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.08), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef5ff 100%);
}

.programs-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.programs-hero-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.programs-hero-content h1 {
    color: #071b4d;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.06;
    margin-bottom: 22px;
    font-weight: 900;
}

.programs-hero-content h1 span {
    color: #d90012;
}

.programs-hero-content p {
    max-width: 560px;
    color: #34405f;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 34px;
}

.programs-hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.programs-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.programs-hero-btn.primary {
    background: #d90012;
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(217, 0, 18, 0.22);
}

.programs-hero-btn.primary:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

.programs-hero-btn.secondary {
    border: 2px solid #071b4d;
    color: #071b4d;
    background: #ffffff;
}

.programs-hero-btn.secondary:hover {
    background: #071b4d;
    color: #ffffff;
    transform: translateY(-3px);
}

.programs-hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 620px;
}

.program-badge {
    background: #ffffff;
    border: 1px solid rgba(7, 27, 77, 0.08);
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: 0 12px 30px rgba(7, 27, 77, 0.08);
}

.program-badge strong {
    display: block;
    color: #071b4d;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 4px;
}

.program-badge span {
    color: #5a6380;
    font-size: 12.5px;
    font-weight: 600;
}

.programs-hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.programs-hero-image img {
    width: 100%;
    max-width: 640px;
    display: block;
    position: relative;
    z-index: 2;
}

.programs-hero-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 78%;
    right: -28px;
    bottom: 8px;
    background: linear-gradient(135deg, #071b4d, #0637b8);
    border-radius: 45% 0 0 45%;
    z-index: 1;
}

.programs-hero-image::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 16px;
    left: 0;
    bottom: 22px;
    background: #d90012;
    border-radius: 50px;
    transform: rotate(-8deg);
    z-index: 1;
}

.programs-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.programs-hero-shape.shape-one {
    width: 230px;
    height: 230px;
    background: rgba(217, 0, 18, 0.08);
    top: 80px;
    left: -90px;
}

.programs-hero-shape.shape-two {
    width: 330px;
    height: 330px;
    background: rgba(7, 27, 77, 0.07);
    right: -130px;
    bottom: -130px;
}

@media (max-width: 950px) {
    .programs-hero {
        padding: 115px 6% 75px;
    }

    .programs-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .programs-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .programs-hero-buttons {
        justify-content: center;
    }

    .programs-hero-badges {
        margin: 0 auto;
    }

    .programs-hero-image::before {
        right: 0;
        width: 85%;
    }
}

@media (max-width: 700px) {
    .programs-hero-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .programs-hero {
        padding: 100px 5% 65px;
    }

    .programs-hero-content h1 {
        font-size: 36px;
    }

    .programs-hero-content p {
        font-size: 15px;
    }

    .programs-hero-btn {
        width: 100%;
    }
}

/* ================================
   PROGRAMS PAGE - OVERVIEW STRIP
================================ */

.program-overview-strip {
    position: relative;
    padding: 90px 7%;
    background: #ffffff;
    overflow: hidden;
}

.program-overview-container {
    max-width: 1200px;
    margin: 0 auto;
}

.program-overview-header {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.program-overview-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.program-overview-header h2 {
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    color: #071b4d;
    margin-bottom: 18px;
    font-weight: 900;
}

.program-overview-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.program-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-overview-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.program-overview-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -55px;
    top: -55px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.program-overview-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.program-overview-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    font-size: 31px;
    position: relative;
    z-index: 2;
}

.program-overview-card h3 {
    color: #071b4d;
    font-size: 20px;
    margin-bottom: 13px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.program-overview-card p {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.program-overview-card a {
    display: inline-flex;
    color: #d90012;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.program-overview-card a:hover {
    color: #071b4d;
    transform: translateX(4px);
}

@media (max-width: 1050px) {
    .program-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .program-overview-strip {
        padding: 75px 6%;
    }

    .program-overview-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .program-overview-strip {
        padding: 60px 5%;
    }

    .program-overview-header p,
    .program-overview-card p {
        font-size: 15px;
    }

    .program-overview-card {
        padding: 30px 22px;
    }
}

/* ================================
   PROGRAMS PAGE - ABACUS LEARNING
================================ */

.program-abacus-learning {
    position: relative;
    padding: 90px 7%;
    background:
        radial-gradient(circle at top right, rgba(7, 27, 77, 0.06), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.program-abacus-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    align-items: center;
    gap: 60px;
}

.program-abacus-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.program-abacus-content h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 900;
}

.program-abacus-content p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.program-abacus-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.abacus-feature-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 14px;
    text-align: center;
    box-shadow: 0 14px 35px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.06);
    transition: all 0.3s ease;
}

.abacus-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(7, 27, 77, 0.13);
}

.abacus-feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50%;
    font-size: 23px;
}

.abacus-feature-card h3 {
    color: #071b4d;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 900;
}

.program-abacus-image {
    position: relative;
}

.program-abacus-image img {
    width: 100%;
    display: block;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(7, 27, 77, 0.16);
}

.program-abacus-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    right: -18px;
    bottom: -18px;
    border-radius: 20px;
    background: linear-gradient(135deg, #071b4d, #d90012);
    z-index: -1;
    opacity: 0.16;
}

@media (max-width: 1000px) {
    .program-abacus-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .program-abacus-learning {
        padding: 75px 6%;
    }

    .program-abacus-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .program-abacus-content {
        text-align: center;
    }
}

@media (max-width: 520px) {
    .program-abacus-learning {
        padding: 60px 5%;
    }

    .program-abacus-content p {
        font-size: 15px;
    }

    .program-abacus-features {
        grid-template-columns: 1fr;
    }
}
/* ================================
   PROGRAMS PAGE - ABACUS HISTORY
================================ */

.program-abacus-history {
    position: relative;
    padding: 95px 7%;
    background: #ffffff;
    overflow: hidden;
}

.program-history-container {
    max-width: 1200px;
    margin: 0 auto;
}

.program-history-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.program-history-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.program-history-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 900;
}

.program-history-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
}

.program-history-content {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 55px;
    align-items: start;
}

.program-history-story {
    position: sticky;
    top: 110px;
    background:
        linear-gradient(135deg, rgba(7, 27, 77, 0.96), rgba(6, 55, 184, 0.88)),
        url("../gallery/Abacus-Training.JPEG");
    background-size: cover;
    background-position: center;
    color: #ffffff;
    border-radius: 22px;
    padding: 42px 34px;
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.18);
    overflow: hidden;
}

.program-history-story::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    top: -80px;
    right: -80px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.program-history-story h3 {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 22px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.program-history-story p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.program-history-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.program-history-timeline::before {
    content: "";
    position: absolute;
    left: 36px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: linear-gradient(to bottom, #d90012, #071b4d);
    border-radius: 50px;
    opacity: 0.22;
}

.history-timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 20px;
    align-items: start;
}

.history-timeline-number {
    width: 74px;
    height: 74px;
    background: #d90012;
    color: #ffffff;
    border: 7px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 14px 35px rgba(217, 0, 18, 0.25);
    position: relative;
    z-index: 2;
}

.history-timeline-text {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 28px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
}

.history-timeline-text:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.14);
}

.history-timeline-text h3 {
    color: #071b4d;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 900;
}

.history-timeline-text p {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.75;
}

.program-history-note {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 22px;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.08), transparent 35%),
        #f7fbff;
    border: 1px solid rgba(7, 27, 77, 0.07);
    border-radius: 20px;
    padding: 28px 30px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.07);
}

.history-note-icon {
    width: 70px;
    height: 70px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.program-history-note p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 950px) {
    .program-abacus-history {
        padding: 75px 6%;
    }

    .program-history-content {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .program-history-story {
        position: relative;
        top: auto;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .program-abacus-history {
        padding: 60px 5%;
    }

    .program-history-header p,
    .program-history-story p,
    .history-timeline-text p,
    .program-history-note p {
        font-size: 15px;
    }

    .history-timeline-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .program-history-timeline::before {
        display: none;
    }

    .history-timeline-number {
        margin: 0 auto -6px;
    }

    .history-timeline-text {
        text-align: center;
        padding: 26px 22px;
    }

    .program-history-note {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 26px 22px;
    }

    .history-note-icon {
        margin: 0 auto;
    }
}

/* ================================
   PROGRAMS PAGE - TRAINING WORKS
================================ */

.program-training-works {
    position: relative;
    padding: 95px 7%;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #eef5ff 100%);
    overflow: hidden;
}

.training-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.training-works-header {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.training-works-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.training-works-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.training-works-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.training-works-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.training-work-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 22px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.training-work-card::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    top: -58px;
    right: -58px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.training-work-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.work-step-number {
    position: absolute;
    top: 18px;
    left: 18px;
    color: rgba(7, 27, 77, 0.12);
    font-size: 30px;
    font-weight: 900;
}

.work-step-icon {
    width: 68px;
    height: 68px;
    margin: 18px auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    font-size: 31px;
    position: relative;
    z-index: 2;
}

.training-work-card h3 {
    color: #071b4d;
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 13px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.training-work-card p {
    color: #3d4966;
    font-size: 14.5px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.training-works-bottom {
    margin-top: 45px;
    padding: 30px 34px;
    background: #071b4d;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: 0 20px 55px rgba(7, 27, 77, 0.18);
}

.training-bottom-text h3 {
    color: #ffffff;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 900;
}

.training-bottom-text p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 720px;
}

.training-bottom-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    background: #d90012;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(217, 0, 18, 0.25);
    transition: all 0.3s ease;
}

.training-bottom-btn:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

@media (max-width: 1150px) {
    .training-works-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .program-training-works {
        padding: 75px 6%;
    }

    .training-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-works-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 620px) {
    .program-training-works {
        padding: 60px 5%;
    }

    .training-works-grid {
        grid-template-columns: 1fr;
    }

    .training-works-header p,
    .training-work-card p,
    .training-bottom-text p {
        font-size: 15px;
    }

    .training-works-bottom {
        padding: 28px 22px;
    }

    .training-bottom-btn {
        width: 100%;
    }
}

/* ================================
   PROGRAMS PAGE - BRAIN DEVELOPMENT
================================ */

.program-brain-development {
    position: relative;
    padding: 95px 7%;
    background: #ffffff;
    overflow: hidden;
}

.brain-development-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 60px;
}

.brain-development-image {
    position: relative;
}

.brain-development-image img {
    width: 100%;
    display: block;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(7, 27, 77, 0.16);
    position: relative;
    z-index: 2;
}

.brain-development-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    left: -18px;
    bottom: -18px;
    border-radius: 22px;
    background: linear-gradient(135deg, #d90012, #071b4d);
    z-index: 1;
    opacity: 0.16;
}

.brain-development-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.brain-development-content h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 900;
}

.brain-development-content p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.brain-skill-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.brain-skill-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 14px 35px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
}

.brain-skill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(7, 27, 77, 0.13);
}

.brain-skill-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 15px;
    font-size: 23px;
}

.brain-skill-card h3 {
    color: #071b4d;
    font-size: 17px;
    margin-bottom: 8px;
    font-weight: 900;
}

.brain-skill-card p {
    color: #3d4966;
    font-size: 14.5px;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 950px) {
    .program-brain-development {
        padding: 75px 6%;
    }

    .brain-development-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .brain-development-content {
        text-align: center;
    }

    .brain-skill-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 620px) {
    .program-brain-development {
        padding: 60px 5%;
    }

    .brain-skill-grid {
        grid-template-columns: 1fr;
    }

    .brain-development-content p,
    .brain-skill-card p {
        font-size: 15px;
    }

    .brain-skill-card {
        text-align: center;
    }
}

/* ================================
   PROGRAMS PAGE - BENEFITS SECTION
================================ */

.program-benefits-section {
    position: relative;
    padding: 95px 7%;
    background:
        radial-gradient(circle at top right, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.program-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.program-benefits-header {
    max-width: 800px;
    margin: 0 auto 52px;
    text-align: center;
}

.program-benefits-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.program-benefits-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.program-benefits-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.program-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-benefit-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.program-benefit-card::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    right: -58px;
    top: -58px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.program-benefit-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.program-benefit-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    border-radius: 18px;
    position: relative;
    z-index: 2;
}

.program-benefit-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.program-benefit-icon.emoji-icon {
    color: #d90012;
    font-size: 31px;
}

.program-benefit-card h3 {
    color: #071b4d;
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 13px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.program-benefit-card p {
    color: #3d4966;
    font-size: 14.5px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

@media (max-width: 1050px) {
    .program-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .program-benefits-section {
        padding: 75px 6%;
    }

    .program-benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .program-benefits-section {
        padding: 60px 5%;
    }

    .program-benefits-header p,
    .program-benefit-card p {
        font-size: 15px;
    }

    .program-benefit-card {
        padding: 30px 22px;
    }
}

/* ================================
   PROGRAMS PAGE - COURSE LEVELS
================================ */

.program-course-levels {
    position: relative;
    padding: 100px 7%;
    background: linear-gradient(135deg, #071b4d 0%, #092765 48%, #d90012 135%);
    overflow: hidden;
}

.course-levels-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.course-levels-header {
    max-width: 800px;
    margin: 0 auto 55px;
    text-align: center;
}

.course-levels-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.course-levels-header h2 {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.course-levels-header p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.8;
}

.course-levels-content {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 38px;
    align-items: stretch;
}

.course-details-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 24px;
    padding: 38px 32px;
    color: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.course-details-box h3 {
    color: #ffffff;
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 900;
}

.course-details-box p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15.5px;
    line-height: 1.85;
    margin-bottom: 28px;
}

.course-detail-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
}

.course-detail-item {
    padding: 17px 18px;
    background: rgba(255, 255, 255, 0.11);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.course-detail-item span {
    display: block;
    color: rgba(255, 255, 255, 0.66);
    font-size: 12.5px;
    margin-bottom: 5px;
    font-weight: 700;
}

.course-detail-item strong {
    display: block;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.4;
    font-weight: 900;
}

.course-details-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    background: #ffffff;
    color: #071b4d;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.course-details-btn:hover {
    transform: translateY(-3px);
    background: #f4f7ff;
}

.course-levels-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.course-level-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.14);
    overflow: hidden;
    transition: all 0.3s ease;
}

.course-level-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -58px;
    top: -58px;
    background: rgba(217, 0, 18, 0.08);
    border-radius: 50%;
}

.course-level-card:hover {
    transform: translateY(-7px);
}

.level-number {
    width: 58px;
    height: 58px;
    margin-bottom: 22px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.course-level-card h3 {
    color: #071b4d;
    font-size: 21px;
    margin-bottom: 12px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.course-level-card p {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

.course-levels-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.course-levels-shape.shape-one {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.07);
    top: -110px;
    left: -100px;
}

.course-levels-shape.shape-two {
    width: 380px;
    height: 380px;
    background: rgba(217, 0, 18, 0.18);
    right: -160px;
    bottom: -170px;
}

@media (max-width: 950px) {
    .program-course-levels {
        padding: 80px 6%;
    }

    .course-levels-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .course-levels-grid {
        grid-template-columns: 1fr;
    }

    .course-details-box {
        text-align: center;
    }

    .course-details-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .program-course-levels {
        padding: 65px 5%;
    }

    .course-levels-header p,
    .course-details-box p,
    .course-level-card p {
        font-size: 15px;
    }

    .course-details-box,
    .course-level-card {
        padding: 30px 22px;
    }

    .level-number {
        margin-left: auto;
        margin-right: auto;
    }

    .course-level-card {
        text-align: center;
    }
}

/* ================================
   PROGRAMS PAGE - PROGRAM PATHS
================================ */

.program-paths-section {
    position: relative;
    padding: 95px 7%;
    background: #ffffff;
    overflow: hidden;
}

.program-paths-container {
    max-width: 1200px;
    margin: 0 auto;
}

.program-paths-header {
    max-width: 800px;
    margin: 0 auto 52px;
    text-align: center;
}

.program-paths-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.program-paths-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.program-paths-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.program-paths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.program-path-card {
    position: relative;
    min-height: 370px;
    padding: 36px 26px;
    border-radius: 22px;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 18px 48px rgba(7, 27, 77, 0.12);
    transition: all 0.3s ease;
}

.program-path-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
}

.program-path-card.children::before {
    background:
        linear-gradient(180deg, rgba(7, 27, 77, 0.18), rgba(217, 0, 18, 0.94)),
        url("../gallery/Abacus-Training.JPEG");
    background-size: cover;
    background-position: center;
}

.program-path-card.parents::before {
    background:
        linear-gradient(180deg, rgba(7, 27, 77, 0.22), rgba(7, 27, 77, 0.95)),
        url("../sobay_par.png");
    background-size: cover;
    background-position: center;
}

.program-path-card.schools::before {
    background:
        linear-gradient(180deg, rgba(7, 27, 77, 0.2), rgba(6, 55, 184, 0.94)),
        url("../gallery/School_Outreach.JPEG");
    background-size: cover;
    background-position: center;
}

.program-path-card.educators::before {
    background:
        linear-gradient(180deg, rgba(7, 27, 77, 0.2), rgba(217, 0, 18, 0.92)),
        url("../program-teacher-training.png");
    background-size: cover;
    background-position: center;
}

.program-path-card::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    top: -70px;
    right: -70px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    z-index: 2;
}

.program-path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 65px rgba(7, 27, 77, 0.18);
}

.path-icon,
.program-path-card h3,
.program-path-card p,
.program-path-card a {
    position: relative;
    z-index: 3;
}

.path-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    font-size: 30px;
}

.program-path-card h3 {
    color: #ffffff;
    font-size: 23px;
    margin-bottom: 14px;
    font-weight: 900;
}

.program-path-card p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 24px;
}

.program-path-card a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    padding: 13px 20px;
    background: #ffffff;
    color: #071b4d;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-path-card a:hover {
    background: #f4f7ff;
    transform: translateY(-3px);
}

@media (max-width: 1100px) {
    .program-paths-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 700px) {
    .program-paths-section {
        padding: 75px 6%;
    }

    .program-paths-grid {
        grid-template-columns: 1fr;
    }

    .program-path-card {
        min-height: 340px;
    }
}

@media (max-width: 520px) {
    .program-paths-section {
        padding: 60px 5%;
    }

    .program-paths-header p,
    .program-path-card p {
        font-size: 15px;
    }

    .program-path-card {
        padding: 32px 24px;
    }

    .program-path-card a {
        width: 100%;
    }
}

/* ================================
   PROGRAMS PAGE - SOBAY DIFFERENCE
================================ */

.program-difference-section {
    position: relative;
    padding: 95px 7%;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.program-difference-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 0.9fr 0.85fr;
    align-items: center;
    gap: 34px;
}

.program-difference-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.program-difference-content h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 20px;
    font-weight: 900;
}

.program-difference-content > p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 28px;
}

.difference-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.difference-check-item {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px 18px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(7, 27, 77, 0.07);
    border: 1px solid rgba(7, 27, 77, 0.06);
}

.difference-check-item span {
    width: 34px;
    height: 34px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.difference-check-item p {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
}

.program-difference-image {
    position: relative;
}

.program-difference-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 26px;
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.16);
}

.program-difference-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    right: -16px;
    bottom: -16px;
    border-radius: 26px;
    background: linear-gradient(135deg, #071b4d, #d90012);
    z-index: -1;
    opacity: 0.16;
}

.program-difference-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.difference-point-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
}

.difference-point-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.14);
}

.difference-point-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    font-size: 27px;
}

.difference-point-card h3 {
    color: #071b4d;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 900;
}

.difference-point-card p {
    color: #3d4966;
    font-size: 14.5px;
    line-height: 1.7;
}

@media (max-width: 1050px) {
    .program-difference-container {
        grid-template-columns: 1fr 1fr;
    }

    .program-difference-points {
        grid-column: span 2;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .program-difference-section {
        padding: 75px 6%;
    }

    .program-difference-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .difference-check-item {
        text-align: left;
    }

    .program-difference-image img {
        min-height: auto;
    }

    .program-difference-points {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .difference-point-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 520px) {
    .program-difference-section {
        padding: 60px 5%;
    }

    .program-difference-content > p,
    .difference-check-item p,
    .difference-point-card p {
        font-size: 15px;
    }

    .difference-check-item {
        padding: 15px;
    }

    .difference-point-card {
        padding: 26px 22px;
    }
}

/* ================================
   PROGRAMS PAGE - TRUST & PARTNERSHIPS
================================ */

.program-trust-section {
    position: relative;
    padding: 95px 7%;
    background: #ffffff;
    overflow: hidden;
}

.program-trust-container {
    max-width: 1200px;
    margin: 0 auto;
}

.program-trust-header {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
}

.program-trust-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.program-trust-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.program-trust-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.program-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 55px;
}

.program-trust-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.program-trust-card::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    right: -58px;
    top: -58px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.program-trust-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.trust-card-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    z-index: 2;
}

.program-trust-card h3 {
    color: #d90012;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 13px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.program-trust-card p {
    color: #3d4966;
    font-size: 14.5px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

.program-partners-box {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    align-items: center;
    gap: 36px;
    padding: 38px;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.08), transparent 35%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    border-radius: 24px;
    border: 1px solid rgba(7, 27, 77, 0.07);
    box-shadow: 0 18px 48px rgba(7, 27, 77, 0.08);
    margin-bottom: 35px;
}

.program-partners-text h3 {
    color: #071b4d;
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 900;
}

.program-partners-text p {
    color: #3d4966;
    font-size: 15.5px;
    line-height: 1.75;
}

.program-partners-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.program-partner-logo {
    min-height: 110px;
    background: #ffffff;
    border-radius: 18px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 27, 77, 0.07);
    box-shadow: 0 12px 30px rgba(7, 27, 77, 0.06);
    transition: all 0.3s ease;
}

.program-partner-logo:hover {
    transform: translateY(-5px);
}

.program-partner-logo img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.program-trust-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 32px 36px;
    background: #071b4d;
    border-radius: 22px;
    box-shadow: 0 20px 55px rgba(7, 27, 77, 0.18);
}

.program-trust-cta h3 {
    color: #ffffff;
    font-size: 25px;
    margin-bottom: 8px;
    font-weight: 900;
}

.program-trust-cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.7;
}

.program-trust-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    background: #d90012;
    color: #ffffff;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(217, 0, 18, 0.25);
    transition: all 0.3s ease;
}

.program-trust-btn:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

@media (max-width: 1050px) {
    .program-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-partners-box {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 850px) {
    .program-trust-section {
        padding: 75px 6%;
    }

    .program-partners-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-trust-cta {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .program-trust-grid,
    .program-partners-logos {
        grid-template-columns: 1fr;
    }

    .program-partners-box,
    .program-trust-cta {
        padding: 28px 22px;
    }

    .program-trust-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .program-trust-section {
        padding: 60px 5%;
    }

    .program-trust-header p,
    .program-trust-card p,
    .program-partners-text p,
    .program-trust-cta p {
        font-size: 15px;
    }
}

/* ================================
   PROGRAMS PAGE - FAQ SECTION
================================ */

.program-faq-section {
    position: relative;
    padding: 95px 7%;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.program-faq-container {
    max-width: 950px;
    margin: 0 auto;
}

.program-faq-header {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
}

.program-faq-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.program-faq-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.program-faq-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.8;
}

.program-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.program-faq-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    overflow: hidden;
    transition: all 0.3s ease;
}

.program-faq-item:hover {
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.13);
}

.program-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.program-faq-item summary::-webkit-details-marker {
    display: none;
}

.program-faq-item summary span {
    color: #071b4d;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 900;
}

.program-faq-item summary i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50%;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    transition: all 0.3s ease;
}

.program-faq-item[open] summary i {
    background: #d90012;
    color: #ffffff;
    transform: rotate(45deg);
}

.program-faq-item p {
    padding: 0 26px 26px;
    color: #3d4966;
    font-size: 15.5px;
    line-height: 1.8;
    margin: 0;
}

.program-faq-item[open] {
    border-color: rgba(217, 0, 18, 0.16);
}

@media (max-width: 700px) {
    .program-faq-section {
        padding: 75px 6%;
    }

    .program-faq-item summary {
        padding: 22px 22px;
    }

    .program-faq-item p {
        padding: 0 22px 24px;
    }
}

@media (max-width: 520px) {
    .program-faq-section {
        padding: 60px 5%;
    }

    .program-faq-header p,
    .program-faq-item p {
        font-size: 15px;
    }

    .program-faq-item summary span {
        font-size: 16px;
    }
}

/* ================================
   PROGRAMS PAGE - FINAL CTA
================================ */

.program-final-cta {
    position: relative;
    padding: 105px 7%;
    background: linear-gradient(135deg, #071b4d 0%, #092765 55%, #d90012 135%);
    overflow: hidden;
    text-align: center;
}

.program-final-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.program-final-cta .section-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.program-final-cta h2 {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.12;
    margin-bottom: 22px;
    font-weight: 900;
}

.program-final-cta p {
    max-width: 690px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.8;
}

.program-final-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.program-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-final-btn.primary {
    background: #ffffff;
    color: #071b4d;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.program-final-btn.primary:hover {
    transform: translateY(-3px);
    background: #f4f7ff;
}

.program-final-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.program-final-btn.secondary:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #071b4d;
}

.program-final-note {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 50px;
    font-size: 14px;
}

.program-final-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.program-final-shape.shape-one {
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.08);
    top: -100px;
    left: -90px;
}

.program-final-shape.shape-two {
    width: 360px;
    height: 360px;
    background: rgba(217, 0, 18, 0.18);
    right: -140px;
    bottom: -150px;
}

@media (max-width: 700px) {
    .program-final-cta {
        padding: 82px 6%;
    }

    .program-final-cta p {
        font-size: 15px;
    }

    .program-final-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .program-final-cta {
        padding: 70px 5%;
    }

    .program-final-note {
        border-radius: 16px;
        line-height: 1.5;
    }
}

/* ================================
   PARTNERSHIP PAGE - HERO SECTION
================================ */

.partnership-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 7% 90px;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.08), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef5ff 100%);
}

.partnership-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.partnership-hero-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-hero-content h1 {
    color: #071b4d;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.06;
    margin-bottom: 22px;
    font-weight: 900;
}

.partnership-hero-content h1 span {
    color: #d90012;
}

.partnership-hero-content p {
    max-width: 590px;
    color: #34405f;
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 34px;
}

.partnership-hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.partnership-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partnership-hero-btn.primary {
    background: #d90012;
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(217, 0, 18, 0.22);
}

.partnership-hero-btn.primary:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

.partnership-hero-btn.secondary {
    border: 2px solid #071b4d;
    color: #071b4d;
    background: #ffffff;
}

.partnership-hero-btn.secondary:hover {
    background: #071b4d;
    color: #ffffff;
    transform: translateY(-3px);
}

.partnership-hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 650px;
}

.partnership-badge {
    background: #ffffff;
    border: 1px solid rgba(7, 27, 77, 0.08);
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: 0 12px 30px rgba(7, 27, 77, 0.08);
}

.partnership-badge strong {
    display: block;
    color: #071b4d;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 4px;
}

.partnership-badge span {
    color: #5a6380;
    font-size: 12.5px;
    font-weight: 600;
}

.partnership-hero-image {
    position: relative;
}

.partnership-hero-image img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.18);
    position: relative;
    z-index: 2;
}

.partnership-hero-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    right: -18px;
    bottom: -18px;
    border-radius: 26px;
    background: linear-gradient(135deg, #071b4d, #d90012);
    z-index: 1;
    opacity: 0.16;
}

.partnership-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.partnership-hero-shape.shape-one {
    width: 230px;
    height: 230px;
    background: rgba(217, 0, 18, 0.08);
    top: 80px;
    left: -90px;
}

.partnership-hero-shape.shape-two {
    width: 330px;
    height: 330px;
    background: rgba(7, 27, 77, 0.07);
    right: -130px;
    bottom: -130px;
}

@media (max-width: 950px) {
    .partnership-hero {
        padding: 115px 6% 75px;
    }

    .partnership-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .partnership-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .partnership-hero-buttons {
        justify-content: center;
    }

    .partnership-hero-badges {
        margin: 0 auto;
    }

    .partnership-hero-image img {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .partnership-hero-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .partnership-hero {
        padding: 100px 5% 65px;
    }

    .partnership-hero-content h1 {
        font-size: 36px;
    }

    .partnership-hero-content p {
        font-size: 15px;
    }

    .partnership-hero-btn {
        width: 100%;
    }
}

/* ================================
   PARTNERSHIP PAGE - WHY PARTNER
================================ */

.partnership-why {
    position: relative;
    padding: 95px 7%;
    background: #ffffff;
    overflow: hidden;
}

.partnership-why-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
}

.partnership-why-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-why-content h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 900;
}

.partnership-why-content p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.partnership-why-image {
    position: relative;
}

.partnership-why-image img {
    width: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.16);
    position: relative;
    z-index: 2;
}

.partnership-why-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    right: -18px;
    bottom: -18px;
    border-radius: 24px;
    background: linear-gradient(135deg, #071b4d, #d90012);
    z-index: 1;
    opacity: 0.16;
}

.partnership-why-cards {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 10px;
}

.partnership-why-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.partnership-why-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    top: -55px;
    right: -55px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.partnership-why-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.why-card-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    z-index: 2;
}

.partnership-why-card h3 {
    color: #071b4d;
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.partnership-why-card p {
    color: #3d4966;
    font-size: 14.5px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

@media (max-width: 1050px) {
    .partnership-why-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 950px) {
    .partnership-why {
        padding: 75px 6%;
    }

    .partnership-why-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .partnership-why-image img {
        min-height: auto;
    }

    .partnership-why-cards {
        grid-column: auto;
    }
}

@media (max-width: 650px) {
    .partnership-why-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .partnership-why {
        padding: 60px 5%;
    }

    .partnership-why-content p,
    .partnership-why-card p {
        font-size: 15px;
    }

    .partnership-why-card {
        padding: 30px 22px;
    }
}

/* ================================
   PARTNERSHIP PAGE - AUDIENCE SECTION
================================ */

.partnership-audience {
    position: relative;
    padding: 95px 7%;
    background:
        radial-gradient(circle at top right, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.partnership-audience-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-audience-header {
    max-width: 880px;
    margin: 0 auto 52px;
    text-align: center;
}

.partnership-audience-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-audience-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.partnership-audience-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
}

.partnership-audience-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.audience-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 34px 22px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.audience-card::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    right: -58px;
    top: -58px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.audience-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.audience-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    font-size: 31px;
    position: relative;
    z-index: 2;
}

.audience-card h3 {
    color: #071b4d;
    font-size: 19px;
    line-height: 1.3;
    margin-bottom: 13px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.audience-card p {
    color: #3d4966;
    font-size: 14.5px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
}

@media (max-width: 1150px) {
    .partnership-audience-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 850px) {
    .partnership-audience {
        padding: 75px 6%;
    }

    .partnership-audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .partnership-audience {
        padding: 60px 5%;
    }

    .partnership-audience-grid {
        grid-template-columns: 1fr;
    }

    .partnership-audience-header p,
    .audience-card p {
        font-size: 15px;
    }

    .audience-card {
        padding: 30px 22px;
    }
}
/* ================================
   PARTNERSHIP PAGE - PARTNERSHIP MODELS
================================ */

.partnership-models {
    position: relative;
    padding: 100px 7%;
    background: linear-gradient(135deg, #071b4d 0%, #092765 50%, #d90012 138%);
    overflow: hidden;
}

.partnership-models-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partnership-models-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.partnership-models-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-models-header h2 {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.partnership-models-header p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.85;
}

.partnership-models-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.partnership-model-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 26px 30px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: all 0.3s ease;
}

.partnership-model-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    top: -62px;
    right: -62px;
    background: rgba(217, 0, 18, 0.08);
    border-radius: 50%;
}

.partnership-model-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.model-number {
    position: absolute;
    top: 20px;
    right: 22px;
    color: rgba(7, 27, 77, 0.11);
    font-size: 36px;
    font-weight: 900;
}

.model-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 22px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    position: relative;
    z-index: 2;
}

.partnership-model-card h3 {
    color: #071b4d;
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 14px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.partnership-model-card p {
    color: #3d4966;
    font-size: 14.8px;
    line-height: 1.75;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.partnership-model-card ul {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    position: relative;
    z-index: 2;
}

.partnership-model-card ul li {
    color: #3d4966;
    font-size: 14.3px;
    line-height: 1.65;
    margin-bottom: 9px;
    padding-left: 24px;
    position: relative;
}

.partnership-model-card ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #d90012;
    font-weight: 900;
}

.partnership-model-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    background: #d90012;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(217, 0, 18, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.partnership-model-card a:hover {
    background: #b8000f;
    transform: translateY(-3px);
}

.partnership-models-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.partnership-models-shape.shape-one {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.07);
    top: -110px;
    left: -100px;
}

.partnership-models-shape.shape-two {
    width: 380px;
    height: 380px;
    background: rgba(217, 0, 18, 0.18);
    right: -160px;
    bottom: -170px;
}

@media (max-width: 1150px) {
    .partnership-models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .partnership-models {
        padding: 80px 6%;
    }
}

@media (max-width: 620px) {
    .partnership-models {
        padding: 65px 5%;
    }

    .partnership-models-grid {
        grid-template-columns: 1fr;
    }

    .partnership-models-header p,
    .partnership-model-card p,
    .partnership-model-card ul li {
        font-size: 15px;
    }

    .partnership-model-card {
        padding: 34px 24px 28px;
    }

    .model-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .partnership-model-card {
        text-align: center;
    }

    .partnership-model-card ul li {
        text-align: left;
    }

    .partnership-model-card a {
        width: 100%;
    }
}
/* ================================
   PARTNERSHIP PAGE - PACKAGE INCLUDES
================================ */

.partnership-package {
    position: relative;
    padding: 100px 7%;
    background: #ffffff;
    overflow: hidden;
}

.partnership-package::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    right: -140px;
    top: 80px;
    border-radius: 50%;
    background: rgba(217, 0, 18, 0.06);
}

.partnership-package::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    left: -120px;
    bottom: 70px;
    border-radius: 50%;
    background: rgba(7, 27, 77, 0.06);
}

.partnership-package-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 55px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.partnership-package-intro .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-package-intro h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 900;
}

.partnership-package-intro p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 17px;
}

.package-highlight-box {
    margin-top: 30px;
    padding: 30px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(7, 27, 77, 0.96), rgba(9, 39, 101, 0.96)),
        linear-gradient(135deg, #071b4d, #092765);
    box-shadow: 0 20px 50px rgba(7, 27, 77, 0.18);
    position: relative;
    overflow: hidden;
}

.package-highlight-box::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(217, 0, 18, 0.35);
}

.package-highlight-box h3 {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 12px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.package-highlight-box p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.partnership-package-checklist {
    background: linear-gradient(135deg, #f7fbff, #ffffff);
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 20px 55px rgba(7, 27, 77, 0.11);
    border: 1px solid rgba(7, 27, 77, 0.08);
    position: sticky;
    top: 110px;
}

.partnership-package-checklist h3 {
    color: #071b4d;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 900;
}

.partnership-package-checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.partnership-package-checklist ul li {
    color: #3d4966;
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 14px;
    padding-left: 32px;
    position: relative;
}

.partnership-package-checklist ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: -1px;
    width: 22px;
    height: 22px;
    background: rgba(217, 0, 18, 0.1);
    color: #d90012;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
}

.partnership-package-grid {
    grid-column: span 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 15px;
}

.package-support-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.package-support-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -55px;
    top: -55px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.package-support-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.package-support-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 29px;
    position: relative;
    z-index: 2;
}

.package-support-card h3 {
    color: #071b4d;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 13px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.package-support-card p {
    color: #3d4966;
    font-size: 14.7px;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

@media (max-width: 1050px) {
    .partnership-package-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partnership-package-checklist {
        position: relative;
        top: auto;
    }

    .partnership-package-grid {
        grid-column: auto;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .partnership-package {
        padding: 80px 6%;
    }

    .partnership-package-container {
        text-align: center;
    }

    .partnership-package-checklist {
        text-align: left;
    }

    .package-support-card {
        text-align: center;
    }

    .package-support-icon {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 650px) {
    .partnership-package {
        padding: 65px 5%;
    }

    .partnership-package-grid {
        grid-template-columns: 1fr;
    }

    .partnership-package-intro p,
    .package-highlight-box p,
    .partnership-package-checklist ul li,
    .package-support-card p {
        font-size: 15px;
    }

    .partnership-package-checklist,
    .package-highlight-box,
    .package-support-card {
        padding: 28px 22px;
    }
}

/* ================================
   PARTNERSHIP PAGE - BENEFITS
================================ */

.partnership-benefits {
    position: relative;
    padding: 100px 7%;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #eef5ff 100%);
    overflow: hidden;
}

.partnership-benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-benefits-header {
    max-width: 880px;
    margin: 0 auto 55px;
    text-align: center;
}

.partnership-benefits-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-benefits-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.partnership-benefits-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
}

.partnership-benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.partner-benefit-card {
    min-height: 360px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 55px rgba(7, 27, 77, 0.13);
    display: flex;
    align-items: flex-end;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
}

.partner-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(7, 27, 77, 0.2);
}

.partner-benefit-card.schools {
    grid-column: span 3;
    background-image:
        linear-gradient(180deg, rgba(7, 27, 77, 0.08), rgba(7, 27, 77, 0.92)),
        url("../school-partnership-sobay.jpg");
}

.partner-benefit-card.centres {
    grid-column: span 3;
    background-image:
        linear-gradient(180deg, rgba(7, 27, 77, 0.08), rgba(217, 0, 18, 0.9)),
        url("../focused_learning_in_a_bright_classroom.png");
}

.partner-benefit-card.teachers {
    grid-column: span 2;
    background-image:
        linear-gradient(180deg, rgba(7, 27, 77, 0.08), rgba(7, 27, 77, 0.94)),
        url("../a_bright_indoor_classroom_or_workshop_scene_overal.png");
}

.partner-benefit-card.entrepreneurs {
    grid-column: span 2;
    background-image:
        linear-gradient(180deg, rgba(7, 27, 77, 0.08), rgba(217, 0, 18, 0.92)),
        url("../business_handshake_in_a_modern_classroom.png");
}

.partner-benefit-card.children {
    grid-column: span 2;
    background-image:
        linear-gradient(180deg, rgba(7, 27, 77, 0.08), rgba(7, 27, 77, 0.94)),
        url("../smiling_students_with_abacuses_in_class.png");
}

.partner-benefit-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 30%),
        linear-gradient(180deg, transparent 20%, rgba(0, 0, 0, 0.28) 100%);
    z-index: 1;
}

.partner-benefit-content {
    position: relative;
    z-index: 2;
    padding: 34px 30px;
}

.partner-benefit-content span {
    display: inline-block;
    margin-bottom: 13px;
    padding: 7px 14px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(8px);
}

.partner-benefit-content h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.25;
    margin-bottom: 13px;
    font-weight: 900;
}

.partner-benefit-content p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 15px;
    line-height: 1.78;
    max-width: 560px;
}

@media (max-width: 1050px) {
    .partnership-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partner-benefit-card.schools,
    .partner-benefit-card.centres,
    .partner-benefit-card.teachers,
    .partner-benefit-card.entrepreneurs,
    .partner-benefit-card.children {
        grid-column: span 1;
    }
}

@media (max-width: 850px) {
    .partnership-benefits {
        padding: 80px 6%;
    }

    .partner-benefit-card {
        min-height: 330px;
    }
}

@media (max-width: 650px) {
    .partnership-benefits {
        padding: 65px 5%;
    }

    .partnership-benefits-grid {
        grid-template-columns: 1fr;
    }

    .partner-benefit-card {
        min-height: 360px;
    }

    .partner-benefit-content {
        padding: 30px 24px;
    }

    .partner-benefit-content h3 {
        font-size: 22px;
    }

    .partnership-benefits-header p,
    .partner-benefit-content p {
        font-size: 15px;
    }
}
/* ================================
   PARTNERSHIP PAGE - PROCESS
================================ */

.partnership-process {
    position: relative;
    padding: 100px 7%;
    background: #ffffff;
    overflow: hidden;
}

.partnership-process::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    left: -150px;
    top: 120px;
    border-radius: 50%;
    background: rgba(7, 27, 77, 0.06);
}

.partnership-process::after {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    right: -130px;
    bottom: 120px;
    border-radius: 50%;
    background: rgba(217, 0, 18, 0.06);
}

.partnership-process-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partnership-process-header {
    max-width: 850px;
    margin: 0 auto 60px;
    text-align: center;
}

.partnership-process-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-process-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.partnership-process-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
}

.partnership-process-timeline {
    position: relative;
    display: grid;
    gap: 28px;
}

.partnership-process-timeline::before {
    content: "";
    position: absolute;
    left: 39px;
    top: 18px;
    bottom: 18px;
    width: 3px;
    background: linear-gradient(180deg, #d90012, #071b4d);
    border-radius: 50px;
    opacity: 0.16;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 26px;
    align-items: flex-start;
    position: relative;
}

.process-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #d90012, #b8000f);
    color: #ffffff;
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(217, 0, 18, 0.22);
    position: relative;
    z-index: 2;
}

.process-step-content {
    background: #ffffff;
    border: 1px solid rgba(7, 27, 77, 0.08);
    border-radius: 22px;
    padding: 32px 34px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    transition: all 0.3s ease;
}

.process-step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.13);
}

.process-step-content h3 {
    color: #071b4d;
    font-size: 23px;
    line-height: 1.3;
    margin-bottom: 12px;
    font-weight: 900;
}

.process-step-content p {
    color: #3d4966;
    font-size: 15.5px;
    line-height: 1.85;
}

.partnership-process-note {
    margin-top: 55px;
    padding: 34px 36px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(217, 0, 18, 0.25), transparent 30%),
        linear-gradient(135deg, #071b4d 0%, #092765 60%, #d90012 145%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.18);
    overflow: hidden;
}

.partnership-process-note h3 {
    color: #ffffff;
    font-size: 25px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 900;
}

.partnership-process-note p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.8;
    max-width: 670px;
}

.partnership-process-note a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    background: #ffffff;
    color: #d90012;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
}

.partnership-process-note a:hover {
    transform: translateY(-3px);
    background: #f7fbff;
}

@media (max-width: 850px) {
    .partnership-process {
        padding: 80px 6%;
    }

    .partnership-process-note {
        flex-direction: column;
        text-align: center;
    }

    .partnership-process-note a {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .partnership-process {
        padding: 65px 5%;
    }

    .partnership-process-timeline::before {
        left: 29px;
    }

    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 18px;
    }

    .process-step-number {
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 17px;
    }

    .process-step-content {
        padding: 28px 22px;
    }

    .process-step-content h3 {
        font-size: 20px;
    }

    .partnership-process-header p,
    .process-step-content p,
    .partnership-process-note p {
        font-size: 15px;
    }

    .partnership-process-note {
        padding: 30px 24px;
    }

    .partnership-process-note h3 {
        font-size: 22px;
    }
}

@media (max-width: 460px) {
    .partnership-process-timeline::before {
        display: none;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .process-step-number {
        margin: 0 auto;
    }

    .process-step-content {
        text-align: center;
    }
}
/* ================================
   PARTNERSHIP PAGE - TRAINING SUPPORT
================================ */

.partnership-training {
    position: relative;
    padding: 100px 7%;
    background:
        radial-gradient(circle at top right, rgba(217, 0, 18, 0.07), transparent 32%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.partnership-training-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 60px;
}

.partnership-training-image {
    position: relative;
}

.partnership-training-image img {
    width: 100%;
    min-height: 620px;
    object-fit: cover;
    display: block;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.17);
    position: relative;
    z-index: 2;
}

.partnership-training-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    left: -18px;
    bottom: -18px;
    border-radius: 26px;
    background: linear-gradient(135deg, #071b4d, #d90012);
    z-index: 1;
    opacity: 0.16;
}

.partnership-training-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-training-content h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 900;
}

.partnership-training-content p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.partnership-training-points {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.training-point {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(7, 27, 77, 0.07);
    box-shadow: 0 14px 36px rgba(7, 27, 77, 0.08);
    transition: all 0.3s ease;
}

.training-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.13);
}

.training-point span {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #d90012, #b8000f);
    color: #ffffff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(217, 0, 18, 0.22);
}

.training-point h3 {
    color: #071b4d;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 8px;
    font-weight: 900;
}

.training-point p {
    color: #3d4966;
    font-size: 14.8px;
    line-height: 1.75;
    margin-bottom: 0;
}

@media (max-width: 1000px) {
    .partnership-training-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .partnership-training-content {
        text-align: center;
    }

    .partnership-training-image img {
        min-height: auto;
    }

    .training-point {
        text-align: left;
    }
}

@media (max-width: 850px) {
    .partnership-training {
        padding: 80px 6%;
    }
}

@media (max-width: 650px) {
    .partnership-training {
        padding: 65px 5%;
    }

    .training-point {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 26px 22px;
    }

    .training-point span {
        margin: 0 auto;
    }

    .partnership-training-content p,
    .training-point p {
        font-size: 15px;
    }
}
/* ================================
   PARTNERSHIP PAGE - REQUIREMENTS
================================ */

.partnership-requirements {
    position: relative;
    padding: 100px 7%;
    background: #ffffff;
    overflow: hidden;
}

.partnership-requirements::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    top: 70px;
    right: -150px;
    border-radius: 50%;
    background: rgba(217, 0, 18, 0.06);
}

.partnership-requirements::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    bottom: 80px;
    left: -120px;
    border-radius: 50%;
    background: rgba(7, 27, 77, 0.06);
}

.partnership-requirements-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partnership-requirements-header {
    max-width: 880px;
    margin: 0 auto 55px;
    text-align: center;
}

.partnership-requirements-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-requirements-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.partnership-requirements-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
}

.partnership-requirements-wrapper {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 35px;
    align-items: stretch;
}

.requirements-main-card {
    position: relative;
    padding: 42px 36px;
    border-radius: 26px;
    background:
        radial-gradient(circle at top right, rgba(217, 0, 18, 0.28), transparent 32%),
        linear-gradient(135deg, #071b4d 0%, #092765 62%, #d90012 145%);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.18);
    overflow: hidden;
}

.requirements-main-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    right: -85px;
    bottom: -85px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.requirements-main-card h3 {
    color: #ffffff;
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 20px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.requirements-main-card p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.7px;
    line-height: 1.85;
    margin-bottom: 17px;
    position: relative;
    z-index: 2;
}

.requirements-main-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 15px 24px;
    background: #ffffff;
    color: #d90012;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.requirements-main-card a:hover {
    transform: translateY(-3px);
    background: #f7fbff;
}

.requirements-check-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.requirement-check-card {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.requirement-check-card::before {
    content: "";
    position: absolute;
    width: 110px;
    height: 110px;
    right: -55px;
    top: -55px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.requirement-check-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.13);
}

.requirement-check-card span {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
    background: rgba(217, 0, 18, 0.09);
    color: #d90012;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.requirement-check-card h3 {
    color: #071b4d;
    font-size: 20px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.requirement-check-card p {
    color: #3d4966;
    font-size: 14.7px;
    line-height: 1.78;
    position: relative;
    z-index: 2;
}

@media (max-width: 1000px) {
    .partnership-requirements-wrapper {
        grid-template-columns: 1fr;
    }

    .requirements-main-card {
        text-align: center;
    }
}

@media (max-width: 850px) {
    .partnership-requirements {
        padding: 80px 6%;
    }
}

@media (max-width: 650px) {
    .partnership-requirements {
        padding: 65px 5%;
    }

    .requirements-check-grid {
        grid-template-columns: 1fr;
    }

    .requirements-main-card,
    .requirement-check-card {
        padding: 30px 24px;
    }

    .requirements-main-card h3 {
        font-size: 25px;
    }

    .partnership-requirements-header p,
    .requirements-main-card p,
    .requirement-check-card p {
        font-size: 15px;
    }

    .requirement-check-card {
        text-align: center;
    }

    .requirement-check-card span {
        margin-left: auto;
        margin-right: auto;
    }

    .requirements-main-card a {
        width: 100%;
    }
}

/* ================================
   PARTNERSHIP PAGE - ENQUIRY FORM
================================ */

.partnership-enquiry {
    position: relative;
    padding: 105px 7%;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.08), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 50%, #eef5ff 100%);
    overflow: hidden;
}

.partnership-enquiry-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.partnership-enquiry-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-enquiry-content h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 900;
}

.partnership-enquiry-content p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.enquiry-info-list {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.enquiry-info-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(7, 27, 77, 0.07);
    box-shadow: 0 14px 36px rgba(7, 27, 77, 0.08);
}

.enquiry-info-icon {
    width: 58px;
    height: 58px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.enquiry-info-item h3 {
    color: #071b4d;
    font-size: 19px;
    margin-bottom: 7px;
    font-weight: 900;
}

.enquiry-info-item p {
    color: #3d4966;
    font-size: 14.7px;
    line-height: 1.7;
    margin-bottom: 0;
}

.partnership-enquiry-form-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 24px 65px rgba(7, 27, 77, 0.13);
    border: 1px solid rgba(7, 27, 77, 0.08);
    position: relative;
    overflow: hidden;
}

.partnership-enquiry-form-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -85px;
    right: -85px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.partnership-form {
    position: relative;
    z-index: 2;
}

.partnership-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.partnership-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.partnership-form label {
    color: #071b4d;
    font-size: 14px;
    font-weight: 900;
}

.partnership-form input,
.partnership-form select,
.partnership-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(7, 27, 77, 0.16);
    border-radius: 10px;
    color: #071b4d;
    font-size: 15px;
    outline: none;
    background: #ffffff;
    transition: all 0.25s ease;
}

.partnership-form input:focus,
.partnership-form select:focus,
.partnership-form textarea:focus {
    border-color: #d90012;
    box-shadow: 0 0 0 4px rgba(217, 0, 18, 0.08);
}

.partnership-form textarea {
    resize: vertical;
}

.partnership-submit-btn {
    width: 100%;
    margin-top: 6px;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    background: #d90012;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(217, 0, 18, 0.22);
    transition: all 0.3s ease;
}

.partnership-submit-btn:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

.partnership-form-note {
    color: #5a6380;
    font-size: 13.5px;
    line-height: 1.6;
    text-align: center;
    margin-top: 16px;
}

.partnership-enquiry-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.partnership-enquiry-shape.shape-one {
    width: 260px;
    height: 260px;
    background: rgba(217, 0, 18, 0.07);
    top: 70px;
    left: -110px;
}

.partnership-enquiry-shape.shape-two {
    width: 340px;
    height: 340px;
    background: rgba(7, 27, 77, 0.06);
    right: -140px;
    bottom: -120px;
}

@media (max-width: 1000px) {
    .partnership-enquiry-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .partnership-enquiry-content {
        text-align: center;
    }

    .enquiry-info-item {
        text-align: left;
    }
}

@media (max-width: 850px) {
    .partnership-enquiry {
        padding: 80px 6%;
    }
}

@media (max-width: 650px) {
    .partnership-enquiry {
        padding: 65px 5%;
    }

    .partnership-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .partnership-enquiry-form-card {
        padding: 30px 22px;
    }

    .enquiry-info-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .enquiry-info-icon {
        margin: 0 auto;
    }

    .partnership-enquiry-content p,
    .enquiry-info-item p,
    .partnership-form-note {
        font-size: 15px;
    }
}

/* ================================
   PARTNERSHIP PAGE - FAQ SECTION
================================ */

.partnership-faq-section {
    position: relative;
    padding: 100px 7%;
    background: #ffffff;
    overflow: hidden;
}

.partnership-faq-section::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    top: 80px;
    left: -150px;
    border-radius: 50%;
    background: rgba(7, 27, 77, 0.06);
}

.partnership-faq-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    bottom: 90px;
    border-radius: 50%;
    background: rgba(217, 0, 18, 0.06);
}

.partnership-faq-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partnership-faq-header {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
}

.partnership-faq-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-faq-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.partnership-faq-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
}

.partnership-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.partnership-faq-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    overflow: hidden;
    transition: all 0.3s ease;
}

.partnership-faq-item:hover {
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.13);
}

.partnership-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.partnership-faq-item summary::-webkit-details-marker {
    display: none;
}

.partnership-faq-item summary span {
    color: #071b4d;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 900;
}

.partnership-faq-item summary i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50%;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    transition: all 0.3s ease;
}

.partnership-faq-item[open] summary i {
    background: #d90012;
    color: #ffffff;
    transform: rotate(45deg);
}

.partnership-faq-item p {
    padding: 0 26px 26px;
    color: #3d4966;
    font-size: 15.5px;
    line-height: 1.85;
    margin: 0;
}

.partnership-faq-item[open] {
    border-color: rgba(217, 0, 18, 0.16);
}

.partnership-faq-cta {
    margin-top: 42px;
    padding: 32px 36px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(217, 0, 18, 0.25), transparent 30%),
        linear-gradient(135deg, #071b4d 0%, #092765 62%, #d90012 145%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.18);
}

.partnership-faq-cta h3 {
    color: #ffffff;
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 8px;
    font-weight: 900;
}

.partnership-faq-cta p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 15.5px;
    line-height: 1.75;
    max-width: 620px;
}

.partnership-faq-cta a {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    background: #ffffff;
    color: #d90012;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
    transition: all 0.3s ease;
}

.partnership-faq-cta a:hover {
    transform: translateY(-3px);
    background: #f7fbff;
}

@media (max-width: 850px) {
    .partnership-faq-section {
        padding: 80px 6%;
    }

    .partnership-faq-cta {
        flex-direction: column;
        text-align: center;
    }

    .partnership-faq-cta a {
        width: 100%;
    }
}

@media (max-width: 650px) {
    .partnership-faq-section {
        padding: 65px 5%;
    }

    .partnership-faq-item summary {
        padding: 22px 22px;
    }

    .partnership-faq-item p {
        padding: 0 22px 24px;
    }

    .partnership-faq-cta {
        padding: 30px 24px;
    }

    .partnership-faq-header p,
    .partnership-faq-item p,
    .partnership-faq-cta p {
        font-size: 15px;
    }

    .partnership-faq-item summary span {
        font-size: 16px;
    }

    .partnership-faq-cta h3 {
        font-size: 22px;
    }
}

/* ================================
   PARTNERSHIP PAGE - FINAL CTA
================================ */

.partnership-final-cta {
    position: relative;
    padding: 110px 7%;
    background: linear-gradient(135deg, #071b4d 0%, #092765 55%, #d90012 135%);
    overflow: hidden;
    text-align: center;
}

.partnership-final-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.partnership-final-cta .section-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.partnership-final-cta h2 {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.12;
    margin-bottom: 22px;
    font-weight: 900;
}

.partnership-final-cta p {
    max-width: 740px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.85;
}

.partnership-final-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.partnership-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partnership-final-btn.primary {
    background: #ffffff;
    color: #071b4d;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.partnership-final-btn.primary:hover {
    transform: translateY(-3px);
    background: #f4f7ff;
}

.partnership-final-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.partnership-final-btn.secondary:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #071b4d;
}

.partnership-final-note {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 50px;
    font-size: 14px;
    line-height: 1.5;
}

.partnership-final-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.partnership-final-shape.shape-one {
    width: 270px;
    height: 270px;
    background: rgba(255, 255, 255, 0.08);
    top: -105px;
    left: -95px;
}

.partnership-final-shape.shape-two {
    width: 380px;
    height: 380px;
    background: rgba(217, 0, 18, 0.18);
    right: -150px;
    bottom: -160px;
}

@media (max-width: 700px) {
    .partnership-final-cta {
        padding: 85px 6%;
    }

    .partnership-final-cta p {
        font-size: 15px;
    }

    .partnership-final-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .partnership-final-cta {
        padding: 72px 5%;
    }

    .partnership-final-note {
        border-radius: 16px;
        line-height: 1.55;
    }
}

/* ================================
   CONTACT PAGE - HERO SECTION
================================ */

.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 7% 90px;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.08), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 48%, #eef5ff 100%);
}

.contact-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.contact-hero-content .section-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 16px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-hero-content h1 {
    color: #071b4d;
    font-size: clamp(38px, 5vw, 66px);
    line-height: 1.06;
    margin-bottom: 22px;
    font-weight: 900;
}

.contact-hero-content h1 span {
    color: #d90012;
}

.contact-hero-content p {
    max-width: 590px;
    color: #34405f;
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 34px;
}

.contact-hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.contact-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-hero-btn.primary {
    background: #d90012;
    color: #ffffff;
    box-shadow: 0 12px 25px rgba(217, 0, 18, 0.22);
}

.contact-hero-btn.primary:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

.contact-hero-btn.secondary {
    border: 2px solid #071b4d;
    color: #071b4d;
    background: #ffffff;
}

.contact-hero-btn.secondary:hover {
    background: #071b4d;
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-hero-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    max-width: 650px;
}

.contact-badge {
    background: #ffffff;
    border: 1px solid rgba(7, 27, 77, 0.08);
    border-radius: 14px;
    padding: 16px 14px;
    box-shadow: 0 12px 30px rgba(7, 27, 77, 0.08);
}

.contact-badge strong {
    display: block;
    color: #071b4d;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 4px;
}

.contact-badge span {
    color: #5a6380;
    font-size: 12.5px;
    font-weight: 600;
}

.contact-hero-image {
    position: relative;
}

.contact-hero-image img {
    width: 100%;
    min-height: 560px;
    object-fit: cover;
    display: block;
    border-radius: 26px;
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.18);
    position: relative;
    z-index: 2;
}

.contact-hero-image::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    right: -18px;
    bottom: -18px;
    border-radius: 26px;
    background: linear-gradient(135deg, #071b4d, #d90012);
    z-index: 1;
    opacity: 0.16;
}

.contact-hero-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero-shape.shape-one {
    width: 230px;
    height: 230px;
    background: rgba(217, 0, 18, 0.08);
    top: 80px;
    left: -90px;
}

.contact-hero-shape.shape-two {
    width: 330px;
    height: 330px;
    background: rgba(7, 27, 77, 0.07);
    right: -130px;
    bottom: -130px;
}

@media (max-width: 950px) {
    .contact-hero {
        padding: 115px 6% 75px;
    }

    .contact-hero-container {
        grid-template-columns: 1fr;
        gap: 45px;
        text-align: center;
    }

    .contact-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-buttons {
        justify-content: center;
    }

    .contact-hero-badges {
        margin: 0 auto;
    }

    .contact-hero-image img {
        min-height: auto;
    }
}

@media (max-width: 700px) {
    .contact-hero-badges {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .contact-hero {
        padding: 100px 5% 65px;
    }

    .contact-hero-content h1 {
        font-size: 36px;
    }

    .contact-hero-content p {
        font-size: 15px;
    }

    .contact-hero-btn {
        width: 100%;
    }
}

/* ================================
   CONTACT PAGE - QUICK CONTACT CARDS
================================ */

.contact-quick-cards {
    position: relative;
    padding: 95px 7%;
    background: #ffffff;
    overflow: hidden;
}

.contact-quick-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-quick-header {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
}

.contact-quick-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-quick-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.contact-quick-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
}

.contact-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-quick-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-quick-card::before {
    content: "";
    position: absolute;
    width: 115px;
    height: 115px;
    right: -58px;
    top: -58px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.contact-quick-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.contact-quick-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    font-size: 31px;
    position: relative;
    z-index: 2;
}

.contact-quick-card h3 {
    color: #071b4d;
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 13px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.contact-quick-card p {
    color: #3d4966;
    font-size: 14.7px;
    line-height: 1.75;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.contact-quick-card strong {
    display: block;
    color: #071b4d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 22px;
    font-weight: 900;
    position: relative;
    z-index: 2;
    word-break: break-word;
}

.contact-quick-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    background: #d90012;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(217, 0, 18, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-quick-card a:hover {
    background: #b8000f;
    transform: translateY(-3px);
}

@media (max-width: 1050px) {
    .contact-quick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .contact-quick-cards {
        padding: 75px 6%;
    }
}

@media (max-width: 620px) {
    .contact-quick-cards {
        padding: 60px 5%;
    }

    .contact-quick-grid {
        grid-template-columns: 1fr;
    }

    .contact-quick-header p,
    .contact-quick-card p {
        font-size: 15px;
    }

    .contact-quick-card {
        padding: 30px 22px;
    }

    .contact-quick-card a {
        width: 100%;
    }
}

/* ================================
   CONTACT PAGE - MAIN CONTACT FORM
================================ */

.contact-message-section {
    position: relative;
    padding: 100px 7%;
    background:
        radial-gradient(circle at top right, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 52%, #eef5ff 100%);
    overflow: hidden;
}

.contact-message-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-message-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-message-content h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 900;
}

.contact-message-content p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.contact-support-list {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.contact-support-item {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(7, 27, 77, 0.07);
    box-shadow: 0 14px 36px rgba(7, 27, 77, 0.08);
    transition: all 0.3s ease;
}

.contact-support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.13);
}

.contact-support-icon {
    width: 58px;
    height: 58px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.contact-support-item h3 {
    color: #071b4d;
    font-size: 19px;
    margin-bottom: 7px;
    font-weight: 900;
}

.contact-support-item p {
    color: #3d4966;
    font-size: 14.7px;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-form-card {
    background: #ffffff;
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 24px 65px rgba(7, 27, 77, 0.13);
    border: 1px solid rgba(7, 27, 77, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    top: -85px;
    right: -85px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.contact-form {
    position: relative;
    z-index: 2;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
}

.contact-form label {
    color: #071b4d;
    font-size: 14px;
    font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(7, 27, 77, 0.16);
    border-radius: 10px;
    color: #071b4d;
    font-size: 15px;
    outline: none;
    background: #ffffff;
    transition: all 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #d90012;
    box-shadow: 0 0 0 4px rgba(217, 0, 18, 0.08);
}

.contact-form textarea {
    resize: vertical;
}

.contact-submit-btn {
    width: 100%;
    margin-top: 6px;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    background: #d90012;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(217, 0, 18, 0.22);
    transition: all 0.3s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

.contact-form-note {
    color: #5a6380;
    font-size: 13.5px;
    line-height: 1.6;
    text-align: center;
    margin-top: 16px;
}

.contact-message-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-message-shape.shape-one {
    width: 260px;
    height: 260px;
    background: rgba(217, 0, 18, 0.07);
    top: 70px;
    left: -110px;
}

.contact-message-shape.shape-two {
    width: 340px;
    height: 340px;
    background: rgba(7, 27, 77, 0.06);
    right: -140px;
    bottom: -120px;
}

@media (max-width: 1000px) {
    .contact-message-container {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .contact-message-content {
        text-align: center;
    }

    .contact-support-item {
        text-align: left;
    }
}

@media (max-width: 850px) {
    .contact-message-section {
        padding: 80px 6%;
    }
}

@media (max-width: 650px) {
    .contact-message-section {
        padding: 65px 5%;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-card {
        padding: 30px 22px;
    }

    .contact-support-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-support-icon {
        margin: 0 auto;
    }

    .contact-message-content p,
    .contact-support-item p,
    .contact-form-note {
        font-size: 15px;
    }
}

/* Contact Form Alert */
.contact-form-alert {
    grid-column: span 2;
    padding: 16px 18px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.6;
    margin-bottom: -25px;
}

.contact-form-alert.success {
    background: rgba(20, 160, 90, 0.1);
    color: #107a45;
    border: 1px solid rgba(20, 160, 90, 0.18);
}

.contact-form-alert.error {
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border: 1px solid rgba(217, 0, 18, 0.18);
}

@media (max-width: 1000px) {
    .contact-form-alert {
        grid-column: auto;
        margin-bottom: 0;
    }
}

/* ================================
   CONTACT PAGE - LOCATION MAP
================================ */

.contact-location {
    position: relative;
    padding: 100px 7%;
    background: #ffffff;
    overflow: hidden;
}

.contact-location::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    left: -150px;
    top: 90px;
    border-radius: 50%;
    background: rgba(7, 27, 77, 0.06);
}

.contact-location::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    bottom: 90px;
    border-radius: 50%;
    background: rgba(217, 0, 18, 0.06);
}

.contact-location-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 55px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-location-content .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-location-content h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 900;
}

.contact-location-content p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 16px;
}

.contact-location-details {
    display: grid;
    gap: 18px;
    margin-top: 34px;
}

.location-detail-card {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 18px;
    align-items: flex-start;
    background: #ffffff;
    border-radius: 18px;
    padding: 22px;
    border: 1px solid rgba(7, 27, 77, 0.07);
    box-shadow: 0 14px 36px rgba(7, 27, 77, 0.08);
    transition: all 0.3s ease;
}

.location-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.13);
}

.location-detail-icon {
    width: 58px;
    height: 58px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

.location-detail-card h3 {
    color: #071b4d;
    font-size: 19px;
    margin-bottom: 7px;
    font-weight: 900;
}

.location-detail-card p {
    color: #3d4966;
    font-size: 14.7px;
    line-height: 1.7;
    margin-bottom: 0;
}

.contact-location-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.location-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 24px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-btn.primary {
    background: #d90012;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(217, 0, 18, 0.22);
}

.location-btn.primary:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

.location-btn.secondary {
    background: #ffffff;
    color: #071b4d;
    border: 2px solid #071b4d;
}

.location-btn.secondary:hover {
    transform: translateY(-3px);
    background: #071b4d;
    color: #ffffff;
}

.contact-location-map {
    position: relative;
    min-height: 560px;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.17);
}

.contact-location-map::before {
    content: "";
    position: absolute;
    width: 88%;
    height: 88%;
    right: -18px;
    bottom: -18px;
    border-radius: 26px;
    background: linear-gradient(135deg, #071b4d, #d90012);
    z-index: -1;
    opacity: 0.16;
}

.contact-location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 560px;
    border: none;
    display: block;
    filter: grayscale(8%);
}

@media (max-width: 1000px) {
    .contact-location-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-location-content {
        text-align: center;
    }

    .location-detail-card {
        text-align: left;
    }

    .contact-location-buttons {
        justify-content: center;
    }

    .contact-location-map,
    .contact-location-map iframe {
        min-height: 420px;
    }
}

@media (max-width: 850px) {
    .contact-location {
        padding: 80px 6%;
    }
}

@media (max-width: 650px) {
    .contact-location {
        padding: 65px 5%;
    }

    .location-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 26px 22px;
    }

    .location-detail-icon {
        margin: 0 auto;
    }

    .contact-location-content p,
    .location-detail-card p {
        font-size: 15px;
    }

    .location-btn {
        width: 100%;
    }

    .contact-location-map,
    .contact-location-map iframe {
        min-height: 360px;
    }
}

/* ================================
   CONTACT PAGE - HELP SECTION
================================ */

.contact-help-section {
    position: relative;
    padding: 100px 7%;
    background:
        radial-gradient(circle at top left, rgba(217, 0, 18, 0.07), transparent 34%),
        linear-gradient(135deg, #f7fbff 0%, #ffffff 55%, #eef5ff 100%);
    overflow: hidden;
}

.contact-help-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-help-header {
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-help-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-help-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.contact-help-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
}

.contact-help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-help-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 26px 32px;
    text-align: center;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    transition: all 0.3s ease;
    overflow: hidden;
}

.contact-help-card::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    right: -60px;
    top: -60px;
    background: rgba(217, 0, 18, 0.07);
    border-radius: 50%;
}

.contact-help-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 60px rgba(7, 27, 77, 0.14);
}

.contact-help-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 20px;
    font-size: 33px;
    position: relative;
    z-index: 2;
}

.contact-help-card h3 {
    color: #071b4d;
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 14px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.contact-help-card p {
    color: #3d4966;
    font-size: 14.8px;
    line-height: 1.78;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.contact-help-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    background: #d90012;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(217, 0, 18, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-help-card a:hover {
    background: #b8000f;
    transform: translateY(-3px);
}

@media (max-width: 1050px) {
    .contact-help-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .contact-help-section {
        padding: 80px 6%;
    }
}

@media (max-width: 650px) {
    .contact-help-section {
        padding: 65px 5%;
    }

    .contact-help-grid {
        grid-template-columns: 1fr;
    }

    .contact-help-header p,
    .contact-help-card p {
        font-size: 15px;
    }

    .contact-help-card {
        padding: 32px 24px;
    }

    .contact-help-card a {
        width: 100%;
    }
}

/* ================================
   CONTACT PAGE - CONTACT CHANNELS
================================ */

.contact-channels-section {
    position: relative;
    padding: 100px 7%;
    background: linear-gradient(135deg, #071b4d 0%, #092765 52%, #d90012 138%);
    overflow: hidden;
}

.contact-channels-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-channels-header {
    max-width: 860px;
    margin: 0 auto 55px;
    text-align: center;
}

.contact-channels-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-channels-header h2 {
    color: #ffffff;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.contact-channels-header p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 16px;
    line-height: 1.85;
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-channel-card {
    position: relative;
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 26px 32px;
    text-align: center;
    box-shadow: 0 20px 55px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-channel-card::before {
    content: "";
    position: absolute;
    width: 125px;
    height: 125px;
    right: -62px;
    top: -62px;
    background: rgba(217, 0, 18, 0.08);
    border-radius: 50%;
}

.contact-channel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.channel-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 20px;
    font-size: 33px;
    position: relative;
    z-index: 2;
}

.contact-channel-card h3 {
    color: #071b4d;
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 14px;
    font-weight: 900;
    position: relative;
    z-index: 2;
}

.contact-channel-card p {
    color: #3d4966;
    font-size: 14.8px;
    line-height: 1.78;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-channel-card strong {
    display: block;
    color: #071b4d;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 22px;
    font-weight: 900;
    position: relative;
    z-index: 2;
    word-break: break-word;
}

.contact-channel-card a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 20px;
    background: #d90012;
    color: #ffffff;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 12px 26px rgba(217, 0, 18, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-channel-card a:hover {
    background: #b8000f;
    transform: translateY(-3px);
}

.contact-channels-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-channels-shape.shape-one {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.07);
    top: -110px;
    left: -100px;
}

.contact-channels-shape.shape-two {
    width: 380px;
    height: 380px;
    background: rgba(217, 0, 18, 0.18);
    right: -160px;
    bottom: -170px;
}

@media (max-width: 1050px) {
    .contact-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 850px) {
    .contact-channels-section {
        padding: 80px 6%;
    }
}

@media (max-width: 650px) {
    .contact-channels-section {
        padding: 65px 5%;
    }

    .contact-channels-grid {
        grid-template-columns: 1fr;
    }

    .contact-channels-header p,
    .contact-channel-card p {
        font-size: 15px;
    }

    .contact-channel-card {
        padding: 32px 24px;
    }

    .contact-channel-card a {
        width: 100%;
    }
}

/* ================================
   CONTACT PAGE - FAQ SECTION
================================ */

.contact-faq-section {
    position: relative;
    padding: 100px 7%;
    background: #ffffff;
    overflow: hidden;
}

.contact-faq-section::before {
    content: "";
    position: absolute;
    width: 330px;
    height: 330px;
    top: 80px;
    left: -150px;
    border-radius: 50%;
    background: rgba(7, 27, 77, 0.06);
}

.contact-faq-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -130px;
    bottom: 90px;
    border-radius: 50%;
    background: rgba(217, 0, 18, 0.06);
}

.contact-faq-container {
    max-width: 950px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-faq-header {
    max-width: 820px;
    margin: 0 auto 52px;
    text-align: center;
}

.contact-faq-header .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-faq-header h2 {
    color: #071b4d;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin-bottom: 18px;
    font-weight: 900;
}

.contact-faq-header p {
    color: #3d4966;
    font-size: 16px;
    line-height: 1.85;
}

.contact-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-faq-item {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 16px 42px rgba(7, 27, 77, 0.08);
    border: 1px solid rgba(7, 27, 77, 0.07);
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-faq-item:hover {
    box-shadow: 0 22px 55px rgba(7, 27, 77, 0.13);
}

.contact-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.contact-faq-item summary::-webkit-details-marker {
    display: none;
}

.contact-faq-item summary span {
    color: #071b4d;
    font-size: 17px;
    line-height: 1.4;
    font-weight: 900;
}

.contact-faq-item summary i {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50%;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-faq-item[open] summary i {
    background: #d90012;
    color: #ffffff;
    transform: rotate(45deg);
}

.contact-faq-item p {
    padding: 0 26px 26px;
    color: #3d4966;
    font-size: 15.5px;
    line-height: 1.85;
    margin: 0;
}

.contact-faq-item[open] {
    border-color: rgba(217, 0, 18, 0.16);
}

@media (max-width: 850px) {
    .contact-faq-section {
        padding: 80px 6%;
    }
}

@media (max-width: 650px) {
    .contact-faq-section {
        padding: 65px 5%;
    }

    .contact-faq-item summary {
        padding: 22px 22px;
    }

    .contact-faq-item p {
        padding: 0 22px 24px;
    }

    .contact-faq-header p,
    .contact-faq-item p {
        font-size: 15px;
    }

    .contact-faq-item summary span {
        font-size: 16px;
    }
}

/* ================================
   CONTACT PAGE - FINAL CTA
================================ */

.contact-final-cta {
    position: relative;
    padding: 110px 7%;
    background: linear-gradient(135deg, #071b4d 0%, #092765 55%, #d90012 135%);
    overflow: hidden;
    text-align: center;
}

.contact-final-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-final-cta .section-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.contact-final-cta h2 {
    color: #ffffff;
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.12;
    margin-bottom: 22px;
    font-weight: 900;
}

.contact-final-cta p {
    max-width: 740px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 17px;
    line-height: 1.85;
}

.contact-final-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.contact-final-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-final-btn.primary {
    background: #ffffff;
    color: #071b4d;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
}

.contact-final-btn.primary:hover {
    transform: translateY(-3px);
    background: #f4f7ff;
}

.contact-final-btn.secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.contact-final-btn.secondary:hover {
    transform: translateY(-3px);
    background: #ffffff;
    color: #071b4d;
}

.contact-final-note {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.82);
    border-radius: 50px;
    font-size: 14px;
    line-height: 1.5;
}

.contact-final-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.contact-final-shape.shape-one {
    width: 270px;
    height: 270px;
    background: rgba(255, 255, 255, 0.08);
    top: -105px;
    left: -95px;
}

.contact-final-shape.shape-two {
    width: 380px;
    height: 380px;
    background: rgba(217, 0, 18, 0.18);
    right: -150px;
    bottom: -160px;
}

@media (max-width: 700px) {
    .contact-final-cta {
        padding: 85px 6%;
    }

    .contact-final-cta p {
        font-size: 15px;
    }

    .contact-final-btn {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .contact-final-cta {
        padding: 72px 5%;
    }

    .contact-final-note {
        border-radius: 16px;
        line-height: 1.55;
    }
}
/* ================================
   ADMISSION MODAL
================================ */

body.modal-open {
    overflow: hidden;
}

.admission-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.admission-modal.active {
    display: flex;
}

.admission-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 27, 77, 0.72);
    backdrop-filter: blur(6px);
}

.admission-modal-box {
    position: relative;
    width: 100%;
    max-width: 760px;
    max-height: 92vh;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 24px;
    padding: 38px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
    z-index: 2;
    animation: admissionModalPop 0.28s ease;
}

@keyframes admissionModalPop {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.admission-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.admission-modal-close:hover {
    background: #d90012;
    color: #ffffff;
}

.admission-modal-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 30px;
}

.admission-modal-header .section-tag {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 15px;
    background: rgba(217, 0, 18, 0.08);
    color: #d90012;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.admission-modal-header h2 {
    color: #071b4d;
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.15;
    margin-bottom: 12px;
    font-weight: 900;
}

.admission-modal-header p {
    color: #3d4966;
    font-size: 15.5px;
    line-height: 1.7;
}

.admission-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #071b4d;
    font-size: 14px;
    font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid rgba(7, 27, 77, 0.16);
    border-radius: 10px;
    color: #071b4d;
    font-size: 15px;
    outline: none;
    background: #ffffff;
    transition: all 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #d90012;
    box-shadow: 0 0 0 4px rgba(217, 0, 18, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.admission-submit-btn {
    margin-top: 8px;
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 10px;
    background: #d90012;
    color: #ffffff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(217, 0, 18, 0.22);
    transition: all 0.3s ease;
}

.admission-submit-btn:hover {
    transform: translateY(-3px);
    background: #b8000f;
}

@media (max-width: 700px) {
    .admission-modal {
        padding: 16px;
    }

    .admission-modal-box {
        padding: 34px 22px 26px;
        border-radius: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

.trust-strip {
    background: var(--white);
    padding: 25px 20px;
    border-bottom: 1px solid var(--border-color);
}

.trust-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.trust-item {
    padding: 10px;
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 45px;
    height: 45px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A1941;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    fill: #B99240;
}

.trust-item h3 {
    font-size: 16px;
    color: #0A1941;
    margin: 5px 0;
    font-weight: 600;
}

.trust-item p {
    font-size: 13px;
    color: #666;
}

/* Responsive */
@media(max-width: 992px) {
    .trust-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media(max-width: 576px) {
    .trust-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.about-sobay {
    position: relative;
    padding: 80px 20px;
    background: #f8f9fb;
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-content h2 {
    font-size: 32px;
    color: #0A1941;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 15px;
}

.about-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 25px;
    background: var(--red);
    color: var(--white);
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.about-btn:hover {
    background: #b71c1c;
}

.about-blur {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #B99240;
    opacity: 0.15;
    filter: blur(80px);
    top: -50px;
    right: -50px;
    border-radius: 50%;
}

@media(max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: 2;
    }

    .about-content {
        order: 1;
    }
}

.benefits {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.benefit-item {
    background: var(--white);
    color: var(--blue);
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.benefit-item::before {content: '\2714'; color: var(--red); font-weight: bold;}

.hero .cta-hero {
    display: inline-block;
    margin-top: 15px;
    background: var(--red);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}
.hero .cta-hero:hover {background: #b71c1c;}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    color: var(--white);
    cursor: pointer;
}
.close-btn:hover {
    color: var(--yellow);
}

@media(max-width:900px){
    nav ul {display:none;}
    .hamburger {display:flex;}
    .hero {padding: 120px 20px 50px 20px; text-align:center;}
    .hero h1{font-size:2.2rem;}
    .hero h2{font-size:1.4rem;}
    .benefits{justify-content:center;}
}

@media (max-width: 520px) {
    header {
        position: sticky;
    }

    .navbar {
        flex-wrap: nowrap;
        gap: 8px;
        padding: 10px 12px;
        align-items: center;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo img {
        height: 60px;
        max-width: none;
        width: auto;
    }

    .nav-right {
        width: auto;
        margin-left: auto;
        gap: 6px;
        justify-content: flex-end;
        align-items: center;
        flex-wrap: nowrap;
        flex: 0 0 auto;
    }

    .dark-mode-toggle {
        display: none;
    }

    .cta-btn {
        padding: 7px 10px;
        font-size: 0.76rem;
        line-height: 1;
        white-space: nowrap;
        flex: 0 0 auto;
    }

    .hamburger {
        flex: 0 0 auto;
        margin-left: 2px;
    }
}

@media (max-width: 360px) {
    .navbar {
        padding: 8px 10px;
        gap: 6px;
    }

    .logo img {
        height: 60px;
        max-width: none;
    }

    .cta-btn {
        padding: 6px 8px;
        font-size: 0.7rem;
    }
}

.why-sobay {
    padding: 80px 20px;
    background: #f5f7fa;
    text-align: center;
}
.why-sobay h2 {
    font-size: 2.5rem;
    color: #0F2043;
    margin-bottom: 15px;
}
.why-sobay p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 50px;
}
.benefit-cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}
.benefit-cards .card {
    background: var(--white);
    border-radius: 12px;
    padding: 30px 20px;
    flex: 1 1 220px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.benefit-cards img {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}
.benefit-cards h3 {
    font-size: 1.3rem;
    color: #C62828;
    margin-bottom: 12px;
}
.benefit-cards p {
    font-size: 1rem;
    color: #555;
    line-height: 1.5;
}

@media(max-width:900px){
    .benefit-cards {
        flex-direction: column;
        align-items: center;
    }
}

.programs-modern {
    position: relative;
    padding: 110px 20px;
    background:
        linear-gradient(135deg, rgba(15, 32, 67, 0.96), rgba(198, 40, 40, 0.92)),
        radial-gradient(circle at top left, rgba(255, 214, 0, 0.25), transparent 35%);
    overflow: hidden;
}

.programs-modern::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 42px 42px;
    opacity: 0.55;
    pointer-events: none;
}

.programs-bg-shape {
    position: absolute;
    border-radius: 999px;
    pointer-events: none;
    opacity: 0.22;
    filter: blur(10px);
}

.shape-one {
    width: 280px;
    height: 280px;
    background: #FFD600;
    top: 80px;
    right: -120px;
}

.shape-two {
    width: 220px;
    height: 220px;
    background: var(--white);
    bottom: 100px;
    left: -120px;
}

.programs-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
}

.programs-header {
    max-width: 780px;
    margin: 0 auto 80px;
    text-align: center;
    color: #ffffff;
}

.section-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.programs-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    margin-bottom: 22px;
    font-weight: 800;
}

.programs-header p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.86);
}

.programs-list {
    display: flex;
    flex-direction: column;
    gap: 70px;
}

.program-row {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 56px;
    padding: 36px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.program-row.reverse {
    grid-template-columns: 1.05fr 0.95fr;
}

.program-row.reverse .program-image {
    order: 2;
}

.program-row.reverse .program-content {
    order: 1;
}

.program-image {
    position: relative;
    min-height: 360px;
    border-radius: 28px;
    overflow: hidden;
    background: #f3f5f9;
}

.program-image::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 2px dashed rgba(255, 255, 255, 0.55);
    border-radius: 22px;
    pointer-events: none;
}

.program-image img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.program-row:hover .program-image img {
    transform: scale(1.045);
}

.program-content {
    padding: 18px 4px;
}

.program-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    margin-bottom: 24px;
    border-radius: 18px;
    background: #0F2043;
    color: #ffffff;
    font-weight: 800;
    font-size: 1rem;
}

.program-content h3 {
    color: #0F2043;
    font-size: clamp(1.7rem, 3vw, 2.35rem);
    line-height: 1.2;
    margin-bottom: 18px;
}

.program-content p {
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 26px;
}

.program-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 32px;
}

.program-meta span {
    display: inline-block;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(198, 40, 40, 0.08);
    color: #C62828;
    font-size: 0.88rem;
    font-weight: 700;
}

.program-btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    background: #C62828;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.program-btn:hover {
    background: #0F2043;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(15, 32, 67, 0.25);
}

@media (max-width: 980px) {
    .programs-modern {
        padding: 85px 18px;
    }

    .programs-header {
        margin-bottom: 55px;
    }

    .program-row,
    .program-row.reverse {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 24px;
        border-radius: 26px;
    }

    .program-row.reverse .program-image,
    .program-row.reverse .program-content {
        order: initial;
    }

    .program-image,
    .program-image img {
        min-height: 280px;
    }

    .program-content {
        padding: 6px 2px 10px;
    }
}

.journey-premium {
    padding: 100px 20px;
    background: var(--white);
    text-align: center;
    position: relative;
}

.journey-premium .journey-header h2 {
    font-size: 36px;
    color: #0A1941;
    margin-bottom: 10px;
    font-weight: 700;
}

.journey-premium .journey-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto 60px;
}

.journey-track {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    position: relative;
}

.journey-track::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, #B99240, #0A1941, #B99240);
    z-index: 0;
}

.journey-node {
    background: #fff;
    padding: 25px 20px;
    width: 23%;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.journey-node:hover {
    transform: translateY(-8px);
}

.node-number {
    width: 55px;
    height: 55px;
    background: #B99240;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
    font-weight: bold;
    box-shadow: 0 8px 20px rgba(185, 146, 64, 0.3);
}

.journey-node h3 {
    color: #0A1941;
    margin-bottom: 10px;
    font-size: 18px;
}

.journey-node p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

@media(max-width: 992px) {
    .journey-track {
        flex-direction: column;
        gap: 40px;
    }

    .journey-track::before {
        display: none;
    }

    .journey-node {
        width: 100%;
    }
}

.proprietor-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fb, #ffffff);
    position: relative;
}

/* container */
.proprietor-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

/* image */
.proprietor-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(15, 32, 67, 0.15);
    border: 3px solid rgba(185, 146, 64, 0.25);
    transition: transform 0.4s ease;
}

.proprietor-image img:hover {
    transform: scale(1.03);
}

/* text */
.proprietor-content .section-tag {
    display: inline-block;
    background: rgba(185, 146, 64, 0.12);
    color: #B99240;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.proprietor-content h2 {
    font-size: 32px;
    color: #0A1941;
    margin-bottom: 18px;
}

.proprietor-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* quote box */
.proprietor-quote {
    margin-top: 20px;
    padding: 18px 20px;
    background: #0A1941;
    color: #fff;
    border-left: 4px solid #B99240;
    font-style: italic;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* signature */
.proprietor-signature {
    margin-top: 15px;
    font-weight: 600;
    color: #B99240;
}

/* responsive */
@media(max-width: 992px) {
    .proprietor-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .proprietor-quote {
        text-align: left;
    }
}


.partners-section {
    padding: 90px 20px;
    background: #fff;
    text-align: left;
}

.partners-header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.partners-header h2 {
    font-size: 32px;
    color: #0A1941;
}

.partners-header p {
    color: #666;
    margin-bottom: 30px;
}

.partners-grid {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    justify-content: space-between;
}

.partner-marquee {
    flex: 2 1 580px;
    min-width: 320px;
    min-height: 260px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.partner-cta-box {
    flex: 1 1 320px;
    min-width: 280px;
    background: #f8f9fb;
    border-radius: 18px;
    padding: 30px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.partner-cta-box h3 {
    font-size: 1.9rem;
    color: #0F2043;
    margin-bottom: 16px;
}

.partner-cta-box p {
    color: #444;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 20px;
}

.partner-cta-box .cta-primary {
    display: inline-block;
    background: #C62828;
    color: #ffffff;
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: background 0.3s ease, transform 0.3s ease;
}

.partner-cta-box .cta-primary:hover {
    background: #981b1b;
    transform: translateY(-2px);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 22s linear infinite;
    align-items: center;
    padding: 20px 0;
    height: 100%;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

.partner-logo {
    position: relative;
    background: #ffffff;
    padding: 40px 45px;
    border-radius: 16px;
    filter: grayscale(100%);
    opacity: 0.75;
    transition: 0.3s ease;
    min-width: 320px;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    height: fit-content;
}

.partner-logo img {
    height: 160px;
    object-fit: contain;
    max-width: 100%;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px);
}

.partner-logo::after {
    content: attr(data-name);
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translateX(-50%);
    background: rgba(15, 32, 67, 0.95);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.85rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.partner-logo:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(-8px);
}

@keyframes scrollMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.gallery-section {
    padding: 90px 20px;
    background: #f8f9fb;
    text-align: center;
}

.gallery-header h2 {
    font-size: 32px;
    color: #0A1941;
}

.gallery-header p {
    color: #666;
    margin-bottom: 40px;
}

.gallery-grid {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    height: 220px;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
    height: 460px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;
    background: linear-gradient(to top, rgba(10,25,65,0.8), transparent);
    color: #fff;
    opacity: 0;
    transition: 0.4s ease;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.overlay h3 {
    font-size: 14px;
    margin: 0;
}

@media(max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item.large {
        grid-column: span 2;
        height: 350px;
    }
}

@media(max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item.large {
        grid-column: span 1;
        height: 250px;
    }
}

.final-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, #0A1941, #08122b);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before,
.final-cta::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: #B99240;
    opacity: 0.15;
    filter: blur(80px);
    border-radius: 50%;
}

.final-cta::before {
    top: -50px;
    left: -50px;
}

.final-cta::after {
    bottom: -80px;
    right: -80px;
}

.cta-container {
    max-width: 800px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.cta-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #ffffff;
}

.cta-container p {
    color: #ddd;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cta-primary {
    background: #B99240;
    color: #fff;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-primary:hover {
    background: #8c751d;
}

.cta-secondary {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-secondary:hover {
    background: #fff;
    color: #0A1941;
}

.cta-note {
    margin-top: 20px;
    font-size: 13px;
    color: #bbb;
}

@media(max-width: 576px) {
    .cta-container h2 {
        font-size: 26px;
    }
}

.contact-section {
    padding: 90px 20px;
    background: #f8f9fb;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 40px;
}

.contact-info h2 {
    color: #0A1941;
    margin-bottom: 10px;
}

.contact-info p {
    color: #555;
    margin-bottom: 20px;
}

.info-box {
    margin-bottom: 15px;
}

.info-box h4 {
    color: #B99240;
    margin-bottom: 5px;
    font-size: 14px;
}

.info-box p {
    color: #444;
    font-size: 14px;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-form h2 {
    color: #0A1941;
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 10px;
}

input, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-family: inherit;
}

input:focus, textarea:focus {
    border-color: #B99240;
}

.contact-form button {
    width: 100%;
    padding: 12px;
    background: #B99240;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #8c751d;
}

.contact-extra h2 {
    color: #0A1941;
    margin-bottom: 10px;
}

.contact-extra ul {
    list-style: none;
    padding: 0;
}

.contact-extra ul li {
    background: #fff;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 6px;
    font-size: 13px;
    color: #444;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media(max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .programs-modern {
        padding: 70px 14px;
    }

    .programs-list {
        gap: 42px;
    }

    .program-row {
        padding: 18px;
    }

    .program-image,
    .program-image img {
        min-height: 230px;
        border-radius: 20px;
    }

    .program-image::after {
        inset: 12px;
        border-radius: 16px;
    }

    .program-number {
        width: 48px;
        height: 48px;
        border-radius: 15px;
        margin-bottom: 18px;
        font-size: 1rem;
    }

    .program-meta {
        gap: 8px;
    }

    .program-meta span {
        font-size: 0.78rem;
        padding: 8px 11px;
    }

    .program-btn {
        width: 100%;
        text-align: center;
    }
}

.media-hub {
    padding: 80px 20px;
    background: var(--white);
}

.media-header {
    text-align: center;
    margin-bottom: 30px;
}

.media-header h2 {
    font-size: 32px;
    color: #0A1941;
}

.media-header p {
    color: #666;
}

.media-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 18px;
    border: 1px solid #B99240;
    background: transparent;
    color: #0A1941;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    background: #B99240;
    color: #fff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.video-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card iframe {
    width: 100%;
    height: 250px;
    border: none;
}

.video-card p {
    padding: 12px;
    font-size: 14px;
    color: #444;
}

@media(max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.testimonials {
    padding: 100px 20px;
    background: #f9faff;
    position: relative;
}

.testimonials .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.testimonials .section-tag {
    display: inline-block;
    margin-bottom: 15px;
    padding: 6px 16px;
    background: rgba(198, 40, 40, 0.1);
    color: #C62828;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonials .section-header h2 {
    font-size: 2.3rem;
    color: #0F2043;
    margin-bottom: 12px;
}

.testimonials .section-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    flex: 1 1 300px;
    max-width: 350px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 220px;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.testimonial-card .testimonial-text {
    padding: 0;
    text-align: center;
}

.testimonial-card .testimonial-text p {
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card .testimonial-text span {
    display: block;
    font-size: 0.85rem;
    color: #C62828;
    font-weight: 700;
}

@media(max-width: 900px){
    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }

    .testimonial-card {
        max-width: 90%;
    }
}

.learning-journey {
    padding: 100px 20px;
    background: #fefefe;
    position: relative;
}

.learning-journey .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.learning-journey .section-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 6px 18px;
    background: rgba(15,32,67,0.08);
    color: #0F2043;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.learning-journey .section-header h2 {
    font-size: 2.3rem;
    margin-bottom: 15px;
    color: #0F2043;
}

.learning-journey .section-header p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.journey-steps {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: auto;
    position: relative;
}

.journey-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: start;
    gap: 30px;
    background: #f7f9fc;
    padding: 24px 28px;
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.journey-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #C62828;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.step-content h3 {
    font-size: 1.45rem;
    color: #0F2043;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.55;
}

@media(max-width:900px){
    .journey-step, .journey-step.reverse {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
        font-size: 1rem;
    }
}

.school-partnership {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #eef2f6, #dbe6f0);
}

.bg-gradient-shape {
    position: absolute;
    top: -60px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, #c8e6f5 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.partnership-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: auto;
}

.partnership-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.partnership-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.partnership-image:hover img {
    transform: scale(1.05);
}

.partnership-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.partnership-content .section-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(15,32,67,0.08);
    color: #0F2043;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.partnership-content h2 {
    font-size: 2.2rem;
    color: #0F2043;
    margin-bottom: 12px;
    font-weight: 800;
}

.partnership-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.partnership-content ul {
    margin: 16px 0 24px 0;
    padding-left: 20px;
    list-style-type: disc;
    color: #0F2043;
}

.partnership-content ul li {
    margin-bottom: 10px;
}

.partnership-content .cta-btn {
    background: #C62828;
    color: #fff;
    padding: 12px 28px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    width: max-content;
    transition: background 0.3s, transform 0.3s;
}

.partnership-content .cta-btn:hover {
    background: #0F2043;
    transform: translateY(-3px);
}

@media(max-width:900px){
    .partnership-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .partnership-image {
        max-height: 300px;
    }
}

.gallery-showcase {
    position: relative;
    padding: 120px 20px;
    background:
        radial-gradient(circle at top left, rgba(198, 40, 40, 0.08), transparent 32%),
        radial-gradient(circle at bottom right, rgba(15, 32, 67, 0.12), transparent 34%),
        linear-gradient(135deg, #fffaf3 0%, #f7fbff 52%, #ffffff 100%);
    overflow: hidden;
}

.gallery-showcase::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(15, 32, 67, 0.05);
    top: -160px;
    right: -120px;
    pointer-events: none;
}

.gallery-showcase::after {
    content: "123";
    position: absolute;
    left: 6%;
    bottom: 8%;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(198, 40, 40, 0.035);
    letter-spacing: -10px;
    pointer-events: none;
}

.gallery-container {
    position: relative;
    z-index: 2;
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}

.gallery-text {
    max-width: 500px;
}

.gallery-tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(198, 40, 40, 0.09);
    color: #C62828;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-text h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    line-height: 1.1;
    color: #0F2043;
    margin-bottom: 24px;
    font-weight: 900;
}

.gallery-text p {
    color: #536072;
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 34px;
}

.gallery-points {
    display: grid;
    gap: 16px;
    margin-bottom: 38px;
}

.gallery-points div {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(15, 32, 67, 0.08);
    box-shadow: 0 12px 30px rgba(15, 32, 67, 0.05);
}

.gallery-points strong {
    min-width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #0F2043;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.gallery-points span {
    color: #0F2043;
    font-weight: 700;
    line-height: 1.45;
}

.gallery-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 999px;
    background: #C62828;
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    box-shadow: 0 14px 28px rgba(198, 40, 40, 0.22);
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.gallery-btn:hover {
    background: #0F2043;
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(15, 32, 67, 0.22);
}

.gallery-stage {
    position: relative;
}

.gallery-frame {
    position: relative;
    min-height: 560px;
    border-radius: 42px;
    overflow: hidden;
    background: #0F2043;
    box-shadow: 0 30px 80px rgba(15, 32, 67, 0.24);
}

.gallery-frame::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    z-index: 3;
    pointer-events: none;
}

.gallery-frame img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
    transform: scale(1.01);
    transition: transform 0.9s ease, opacity 0.45s ease, filter 0.45s ease;
}

.gallery-frame img.is-switching {
    animation: softGalleryFlicker 0.72s ease both;
}

@keyframes softGalleryFlicker {
    0% {
        opacity: 0.45;
        filter: brightness(0.85) contrast(1.06) saturate(1.1);
        transform: scale(1.04);
    }

    28% {
        opacity: 0.92;
        filter: brightness(1.12) contrast(1.03);
    }

    52% {
        opacity: 0.64;
        filter: brightness(0.96) contrast(1.12);
    }

    100% {
        opacity: 1;
        filter: brightness(1) contrast(1);
        transform: scale(1.01);
    }
}

.gallery-overlay {
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 28px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(15, 32, 67, 0.86), rgba(198, 40, 40, 0.78));
    color: #ffffff;
    backdrop-filter: blur(10px);
    z-index: 4;
}

.gallery-overlay span {
    display: inline-block;
    margin-bottom: 10px;
    color: #FFD600;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.gallery-overlay h3 {
    font-size: clamp(1.25rem, 2.2vw, 1.85rem);
    line-height: 1.25;
    max-width: 560px;
}

.gallery-thumbnails {
    position: absolute;
    right: -26px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 16px;
    z-index: 5;
}

.gallery-thumb {
    width: 92px;
    height: 92px;
    padding: 5px;
    border: none;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 16px 35px rgba(15, 32, 67, 0.18);
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 19px;
    object-fit: cover;
    display: block;
}

.gallery-thumb:hover {
    transform: translateX(-5px) scale(1.03);
}

.gallery-thumb.active {
    background: #C62828;
    transform: translateX(-8px);
    box-shadow: 0 18px 38px rgba(198, 40, 40, 0.28);
}

@media (max-width: 1020px) {
    .gallery-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .gallery-text {
        max-width: 760px;
        text-align: center;
        margin: 0 auto;
    }

    .gallery-points {
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
    }

    .gallery-stage {
        max-width: 820px;
        width: 100%;
        margin: 0 auto;
    }

    .gallery-thumbnails {
        position: static;
        transform: none;
        display: flex;
        justify-content: center;
        margin-top: 20px;
        flex-wrap: wrap;
    }

    .gallery-thumb,
    .gallery-thumb.active,
    .gallery-thumb:hover {
        transform: none;
    }
}

@media (max-width: 600px) {
    .gallery-showcase {
        padding: 80px 14px;
    }

    .gallery-text h2 {
        font-size: 2rem;
    }

    .gallery-frame {
        min-height: 420px;
        border-radius: 28px;
    }

    .gallery-frame img {
        height: 420px;
    }

    .gallery-overlay {
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 18px;
        border-radius: 22px;
    }

    .gallery-thumb {
        width: 72px;
        height: 72px;
        border-radius: 18px;
    }

    .gallery-thumb img {
        border-radius: 14px;
    }

    .gallery-points div {
        text-align: left;
    }
}

@media (prefers-reduced-motion: reduce) {
    .gallery-frame img,
    .gallery-thumb,
    .gallery-btn {
        transition: none;
        animation: none;
    }

    .gallery-frame img.is-switching {
        animation: none;
    }
}

.contact-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #eef2f6, #ffffff);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1180px;
    margin: auto;
}

.contact-text .section-tag {
    display: inline-block;
    margin-bottom: 16px;
    padding: 8px 20px;
    background: rgba(198, 40, 40, 0.08);
    color: #C62828;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-text h2 {
    font-size: 2.2rem;
    color: #0F2043;
    margin-bottom: 18px;
}

.contact-text p {
    font-size: 1rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 30px;
}

.contact-info {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
    color: #0F2043;
}

.contact-info li {
    margin-bottom: 12px;
    font-weight: 500;
}

.contact-info a {
    color: #C62828;
    text-decoration: none;
    font-weight: 700;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.social-links a {
    text-decoration: none;
    color: #0F2043;
    font-weight: 700;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #C62828;
}

.contact-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(15, 32, 67, 0.15);
}

.contact-section .cta-btn {
    background: #C62828;
    color: #fff;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.contact-section .cta-btn:hover {
    background: #0F2043;
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(15, 32, 67, 0.22);
}

@media(max-width: 900px){
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-image img {
        max-height: 320px;
        object-fit: cover;
    }
    .social-links {
        justify-content: center;
    }
    .contact-text {
        text-align: center;
    }
}

.footer-section {
    background: linear-gradient(135deg, #0F2043, #C62828);
    color: #fff;
    position: relative;
    padding: 80px 20px 40px 20px;
    clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    overflow: hidden;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-cta {
    background: #FFD600;
    color: #0F2043;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.25s, background 0.25s;
}

.footer-cta:hover {
    background: #fff;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.footer-links ul li a,
.footer-contact ul li a {
    color: #FFD600;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover,
.footer-contact ul li a:hover {
    color: #ffffff;
}

.footer-social .social-icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-social .social-icons a {
    color: #FFD600;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-social .social-icons a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 16px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
}

@media(max-width: 1020px){
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media(max-width: 700px){
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-social .social-icons {
        flex-direction: row;
        justify-content: center;
    }
}

.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.floating-whatsapp img {
    width: 36px;
    height: 36px;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 14px 28px rgba(0,0,0,0.3);
}

.dev-signature-badge {
    position: fixed;
    left: 24px;
    bottom: 96px;
    z-index: 9998;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    max-width: calc(100vw - 48px);
    min-height: 34px;
    padding: 8px 12px;
    border: 1px solid rgba(15, 32, 67, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: rgba(15, 32, 67, 0.76);
    box-shadow: 0 12px 30px rgba(15, 32, 67, 0.1);
    backdrop-filter: blur(12px);
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.01em;
    text-decoration: none;
    opacity: 0.16;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.dev-signature-badge strong {
    color: #0f2043;
    font-weight: 800;
}

.dev-signature-badge:hover,
.dev-signature-badge:focus-visible,
.dev-signature-badge.is-visible,
.dev-signature-badge.is-expanded {
    opacity: 0.9;
    transform: translateY(0);
    border-color: rgba(198, 40, 40, 0.2);
    box-shadow: 0 16px 36px rgba(15, 32, 67, 0.14);
}

.dev-signature-badge:focus-visible {
    outline: 2px solid rgba(198, 40, 40, 0.35);
    outline-offset: 3px;
}

@media (max-width: 640px) {
    .dev-signature-badge {
        left: 14px;
        bottom: 86px;
        min-height: 30px;
        padding: 7px 10px;
        font-size: 11px;
        opacity: 0;
    }

    .dev-signature-badge.is-visible {
        opacity: 0.78;
    }

    .dev-signature-badge.is-expanded {
        opacity: 0.92;
    }
}

#scrollTopBtn {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-size: 24px;
    background-color: #C62828;
    color: #fff;
    border: none;
    outline: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s, background-color 0.3s;
}

#scrollTopBtn:hover {
    background-color: #0F2043;
    transform: translateY(-2px);
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: transform, opacity;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}

.reveal-zoom {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s ease;
}

.reveal-zoom.active {
    opacity: 1;
    transform: scale(1);
}


