/* =========================================================
   ONLINE ACADEMIA - STYLESHEET
   Consolidated & Premium Design Overrides
========================================================= */

:root {
    /* Brand Colors */
    --oa-purple: #4B2E83;
    --oa-purple-dark: #2A1759;
    --oa-purple-deep: #211042;
    --oa-purple-soft: #6C4BB5;
    --oa-lavender: #EEE7FF;
    --oa-lavender-2: #DCCAFF;
    --oa-lime: #D9F33E;
    --oa-gold: #D4AF37;
    --oa-cream: #FBFAF7;
    --oa-white: #FFFFFF;
    --oa-ink: #251744;
    --oa-text: #625A72;
    --oa-border: #E8E1F1;
    --oa-shadow: 0 20px 55px rgba(48, 24, 94, .13);
    --oa-radius: 24px;
    --oa-ease: cubic-bezier(.2, .75, .25, 1);

    /* Premium Overrides */
    --oa-violet: #4B2E83;
    --oa-violet-deep: #21103F;
    --oa-violet-dark: #2D185C;
    --oa-violet-mid: #6848A9;
    --oa-lilac: #F1EBFF;
    --oa-lilac-2: #E2D4FF;
    --oa-acid: #D9F33E;
    --oa-paper: #FCFBF8;
    --oa-muted: #6E657D;
    --oa-line: #E8E1F0;
    --oa-shadow-premium: 0 25px 70px rgba(45, 24, 92, .14);
}

/* =========================
   GLOBAL BASE & OVERFLOW FIXES
========================= */
* {
    box-sizing: border-box;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 8% 14%, rgba(217, 243, 62, .055), transparent 20rem),
        var(--oa-paper);
    color: var(--oa-text);
    font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--oa-acid);
    color: var(--oa-ink);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button, input, select, textarea {
    font-family: inherit;
}

:focus-visible {
    outline: 3px solid var(--oa-acid);
    outline-offset: 3px;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: "Playfair Display", Georgia, serif;
    color: var(--oa-ink);
    font-weight: 700;
}

.container-oa {
    width: min(1180px, calc(100% - 32px));
    max-width: 100%;
    margin-inline: auto;
    padding-left: 16px;
    padding-right: 16px;
}

/* Prevent decorative pseudo-elements from creating horizontal scrollbars */
.oa-top-promo,
.oa-blog-hero,
.oa-about-section,
.oa-mission,
.oa-cta-band,
.oa-story-media,
.oa-why-visual,
.oa-footer {
    overflow: hidden;
}

/* =========================
   BUTTONS
========================= */
.btn-oa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 46px;
    padding: 10px 21px;
    border: 0;
    border-radius: 999px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    transition: .3s var(--oa-ease);
}

.btn-oa-solid {
    background: var(--oa-purple);
    color: #fff;
}

.btn-oa-solid:hover {
    background: var(--oa-purple-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(75, 46, 131, .2);
}

/* =========================
   TOP BAR
========================= */
.oa-top-promo {
    min-height: 40px;
    background: var(--oa-violet-deep);
    position: relative;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: #fff;
    font-size: 12px;
}

.oa-top-promo::before,
.oa-top-promo::after {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 50%;
    pointer-events: none;
}

.oa-top-promo::before { left: -70px; top: -75px; }
.oa-top-promo::after { right: -70px; bottom: -75px; }
.oa-top-promo > * { position: relative; z-index: 1; }

.oa-top-promo strong { font-weight: 700; }

.oa-promo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 15px;
    border-radius: 999px;
    background: var(--oa-acid);
    color: var(--oa-ink);
    font-size: 11px;
    font-weight: 800;
    transition: .3s var(--oa-ease);
}

.oa-promo-btn:hover {
    background: #fff;
    color: var(--oa-purple);
    transform: translateY(-1px);
}

/* =========================
   DESKTOP NAVBAR
========================= */
.oa-navbar {
    min-height: 78px;
    padding: 0;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 22px rgba(35, 18, 65, .035);
    border-bottom: 1px solid var(--oa-border);
}

.oa-navbar > .container-oa {
    min-height: 78px;
    display: flex;
    align-items: center;
}

