﻿
/* =========================================================
   RESET + ACCESSIBILITY
========================================================= */
html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f5f7fb;
    color: #222;
    line-height: 1.8;
    overflow-x: hidden;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* =========================================================
   CONTAINER
========================================================= */

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* =========================================================
   SKIP LINK
========================================================= */

.skip-link {
    position: absolute;
    top: -60px;
    left: 10px;
    background: #000;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    z-index: 99999;
}

    .skip-link:focus-visible {
        top: 10px;
    }

/* =========================================================
   ACCESSIBILITY FOCUS
========================================================= */

:focus-visible {
    outline: 3px solid #FFD54A;
    outline-offset: 3px;
}

/* =========================================================
   TOP BAR
========================================================= */

.topbar {
    background: #2f3d7e;
    color: #fff;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
}

.topbar a {
    color: #fff;
    text-decoration: none;
}

/* =========================================================
   HEADER
========================================================= */

.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 9999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 100px;
    padding: 15px 0;
    position: relative;
}

/* =========================================================
   LOGO
========================================================= */

.logo a {
    font-size: 24px;
    font-weight: 800;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
}

/* =========================================================
   NAV
========================================================= */

/*nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}*/

/* =========================================================
   MENU
========================================================= */

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

    .menu > li {
        position: relative;
    }

    .menu a,
    .menu button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 10px 16px;
        font-size: 14px;
        font-weight: 700;
        color: #1f3c88;
        background: transparent;
        border: none;
        border-radius: 10px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.25s ease;
    }

        .menu a:hover,
        .menu button:hover {
            background: #1f3c88;
            color: #ffffff;
        }

    .menu .active {
        background: #1f3c88;
        color: #fff !important;
        border-radius: 10px;
    }

.submenu > li > a {
    border-radius: 0px !important;
}

/* =========================================================
   DROPDOWN
========================================================= */

.submenu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 240px;
    background: #ffffff;
/*    border-radius: 20px;*/
/*    padding: 12px;*/
    list-style: none;
    border: 1px solid #e7ebf3;
    box-shadow: 0 12px 30px rgba(15,23,42,0.10);
    z-index: 9999;
    padding-left: 0px;
    padding-right: 0px;
}

    .submenu.show {
        display: block;
    }

    .submenu li {
        margin-bottom: 2px;
    }

        .submenu li:last-child {
            margin-bottom: 0;
        }

        .submenu li a {
            display: flex;
            /*align-items: center;*/
            /*padding: 3px 8px;*/
        /*    border-radius: 20px;*/
            text-decoration: none;
/*            font-size: 16px;
            font-weight: 600;*/
/*            color: #222;*/
            transition: all 0.2s ease;
        }

            .submenu li a:hover {
                background: #1f3c88;
                color: #ffffff;
            }

/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #000;
    padding: 120px 20px 90px;
}

/* =========================================================
   HERO IMAGE
========================================================= */

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 1;
    transform: scale(1.02);
}

/* =========================================================
   OVERLAY
========================================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( to bottom, rgba(0,0,0,0.45), rgba(0,0,0,0.38), rgba(0,0,0,0.55) );
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 760px;
    margin-left: auto;
    margin-right: 120px;
    text-align: left;
    color: #fff;
}

    /* =========================================================
   HERO TITLE
========================================================= */

    .hero-content h1 {
        font-size: 84px;
        line-height: 1.02;
        margin-bottom: 28px;
        font-weight: 800;
        letter-spacing: -2px;
        color: #fff;
        text-shadow: 0 6px 24px rgba(0,0,0,0.45);
    }

    /* =========================================================
   HERO TEXT
========================================================= */

    .hero-content p {
        font-size: 24px;
        line-height: 1.9;
        margin-bottom: 40px;
        color: rgba(255,255,255,0.92);
        text-shadow: 0 3px 14px rgba(0,0,0,0.45);
    }

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    margin-top: 260px;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 190px;
    min-height: 58px;
    padding: 14px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* =========================================================
   PRIMARY BUTTON
========================================================= */

