/* Femtoloop - Premium Corporate Stylesheet */

*, *::before, *::after { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    overflow-y: auto;
    max-width: 100%;
    background-color: var(--background, #C8CFD6) !important;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--background, #C8CFD6) !important;
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: visible;
    max-width: 100%;
    width: 100%;
}

body.nav-open {
    overflow-x: hidden;
}

.site-main {
    background-color: var(--background, #C8CFD6) !important;
    overflow: visible !important;
    width: 100%;
    max-width: 100%;
    transition: margin-left 0.4s cubic-bezier(0.22, 1, 0.36, 1), width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer {
    transition: margin-left 0.4s cubic-bezier(0.22, 1, 0.36, 1), width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

section {
    overflow: visible;
    max-width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--heading);
    font-weight: 700;
    line-height: 1.3;
}

a {
    color: var(--link);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; }

/* ---- Buttons ---- */
.btn {
    font-family: var(--font-button);
    font-weight: 600;
    border-radius: 999px;
    padding: 0.7rem 1.7rem;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    letter-spacing: 0.01em;
    box-shadow: 0 10px 28px rgba(92, 188, 247, 0.18);
}

.btn-primary {
    background: var(--button);
    color: #fff;
}
.btn-primary:hover {
    background: var(--button-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}
.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-accent {
    background: var(--accent);
    color: #fff;
}
.btn-accent:hover {
    background: var(--secondary);
    color: #fff;
}

.btn-sm { padding: 0.45rem 1.25rem; font-size: 0.875rem; border-radius: 10px; }
.btn-lg { padding: 0.85rem 2.25rem; font-size: 1.05rem; }

/* ---- Header ---- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1), width 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.35rem 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.page-home-header .navbar {
    justify-content: flex-start;
}

.page-home-header .navbar > .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 38px;
}

.home-nav-toggle {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    flex-shrink: 0;
    display: inline-flex;
    flex-direction: column;
    gap: 4px;
    border: none;
    background: transparent;
    padding: 0.25rem;
}

.home-nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-brand {
    display: inline-flex;
    align-items: center;
}

.home-header-logo {
    position: relative;
    margin: 0 0 0 auto;
    margin-right: 0 !important;
    transform: none;
    left: auto;
    right: auto;
}

.header-transparent {
    background: transparent;
}
.header-transparent .nav-link { color: #fff; }
.header-transparent .navbar-brand img { filter: none; }
.header-transparent .btn-cta { background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.3); color: #fff; }
.header-transparent .search-input-wrap input { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }
.header-transparent .search-input-wrap input::placeholder { color: rgba(255,255,255,0.6); }

.header-solid,
.site-header.scrolled,
.page-home-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    padding: 0.25rem 0;
    min-height: 52px;
}
.header-solid .nav-link, .site-header.scrolled .nav-link { color: var(--text); }
.header-solid .navbar-brand img, .site-header.scrolled .navbar-brand img { filter: none; }

.navbar { padding: 0.1rem 0; }
.navbar-brand .logo-img {
    transition: all 0.3s ease;
    height: 68px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
}
.footer-logo-link img {
    height: 44px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.nav-link {
    font-family: var(--font-menu);
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: color 0.3s ease;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 0.75rem;
    margin-top: 0.5rem;
}
.dropdown-item {
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}
.dropdown-item:hover {
    background: var(--background);
    color: var(--primary);
}

@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu,
    .navbar .dropdown:focus-within > .dropdown-menu {
        display: block;
    }
}

/* ---- Mobile Sidebar ---- */
.mobile-sidebar {
    width: min(320px, 88vw);
    border-left: 1px solid var(--border);
}
.mobile-sidebar .offcanvas-header {
    padding: 1.25rem 1.25rem 0.75rem;
    border-bottom: 1px solid var(--border);
}
.mobile-sidebar-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--heading);
    font-weight: 700;
    font-size: 1.05rem;
}
.mobile-sidebar-brand:hover { color: var(--primary); }
.mobile-sidebar .offcanvas-body {
    padding: 1rem 1.25rem 1.5rem;
}
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.mobile-nav-item {
    border-bottom: 1px solid var(--border);
}
.mobile-nav-link,
.mobile-nav-details > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    color: var(--text);
    font-family: var(--font-menu);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    list-style: none;
}
.mobile-nav-link:hover,
.mobile-nav-details > summary:hover {
    color: var(--primary);
}
.mobile-nav-details > summary::-webkit-details-marker { display: none; }
.mobile-nav-details > summary::after {
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 0.85rem;
    color: var(--text);
    opacity: 0.5;
    transition: transform 0.2s ease;
}
.mobile-nav-details[open] > summary::after {
    transform: rotate(180deg);
}
.mobile-nav-sub {
    list-style: none;
    padding: 0 0 0.75rem 0.75rem;
    margin: 0;
}
.mobile-nav-sub a {
    display: block;
    padding: 0.55rem 0;
    color: var(--text);
    opacity: 0.85;
    font-size: 0.9rem;
}
.mobile-nav-sub a:hover {
    color: var(--primary);
    opacity: 1;
}
.mobile-menu-toggle {
    border: 1px solid rgba(255,255,255,0.25);
    padding: 0.35rem 0.55rem;
}
.header-transparent .mobile-menu-toggle .navbar-toggler-icon {
    filter: brightness(0) invert(1);
}
.header-solid .mobile-menu-toggle,
.site-header.scrolled .mobile-menu-toggle {
    border-color: var(--border);
}

.search-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}
.search-input-wrap input {
    border-radius: 10px;
    border: 1px solid var(--border);
    padding: 0.4rem 2.5rem 0.4rem 1rem;
    font-size: 0.875rem;
    width: 200px;
    background: var(--background);
}
.search-input-wrap button {
    position: absolute;
    right: 8px;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
}