.oa-logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    color: var(--oa-purple);
    font-family: "Playfair Display", serif;
    font-size: 23px;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
    text-decoration: none;
}

.oa-logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}

.oa-navbar .navbar-nav {
    gap: 25px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.oa-navbar .nav-link {
    position: relative;
    padding: 0 !important;
    color: #322B3D;
    font-size: 14px;
    font-weight: 600;
    line-height: 78px;
    letter-spacing: .015em;
    transition: .25s ease;
}

.oa-navbar .nav-link:hover,
.oa-navbar .nav-link.active {
    color: var(--oa-purple);
}

.oa-navbar .nav-link::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 19px;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: var(--oa-acid);
    transform: translateX(-50%);
    transition: .3s var(--oa-ease);
}

.oa-navbar .nav-link:hover::before { width: 22px; }
.oa-navbar .nav-link.active::after { display: none; }
.oa-navbar .nav-link.active::before { width: 28px; }

/* =========================
   MOBILE NAVBAR / DRAWER
========================= */
.oa-navbar .navbar-toggler {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 1px solid #ddd4e9;
    border-radius: 14px;
    background: #fff;
    color: var(--oa-violet);
    box-shadow: 0 8px 22px rgba(47, 24, 92, .08);
}

.oa-navbar .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(217, 243, 62, .28);
}

.oa-navbar .navbar-toggler-icon {
    width: 20px;
    height: 14px;
    background: none;
    position: relative;
}

.oa-navbar .navbar-toggler-icon::before,
.oa-navbar .navbar-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: var(--oa-violet);
}

.oa-navbar .navbar-toggler-icon::before { top: 1px; box-shadow: 0 6px 0 var(--oa-violet); }
.oa-navbar .navbar-toggler-icon::after { top: 13px; display: none; }

.navbar-collapse.collapsing {
    transition: height 0.15s ease-in-out !important;
}

.oa-nav-backdrop {
    transition: opacity 0.15s ease-in-out !important;
}

/* =========================================================
   DROPDOWN MENU STYLES (HOVER & MOBILE ACCESSIBLE)
========================================================= */

/* Dropdown Container */
.oa-dropdown {
    position: relative;
}

/* Base Dropdown Menu Styling */
.oa-dropdown-menu {
    border: 1px solid var(--oa-border, #E8E1F1);
    border-radius: 18px;
    background: #FFFFFF;
    padding: 10px 8px;
    box-shadow: 0 18px 45px rgba(35, 18, 65, .12);
    min-width: 230px;
    margin-top: 0;
}

/* Individual Dropdown Item Links */
.oa-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: #322B3D;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.25s var(--oa-ease, ease);
}