.btn-primary {
    background: linear-gradient( 135deg, #2152ff, #1847eb );
    color: #fff;
    box-shadow: 0 10px 25px rgba(33,82,255,0.35);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 35px rgba(33,82,255,0.45);
    }

/* =========================================================
   SECONDARY BUTTON
========================================================= */

.btn-secondary {
    background: rgba(255,255,255,0.92);
    color: #111;
    backdrop-filter: blur(10px);
}

    .btn-secondary:hover {
        background: #fff;
        transform: translateY(-2px);
    }

/* =========================================================
   ABOUT
========================================================= */

.info-section {
    padding: 70px 20px 30px;
    background: #fff;
}

.info-content {
    max-width: 1100px;
    margin: auto;
    text-align: center;
}

    .info-content h2 {
        font-size: 56px;
        line-height: 1.15;
        margin-bottom: 34px;
        color: #102a43;
        letter-spacing: -1px;
    }

    .info-content p {
        font-size: 21px;
        line-height: 2;
        margin-bottom: 24px;
        color: #52606d;
    }


/* =========================================================
   CONDITIONS / PRODUCTS SECTION
========================================================= */

.conditions-section {
    padding: 40px 20px 80px;
    background: linear-gradient( to bottom, #f7f9fc, #eef3f8 );
}

    .conditions-section h2 {
        text-align: center;
        margin-top: 0;
        margin-bottom: 26px;
        font-size: 56px;
        line-height: 1.1;
        color: #102a43;
        letter-spacing: -1px;
    }

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 992px) {

    .hero {
        min-height: 680px;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-content p {
        font-size: 20px;
    }

    .info-content h2,
    .conditions-section h2 {
        font-size: 44px;
    }

    .info-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .hero {
        min-height: 600px;
        padding: 110px 16px 70px;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn-primary,
    .btn-secondary {
        min-width: 160px;
        min-height: 52px;
        padding: 12px 20px;
        font-size: 14px;
    }

    .info-section {
        padding: 50px 16px 20px;
    }

    .conditions-section {
        padding: 30px 16px 60px;
    }

        .info-content h2,
        .conditions-section h2 {
            font-size: 34px;
        }

    .info-content p {
        font-size: 16px;
        line-height: 1.9;
    }
}
}

/* =========================================================
   DARK SECTION
========================================================= */

.dark-section {
    padding: 60px 20px;
    background: #14285D;
    color: #fff;
    text-align: center;
}

    .dark-section h2 {
        font-size: 44px;
        margin-bottom: 30px;
    }

    .dark-section p {
        max-width: 1000px;
        margin: 0 auto 24px;
        font-size: 20px;
        line-height: 2;
    }

/* =========================================================
   CTA
========================================================= */

.home-cta {
    padding: 60px 20px;
    text-align: center;
}

    .home-cta h2 {
        font-size: 50px;
        margin-bottom: 24px;
    }

    .home-cta p {
        font-size: 20px;
        margin-bottom: 34px;
    }

/* =========================================================
   FORM
========================================================= */

.form-group {
    margin-bottom: 25px;
}

.form-control {
    width: 100%;
    min-height: 48px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

textarea.form-control {
    min-height: 140px;
}

.text-danger {
    color: #c40000;
    font-size: 14px;
}

.error-summary {
    background: #ffe5e5;
    padding: 15px 20px;
    margin-bottom: 30px;
    border-left: 5px solid red;
    border-radius: 4px;
}

.alert-success {
    background: #e6ffed;
    padding: 15px;
    margin-bottom: 20px;
    border-left: 5px solid green;
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #111;
    color: #fff;
    padding: 50px 0;
}

    .footer a {
        color: #5fa8ff;
    }

/* =========================================================
   HAMBURGER
========================================================= */

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #1f3c88;
    flex-shrink: 0;
}

/* =========================================================
   MOBILE MENU
========================================================= */

/*.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    max-width: 88%;
    height: 100dvh;
    background: #fff;
    box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    padding: 80px 20px 30px;
    transition: right 0.3s ease;
    z-index: 99999;
    overflow-y: auto;
    overscroll-behavior: contain;
    box-sizing: border-box;
}*/


.mobile-menu {
    position: fixed;
    right: -100%;
    top: 0;
    width: 100%;
    padding: 0px 20px 30px;
    transition: right 0.3s ease;
    z-index: 99999;
    box-sizing: border-box;
}

    .mobile-menu.open {
        right: 0;
    }

    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .mobile-menu > nav > ul > li {
        margin-bottom: 12px;
    }

    .mobile-menu a,
    .mobile-dropdown-btn {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        min-height: 44px;
        padding: 12px 14px;
        font-size: 15px;
        font-weight: 600;
        color: #222;
        text-decoration: none;
        background: none;
        border: none;
        border-radius: 10px;
        text-align: left;
        cursor: pointer;
    }

        .mobile-menu a:hover,
        .mobile-dropdown-btn:hover {
            background: #f3f6ff;
            color: #1f3c88;
        }

/* =========================================================
   MOBILE SUBMENU
========================================================= */

.mobile-submenu {
    display: none;
    margin-top: 8px;
    margin-left: 10px;
    padding-left: 12px;
    border-left: 2px solid #e5eaff;
}

    .mobile-submenu.show {
        display: block;
    }

    .mobile-submenu li {
        margin-bottom: 6px;
    }

    .mobile-submenu a {
        padding: 5px 5px;
        font-size: 14px;
        color: #555;
    }

/* =========================================================
   MOBILE RESPONSIVE
========================================================= */

@media (max-width: 768px) {

    .topbar {
        display: none;
    }

    .desktop-nav {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    .header-inner {
        padding: 10px 0;
    }

    .logo {
        flex: 1;
        min-width: 0;
    }

        .logo a {
            font-size: 15px;
            overflow: hidden;
            text-overflow: ellipsis;
        }

    .hero {
        min-height: 520px;
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.25;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-content p {
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }

    /* =========================================
   BUTTONS
========================================= */

    .btn-primary,
    .btn-secondary {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 12px 20px;
        border-radius: 999px;
        text-decoration: none;
        font-size: 15px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        transition: all 0.25s ease;
    }

    .btn-primary {
        background: #2152ff;
        color: #fff;
    }

        .btn-primary:hover {
            background: #1847eb;
        }

    .btn-secondary {
        background: rgba(255,255,255,0.95);
        color: #111;
    }

        .btn-secondary:hover {
            background: #fff;
        }

    .info-content h2,
    .conditions-section h2,
    .dark-section h2,
    .home-cta h2 {
        font-size: 34px;
    }

    .info-content p,
    .conditions-list li,
    .dark-section p,
    .home-cta p {
        font-size: 16px;
    }

    .footer {
        text-align: center;
    }
}

.info-content p:last-child {
    margin-bottom: 0;
}

/* =========================================
   HERO MOBILE FIX
========================================= */

@media (max-width: 768px) {

    .hero {
        min-height: 620px;
        padding: 110px 20px 70px;
        align-items: flex-start;
    }

    .hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
        transform: scale(1.05);
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0 8px;
        margin-top: 40px;
        box-sizing: border-box;
    }

        .hero-content h1 {
            font-size: 30px;
            line-height: 1.3;
            margin-bottom: 18px;
            max-width: 320px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 0 4px 18px rgba(0,0,0,0.70);
        }

        .hero-content p {
            font-size: 17px;
            line-height: 1.9;
            max-width: 320px;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 28px;
            color: rgba(255,255,255,0.96);
            text-shadow: 0 4px 18px rgba(0,0,0,0.70);
        }

    .hero-buttons {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 14px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
        min-height: 54px;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }
}

/* =========================================
   HERO OVERLAY
========================================= */

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,0.55), rgba(0,0,0,0.35), rgba(0,0,0,0.65) );
}

/* =========================================
   HAMBURGER ICON
========================================= */

.hamburger::before {
    content: "\2630";
    font-size: 24px;
    color: #1f3c88;
    line-height: 1;
}

/* =========================================
   CONDITIONS GRID
========================================= */

.conditions-section {
    padding: 50px 20px;
    background: #f7f9fc;
}

    .conditions-section h2 {
        text-align: center;
        margin-bottom: 35px;
        font-size: 42px;
    }

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.condition-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    padding: 24px;
    background: #fff;
    border-radius: 18px;
    border-left: 6px solid #2152ff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    font-size: 22px;
    font-weight: 700;
    color: #1f3c88;
    text-align: center;
    text-decoration: none;
    transition: all 0.25s ease;
}

    .condition-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(0,0,0,0.10);
        background: #f7f9ff;
    }

/* =========================================
   FOOTER
========================================= */

/* =========================================
   FOOTER
========================================= */

.footer {
    background: #111;
    color: #fff;
    padding: 35px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 25px;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 14px;
    color: #fff;
}

.footer-column h3 {
    font-size: 24px;
}

.footer-column h4 {
    font-size: 18px;
}