.mobile-search-bar {
    padding: 0 0 0.75rem;
}
.mobile-search-bar .search-input-wrap input {
    width: 100%;
}
.btn-search-toggle {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.15rem;
    padding: 0.25rem 0.5rem;
    cursor: pointer;
}
.header-transparent .btn-search-toggle { color: #fff; }
.header-solid .btn-search-toggle,
.scrolled .btn-search-toggle { color: var(--text); }

.search-input-wrap-lg input,
.search-page-form .search-input-wrap input {
    width: 100%;
    padding: 0.75rem 3rem 0.75rem 1.25rem;
    font-size: 1rem;
    border-radius: 12px;
}
.search-results-count { color: var(--text); }
.search-group-title {
    font-weight: 600;
    color: var(--heading);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.search-result-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}
.search-result-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    color: inherit;
}
.search-result-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(8,131,149,0.1);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.search-result-body { flex: 1; min-width: 0; }
.search-result-body h6 {
    margin: 0 0 0.25rem;
    font-weight: 600;
    color: var(--heading);
}
.search-result-body p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text);
    opacity: 0.75;
}
.search-result-arrow {
    color: var(--accent);
    flex-shrink: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.search-result-card:hover .search-result-arrow { opacity: 1; }

/* ---- Push Sidebar Navigation ---- */
:root {
    --nav-sidebar-width: 280px;
}

.full-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--nav-sidebar-width);
    z-index: 2000;
    visibility: hidden;
    pointer-events: none;
}

.full-nav-overlay.is-open {
    visibility: visible;
    pointer-events: auto;
}

.full-nav-overlay-backdrop {
    display: none;
}

.full-nav-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 8px 0 28px rgba(15, 23, 42, 0.1);
    overflow: hidden;
    transform: translateX(-105%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    border-right: 1px solid rgba(15, 23, 42, 0.08);
}

.full-nav-overlay.is-open .full-nav-panel {
    transform: translateX(0);
}

html.nav-open-pending .full-nav-overlay {
    visibility: visible;
    pointer-events: auto;
}

html.nav-open-pending .full-nav-panel {
    transform: translateX(0);
    transition: none;
}

html.nav-open-pending .site-header,
html.nav-open-pending .site-main,
html.nav-open-pending .site-footer {
    transition: none;
}

body.nav-open .site-header {
    left: var(--nav-sidebar-width);
    right: auto;
    width: calc(100% - var(--nav-sidebar-width));
}

body.nav-open .site-main,
body.nav-open .site-footer {
    margin-left: var(--nav-sidebar-width);
    width: calc(100% - var(--nav-sidebar-width));
    max-width: calc(100% - var(--nav-sidebar-width));
}

/* Mobile/tablet: overlay menu (no content push) */
@media (max-width: 991.98px) {
    :root {
        --nav-sidebar-width: min(280px, 82vw);
    }

    .full-nav-overlay {
        inset: 0;
        width: 100%;
    }

    .full-nav-overlay-backdrop {
        display: block;
        position: absolute;
        inset: 0;
        background: rgba(15, 23, 42, 0.35);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .full-nav-overlay.is-open .full-nav-overlay-backdrop,
    html.nav-open-pending .full-nav-overlay-backdrop {
        opacity: 1;
    }

    .full-nav-panel {
        width: var(--nav-sidebar-width);
        box-shadow: 18px 0 50px rgba(15, 23, 42, 0.18);
    }

    body.nav-open {
        overflow: hidden;
    }

    body.nav-open .site-header,
    html.nav-open-pending .site-header {
        left: 0;
        right: 0;
        width: 100%;
    }

    body.nav-open .site-main,
    body.nav-open .site-footer,
    html.nav-open-pending .site-main,
    html.nav-open-pending .site-footer {
        margin-left: 0;
        width: 100%;
        max-width: 100%;
    }
}


.full-nav-panel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.35rem 0.85rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    flex-shrink: 0;
}

.full-nav-content {
    width: 100%;
    padding: 1rem 1.35rem 1.75rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    flex: 1 1 auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.full-nav-content::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.full-nav-label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.85rem;
}

.full-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-nav-link {
    display: block;
    padding: 0.7rem 0.65rem;
    margin: 0.1rem 0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--heading);
    position: relative;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.full-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 0;
    border-radius: 999px;
    background: var(--accent);
    transform: translateY(-50%);
    transition: height 0.25s ease;
}

.full-nav-link:hover,
.full-nav-link:focus-visible,
.full-nav-link.is-active {
    color: var(--accent);
    background: rgba(28, 213, 39, 0.08);
    transform: translateX(2px);
}