/* Hover & Active States */
.oa-dropdown-menu .dropdown-item:hover,
.oa-dropdown-menu .dropdown-item:focus {
    background: var(--oa-lavender, #EEE7FF);
    color: var(--oa-purple, #4B2E83);
    transform: translateX(4px);
}

/* Highlight / Call-to-action Item */
.oa-dropdown-menu .dropdown-item.highlight {
    color: var(--oa-purple, #4B2E83);
    font-weight: 700;
}

.oa-dropdown-menu .dropdown-item.highlight:hover {
    background: var(--oa-acid, #D9F33E);
    color: #251744;
}

/* Menu Divider */
.oa-dropdown-menu .dropdown-divider {
    border-top: 1px solid var(--oa-border, #E8E1F1);
    margin: 6px 8px;
    opacity: 0.75;
}

/* Custom Dropdown Toggle Indicator Arrow */
.oa-navbar .nav-link.dropdown-toggle::after {
    content: "\F282"; /* Bootstrap Icon Chevron Down */
    font-family: "bootstrap-icons";
    border: none;
    vertical-align: middle;
    margin-left: 6px;
    font-size: 11px;
    transition: transform 0.3s ease;
}


/* =========================================================
   DESKTOP HOVER BEHAVIOR (Large Screens >= 992px)
========================================================= */
@media (min-width: 992px) {
    /* Trigger Dropdown on Hover */
    .oa-dropdown:hover > .oa-dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Animate Menu Appearance */
    .oa-dropdown > .oa-dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(12px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
        pointer-events: auto;
    }

    /* Rotate arrow indicator on hover */
    .oa-dropdown:hover > .nav-link.dropdown-toggle::after {
        transform: rotate(180deg);
    }
}


/* =========================================================
   MOBILE MENU OVERRIDES (Small Screens < 992px)
========================================================= */
@media (max-width: 991.98px) {
    .oa-dropdown-menu {
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: none;
        margin-top: 8px;
        margin-bottom: 8px;
        padding: 6px;
    }

    .oa-dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.85);
        font-family: "DM Sans", sans-serif;
        font-size: 15px;
        font-weight: 500;
        padding: 8px 14px;
    }

    .oa-dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #FFFFFF;
        transform: none;
    }

    .oa-dropdown-menu .dropdown-item.highlight {
        color: var(--oa-acid, #D9F33E);
    }

    .oa-dropdown-menu .dropdown-divider {
        border-top-color: rgba(255, 255, 255, 0.12);
    }
}

@media(max-width: 991.98px) {
    body.oa-menu-open { overflow: hidden; }
    
    .oa-navbar {
        min-height: 68px;
        z-index: 1060;
    }
    
    .oa-navbar > .container-oa {
        min-height: 68px;
    }
    
    .oa-navbar .navbar-collapse {
        position: fixed;
        top: 0;
        right: 0;
        width: min(390px, 88vw);
        height: 100dvh;
        min-height: 100vh;
        margin: 0 !important;
        padding: 90px 28px 30px;
        display: flex !important;
        flex-direction: column;
        align-items: stretch;
        background:
            radial-gradient(circle at 90% 8%, rgba(217, 243, 62, .10), transparent 9rem),
            linear-gradient(155deg, #241044, #3D247C);
        box-shadow: -22px 0 60px rgba(19, 8, 42, .24);
        transform: translateX(105%);
        visibility: hidden;
        opacity: 0;
        transition: transform .48s var(--oa-ease), opacity .28s ease, visibility .48s;
        overflow-y: auto;
        z-index: 1070;
    }
    
    .oa-navbar .navbar-collapse.show {
        transform: translateX(0);
        visibility: visible;
        opacity: 1;
    }
    
    .oa-navbar .navbar-collapse::before {
        content: "ONLINE ACADEMIA";
        position: absolute;
        top: 31px;
        left: 28px;
        color: rgba(255, 255, 255, .6);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .18em;
    }
    
    .oa-navbar .navbar-collapse::after {
        content: "";
        position: absolute;
        top: 24px;
        right: 26px;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(255, 255, 255, .18);
        border-radius: 50%;
        pointer-events: none;
    }
    
    .oa-navbar .navbar-nav {
        width: 100%;
        margin: 0 !important;
        padding: 14px 0 10px;
        gap: 0;
    }
    
    .oa-navbar .nav-item {
        opacity: 0;
        transform: translateX(22px);
        transition: .35s ease;
    }
    
    .oa-navbar .navbar-collapse.show .nav-item {
        opacity: 1;
        transform: none;
    }
    
    .oa-navbar .navbar-collapse.show .nav-item:nth-child(1) { transition-delay: .04s; }
    .oa-navbar .navbar-collapse.show .nav-item:nth-child(2) { transition-delay: .08s; }
    .oa-navbar .navbar-collapse.show .nav-item:nth-child(3) { transition-delay: .12s; }
    .oa-navbar .navbar-collapse.show .nav-item:nth-child(4) { transition-delay: .16s; }
    .oa-navbar .navbar-collapse.show .nav-item:nth-child(5) { transition-delay: .20s; }
    .oa-navbar .navbar-collapse.show .nav-item:nth-child(6) { transition-delay: .24s; }
    .oa-navbar .navbar-collapse.show .nav-item:nth-child(7) { transition-delay: .28s; }
    .oa-navbar .navbar-collapse.show .nav-item:nth-child(8) { transition-delay: .32s; }
    
    .oa-navbar .nav-link {
        display: flex;
        align-items: center;
        min-height: 53px;
        padding: 0 4px !important;
        border-bottom: 1px solid rgba(255, 255, 255, .10);
        color: rgba(255, 255, 255, .82) !important;
        font-family: "Playfair Display", serif;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.2;
        letter-spacing: -.01em;
    }
    
    .oa-navbar .nav-link:hover,
    .oa-navbar .nav-link.active {
        color: #fff !important;
    }
    
    .oa-navbar .nav-link::before,
    .oa-navbar .nav-link.active::after { display: none; }
    
    .oa-navbar .nav-link.active {
        position: relative;
    }
    
    .oa-navbar .nav-link.active::before {
        content: "";
        position: static;
        display: block;
        width: 7px !important;
        height: 7px;
        flex: 0 0 7px;
        margin-right: 10px;
        border-radius: 50%;
        background: var(--oa-acid);
        transform: none;
    }
    
    .oa-navbar .navbar-collapse > .btn-oa {
        width: 100%;
        margin-top: 20px;
        min-height: 52px;
        background: var(--oa-acid);
        color: var(--oa-ink);
        opacity: 0;
        transform: translateX(22px);
        transition: .4s .35s ease;
    }
    
    .oa-navbar .navbar-collapse.show > .btn-oa {
        opacity: 1;
        transform: none;
    }
    
    .oa-navbar .navbar-toggler {
        position: relative;
        z-index: 1080;
    }
    
    .oa-navbar .navbar-toggler.menu-open {
        background: transparent;
        border-color: rgba(255, 255, 255, .2);
        position: fixed;
        top: 17px;
        right: 20px;
        z-index: 1090;
    }
    
    .oa-navbar .navbar-toggler.menu-open .navbar-toggler-icon {
        background: none;
    }
    
    .oa-navbar .navbar-toggler.menu-open .navbar-toggler-icon::before {
        top: 7px;
        transform: rotate(45deg);
        box-shadow: none;
        background: #fff;
    }
    
    .oa-navbar .navbar-toggler.menu-open .navbar-toggler-icon::after {
        display: block;
        top: 7px;
        transform: rotate(-45deg);
        background: #fff;
    }
    
    .oa-nav-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1055;
        background: rgba(20, 9, 39, .48);
        backdrop-filter: blur(3px);
        opacity: 0;
        visibility: hidden;
        transition: .3s ease;
    }
    
    .oa-nav-backdrop.show {
        opacity: 1;
        visibility: visible;
    }
}

/* =========================
   HERO (DESKTOP & MOBILE BANNER CONTROL)
========================= */
.oa-blog-hero {
    position: relative;
    min-height: 450px;
    height: 450px;
    padding: 45px 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    background:
        radial-gradient(circle at 72% 72%, rgba(217, 243, 62, .10) 0 3px, transparent 4px),
        radial-gradient(circle at 82% 24%, rgba(255, 255, 255, .11) 0 2px, transparent 3px),
        linear-gradient(135deg, #4B2E83 0%, #422486 57%, #32176B 100%);
    isolation: isolate;
}

.oa-blog-hero::before {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    right: -110px;
    top: -170px;
    border: 26px solid rgba(229, 215, 255, .38);
    border-radius: 50%;
    z-index: -1;
}

/* Banner image shown on desktop */
.oa-blog-hero::after {
    content: "";
    position: absolute;
    right: 9%;
    bottom: -65px;
    width: 285px;
    height: 365px;
    border-radius: 48% 48% 25px 25px;
    background:
        linear-gradient(rgba(75, 46, 131, .10), rgba(75, 46, 131, .10)),
        url("assets/images/f.jpg") center/cover no-repeat;
    box-shadow: 0 28px 55px rgba(24, 8, 58, .35);
    z-index: -1;
}

.oa-blog-hero > .container-oa {
    position: relative;
    z-index: 2;
}

.oa-blog-hero > .container-oa::before {
    content: "";
    position: absolute;
    left: -30px;
    bottom: -30px;
    width: 95px;
    height: 95px;
    border: 13px solid rgba(217, 243, 62, .14);
    border-radius: 50%;
}

.badge-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--oa-acid);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.badge-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: var(--oa-acid);
}

.oa-blog-hero h1 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: .99;
    font-weight: 800;
    letter-spacing: -.045em;
}

.oa-blog-hero p.lead {
    max-width: 570px;
    margin: 23px 0 0;
    color: #e9e2f5;
    font-size: 15px;
    line-height: 1.7;
}

/* Hide hero banner image and optimize header spacing on small screens */
@media (max-width: 991.98px) {
    .oa-blog-hero {
        min-height: auto;
        height: auto;
        padding: 60px 0;
    }

    .oa-blog-hero::after {
        display: none !important;
    }

    .oa-blog-hero::before {
        right: -180px;
        top: -200px;
        width: 320px;
        height: 320px;
    }

    .oa-blog-hero > .container-oa::before {
        display: none;
    }
}

/* =========================
   ABOUT SECTION & STORY
========================= */
.oa-about-section {
    position: relative;
    padding: 105px 0;
    background: var(--oa-paper);
}

.oa-about-section::before {
    content: "";
    position: absolute;
    width: 170px;
    height: 170px;
    right: -80px;
    top: 70px;
    border: 20px solid rgba(75, 46, 131, .045);
    border-radius: 50%;
    pointer-events: none;
}

.oa-about-section.alt {
    background: var(--oa-lilac);
}

.oa-about-section.alt::before {
    border-color: rgba(75, 46, 131, .075);
}

.oa-story-copy {
    position: relative;
}

.oa-story-copy::before {
    content: "";
    position: absolute;
    right: 0;
    top: -30px;
    color: rgba(75, 46, 131, .065);
    font-family: "Playfair Display", serif;
    font-size: 110px;
    line-height: 1;
    font-weight: 800;
}

.oa-about-eyebrow {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 15px;
    color: var(--oa-purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.oa-about-eyebrow::before {
    content: "";
    width: 29px;
    height: 2px;
    background: var(--oa-gold);
    border-radius: 99px;
}

.oa-about-eyebrow.center {
    justify-content: center;
}

.oa-story-copy h2,
.oa-why-copy h2,
.oa-office-info h2 {
    max-width: 600px;
    margin: 0 0 18px;
    font-size: clamp(2.4rem, 4vw, 3.55rem);
    line-height: 1.02;
    letter-spacing: -.035em;
}

.oa-story-copy p,
.oa-why-copy > p,
.oa-office-info > p {
    max-width: 620px;
    margin: 0 0 16px;
    color: var(--oa-text);
    font-size: 15px;
    line-height: 1.85;
}

.oa-story-copy p:first-of-type {
    position: relative;
    margin-top: 22px;
    margin-bottom: 23px;
    padding: 22px 24px 22px 27px;
    border-left: 4px solid var(--oa-acid);
    border-radius: 0 18px 18px 0;
    background: linear-gradient(90deg, #F4F0FB, #fff);
    color: #403750;
    font-size: 17px;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(54, 28, 103, .05);
}

.oa-story-copy p:first-of-type::before {
    content: "";
    position: absolute;
    left: 12px;
    top: -12px;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(75, 46, 131, .12);
    border-radius: 50%;
}

.oa-story-media {
    position: relative;
}

.oa-story-media::before {
    content: "";
    position: absolute;
    right: -15px;
    top: -15px;
    width: 46%;
    height: 55%;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--oa-acid), #eef6b2);
    z-index: 0;
}

.oa-story-media img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--oa-shadow-premium);
}

.oa-story-badge {
    position: absolute;
    right: 20px;
    bottom: -20px;
    z-index: 3;
    min-width: 170px;
    padding: 18px 20px;
    border: 7px solid var(--oa-paper);
    border-radius: 21px;
    background: var(--oa-violet);
    color: #fff;
    text-align: center;
    box-shadow: 0 22px 42px rgba(41, 18, 84, .26);
}

.oa-story-badge .num {
    font-family: "Playfair Display", serif;
    font-size: 35px;
    line-height: 1;
    color: var(--oa-acid);
}

.oa-story-badge .label {
    margin-top: 6px;
    color: rgba(255, 255, 255, .8);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

/* =========================
   MISSION PATTERN
========================= */
.oa-mission {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    background:
        linear-gradient(135deg, rgba(33, 16, 63, .97), rgba(75, 46, 131, .93)),
        repeating-linear-gradient(45deg, transparent 0 17px, rgba(255, 255, 255, .025) 18px 19px) !important;
}

.oa-mission::before {
    content: "";
    position: absolute;
    inset: 25px;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 34px;
    pointer-events: none;
}

.oa-mission::after {
    content: "";
    position: absolute;
    width: 470px;
    height: 470px;
    right: -225px;
    top: -215px;
    border: 28px solid rgba(217, 243, 62, .11);
    border-radius: 50%;
    z-index: 1;
}

.oa-mission .container-oa {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 85px 0;
    text-align: center;
}

.oa-mission .oa-about-eyebrow {
    color: var(--oa-acid);
}

.oa-mission .oa-about-eyebrow::before {
    background: var(--oa-acid);
}

.oa-mission h2 {
    margin: 0 0 25px;
    color: #fff;
    font-size: clamp(2.7rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -.04em;
}

.oa-mission blockquote {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding: 25px 35px;
    border: 0;
    color: rgba(255, 255, 255, .88);
    font-family: "DM Sans", sans-serif;
    font-size: 19px;
    font-style: normal;
    line-height: 1.8;
    text-align: center;
}

.oa-mission blockquote::before {
    content: "“";
    position: absolute;
    left: -5px;
    top: -30px;
    color: var(--oa-acid);
    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 1;
    opacity: .8;
}

.oa-mission blockquote::after {
    content: "”";
    position: absolute;
    right: -5px;
    bottom: -55px;
    color: var(--oa-acid);
    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 1;
    opacity: .8;
}

/* =========================
   SECTION HEAD
========================= */
.oa-section-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 43px;
}

.oa-section-head h2 {
    margin: 0;
    font-size: clamp(2.35rem, 4vw, 3.5rem);
    line-height: 1.05;
}

.oa-section-head p {
    max-width: 560px;
    margin: 0;
    color: var(--oa-text);
    font-size: 14px;
    line-height: 1.75;
}

.oa-section-head::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -17px;
    width: 42px;
    height: 4px;
    border-radius: 99px;
    background: var(--oa-acid);
}

/* =========================
   FEATURE CARDS
========================= */
.oa-feature-card {
    position: relative;
    height: 100%;
    min-height: 260px;
    padding: 32px;
    overflow: hidden;
    border: 1px solid rgba(75, 46, 131, .06);
    border-radius: 28px;
    background: #fff !important;
    box-shadow: 0 10px 28px rgba(49, 24, 96, .055);
    transition: .35s var(--oa-ease);
}

.oa-feature-card::before {
    content: "";
    position: absolute;
    top: -48px;
    right: -48px;
    width: 140px;
    height: 140px;
    border: 17px solid rgba(75, 46, 131, .055);
    border-radius: 50%;
}

.oa-feature-card:nth-child(1),
.oa-feature-card:nth-child(4) {
    background: linear-gradient(145deg, #fff, #f8f4ff) !important;
}

.oa-feature-card:nth-child(2),
.oa-feature-card:nth-child(6) {
    background: linear-gradient(145deg, #4B2E83, #32166D) !important;
}

.oa-feature-card:nth-child(2)::before,
.oa-feature-card:nth-child(6)::before {
    border-color: rgba(255, 255, 255, .09);
}

.oa-feature-card:nth-child(5) {
    background: linear-gradient(145deg, #D9F33E, #E9F985) !important;
}

.oa-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--oa-shadow-premium);
}

.oa-feature-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border-radius: 18px;
    background: var(--oa-lavender);
    color: var(--oa-purple) !important;
    font-size: 23px;
}

.oa-feature-card:nth-child(2) .oa-feature-icon,
.oa-feature-card:nth-child(6) .oa-feature-icon {
    background: rgba(255, 255, 255, .15);
    color: #fff !important;
}

.oa-feature-card:nth-child(5) .oa-feature-icon {
    background: rgba(75, 46, 131, .12);
    color: var(--oa-purple) !important;
}

.oa-feature-card h3 {
    margin: 0 0 9px;
    font-size: 23px;
    line-height: 1.2;
}

.oa-feature-card p {
    margin: 0;
    max-width: 290px;
    color: var(--oa-text) !important;
    font-size: 14px;
    line-height: 1.7;
}

.oa-feature-card:nth-child(2) h3,
.oa-feature-card:nth-child(2) p,
.oa-feature-card:nth-child(6) h3,
.oa-feature-card:nth-child(6) p {
    color: #fff !important;
}

.oa-feature-card:nth-child(5) h3 { color: var(--oa-purple-dark) !important; }
.oa-feature-card:nth-child(5) p { color: #4e4563 !important; }

/* =========================
   WHY US
========================= */
.oa-why-visual {
    position: relative;
    min-height: 520px;
}

.oa-why-visual::before {
    content: "";
    position: absolute;
    left: -18px;
    bottom: -18px;
    width: 62%;
    height: 54%;
    border-radius: 32px;
    background: linear-gradient(135deg, var(--oa-acid), #edf9aa);
    z-index: 0;
}

.oa-why-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--oa-shadow-premium);
}

.oa-why-badge-large {
    position: absolute;
    right: 22px;
    top: 22px;
    z-index: 2;
    padding: 17px 20px;
    border: 7px solid var(--oa-lilac);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 15px 35px rgba(38, 17, 82, .17);
}

.oa-why-badge-large strong {
    display: block;
    color: var(--oa-purple);
    font-family: "Playfair Display", serif;
    font-size: 29px;
    line-height: 1;
}

.oa-why-badge-large span {
    display: block;
    margin-top: 5px;
    color: #81788e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.oa-why-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.oa-why-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-height: 88px;
    padding: 15px;
    border: 1px solid rgba(75, 46, 131, .055);
    border-radius: 19px;
    background: #fff;
    box-shadow: 0 10px 25px rgba(53, 27, 102, .055);
    transition: .25s var(--oa-ease);
}

.oa-why-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 28px rgba(53, 27, 102, .10);
}