.footer-column p,
.footer-column ul li a {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-column ul li {
        margin-bottom: 8px;
    }

        .footer-column ul li a {
            text-decoration: none;
        }

            .footer-column ul li a:hover {
                color: #fff;
            }

.footer-bottom {
    margin-top: 25px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

    .footer-bottom p {
        margin: 0;
        font-size: 14px;
        color: rgba(255,255,255,0.65);
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .footer {
        padding: 30px 0 20px;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .footer-column h3 {
        font-size: 22px;
    }

    .footer-column h4 {
        font-size: 17px;
    }
}

/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 768px) {

    .footer {
        text-align: center;
    }
}

/* =========================================
   ACCESSIBILITY SPEAK TEXT
========================================= */

.speak-text {
    pointer-events: none;
}

/* =========================================
   ABOUT HERO
========================================= */

.about-hero {
    background: linear-gradient( 135deg, #07152b 0%, #16395f 100% );
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 60px 20px 45px;
}

    .about-hero h1 {
        font-size: 64px;
        margin-bottom: 18px;
        font-weight: 800;
        line-height: 1.1;
    }

    .about-hero p {
        max-width: 950px;
        margin: auto auto 20px;
        font-size: 22px;
        line-height: 1.7;
    }

/* =========================================
   MAIN SECTION
========================================= */

.about-main-section {
    padding: 80px 20px;
    background: #f4f6f9;
}

/* =========================================
   ABOUT BOX
========================================= */

.about-box {
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================================
   IMAGE
========================================= */

.about-left {
    text-align: center;
}

.about-doctor-image {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    border: 10px solid #f2f5ff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

/* =========================================
   RIGHT CONTENT
========================================= */

.about-right h2 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1f3c88;
}

.about-right p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 26px;
    color: #222;
}

/* =========================================
   INFO BOX
========================================= */

.about-info-box {
    background: #f8faff;
    border-left: 5px solid #2152ff;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 25px;
}

    .about-info-box h3 {
        margin-top: 0;
        margin-bottom: 12px;
        color: #1f3c88;
        font-size: 28px;
    }

    .about-info-box p {
        margin-bottom: 0;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .about-box {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px;
    }

    .about-right h2 {
        font-size: 34px;
    }

    .about-right p {
        font-size: 17px;
    }

    .about-info-box h3 {
        font-size: 24px;
    }

    .about-hero h1 {
        font-size: 42px;
    }

    .about-hero p {
        font-size: 18px;
    }
}


/* =========================================
   CAREER HERO
========================================= */

.career-hero {
    background: linear-gradient( 135deg, #07152b 0%, #16395f 100% );
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
    padding: 110px 20px 90px;
}

    .career-hero h1 {
        font-size: 64px;
        margin-bottom: 20px;
    }

    .career-hero p {
        max-width: 900px;
        margin: auto;
        font-size: 22px;
        line-height: 1.9;
    }

/* =========================================
   CAREER SECTION
========================================= */

.career-section {
    padding: 80px 20px;
}

.career-intro {
    text-align: center;
    max-width: 950px;
    margin: auto auto 60px;
}

    .career-intro h2 {
        font-size: 48px;
        margin-bottom: 20px;
    }

    .career-intro p {
        font-size: 22px;
        line-height: 2;
    }

/* =========================================
   GRID
========================================= */

.career-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.career-card {
    background: #fff;
    padding: 35px;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .career-card h3 {
        color: #1f3c88;
        margin-bottom: 24px;
        font-size: 28px;
    }

    .career-card ul {
        padding-left: 22px;
    }

    .career-card li {
        margin-bottom: 16px;
        font-size: 18px;
        line-height: 1.8;
    }

/* =========================================
   FORM SECTION
========================================= */

.career-form-section {
    padding: 20px 20px 90px;
}

.career-form-box {
    background: #fff;
    border-radius: 28px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

    .career-form-box h2 {
        text-align: center;
        margin-bottom: 40px;
        font-size: 42px;
    }

/* =========================================
   FORM
========================================= */

.career-form {
    display: grid;
    gap: 28px;
}

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 700;
    font-size: 18px;
}

.form-control {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #d1d5db;
    font-size: 17px;
    font-family: inherit;
    transition: all 0.25s ease;
}

    .form-control:focus {
        outline: none;
        border-color: #2152ff;
        box-shadow: 0 0 0 4px rgba(33,82,255,0.15);
    }

textarea.form-control {
    resize: vertical;
}

/* =========================================
   VALIDATION
========================================= */

.text-danger {
    color: #dc2626;
    display: block;
    margin-top: 8px;
    font-size: 15px;
}

.validation-summary-errors {
    background: #fee2e2;
    color: #991b1b;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 25px;
    font-weight: 600;
}

.success-message {
    background: #dcfce7;
    color: #166534;
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .career-hero h1 {
        font-size: 42px;
    }

    .career-hero p,
    .career-intro p {
        font-size: 18px;
    }

    .career-intro h2,
    .career-form-box h2 {
        font-size: 34px;
    }

    .career-form-box {
        padding: 25px;
    }
}

/* =========================================*/
.top-banner {
    background: linear-gradient( 135deg, #07152b 0%, #16395f 100% );
    color: #fff;
    text-align: center;
    padding: 60px 20px 45px;
}

    .top-banner h1 {
        color: #fff;
        font-size: 64px;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 18px;
    }

    .top-banner p {
        color: #fff;
        max-width: 980px;
        margin: auto auto 20px;
        font-size: 22px;
        line-height: 1.7;
    }

/* =========================================
   BUTTONS
========================================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .top-banner {
        padding: 45px 18px 35px;
    }

        .top-banner h1 {
            font-size: 42px;
        }

        .top-banner p {
            font-size: 18px;
            line-height: 1.7;
        }
}

.top-banner {
  
    color: #fff !important;
    text-align: center !important;
    padding: 10px 20px 45px !important;
}

    .top-banner h1,
    .top-banner p {
        color: #fff !important;
    }


/* =========================================
   PRIVACY SECTION
========================================= */

.privacy-section {
    padding: 70px 20px;
    background: #f4f6f9;
}

/* =========================================
   PRIVACY CARD
========================================= */

.privacy-card {
    max-width: 1000px;
    margin: auto;
    background: #fff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================================
   INTRO
========================================= */

.policy-intro {
    font-size: 20px;
    line-height: 2;
    color: #222;
    margin-bottom: 40px;
}

/* =========================================
   DATE
========================================= */

.policy-date {
    text-align: center;
    margin-bottom: 35px;
    font-size: 18px;
    color: #444;
}

/* =========================================
   POLICY BLOCK
========================================= */

.policy-block {
    margin-top: 45px;
}

    .policy-block h2 {
        font-size: 34px;
        margin-bottom: 20px;
        color: #1f3c88;
    }

    .policy-block p,
    .policy-block li {
        font-size: 19px;
        line-height: 2;
        color: #222;
    }

    .policy-block ul {
        padding-left: 28px;
    }

    .policy-block li {
        margin-bottom: 14px;
    }

    /* =========================================
   LINKS
========================================= */

    .policy-block a {
        color: #2152ff;
        text-decoration: none;
    }

        .policy-block a:hover {
            text-decoration: underline;
        }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .privacy-card {
        padding: 28px;
    }

    .policy-block h2 {
        font-size: 28px;
    }

    .policy-block p,
    .policy-block li,
    .policy-date,
    .policy-intro {
        font-size: 16px;
    }
}
/* =========================================
   BREADCRUMB
========================================= */

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 18px;
    margin-bottom: 20px;
    font-size: 17px;
    color: rgba(255,255,255,0.92);
}

    .breadcrumb a {
        color: #fff;
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

        .breadcrumb a:hover {
            opacity: 0.8;
        }

/* =========================================
   TREATMENTS SECTION
========================================= */

.treatments-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   INTRO
========================================= */

.treatments-intro {
    text-align: center;
    max-width: 950px;
    margin: auto auto 70px;
}

/* BADGE */

.section-badge {
    display: inline-block;
    background: rgba(31,60,136,0.08);
    color: #1f3c88;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* TITLE */

.treatments-intro h2 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: #102a43;
    margin-bottom: 24px;
}

/* TEXT */

.treatments-intro p {
    font-size: 22px;
    line-height: 1.9;
    color: #52606d;
}

/* =========================================
   GRID
========================================= */

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

/* =========================================
   CARD
========================================= */

.treatment-card {
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    border: 1px solid #e5edf5;
    box-shadow: 0 15px 35px rgba(15,23,42,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .treatment-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 45px rgba(15,23,42,0.12);
    }

/* =========================================
   ICON
========================================= */

.treatment-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient( 135deg, #1f3c88, #4f6fd1 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    margin-bottom: 26px;
    box-shadow: 0 10px 25px rgba(31,60,136,0.18);
}

/* =========================================
   TITLE
========================================= */

.treatment-card h3 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 800;
    color: #102a43;
    margin-bottom: 18px;
}

/* =========================================
   TEXT
========================================= */

.treatment-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #52606d;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .treatments-section {
        padding: 70px 16px;
    }

    .treatments-intro h2 {
        font-size: 40px;
    }

    .treatments-intro p {
        font-size: 17px;
    }

    .treatment-card {
        padding: 28px;
    }

        .treatment-card h3 {
            font-size: 24px;
        }

        .treatment-card p {
            font-size: 16px;
        }
}

/* =========================================
   ACCESSIBILITY SECTION
========================================= */

.accessibility-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   CARD
========================================= */

.accessibility-card {
    max-width: 1050px;
    margin: auto;
    background: #fff;
    border-radius: 30px;
    padding: 55px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

/* =========================================
   BLOCK
========================================= */

.statement-block {
    margin-bottom: 55px;
}

    .statement-block:last-child {
        margin-bottom: 0;
    }

    /* =========================================
   TITLE
========================================= */

    .statement-block h2 {
        font-size: 40px;
        font-weight: 800;
        color: #102a43;
        margin-bottom: 22px;
    }

    /* =========================================
   TEXT
========================================= */

    .statement-block p {
        font-size: 19px;
        line-height: 2;
        color: #52606d;
        margin-bottom: 20px;
    }

    /* =========================================
   LIST
========================================= */

    .statement-block ul {
        padding-left: 24px;
    }

    .statement-block li {
        font-size: 18px;
        line-height: 2;
        color: #52606d;
        margin-bottom: 10px;
    }

/* =========================================
   CONTACT BOX
========================================= */

.accessibility-contact {
    background: #f4f7fb;
    border-left: 5px solid #1f3c88;
    padding: 28px;
    border-radius: 18px;
    margin-top: 25px;
}

    .accessibility-contact a {
        color: #2152ff;
        text-decoration: none;
    }

        .accessibility-contact a:hover {
            text-decoration: underline;
        }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .accessibility-section {
        padding: 70px 16px;
    }

    .accessibility-card {
        padding: 30px;
    }

    .statement-block h2 {
        font-size: 30px;
    }

    .statement-block p,
    .statement-block li {
        font-size: 16px;
    }
}

/* =========================================
   NEWS SECTION
========================================= */

.news-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   MAIN CARD
========================================= */

.news-card {
    max-width: 1150px;
    margin: auto;
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

/* =========================================
   BADGE
========================================= */

.news-badge {
    display: inline-block;
    background: rgba(31,60,136,0.08);
    color: #1f3c88;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* =========================================
   TITLE
========================================= */

.news-card h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 800;
    color: #102a43;
    margin-bottom: 24px;
}

/* =========================================
   INTRO
========================================= */

.news-intro {
    font-size: 21px;
    line-height: 2;
    color: #52606d;
    margin-bottom: 55px;
}

/* =========================================
   GRID
========================================= */

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
}

/* =========================================
   FEATURE CARD
========================================= */

.news-feature-card {
    background: #f8fbff;
    border: 1px solid #e3ebf5;
    border-radius: 26px;
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .news-feature-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    }

/* =========================================
   ICON
========================================= */

.news-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient( 135deg, #1f3c88, #4f6fd1 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 25px;
    box-shadow: 0 10px 25px rgba(31,60,136,0.18);
}

/* =========================================
   FEATURE TITLE
========================================= */

.news-feature-card h3 {
    font-size: 30px;
    line-height: 1.4;
    color: #102a43;
    margin-bottom: 18px;
}

/* =========================================
   FEATURE TEXT
========================================= */

.news-feature-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #52606d;
    margin-bottom: 25px;
}

/* =========================================
   LINK
========================================= */

.news-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2152ff;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
}

    .news-link:hover {
        text-decoration: underline;
    }

/* =========================================
   BOTTOM TEXT
========================================= */

.news-bottom-text {
    margin-top: 55px;
    font-size: 20px;
    line-height: 2;
    color: #52606d;
    background: #f4f7fb;
    padding: 35px;
    border-radius: 22px;
    border-left: 5px solid #1f3c88;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .news-section {
        padding: 70px 16px;
    }

    .news-card {
        padding: 30px;
    }

        .news-card h2 {
            font-size: 38px;
        }

    .news-intro,
    .news-feature-card p,
    .news-bottom-text {
        font-size: 16px;
    }

    .news-feature-card {
        padding: 28px;
    }

        .news-feature-card h3 {
            font-size: 24px;
        }
}


/* =========================================
   PARTNER SECTION
========================================= */

.partner-section {
    padding: 80px 20px 40px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   GRID
========================================= */

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* =========================================
   CARD
========================================= */

.partner-card {
    background: #fff;
    border-radius: 28px;
    padding: 38px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .partner-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 50px rgba(15,23,42,0.12);
    }

/* =========================================
   ICON
========================================= */

.partner-icon {
    width: 78px;
    height: 78px;
    border-radius: 22px;
    background: linear-gradient( 135deg, #1f3c88, #4f6fd1 );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 28px;
    box-shadow: 0 14px 30px rgba(31,60,136,0.20);
}

/* =========================================
   TITLE
========================================= */

.partner-card h3 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 18px;
    color: #102a43;
}

/* =========================================
   TEXT
========================================= */

.partner-card p {
    font-size: 18px;
    line-height: 1.9;
    color: #52606d;
}

/* =========================================
   FORM SECTION
========================================= */

.partner-form-section {
    padding: 40px 20px 90px;
    background: linear-gradient( to bottom, #eef3f9, #f7f9fc );
}

/* =========================================
   FORM BOX
========================================= */

.partner-form-box {
    max-width: 1200px;
    margin: auto;
    background: #fff;
    border-radius: 32px;
    padding: 55px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

    /* =========================================
   FORM TITLE
========================================= */

    .partner-form-box h2 {
        text-align: center;
        font-size: 48px;
        color: #102a43;
        margin-bottom: 16px;
    }

/* =========================================
   SUBTITLE
========================================= */

.partner-form-subtitle {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: #52606d;
    max-width: 850px;
    margin: auto auto 45px;
}

/* =========================================
   FORM
========================================= */

.partner-form {
    width: 100%;
}

/* =========================================
   ROW
========================================= */

.form-row {
    display: flex;
    gap: 28px;
    margin-bottom: 28px;
    width: 100%;
}

/* =========================================
   GROUP
========================================= */

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    /* =========================================
   LABEL
========================================= */

    .form-group label {
        font-size: 16px;
        font-weight: 700;
        color: #102a43;
        margin-bottom: 12px;
    }

    /* =========================================
   INPUTS
========================================= */

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        box-sizing: border-box;
        padding: 18px 22px;
        border-radius: 18px;
        border: 1px solid #d9e2ec;
        background: #f9fbfd;
        font-size: 16px;
        color: #102a43;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* =========================================
   TEXTAREA
========================================= */

    .form-group textarea {
        resize: vertical;
        min-height: 180px;
    }

        /* =========================================
   FOCUS
========================================= */

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #2152ff;
            box-shadow: 0 0 0 4px rgba(33,82,255,0.10);
        }

/* =========================================
   CHECKBOX
========================================= */

.partner-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 30px 0;
}

    .partner-checkbox label {
        font-size: 15px;
        line-height: 1.8;
        color: #52606d;
    }

    .partner-checkbox a {
        color: #2152ff;
        text-decoration: none;
    }

        .partner-checkbox a:hover {
            text-decoration: underline;
        }

/* =========================================
   BUTTON
========================================= */

.partner-submit-btn {
    border: none;
    background: linear-gradient( 135deg, #2152ff, #4f6fd1 );
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 36px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .partner-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(33,82,255,0.25);
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .partner-section,
    .partner-form-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .partner-form-box {
        padding: 32px;
    }

        .partner-form-box h2 {
            font-size: 36px;
        }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .partner-card {
        padding: 28px;
    }

        .partner-card h3 {
            font-size: 24px;
        }

        .partner-card p,
        .partner-form-subtitle {
            font-size: 16px;
        }
}

/* =========================================
   VALIDATION
========================================= */

.validation-message {
    display: block;
    margin-top: 8px;
    min-height: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #d92d20;
}

/* =========================================
   ERROR INPUT
========================================= */

.input-error {
    border-color: #d92d20 !important;
    background: #fff5f5 !important;
}

/* =========================================
   CONTACT SECTION
========================================= */

.contact-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   WRAPPER
========================================= */

/*.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}*/

.contact-wrapper {
    display: grid;
}

@media (max-width: 768px) {
    .contact-info-box {
        margin-bottom: 32px;
    }
}

.contact-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 768px) {
    .contact-grid {
        display: block !important;
    }
} 

/* =========================================
   LEFT INFO BOX
========================================= */

.contact-info-box {
    background: linear-gradient( 135deg, #1f3c88, #3559c7 );
    color: #fff;
    border-radius: 30px;
    padding: 25px;
    box-shadow: 0 20px 45px rgba(31,60,136,0.22);
}

/* =========================================
   BADGE
========================================= */

.contact-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.15);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* =========================================
   TITLE
========================================= */

.contact-info-box h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
}

/* =========================================
   TEXT
========================================= */

.contact-info-box p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
}