.full-nav-link:hover::before,
.full-nav-link:focus-visible::before,
.full-nav-link.is-active::before {
    height: 55%;
}

.full-nav-tagline {
    margin-top: 1.5rem;
    color: var(--text);
    opacity: 0.65;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.5;
}

.full-nav-close {
    border: none;
    background: transparent;
    color: var(--heading);
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.full-nav-close:hover {
    background: rgba(15, 23, 42, 0.06);
}

body.nav-open .home-nav-toggle,
html.nav-open-pending .home-nav-toggle {
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
}

.home-nav-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.home-nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.home-nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ---- Hero ---- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background-color: #030712;
}

.hero-page-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-slider-track {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out;
    overflow: hidden;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 6s ease-out;
    filter: none !important;
}

.hero-slide.active .hero-slide-img {
    transform: scale(1);
}

.hero-overlay {
    display: none !important;
}

.hero-page::after {
    display: none;
}

.hero-slider-dots {
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    z-index: 10;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.35s ease;
}

.hero-dot:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

.hero-dot.active {
    width: 28px;
    border-radius: 12px;
    background: #5CBCF7;
    box-shadow: 0 0 12px rgba(92, 188, 247, 0.85);
}

.hero-page-content {
    position: relative;
    z-index: 2;
    padding: 7rem 1.5rem 4rem;
}

.hero-page-copy {
    max-width: 920px;
    margin: 0 auto;
    text-align: center;
}

.hero-brand-title {
    font-size: clamp(2.2rem, 4.2vw, 3.5rem);
    font-weight: 700;
    color: var(--primary, #5CBCF7);
    letter-spacing: 0.03em;
    margin-bottom: 0.65rem;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0.35em;
    width: 100%;
    align-items: center;
    justify-content: center;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.35s ease, filter 0.35s ease;
}

.hero-brand-title .hero-brand-subtext {
    font-size: 1em;
    margin-top: 0;
    letter-spacing: 0.03em;
    text-transform: none;
    font-weight: 700;
    color: var(--primary, #5CBCF7);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}



.hero-badge-tagline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 0.25rem 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    margin-bottom: 1.25rem;
}

.hero-badge-tagline .tagline-word {
    display: inline-block;
    padding: 0.15rem 0.35rem;
    border-radius: 20px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    user-select: none;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-badge-tagline .tagline-sep {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    font-weight: 700;
    padding: 0;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-badge-tagline .tagline-word:hover {
    transform: translateY(-2px) scale(1.1);
    color: #ffffff;
}

.hero-badge-tagline .tagline-word.tagline-design:hover {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.9), rgba(0, 198, 255, 0.9));
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-badge-tagline .tagline-word.tagline-innovate:hover {
    background: linear-gradient(135deg, rgba(102, 16, 242, 0.9), rgba(181, 23, 158, 0.9));
    box-shadow: 0 6px 18px rgba(102, 16, 242, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-badge-tagline .tagline-word.tagline-translate:hover {
    background: linear-gradient(135deg, rgba(253, 126, 20, 0.9), rgba(255, 71, 87, 0.9));
    box-shadow: 0 6px 18px rgba(253, 126, 20, 0.5);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

.hero-page-copy .hero-title {
    font-size: clamp(1.35rem, 2.5vw, 2.0rem);
    max-width: 50ch;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
    letter-spacing: 0.045em;
    line-height: 1.45;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.85), 0 1px 3px rgba(0, 0, 0, 0.95);
}

.hero-page-copy .hero-subtitle {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.hero-page-copy .hero-actions {
    justify-content: center;
}

.hero-page-copy .btn-primary {
    background: #ffffff;
    color: var(--heading, #000000);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.hero-page-copy .btn-primary:hover {
    background: #f8fafc;
    color: #000000;
    transform: translateY(-2px);
}

.hero-page-copy .btn-outline-primary {
    border-color: rgba(255, 255, 255, 0.8);
    color: #ffffff;
    backdrop-filter: blur(8px);
}

.hero-page-copy .btn-outline-primary:hover {
    background: #ffffff;
    color: #000000;
    border-color: #ffffff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroKenBurns 20s ease-in-out infinite alternate;
}
@keyframes heroKenBurns {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}
.hero-decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    animation: heroOrbFloat 12s ease-in-out infinite;
}
.hero-orb-1 {
    width: 420px;
    height: 420px;
    background: var(--primary);
    top: -8%;
    right: 10%;
    animation-delay: 0s;
}
.hero-orb-2 {
    width: 320px;
    height: 320px;
    background: var(--secondary);
    bottom: 5%;
    left: -5%;
    animation-delay: -4s;
}
.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: #fff;
    top: 40%;
    right: 35%;
    opacity: 0.15;
    animation-delay: -8s;
}
@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.08); }
}
.hero-grid {
    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: 48px 48px;
    mask-image: radial-gradient(ellipse at 60% 50%, black 20%, transparent 70%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 75% 40%, rgba(5,191,219,0.25) 0%, transparent 55%),
        linear-gradient(135deg, rgba(10,77,104,0.94) 0%, rgba(8,131,149,0.88) 45%, rgba(5,191,219,0.75) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 8rem 0 6rem;
    width: 100%;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 0.4rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    animation: heroBadgePulse 3s ease-in-out infinite;
}
@keyframes heroBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.15); }
    50% { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    letter-spacing: 0.045em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.2);
    line-height: 1.35;
}
.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    opacity: 0.92;
    max-width: 560px;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-btn-primary {
    box-shadow: 0 8px 30px rgba(5,191,219,0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(5,191,219,0.45);
}
.hero-actions .btn-outline-primary {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
    backdrop-filter: blur(8px);
}
.hero-actions .btn-outline-primary:hover {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    aspect-ratio: 1;
}
.hero-visual-ring {
    position: absolute;
    inset: 8%;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: heroRingSpin 30s linear infinite;
}
.hero-visual-ring::before {
    content: '';
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
}
@keyframes heroRingSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.hero-visual-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: heroCorePulse 4s ease-in-out infinite;
}
@keyframes heroCorePulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 0 rgba(5,191,219,0.3); }
    50% { box-shadow: 0 20px 60px rgba(0,0,0,0.2), 0 0 0 16px rgba(5,191,219,0); }
}
.hero-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.hero-float-card i {
    font-size: 1.1rem;
    color: var(--primary);
}
.hero-float-1 { top: 8%; right: 0; animation: heroFloat1 6s ease-in-out infinite; }
.hero-float-2 { top: 28%; left: -8%; animation: heroFloat2 7s ease-in-out infinite; }
.hero-float-3 { bottom: 28%; right: -5%; animation: heroFloat3 5.5s ease-in-out infinite; }
.hero-float-4 { bottom: 8%; left: 5%; animation: heroFloat4 6.5s ease-in-out infinite; }
@keyframes heroFloat1 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes heroFloat2 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-8px, 10px); }
}
@keyframes heroFloat3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(14px); }
}
@keyframes heroFloat4 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -8px); }
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}
.hero-stat-item p {
    font-size: 0.875rem;
    opacity: 0.75;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-bg img,
    .hero-orb,
    .hero-visual-ring,
    .hero-visual-core,
    .hero-float-card,
    .hero-badge {
        animation: none;
    }
}