.oa-why-item i {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--oa-purple);
    color: #fff;
    font-size: 19px;
}

.oa-why-item p {
    margin: 2px 0 0;
    color: var(--oa-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
}

/* Responsive adjustments for Why Us Section */
@media (max-width: 575.98px) {
    .oa-why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   TEAM
========================= */
.oa-team-card {
    height: 100%;
}

.oa-team-media {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--oa-lavender);
    box-shadow: 0 12px 32px rgba(45, 24, 92, .08);
}

.oa-team-media::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 22px;
    z-index: 2;
    pointer-events: none;
}

.oa-team-media::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 45px;
    height: 5px;
    border-radius: 99px;
    background: var(--oa-acid);
    z-index: 3;
}

.oa-team-media img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    transition: .55s var(--oa-ease);
}

.oa-team-card:hover .oa-team-media img {
    transform: scale(1.045);
}

.oa-team-card h3 {
    margin: 17px 0 3px;
    font-size: 23px;
}

.oa-team-card .role {
    color: var(--oa-purple);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

/* =========================
   OFFICE / MAP
========================= */
.oa-office-row {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 7px 0;
    margin-bottom: 16px;
}

.oa-office-row > i {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin: 0;
    border-radius: 15px;
    background: #fff;
    border: 1px solid rgba(75, 46, 131, .07);
    color: var(--oa-purple);
    font-size: 18px;
    box-shadow: 0 7px 18px rgba(50, 25, 100, .06);
}

.oa-office-row .label {
    display: block;
    color: var(--oa-ink);
    font-size: 12px;
    font-weight: 800;
}

.oa-office-row .value {
    display: block;
    color: #7b7386;
    font-size: 13px;
    line-height: 1.5;
}

.oa-office-row .value a:hover { color: var(--oa-purple); }

.oa-map {
    position: relative;
    border-radius: 30px;
    border: 8px solid #fff;
    box-shadow: var(--oa-shadow-premium);
}

.oa-map iframe {
    width: 100%;
    height: 430px;
    display: block;
    border: 0;
    border-radius: 22px;
    filter: grayscale(.55) contrast(.95);
}

.oa-map-tag {
    position: absolute;
    left: 24px;
    bottom: 24px;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--oa-violet);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(33, 16, 63, .22);
}