/* =========================================
   DETAIL
========================================= */

.contact-detail {
    margin-top: 34px;
}

    .contact-detail strong {
        display: block;
        font-size: 18px;
        margin-bottom: 10px;
    }

    .contact-detail a {
        color: #fff;
        text-decoration: none;
    }

        .contact-detail a:hover {
            text-decoration: underline;
        }

/* =========================================
   FORM BOX
========================================= */

.contact-form-box {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

/* =========================================
   FORM
========================================= */

.contact-form {
    width: 100%;
}

    /* =========================================
   GROUP
========================================= */

    .contact-form .form-group {
        margin-bottom: 28px;
    }

    /* =========================================
   LABEL
========================================= */

    .contact-form label {
        display: block;
        font-size: 16px;
        font-weight: 700;
        color: #102a43;
        margin-bottom: 12px;
    }

    /* =========================================
   INPUT
========================================= */

    .contact-form .form-control {
        width: 100%;
        box-sizing: border-box;
        padding: 18px 22px;
        border-radius: 18px;
        border: 1px solid #d9e2ec;
        background: #f9fbfd;
        font-size: 16px;
        color: #102a43;
        transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* =========================================
   TEXTAREA
========================================= */

    .contact-form textarea.form-control {
        resize: vertical;
        min-height: 180px;
    }

    /* =========================================
   FOCUS
========================================= */

    .contact-form .form-control:focus {
        outline: none;
        border-color: #2152ff;
        box-shadow: 0 0 0 4px rgba(33,82,255,0.10);
    }

/* =========================================
   BUTTON
========================================= */

.contact-submit-btn {
    border: none;
    background: linear-gradient( 135deg, #2152ff, #4f6fd1 );
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 34px;
    border-radius: 999px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .contact-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 30px rgba(33,82,255,0.25);
    }

/* =========================================
   SUCCESS
========================================= */

.alert-success {
    background: #ecfdf3;
    color: #027a48;
    border: 1px solid #abefc6;
    border-radius: 18px;
    padding: 18px 22px;
    margin-bottom: 28px;
    font-weight: 600;
}

/* =========================================
   ERROR SUMMARY
========================================= */

.error-summary {
    background: #fff5f5;
    border: 1px solid #fecaca;
    color: #b42318;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 28px;
}

    .error-summary h3 {
        margin: 0;
        font-size: 18px;
    }

/* =========================================
   VALIDATION
========================================= */

.text-danger {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #d92d20;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .contact-section {
        padding: 70px 16px;
    }

    .contact-info-box,
    .contact-form-box {
        padding: 32px;
    }

        .contact-info-box h2 {
            font-size: 34px;
        }

        .contact-info-box p {
            font-size: 16px;
        }

    .contact-submit-btn {
        width: 100%;
    }
}

/* =========================================
   MAP BOX
========================================= */

.contact-map-box {
    margin-top: 40px;
    background: #fff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 18px 45px rgba(15,23,42,0.08);
}

    /* =========================================
   MAP TITLE
========================================= */

    .contact-map-box h2 {
        font-size: 36px;
        color: #102a43;
        margin-bottom: 12px;
    }

    .contact-map-box p {
        font-size: 18px;
        color: #52606d;
        margin-bottom: 28px;
    }

/* =========================================
   MAP WRAPPER
========================================= */

.map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid #d9e2ec;
}

    .map-wrapper iframe {
        width: 100%;
        height: 450px;
        border: 0;
        display: block;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .contact-map-box {
        padding: 28px;
    }

        .contact-map-box h2 {
            font-size: 28px;
        }

        .contact-map-box p {
            font-size: 16px;
        }

    .map-wrapper iframe {
        height: 320px;
    }
}


/* =========================================
   CONDITION MAIN SECTION
========================================= */

.condition-main-section {
    padding: 90px 20px;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

/* =========================================
   GRID
========================================= */

.condition-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}

/* =========================================
   IMAGE BOX
========================================= */

.condition-image-box {
    position: relative;
}

/* =========================================
   IMAGE
========================================= */

.condition-main-image {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 30px;
    display: block;
    box-shadow: 0 20px 45px rgba(15,23,42,0.12);
}

/* =========================================
   CONTENT BOX
========================================= */

.condition-content-box {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
}

/* =========================================
   BADGE
========================================= */

.section-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(33,82,255,0.08);
    color: #2152ff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 22px;
}