/* ---- Premium Experience Switcher ---- */
.premium-experience-section {
    padding-top: 4rem;
    padding-bottom: 5rem;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.section-switcher {
    background: rgba(255,255,255,0.78);
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(10, 77, 104, 0.06);
    backdrop-filter: blur(16px);
}

.section-switcher-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.switcher-pill {
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    border-radius: 999px;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.25s ease;
}

.switcher-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.switcher-panel {
    display: none;
}

.switcher-panel.is-active {
    display: block;
    animation: fadePanel 0.5s ease;
}

@keyframes fadePanel {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.switcher-visual {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    min-height: 320px;
}

.switcher-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.switcher-badge {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}

.switcher-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.4rem;
    height: 100%;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.switcher-card-icon {
    color: var(--accent);
    font-size: 1.3rem;
    margin-bottom: 0.9rem;
}

.switcher-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.switcher-card p {
    margin-bottom: 0;
    color: var(--text);
    opacity: 0.76;
}

.structure-stack {
    display: grid;
    gap: 1rem;
}

.structure-card {
    border-radius: 20px;
    padding: 1.25rem 1.4rem;
    border: 1px solid var(--border);
    background: linear-gradient(135deg, #ffffff, #f7fbfc);
}

.structure-card-main {
    border-left: 4px solid var(--primary);
}

.structure-card-sub {
    margin-left: 2rem;
}

.contact-card a {
    color: var(--primary);
}

/* ---- Section Styles ---- */
.section {
    padding: 6rem 0;
}
.section-sm { padding: 4rem 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.section-label {
    display: inline-block;
    font-family: var(--font-button);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 0.75rem;
}
.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.section-desc {
    color: var(--text);
    opacity: 0.75;
    font-size: 1.05rem;
}

.bg-light-section,
.bg-alt-section {
    background-color: var(--background, #C8CFD6) !important;
}

/* ---- Cards ---- */
.card-premium {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}
.card-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    margin-bottom: 1.25rem;
}

.card-premium h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.card-premium p {
    font-size: 0.925rem;
    opacity: 0.8;
    margin-bottom: 0;
}

.service-card {
    --svc-accent: var(--primary);
    --svc-accent-soft: rgba(92, 188, 247, 0.12);
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.35rem 1.5rem 1.35rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--svc-accent), transparent);
}

.service-card::after {
    content: '';
    position: absolute;
    left: 50%;
    top: -48px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, var(--svc-accent-soft) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.5;
}

.service-card--blue {
    --svc-accent: #2563eb;
    --svc-accent-soft: rgba(37, 99, 235, 0.15);
}

.service-card--orange {
    --svc-accent: #ea580c;
    --svc-accent-soft: rgba(234, 88, 12, 0.15);
}

.service-card--green {
    --svc-accent: #16a34a;
    --svc-accent-soft: rgba(22, 163, 74, 0.15);
}

.service-card--teal {
    --svc-accent: #0284c7;
    --svc-accent-soft: rgba(2, 132, 199, 0.15);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
    font-size: 1.45rem;
    color: #ffffff !important;
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, var(--svc-accent) 0%, color-mix(in srgb, var(--svc-accent) 80%, #000) 100%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16), 0 2px 6px color-mix(in srgb, var(--svc-accent) 50%, transparent);
    transition: transform 0.35s ease;
}

.service-card-icon i {
    color: #ffffff !important;
    font-weight: 700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.service-card h4 {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--heading);
}

.service-card p {
    position: relative;
    z-index: 1;
    margin: 0 0 1.25rem;
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text);
    opacity: 0.82;
    flex: 1 1 auto;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: color-mix(in srgb, var(--svc-accent) 35%, transparent);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
}

.service-card:hover .service-card-icon {
    transform: scale(1.06);
}

.service-card .service-learn-more {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding: 0.45rem 1.25rem;
    font-size: 0.875rem;
    border-radius: 999px;
    background: var(--svc-accent);
    border: none;
    box-shadow: 0 10px 24px color-mix(in srgb, var(--svc-accent) 30%, transparent);
    align-self: center;
}

.service-card .service-learn-more:hover {
    background: color-mix(in srgb, var(--svc-accent) 80%, #0f172a);
    color: #fff;
}

/* Service enquiry modal */
.service-enquiry-modal {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(15, 23, 42, 0.2);
    border-top: 5px solid var(--primary, #5CBCF7);
    padding: 0.25rem;
}

.service-modal-logo {
    height: 54px !important;
    max-height: 58px !important;
    width: auto;
    object-fit: contain;
}

.service-enquiry-kicker {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary, #5CBCF7);
}

.service-enquiry-modal .modal-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--heading, #000000);
}

.service-enquiry-service {
    font-size: 0.85rem;
    color: var(--secondary, #EE753B);
    font-weight: 600;
}

.service-enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 0.85rem;
}

.service-enquiry-field {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.service-enquiry-field--full {
    grid-column: 1 / -1;
}

.service-enquiry-field label {
    margin: 0;
    font-weight: 600;
    color: var(--heading, #000000);
    font-size: 0.825rem;
}

.service-enquiry-field label span {
    color: #e11d48;
}

.service-enquiry-field .form-control {
    border: 1px solid var(--border, #cbd5e1);
    border-radius: 10px;
    padding: 0.42rem 0.75rem;
    font-size: 0.875rem;
    box-shadow: none;
    background: #ffffff;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-enquiry-field .form-control:focus {
    border-color: var(--primary, #5CBCF7);
    box-shadow: 0 0 0 3px rgba(92, 188, 247, 0.25);
}

.service-enquiry-field textarea {
    min-height: 72px;
    resize: vertical;
}

.service-enquiry-meta {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 0.2rem;
    font-size: 0.72rem;
    color: rgba(15, 23, 42, 0.55);
}

.service-enquiry-meta .is-over {
    color: #e11d48;
    font-weight: 600;
}

.service-enquiry-actions {
    display: flex;
    justify-content: center;
    margin-top: 0.85rem;
}

.service-enquiry-actions .btn-primary,
#serviceEnquirySubmit {
    background: linear-gradient(135deg, var(--primary, #5CBCF7) 0%, var(--secondary, #EE753B) 100%) !important;
    border: none !important;
    color: #ffffff !important;
    min-width: 140px;
    padding: 0.5rem 1.6rem;
    font-size: 0.925rem;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(92, 188, 247, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-enquiry-actions .btn-primary:hover,
#serviceEnquirySubmit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(238, 117, 59, 0.35);
}

@media (max-width: 575.98px) {
    .service-enquiry-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Vertical Cards ---- */
.vertical-card {
    border-radius: 14px;
    overflow: hidden;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
}
.vertical-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}
.vertical-card-img {
    height: 220px;
    overflow: hidden;
}
.vertical-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.vertical-card:hover .vertical-card-img img { transform: scale(1.08); }
.vertical-card-body { padding: 1.75rem; }
.vertical-card-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }

/* ---- Team Cards ---- */
.team-card {
    text-align: center;
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
}
.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.team-photo {
    height: 280px;
    overflow: hidden;
    position: relative;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.05); }
.team-info { padding: 1.5rem; }
.team-info h4 { font-size: 1.1rem; margin-bottom: 0.25rem; }
.team-info .designation { color: var(--accent); font-size: 0.875rem; font-weight: 500; }

/* ---- Testimonials ---- */
.testimonial-card {
    background: var(--card);
    border-radius: 14px;
    padding: 2.5rem;
    border: 1px solid var(--border);
    position: relative;
    height: 100%;
}
.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: var(--accent);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    line-height: 1;
    font-family: Georgia, serif;
}
.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-top: 1.5rem;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.testimonial-author h5 { font-size: 0.95rem; margin-bottom: 0; }
.testimonial-author span { font-size: 0.8rem; opacity: 0.6; }

/* ---- Stats Section ---- */
.stats-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 5rem 0;
    color: #fff;
}
.stat-item { text-align: center; }
.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.25rem;
}
.stat-item p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin: 0;
}

/* ---- CTA Section ---- */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 5rem 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    top: -100px;
    right: -100px;
}
.cta-section h2 { color: #fff; font-size: 2.25rem; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 1.1rem; }

/* ---- Blog Cards ---- */
.blog-card {
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.blog-card-img {
    height: 220px;
    overflow: hidden;
}
.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.75rem; }
.blog-meta {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 0.75rem;
}
.blog-card-body h4 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.blog-card-body h4 a { color: var(--heading); }
.blog-card-body h4 a:hover { color: var(--primary); }

/* ---- Publication Cards ---- */
.pub-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}
.pub-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border-color: var(--accent);
}
.pub-type {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    background: rgba(5,191,219,0.1);
    color: var(--accent);
    margin-bottom: 1rem;
}

/* ---- Page Banner ---- */
.page-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 9.25rem 0 5.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow-x: hidden;
    width: 100%;
}
.page-banner h1 {
    font-size: clamp(1.85rem, 3.6vw, 2.65rem);
    color: #fff;
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.page-banner h1:has(+ .breadcrumb-nav),
.page-banner h1 + .breadcrumb-nav {
    margin-top: 1.25rem;
}
.service-banner {
    background-image: url('../img/service background.png');
    background-size: cover;
    background-position: center;
}
.service-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
}
.service-banner .container {
    position: relative;
    z-index: 1;
}
.vertical-banner {
    background-image: url('../img/vertical.webp');
    background-size: 100% 100%;
    background-position: center;
}
.vertical-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
}
.vertical-banner .container {
    position: relative;
    z-index: 1;
    visibility: hidden;
}
.page-banner p {
    font-size: 1rem;
    opacity: 0.92;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.55;
}
.breadcrumb-nav {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.7); }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav span { opacity: 0.5; }