/* =========================
   CTA Section (Parallax BG)
========================= */
.oa-cta-band {
    position: relative;
    isolation: isolate;
    margin: 0 !important;
    padding: 105px 0;
    text-align: center;
    
    background-image: 
        radial-gradient(circle at 80% 20%, rgba(217, 243, 62, .12), transparent 1rem),
        linear-gradient(135deg, rgba(33, 16, 63, 0.88), rgba(75, 46, 131, 0.88)),
        url('assets/images/4.jpg');
    
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.oa-cta-band::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: -270px;
    top: -225px;
    border: 30px solid rgba(217, 243, 62, .10);
    border-radius: 50%;
    z-index: -1;
}

.oa-cta-band::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -80px;
    bottom: -90px;
    border: 20px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    z-index: -1;
}

.oa-cta-band > .container-oa { position: relative; z-index: 2; }

.oa-cta-band .oa-about-eyebrow {
    color: var(--oa-acid);
}

.oa-cta-band .oa-about-eyebrow::before { background: var(--oa-acid); }

.oa-cta-band h2 {
    margin: 0 0 13px;
    color: #fff;
    font-size: clamp(2.6rem, 4.5vw, 4rem);
    line-height: 1.03;
}

.oa-cta-band p {
    max-width: 610px;
    margin: 0 auto 28px;
    color: rgba(255, 255, 255, .78);
    font-size: 16px;
    line-height: 1.8;
}