/* =========================================
   TITLE
========================================= */

.condition-content-box h2 {
    font-size: 52px;
    line-height: 1.2;
    color: #102a43;
    margin-bottom: 26px;
}

/* =========================================
   PARAGRAPH
========================================= */

.condition-content-box p {
    font-size: 19px;
    line-height: 2;
    color: #52606d;
    margin-bottom: 22px;
}

/* =========================================
   SYMPTOMS SECTION
========================================= */

.symptoms-section {
    padding: 90px 20px;
    background: #fff;
}

/* =========================================
   SECTION HEADER
========================================= */

.section-header {
    text-align: center;
    max-width: 900px;
    margin: auto auto 65px;
}

    .section-header h2 {
        font-size: 50px;
        line-height: 1.2;
        color: #102a43;
        margin-bottom: 24px;
    }

    .section-header p {
        font-size: 20px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   GRID
========================================= */

.symptoms-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* =========================================
   CARD
========================================= */

.symptom-card {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid #e5edf5;
    box-shadow: 0 18px 40px rgba(15,23,42,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .symptom-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 55px rgba(15,23,42,0.12);
    }

/* =========================================
   IMAGE
========================================= */

.symptom-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* =========================================
   CONTENT
========================================= */

.symptom-content {
    padding: 30px;
}

    .symptom-content h3 {
        font-size: 28px;
        color: #102a43;
        margin-bottom: 18px;
    }

    .symptom-content p {
        font-size: 18px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   DARK SECTION
========================================= */

.dark-section {
    padding: 100px 20px;
    background: linear-gradient( 135deg, #102a43, #1f3c88 );
    text-align: center;
    color: #fff;
}

    .dark-section h2 {
        font-size: 52px;
        line-height: 1.2;
        margin-bottom: 28px;
    }

    .dark-section p {
        max-width: 950px;
        margin: auto auto 24px;
        font-size: 20px;
        line-height: 2;
        color: rgba(255,255,255,0.92);
    }

/* =========================================
   CTA SECTION
========================================= */

.home-cta {
    padding: 90px 20px;
    text-align: center;
    background: linear-gradient( to bottom, #f4f7fb, #eef3f9 );
}

    .home-cta h2 {
        font-size: 52px;
        line-height: 1.2;
        color: #102a43;
        margin-bottom: 24px;
    }

    .home-cta p {
        max-width: 850px;
        margin: auto auto 35px;
        font-size: 20px;
        line-height: 1.9;
        color: #52606d;
    }

/* =========================================
   BACK SECTION
========================================= */

.back-section {
    padding: 20px 20px 90px;
    background: #eef3f9;
}

/* =========================================
   BACK BUTTON
========================================= */

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    border-radius: 999px;
    background: linear-gradient( 135deg, #1f3c88, #3559c7 );
    color: #fff;
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .back-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 14px 30px rgba(31,60,136,0.20);
    }

    .back-button:focus {
        outline: 3px solid #93c5fd;
        outline-offset: 3px;
    }

/* =========================================
   MOBILE TABLET
========================================= */

@media (max-width: 992px) {



    .symptoms-grid {
        grid-template-columns: 1fr 1fr;
    }

    .condition-main-image {
        height: 500px;
    }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .condition-main-section,
    .symptoms-section,
    .dark-section,
    .home-cta,
    .back-section {
        padding-left: 16px;
        padding-right: 16px;
    }

    .condition-content-box {
        padding: 32px;
    }

    .condition-main-image {
        height: 340px;
    }

    .condition-content-box h2,
    .section-header h2,
    .dark-section h2,
    .home-cta h2 {
        font-size: 36px;
    }

    .condition-content-box p,
    .section-header p,
    .dark-section p,
    .home-cta p,
    .symptom-content p {
        font-size: 16px;
    }

    .symptoms-grid {
        grid-template-columns: 1fr;
    }

    .symptom-content {
        padding: 24px;
    }

        .symptom-content h3 {
            font-size: 24px;
        }

    .back-button {
        width: stretch;
        justify-content: center;
    }
}



/* =========================================
   MOBILE MENU PANEL
========================================= */

.mobile-menu {
    background: linear-gradient( 180deg, #ffffff 0%, #f7f9ff 100% );
    box-shadow: -10px 0 35px rgba(15,23,42,0.12);
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
}

    /* =========================================
   MOBILE NAV LINKS
========================================= */

    .mobile-menu nav ul {
        padding: 22px 18px;
    }

        .mobile-menu nav ul li {
            margin-bottom: 10px;
        }

            /* LINKS */

            .mobile-menu nav ul li a,
            .mobile-dropdown-btn {
                display: flex;
                align-items: center;
                justify-content: space-between;
                width: 100%;
                min-height: 56px;
                padding: 0 18px;
                border-radius: 16px;
                background: #ffffff;
                border: 1px solid #e7ebf3;
                color: #1f3c88;
                font-size: 17px;
                font-weight: 700;
                text-decoration: none;
                transition: all 0.25s ease;
                box-shadow: 0 4px 12px rgba(15,23,42,0.04);
            }

                /* HOVER / ACTIVE */

            .mobile-menu nav ul li a:hover,
            .mobile-dropdown-btn:hover {
                background: #1f3c88;
                color: #ffffff;
                transform: translateY(-1px);
                box-shadow: 0 10px 20px rgba(31,60,136,0.18);
            }

/* =========================================
   SUBMENU
========================================= */

.mobile-submenu {
    margin-top: 8px;
    padding-left: 10px;
    border-left: 3px solid #dbe4ff;
}

    .mobile-submenu li {
        margin-bottom: 8px;
    }

    .mobile-submenu a {
        min-height: 48px !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        /*background: #f8faff !important;*/
    }

/* =========================================
   MOBILE MENU TOP
========================================= */

.mobile-menu-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    border-bottom: 1px solid #e7ebf3;
}

/* TITLE */

.mobile-menu-title {
    font-size: 15px;
    font-weight: 800;
/*    color: #1f3c88;*/
}

/* CLOSE BUTTON */

.mobile-close {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 12px;
    background: #1f3c88;
    color: #ffffff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .mobile-close:hover {
        background: #162d69;
        transform: rotate(90deg);
    }
/* =========================================
   FOOTER
========================================= */

.footer {
    background-color: #0d1117;
    color: #8b949e;
    padding: 4rem 0 0;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-column h3 {
    color: #58a6ff;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.footer-column h4 {
    color: #f0f6fc;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column p {
    line-height: 1.6;
    color: #8b949e;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-column ul li {
        margin-bottom: 0.6rem;
    }

        .footer-column ul li a {
            color: #8b949e;
            text-decoration: none;
            transition: color 0.2s ease;
        }

            .footer-column ul li a:hover {
                color: #58a6ff;
            }

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 3rem;
    border-top: 1px solid #21262d;
    color: #6e7681;
    font-size: 0.85rem;
}

/* =========================================
   PRODUCTS SECTION
========================================= */

.products-grid {
    display: flex;
    flex-direction: column;
    gap: 90px;
    margin-top: 50px;
}

/* =========================================
   PRODUCT CARD
========================================= */

.product-card {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 50px;
    align-items: center;
    background: #ffffff;
    border-radius: 34px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(15,23,42,0.08);
    overflow: hidden;
    border: 1px solid #e7edf5;
}

    /* =========================================
   REVERSE
========================================= */

    .product-card.reverse {
        grid-template-columns: 1fr 420px;
    }

/* =========================================
   IMAGE
========================================= */

.product-image-wrapper {
    position: relative;
}

.product-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 28px;
    display: block;
    box-shadow: 0 18px 40px rgba(15,23,42,0.12);
}

/* =========================================
   CONTENT
========================================= */

.product-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* =========================================
   BADGE
========================================= */

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(33,82,255,0.08);
    color: #2152ff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 24px;
}

/* =========================================
   TITLE
========================================= */

.product-content h3 {
    font-size: 52px;
    line-height: 1.1;
    color: #102a43;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

/* =========================================
   TEXT
========================================= */

.product-content p {
    font-size: 18px;
    line-height: 1.9;
    color: #52606d;
    margin-bottom: 20px;
}

/* =========================================
   FEATURES
========================================= */

.product-features {
    margin-top: 12px;
    padding-left: 22px;
}

    .product-features li {
        margin-bottom: 12px;
        font-size: 17px;
        line-height: 1.8;
        color: #334e68;
    }

/* =========================================
   BUTTON
========================================= */

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 14px;
    margin-bottom: 24px;
    padding: 14px 24px;
    border-radius: 999px;
    background: #2152ff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

    .product-link:hover {
        background: #1847eb;
        transform: translateY(-2px);
    }

/* =========================================
   INFO BOX
========================================= */

.product-info-box {
    margin-top: 18px;
    padding: 22px;
    border-radius: 22px;
    background: #f7faff;
    border-left: 5px solid #2152ff;
    font-size: 16px;
    line-height: 1.8;
    color: #334e68;
}

/* =========================================
   FOOTER
========================================= */

.product-footer-text {
    margin-top: 26px;
    font-size: 15px;
    font-weight: 700;
    color: #102a43;
}

/* =========================================
   WHO BOX
========================================= */

.who-box {
    margin-top: 28px;
    background: #f8fbff;
    border-radius: 24px;
    padding: 28px;
}

    .who-box h4 {
        font-size: 26px;
        color: #102a43;
        margin-bottom: 18px;
    }

    .who-box ul {
        padding-left: 22px;
    }

    .who-box li {
        margin-bottom: 10px;
        font-size: 16px;
        line-height: 1.8;
        color: #52606d;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 992px) {

    .product-card,
    .product-card.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .product-image {
        height: 240px;
    }

    .product-content h3 {
        font-size: 36px;
    }

    .product-content p,
    .product-features li,
    .who-box li {
        font-size: 16px;
    }
}
/* =========================================================
   SMARTXRAY UI
========================================================= */

:root {
    --sx-blue: #2152ff;
    --sx-dark: #07152b;
    --sx-heading: #102a43;
    --sx-text: #52606d;
    --sx-light: #f5f8fc;
}

/* =========================================================
   HERO
========================================================= */

.sx-hero {
    position: relative;
    min-height: 850px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #000;
}

.sx-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.sx-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(0,0,0,0.72), rgba(0,0,0,0.35) );
}

.sx-hero-content {
    position: relative;
    z-index: 5;
    max-width: 700px;
    color: #fff;
    padding: 120px 0;
    margin-left: -230px;
}

.sx-hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 28px;
}

.sx-hero-content h1 {
    font-size: 60px;
    line-height: 0.96;
    letter-spacing: 0px;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 500;
}

.sx-hero-content p {
    font-size: 24px;
    line-height: 1.9;
    color: rgba(255,255,255,0.92);
    margin-bottom: 38px;
}

/* =========================================================
   AUDIO BUTTONS
========================================================= */

.sx-audio-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.audio-read-btn,
.audio-pause-btn,
.audio-resume-btn,
.audio-stop-btn {
    border: none;
    cursor: pointer;
}

/* =========================================================
   BUTTONS
========================================================= */

.sx-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 14px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

.sx-btn-primary {
    background: linear-gradient( 135deg, #2152ff, #1847eb );
    color: #fff;
    box-shadow: 0 18px 40px rgba(33,82,255,0.3);
}

    .sx-btn-primary:hover {
        transform: translateY(-2px);
    }

.sx-btn-light {
    background: rgba(255,255,255,0.95);
    color: #111;
}

/* =========================================================
   INTRO
========================================================= */

.sx-intro-section {
    padding: 120px 20px;
    background: #fff;
}

.sx-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
}

.sx-section-tag {
    display: inline-block;
/*    margin-bottom: 24px;*/
    color: var(--sx-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
}

.sx-intro-grid h2 {
    font-size: 72px;
    line-height: 0.98;
    color: var(--sx-heading);
    letter-spacing: 0px;
    margin-top: 10px;
}

.sx-intro-grid p {
    font-size: 21px;
    line-height: 2;
    color: var(--sx-text);
    margin-bottom: 24px;
}

/* =========================================================
   SMARTRAY SECTION
========================================================= */

.sx-product-section {
    position: relative;
    padding: 140px 20px;
    overflow: hidden;
    background: linear-gradient( 135deg, #07152b 0%, #102a43 40%, #16395f 100% );
}

/* =========================================================
   UMC SECTION
========================================================= */

.sx-product-alt {
    background: linear-gradient( 180deg, #f8f4ec 0%, #f4efe6 100% );
}

/* =========================================================
   PRODUCT LAYOUT
========================================================= */

.sx-product-layout,
.sx-product-reverse {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

/* =========================================================
   IMAGE WRAP
========================================================= */

.sx-product-image-wrap {
    position: relative;
    width: 52%;
    flex-shrink: 0;
}

    .sx-product-image-wrap::before {
        content: "";
        position: absolute;
        inset: -30px;
        border-radius: 40px;
        background: radial-gradient( circle, rgba(33,82,255,0.15), transparent 70% );
        z-index: 1;
    }

/* =========================================================
   PRODUCT IMAGE
========================================================= */

.sx-product-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 34px;
    display: block;
    box-shadow: 0 30px 80px rgba(15,23,42,0.18);
    transition: transform 0.35s ease;
}

    .sx-product-image:hover {
        transform: scale(1.02);
    }

/* =========================================================
   PRODUCT CONTENT
========================================================= */

.sx-product-content {
    width: 48%;
    position: relative;
    z-index: 3;
}

/* =========================================================
   LABEL
========================================================= */

.sx-product-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: #8cb6ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
/*    margin-bottom: 30px;*/
}

/* =========================================================
   PRODUCT TITLE
========================================================= */

.sx-product-content h2 {
    font-size: 72px;
    line-height: 0.95;
    letter-spacing: 0px;
    margin-bottom: 32px;
    color: #ffffff;
    font-weight: 800;
    margin-top: 0px;
}

/* =========================================================
   PRODUCT TEXT
========================================================= */

.sx-product-content p {
    font-size: 20px;
    line-height: 2;
    margin-bottom: 26px;
    color: rgba(255,255,255,0.82);
}

/* =========================================================
   UMC COLORS
========================================================= */

.sx-product-alt .sx-product-content h2 {
    color: #102a43;
}

.sx-product-alt .sx-product-content p {
    color: #5b6572;
}

.sx-product-alt .sx-product-label {
    background: rgba(33,82,255,0.08);
    color: #2152ff;
}

/* =========================================================
   FEATURE GRID
========================================================= */

.sx-feature-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin: 30px 0;
}

/* =========================================================
   FEATURE BOX
========================================================= */

.sx-feature-box {
    position: relative;
    padding: 26px;
    border-radius: 26px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    font-weight: 600;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(15,23,42,0.08);
}

    .sx-feature-box::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient( 90deg, #2152ff, #5a7dff );
    }

/* =========================================================
   UMC FEATURE BOX
========================================================= */

.sx-product-alt .sx-feature-box {
    background: #ffffff;
    color: #102a43;
    border: 1px solid #e6eaf0;
}

/* =========================================================
   DARK CTA
========================================================= */

.sx-dark-section {
    padding: 140px 20px;
    background: linear-gradient( 135deg, #07152b, #102a43 );
    color: #fff;
}

.sx-dark-content {
    max-width: 980px;
    margin: auto;
    text-align: center;
}

    .sx-dark-content h2 {
        font-size: 72px;
        line-height: 0.96;
        letter-spacing: 0px;
        margin-bottom: 30px;
        color: #fff;
    }

    .sx-dark-content p {
        font-size: 22px;
        line-height: 2;
        color: rgba(255,255,255,0.86);
        margin-bottom: 40px;
    }

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1200px) {

    .sx-hero-content h1,
    .sx-product-content h2,
    .sx-intro-grid h2,
    .sx-dark-content h2 {
        font-size: 64px;
    }
}

@media (max-width: 992px) {

    .sx-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sx-product-layout,
    .sx-product-reverse {
        flex-direction: column;
        gap: 50px;
    }

    .sx-product-image-wrap,
    .sx-product-content {
        width: 100%;
    }

    .sx-product-image {
        height: 360px;
    }

    .sx-feature-grid {
        grid-template-columns: 1fr;
    }

    .sx-hero-content h1,
    .sx-product-content h2,
    .sx-intro-grid h2,
    .sx-dark-content h2 {
        font-size: 48px;
        line-height: 1;
    }

    .sx-hero-content p,
    .sx-product-content p,
    .sx-intro-grid p,
    .sx-dark-content p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {

    .sx-hero {
        min-height: 700px;
    }

    .sx-hero-content {
        padding: 120px 0 80px;
        margin: 0px;
    }

        .sx-hero-content h1 {
            font-size: 38px;
            letter-spacing: -1px;
        }

        .sx-hero-content p {
            font-size: 16px;
            line-height: 1.9;
        }

    .sx-audio-buttons {
        justify-content: center;
    }

    .sx-btn {
        width: 100%;
    }

    .sx-intro-section,
    .sx-product-section,
    .sx-dark-section {
        padding: 80px 16px;
    }

    .sx-product-content h2,
    .sx-intro-grid h2,
    .sx-dark-content h2 {
        font-size: 36px;
    }

    .sx-product-content p,
    .sx-intro-grid p,
    .sx-dark-content p {
        font-size: 16px;
        line-height: 1.9;
    }

    .sx-product-image {
        height: 280px;
    }

    .sx-feature-box {
        padding: 22px;
        font-size: 15px;
    }
}



/* =========================================
   PARENT
========================================= */

.sx-menu-item-has-child {
    position: relative;
}

/* =========================================
   BUTTON
========================================= */

.sx-menu-child-toggle {
    width: 100%;
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: #243b7a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
}

/* =========================================
   ARROW
========================================= */

.sx-menu-arrow {
    font-size: 16px;
    flex-shrink: 0;
}

/* =========================================
   CHILD PANEL
========================================= */

.sx-menu-child-panel {
    position: absolute;
    top: -18px;
    left: calc(100% + 16px);
    width: 390px;
    max-width: 390px;
    background: #ffffff;
    border-radius: 20px;
/*    border: 1px solid #e5e7eb;*/
    box-shadow: 0 20px 60px rgba(15,23,42,0.18);
/*    padding: 26px;*/
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    overflow: hidden;
    box-sizing: border-box;
    text-align: left;
}

/* =========================================
   OPEN DESKTOP
========================================= */

.sx-menu-item-has-child:hover
.sx-menu-child-panel,
.sx-menu-item-has-child:focus-within
.sx-menu-child-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* =========================================
   UL
========================================= */

/*.sx-menu-child-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}*/

/* =========================================
   LI
========================================= */

/*.sx-menu-child-panel li {
    margin-bottom: 18px;
}*/

/*    .sx-menu-child-panel li:last-child {
        margin-bottom: 0;
    }*/

/* =========================================
   LINKS
========================================= */

.sx-menu-child-panel a {
    display: block;
    width: 100%;
    color: #243b7a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    transition: all 0.2s ease;
}

    /* =========================================
   HOVER
========================================= */

    .sx-menu-child-panel a:hover,
    .sx-menu-child-panel a:focus-visible {
        color: #0f62fe;
    }

    /* =========================================
   ADA
========================================= */

    .sx-menu-child-toggle:focus-visible,
    .sx-menu-child-panel a:focus-visible {
        outline: 3px solid #facc15;
        outline-offset: 3px;
    }

/* =========================================
   MOBILE
========================================= */

@media (max-width: 991px) {

    .mobile-child-submenu {
        position: static;
        width: 100%;
        max-width: 100%;
        margin-top: 18px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-radius: 18px;
        padding: 20px;
    }

    .mobile-child-dropdown.active
    .mobile-child-submenu {
        display: block;
    }

    .mobile-child-btn {
        font-size: 17px;
    }

    .mobile-child-submenu a {
        font-size: 15px;
        line-height: 1.7;
    }
}
/* =========================================
   FIX RESEARCH CHILD MENU
========================================= */

.sx-menu-item-has-child {
    position: relative !important;
}

    .sx-menu-item-has-child .sx-menu-child-panel {
        position: absolute !important;
        top: 0 !important;
        left: 100% !important;
        width: 380px !important;
        background: #ffffff !important;
/*        padding: 24px !important;
        border-radius: 18px !important;*/
        box-shadow: 0 20px 60px rgba(15,23,42,0.18) !important;
        /*border: 1px solid #e5e7eb !important;*/
        display: none !important;
        text-align: left !important;
        z-index: 999999 !important;
    }

    /* DESKTOP OPEN */

    .sx-menu-item-has-child:hover
    .sx-menu-child-panel {
        display: block !important;
    }

/* RESET BAD GLOBAL MENU CSS */

.sx-menu-child-panel * {
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}

/* LINKS */
/**/
.sx-menu-child-panel ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

/*.sx-menu-child-panel li {
    margin-bottom: 18px !important;
}*/

.sx-menu-child-panel a {
    display: block !important;
    color: #243b7a !important;
    text-decoration: none !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.8 !important;
    white-space: normal !important;
}

/* MOBILE */
/*
@media (max-width: 991px) {

    .sx-menu-item-has-child .sx-menu-child-panel {
        position: static !important;
        width: 100% !important;
        display: none !important;
        margin-top: 14px !important;
    }

    .sx-menu-item-has-child.active
    .sx-menu-child-panel {
        display: block !important;
    }
}*/

/* =========================================
   FIX CHILD LINK COLOR
========================================= */

.sx-menu-child-panel a {
    color: #243b7a !important;
}

    /* HOVER */

    .sx-menu-child-panel a:hover,
    .sx-menu-child-panel a:focus-visible {
        background: #243b7a !important;
        color: #ffffff !important;
/*        border-radius: 12px;
        padding: 10px 12px;*/
    }

/* =========================================
   FINAL MOBILE MENU SCROLL FIX
========================================= */

@media (max-width: 991px) {

    .mobile-menu,
    .mobile-nav,
    .sub-menu,
    .dropdown-menu {
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }

    .mobile-menu {
        height: 100vh !important;
        padding-bottom: 120px !important;
        padding-left: 0px !important;
        padding-right: 0px !important;
    }

    .mobile-nav {
        max-height: 100vh !important;
    }

        .mobile-nav ul {
            padding-bottom: 120px !important;
        }

    .sub-menu,
    .dropdown-menu {
        position: static !important;
        width: 100% !important;
        left: 0 !important;
        top: auto !important;
    }
}

/* =========================================
   INNER CHILD BUTTON FIX
========================================= */

/* =========================================
   CHILD BUTTON DEFAULT
========================================= */

.mobile-child-btn {
    appearance: none;
    -webkit-appearance: none;
    background: #ffffff !important;
    color: #243b7a !important;
    border: 1px solid #dbe4f0 !important;
    outline: none !important;
    box-shadow: none !important;
    width: 100%;
/*    min-height: 56px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-radius: 16px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
}

    .mobile-child-btn span {
        color: #243b7a !important;
    }

    /* =========================================
   HOVER / OPEN
========================================= */

    .mobile-child-btn:hover,
    .mobile-child-btn:focus-visible,
    .mobile-child-dropdown.active > .mobile-child-btn {
        background: #243b7a !important;
        color: #ffffff !important;
        border-color: #243b7a !important;
    }

        .mobile-child-btn:hover span,
        .mobile-child-btn:focus-visible span,
        .mobile-child-dropdown.active > .mobile-child-btn span {
            color: #ffffff !important;
        }

/* =========================================
   CHILD MENU DEFAULT CLOSED
========================================= */

.mobile-child-submenu {
    display: none;
}

    .mobile-child-submenu.active {
        display: block;
    }

.sx-menu-item-has-child > button.sx-menu-child-toggle {
    border-radius: 0px;
}


.mobile-child-dropdown .mobile-child-btn{
    f
}