/* ---- Contact Page ---- */
.contact-quick-cards {
    margin-top: -3rem;
    position: relative;
    z-index: 2;
    overflow-x: hidden;
    width: 100%;
}

.contact-quick-card {
    background: var(--card);
    border-radius: 14px;
    padding: 1.75rem 1.5rem;
    border: 1px solid var(--border);
    text-align: center;
    height: auto;
    transition: all 0.35s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.contact-quick-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}
.contact-quick-card .icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(10, 77, 104, 0.08), rgba(5, 191, 219, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.35rem;
    color: var(--primary);
}
.contact-quick-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}
.contact-quick-card p {
    margin: 0;
    font-size: 0.925rem;
    color: var(--text);
    opacity: 0.85;
    word-break: break-word;
    overflow-wrap: anywhere;
}
.contact-quick-card a {
    color: var(--link);
    font-weight: 500;
}

.contact-layout {
    align-items: flex-start;
}

.contact-sidebar {
    background: var(--card);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 2rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}
.contact-sidebar h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.contact-sidebar .intro {
    font-size: 0.925rem;
    color: var(--text);
    opacity: 0.75;
    margin-bottom: 1.5rem;
}
.contact-detail-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}
.contact-detail-item:last-of-type {
    border-bottom: none;
}
.contact-detail-item .detail-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent);
    font-size: 1.1rem;
}
.contact-detail-item h6 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text);
    opacity: 0.6;
    margin-bottom: 0.25rem;
}
.contact-detail-item p {
    margin: 0;
    font-size: 0.925rem;
    font-weight: 500;
    color: var(--heading);
}
.contact-detail-item a {
    color: var(--heading);
}
.contact-detail-item a:hover {
    color: var(--primary);
}