.oa-cta-band .btn-oa-solid {
    background: var(--oa-acid);
    color: var(--oa-ink);
}

.oa-cta-band .btn-oa-solid:hover {
    background: #fff;
    color: var(--oa-purple);
}

/* Fallback for mobile devices (iOS Safari doesn't support fixed background attachments well) */
@supports (-webkit-touch-callout: none) {
    .oa-cta-band {
        background-attachment: scroll;
    }
}

/* =========================
   FOOTER BASE
========================= */
.oa-footer {
    position: relative;
    padding: 78px 0 0;
    background: radial-gradient(circle at 12% 8%, rgba(108, 75, 181, .18), transparent 18rem), #17101F;
    color: #958da4;
}

.oa-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--oa-acid, #d9f33e), var(--oa-gold, #f5d061), var(--oa-acid, #d9f33e));
}

.oa-footer .oa-logo img {
    width: 190px;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.oa-footer p.tagline {
    max-width: 330px;
    margin-top: 20px;
    color: #91899e;
    font-size: 16px;
    line-height: 1.8;
}

.oa-footer h4 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 10px;
    color: #fff;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.oa-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 3px;
    border-radius: 99px;
    background: var(--oa-acid, #d9f33e);
}

.oa-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.oa-footer ul li,
.oa-footer ul li a {
    color: #958da4;
    font-size: 16px;
    line-height: 1.9;
    text-decoration: none;
}

.oa-footer ul li { margin-bottom: 8px; }
.oa-footer ul li a { transition: color .2s ease; }
.oa-footer ul li a:hover { color: var(--oa-acid, #d9f33e); }

/* =========================
   WHITE COLOR FOOTER LOGO
========================= */
    .oa-footer .oa-logo img {
    width: 190px;
    height: auto;
    display: block;

    /* Convert colored logo to white */
    filter: brightness(0) invert(1);
}

/* =========================
   WHITE ROUND SOCIAL ICONS
========================= */
.oa-footer .footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.oa-footer .footer-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff !important;
    color: #17101F !important;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.oa-footer .footer-socials a:hover {
    background: var(--oa-acid, #d9f33e) !important;
    color: #17101F !important;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(217, 243, 62, 0.35);
}

/* =========================
   CALL BUTTON
========================= */
.oa-footer .oa-btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #4B2E83, #6C4BB5);
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(75, 46, 131, 0.35);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.oa-footer .oa-btn-call:hover {
    background: var(--oa-acid, #d9f33e) !important;
    color: #17101F !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 243, 62, 0.4);
}

/* =========================
   BOTTOM FOOTER
========================= */
.oa-footer-bottom {
    margin-top: 55px;
    padding: 21px 0;
    border-top: 1px solid rgba(255, 255, 255, .09);
    color: #777080;
    font-size: 12px;
}

.oa-footer-bottom a {
    margin-left: 15px;
    color: #777080;
    font-size: 12px;
    text-decoration: none;
}

.oa-footer-bottom a:hover { color: #fff; }

/* Reduced Motion */
@media(prefers-reduced-motion:reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation: none !important;
        transition: none !important;
    }
    .oa-reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}