.contact-social-block {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.contact-social-block h6 {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.contact-social-links {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.contact-social-links a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}
.contact-social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.contact-sidebar-compact {
    padding: 1.35rem 1.5rem !important;
}
.contact-form-card-compact {
    padding: 1.5rem 1.75rem !important;
}

.contact-form-card {
    background: var(--card);
    border-radius: 14px;
    border: 1px solid var(--border);
    padding: 2.5rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    height: auto;
}
.contact-form-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}
.contact-form-card .form-subtitle {
    color: var(--text);
    opacity: 0.7;
    font-size: 0.925rem;
    margin-bottom: 1.75rem;
}

.contact-info-card {
    background: var(--card);
    border-radius: 14px;
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}
.contact-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.contact-info-card i {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 1rem;
}
.contact-form .form-control, .contact-form .form-select {
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.75rem 1.25rem;
    font-size: 0.925rem;
    background: var(--card);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form .form-control:focus, .contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(5,191,219,0.15);
}

.map-container {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    max-width: 100%;
}
.map-container iframe {
    display: block;
    width: 100% !important;
    max-width: 100%;
    min-height: 400px;
    border: 0;
}

/* ---- Gallery ---- */
.gallery-grid .gallery-item {
    height: 100%;
    background: var(--card);
    border: 1px solid var(--border);
}
.gallery-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    background: #fff;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.02); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10,77,104,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: #fff; }

/* Gallery lightbox */
body.gallery-lightbox-open { overflow: hidden; }
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}
.gallery-lightbox[hidden] { display: none !important; }
.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 20, 30, 0.82);
    cursor: pointer;
}
.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    max-width: min(1100px, 94vw);
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-lightbox-image {
    display: block;
    max-width: 100%;
    max-height: 88vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #fff;
}
.gallery-lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #0F172A;
    font-size: 1.75rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.gallery-lightbox-close:hover {
    background: var(--primary, #0A4D68);
    color: #fff;
}
@media (max-width: 767.98px) {
    .gallery-lightbox {
        padding: 0.5rem;
    }
    .gallery-lightbox-dialog {
        max-width: 100%;
        max-height: calc(100vh - 1rem);
        padding: 0;
    }
    .gallery-lightbox-image {
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 4rem);
        border-radius: 12px;
    }
    .gallery-lightbox-close {
        top: 0.5rem;
        right: 0.5rem;
    }
}

/* ---- Partners ---- */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--card);
    border-radius: 12px;
    border: 1px solid var(--border);
    height: 100px;
    transition: all 0.3s ease;
    filter: grayscale(100%);
    opacity: 0.6;
}
.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.partner-logo img { max-height: 50px; max-width: 120px; object-fit: contain; }

/* ---- Footer ---- */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255,255,255,0.75);
    padding: 2.5rem 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1.35rem;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 1.75rem;
}

.footer-socials {
    display: flex;
    gap: 0.75rem;
}

.footer-socials a,
.contact-social-links a,
.footer-top-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #fff;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.footer-socials a.social-facebook,
.contact-social-links a.social-facebook,
.footer-socials a:has(.bi-facebook),
.contact-social-links a:has(.bi-facebook) {
    background: #1877F2 !important;
    color: #ffffff !important;
}

.footer-socials a.social-linkedin,
.contact-social-links a.social-linkedin,
.footer-socials a:has(.bi-linkedin),
.contact-social-links a:has(.bi-linkedin) {
    background: #0A66C2 !important;
    color: #ffffff !important;
}

.footer-socials a.social-x,
.contact-social-links a.social-x,
.footer-socials a:has(.bi-twitter-x),
.contact-social-links a:has(.bi-twitter-x),
.footer-socials a:has(.bi-twitter),
.contact-social-links a:has(.bi-twitter) {
    background: #000000 !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
}

.footer-socials a.social-instagram,
.contact-social-links a.social-instagram,
.footer-socials a:has(.bi-instagram),
.contact-social-links a:has(.bi-instagram) {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: #ffffff !important;
}

.footer-socials a.social-youtube,
.contact-social-links a.social-youtube,
.footer-socials a:has(.bi-youtube),
.contact-social-links a:has(.bi-youtube) {
    background: #FF0000 !important;
    color: #ffffff !important;
}

.footer-socials a:hover,
.contact-social-links a:hover,
.footer-top-link:hover {
    transform: translateY(-3px);
    filter: brightness(1.15);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}
.footer-main {
    align-items: flex-start;
}
.footer-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}
.footer-logo-link:hover { color: var(--accent); }
.footer-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
    color: rgba(255,255,255,0.65);
    max-width: 320px;
}
.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}
.footer-heading {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li { margin-bottom: 0.45rem; }
.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    color: rgba(255,255,255,0.7);
}
.footer-contact-list span {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
}
.footer-contact-list a {
    color: rgba(255,255,255,0.7);
}
.footer-contact-list a:hover { color: var(--accent); }

@media (max-width: 767.98px) {
    .site-footer { padding: 2rem 0; }
    .footer-desc { max-width: 100%; }
}

.newsletter-form .form-control {
    border-radius: 10px 0 0 10px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 0.875rem;
}
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form .btn { border-radius: 0 10px 10px 0; }

/* ---- Mission/Vision ---- */
.mv-card {
    background: var(--card);
    border-radius: 14px;
    padding: 3rem;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--accent));
}
.mv-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.mv-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10,77,104,0.08), rgba(5,191,219,0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* ---- About Timeline ---- */
.timeline-item {
    position: relative;
    padding-left: 2.5rem;
    padding-bottom: 2rem;
    border-left: 2px solid var(--border);
}
.timeline-item::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
}
.timeline-item h4 { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* ---- Course Cards ---- */
.course-card {
    background: var(--card);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s ease;
    height: 100%;
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}
.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    text-transform: capitalize;
}

/* ---- 404 ---- */
.error-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.error-page h1 { font-size: 6rem; color: var(--accent); }

/* ---- Utilities ---- */
.text-accent { color: var(--accent); }
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* ---- Loader ---- */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.96);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.page-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.page-loader-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--primary);
}

.page-loader-ring {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 3px solid rgba(10,77,104,0.18);
    border-top-color: var(--accent);
    animation: spin 0.9s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ---- Responsive ---- */
@media (max-width: 991.98px) {
    .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
    .hero-stat-item h3 { font-size: 2rem; }
    .section { padding: 4rem 0; }
    .page-banner { padding: 10rem 0 5rem; }
    .contact-quick-cards { margin-top: -2rem; }
    .contact-form-card { padding: 1.75rem; }
    .navbar .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    [data-aos] {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
}

@media (max-width: 767.98px) {
    .hero-page {
        min-height: 80vh;
        padding: 3rem 0 2rem;
    }
    .hero-page-content {
        padding-top: 6rem;
    }
    .hero-page-copy .hero-title {
        max-width: none;
    }
    .hero-content { padding: 7rem 0 5rem; }
    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.65rem;
    }
    .hero-actions .btn {
        width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
        line-height: 1.4;
    }
    .hero-actions .btn-lg {
        border-radius: 8px;
    }
    .hero-visual-col {
        margin-top: 2rem;
        padding: 0 0.5rem;
    }
    .hero-visual {
        max-width: 300px;
    }
    .hero-visual-core {
        width: 72px;
        height: 72px;
        font-size: 1.6rem;
    }
    .hero-float-card {
        padding: 0.4rem 0.7rem;
        font-size: 0.72rem;
    }
    .hero-float-card i {
        font-size: 0.9rem;
    }
    .hero-float-1 { top: 10%; right: 2%; }
    .hero-float-2 { top: 30%; left: 0; }
    .hero-float-3 { bottom: 30%; right: 0; }
    .hero-float-4 { bottom: 10%; left: 2%; }
    .hero-stats { flex-direction: column; gap: 1rem; }
    .stat-item h3 { font-size: 2.25rem; }
    .section-switcher { padding: 1.25rem; }
    .structure-card-sub { margin-left: 0; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .home-nav-toggle {
        position: absolute;
        top: 0.9rem;
        left: 0.75rem;
        transform: none;
        z-index: 1100;
        background: rgba(0, 0, 0, 0.22);
        padding: 0.45rem 0.55rem;
        border-radius: 14px;
    }
    .home-nav-toggle span {
        background: #fff;
    }
    .home-header-logo {
        margin-left: auto;
        margin-right: 0;
        transform: none;
    }
}

@media (max-width: 575.98px) {
    .card-premium { padding: 1.5rem; }
    .mv-card { padding: 2rem; }
    :root {
        --nav-sidebar-width: min(260px, 86vw);
    }
    .full-nav-content {
        padding: 0.85rem 1.1rem 1.5rem;
    }
    .full-nav-link {
        font-size: 1rem;
        padding: 0.65rem 0.55rem;
    }
    .full-nav-label {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
    }
    .full-nav-tagline {
        font-size: 0.75rem;
    }
    .page-banner {
        padding: 8.5rem 0 4.5rem;
    }
    .page-banner p {
        padding: 0 1rem;
    }
    .home-nav-toggle {
        position: fixed;
        top: 1rem;
        left: 1rem;
        transform: none;
        z-index: 1300;
        background: rgba(0, 0, 0, 0.45) !important;
        padding: 0.55rem 0.65rem !important;
        border-radius: 14px !important;
        min-width: 44px;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
        transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    }
    body.nav-open .home-nav-toggle {
        visibility: hidden;
        pointer-events: none;
        opacity: 0;
    }
    .home-nav-toggle span {
        background: #fff !important;
    }
    .home-header-logo {
        margin-left: auto;
        margin-right: 0.25rem;
        transform: none;
        z-index: 1;
    }
}

/* ---- Key Verticals List Section ---- */
.org-structure-img {
    width: 100%;
    max-width: 620px;
    height: auto;
    object-fit: contain;
}

.verticals-heading {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    line-height: 1.25;
    white-space: nowrap !important;
    flex-wrap: nowrap !important;
    margin-bottom: 1.75rem !important;
}

.verticals-heading .brand-text {
    color: #ee753b;
    font-weight: 700;
    font-family: var(--font-heading);
}

.verticals-heading .main-text {
    color: #4382c4;
    font-weight: 600;
    font-family: var(--font-heading);
}

.verticals-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.verticals-points-list li {
    position: relative;
    padding-left: 1.85rem;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #334155;
}

.verticals-points-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

/* Point 1: Femtolab - Green */
.verticals-points-list li.point-lab::before {
    background: #1b4d3e;
}
.verticals-points-list li.point-lab strong {
    color: #1b4d3e;
    font-weight: 700;
}

/* Point 2: Femtoskills - Red/Orange */
.verticals-points-list li.point-skills::before {
    background: #c2410c;
}
.verticals-points-list li.point-skills strong {
    color: #c2410c;
    font-weight: 700;
}

/* Point 3: Femtovision - Teal/Blue */
.verticals-points-list li.point-vision::before {
    background: #0284c7;
}
.verticals-points-list li.point-vision strong {
    color: #0284c7;
    font-weight: 700;
}

/* Point 4: Femtoconnect - Brown/Gold */
.verticals-points-list li.point-connect::before {
    background: #78350f;
}
.verticals-points-list li.point-connect strong {
    color: #78350f;
    font-weight: 700;
}

/* ---- Fix Modal Overlay & Sidebar Conflicts ---- */
.modal-backdrop {
    z-index: 3000 !important;
}

.modal {
    z-index: 3050 !important;
}

body.nav-open .modal-backdrop {
    z-index: 3000 !important;
}

body.nav-open .modal {
    z-index: 3050 !important;
    left: 0 !important;
    width: 100vw !important;
    margin-left: 0 !important;
}

body.modal-open {
    overflow: hidden !important;
}

/* ---- Structured Section Zoom ---- */
.hover-zoom:hover {
    transform: scale(1.03);
}
