:root {
            --navy: #062b68;
            --navy-dark: #031b4b;
            --teal: #078793;
            --teal-light: #20bcc1;
            --light-blue: #eef9fc;
            --text: #42536d;
            --white: #ffffff;
            --border: #d7e8ec;
        }


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


        html {
            scroll-behavior: smooth;
        }


        body {
            font-family:
                Arial,
                Helvetica,
                sans-serif;

            color: var(--text);
            background: #fff;
            line-height: 1.6;
        }


        img {
            max-width: 100%;
            display: block;
        }


        a {
            text-decoration: none;
        }


        .container {
            width: min(1200px, 92%);
            margin: auto;
        }


       /* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(6,36,94,.08);
    transition: .3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 25px rgba(0,30,70,.10);
}

.header-inner {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    flex-shrink: 0;
}

.logo-mark {
    width: 52px;
    height: 52px;
    position: relative;
}

.logo-heart-left,
.logo-heart-right {
    position: absolute;
    width: 29px;
    height: 39px;
    top: 7px;
    border-radius: 50% 50% 45% 45%;
}

.logo-heart-left {
    left: 5px;
    background: var(--navy);
    transform: rotate(-45deg);
}

.logo-heart-right {
    right: 5px;
    background: var(--teal);
    transform: rotate(45deg);
}

.logo-cross {
    position: absolute;
    z-index: 3;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -42%);
    background: #fff;
    width: 20px;
    height: 20px;
    color: var(--teal);
    font-size: 22px;
    line-height: 19px;
    font-weight: 800;
    text-align: center;
}

.logo-text strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    color: var(--navy);
    font-size: 31px;
    line-height: 25px;
    letter-spacing: 1px;
}

.logo-text small {
    display: block;
    margin-top: 5px;
    font-size: 8px;
    color: #333;
    letter-spacing: 1.7px;
    font-weight: 600;
}


/* =========================================================
   NAVIGATION
========================================================= */

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

.nav a {
    position: relative;
    color: #17254a;
    font-size: 15px;
    font-weight: 600;
    transition: .25s ease;
}

.nav a:hover {
    color: var(--teal);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: .25s ease;
}

.nav a:hover::after {
    width: 100%;
}


/* =========================================================
   BOOK APPOINTMENT BUTTON
========================================================= */

.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 23px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 7px 18px rgba(0,100,120,.20);
    transition: .3s ease;
    white-space: nowrap;
}

.appointment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,80,110,.30);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-toggle {
    display: none;
    width: 43px;
    height: 43px;
    border: 0;
    border-radius: 10px;
    background: #eef8fa;
    cursor: pointer;
    position: relative;
}

.menu-toggle span {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--navy);
    margin: 5px auto;
    transition: .3s ease;
}



        /* =====================================================
           PAGE HERO
        ===================================================== */

        .page-hero {
            position: relative;

            padding: 65px 0 75px;

            background:
                radial-gradient(
                    circle at 85% 20%,
                    rgba(32,188,193,.15),
                    transparent 28%
                ),
                linear-gradient(
                    135deg,
                    #f5fcfd,
                    #eaf8fb
                );

            overflow: hidden;
        }


        .page-hero::after {
            content: "";

            position: absolute;

            width: 400px;
            height: 400px;

            border-radius: 50%;

            right: -180px;
            bottom: -250px;

            border: 50px solid rgba(7,135,147,.06);
        }


        .hero-content {
            position: relative;
            z-index: 2;

            max-width: 760px;
        }


        .hero-label {
            color: var(--teal);

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

            letter-spacing: 2px;

            text-transform: uppercase;

            margin-bottom: 12px;
        }


        .hero-content h1 {
            color: var(--navy);

            font-size:
                clamp(35px, 5vw, 58px);

            line-height: 1.1;

            margin-bottom: 20px;
        }


        .hero-content h1 span {
            color: var(--teal);
        }


        .hero-content p {
            max-width: 680px;

            font-size: 17px;

            color: #53647d;

            line-height: 1.75;
        }


        /* =====================================================
           BREADCRUMB
        ===================================================== */

        .breadcrumb {
            padding: 14px 0;

            background: white;

            border-bottom: 1px solid var(--border);
        }


        .breadcrumb-inner {
            display: flex;
            gap: 8px;

            font-size: 13px;
        }


        .breadcrumb a {
            color: var(--teal);
        }


        .breadcrumb span {
            color: #9aa8b7;
        }


        /* =====================================================
           CONDITIONS AREA
        ===================================================== */

        .conditions-section {
            padding: 65px 0 90px;

            background: #fff;
        }


        .conditions-layout {
            display: grid;

            grid-template-columns:
                285px
                minmax(0, 1fr);

            gap: 25px;

            align-items: start;
        }


        /* =====================================================
           LEFT TAB MENU
        ===================================================== */

        .condition-tabs {
            background: #eef9fc;

            padding: 12px;

            border-radius: 16px;

            position: sticky;
            top: 105px;
        }


        .condition-tab {
            width: 100%;

            border: 0;

            background: #e4f2f6;

            color: #087c8e;

            text-align: left;

            padding: 19px 22px;

            margin-bottom: 10px;

            border-radius: 14px;

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

            cursor: pointer;

            transition:
                background .25s,
                color .25s,
                transform .25s;
        }


        .condition-tab:last-child {
            margin-bottom: 0;
        }


        .condition-tab:hover {
            background: #d7edf1;

            transform: translateX(3px);
        }


        .condition-tab.active {
            background: #0c8b9b;

            color: white;

            box-shadow:
                0 8px 18px rgba(0,120,135,.18);
        }


        /* =====================================================
           CONTENT
        ===================================================== */

        .condition-content {
            background: #eef9fc;

            border-radius: 16px;

            padding:
                45px
                45px
                55px;

            min-height: 700px;
        }


        .condition-panel {
            display: none;

            animation:
                fadeIn .35s ease;
        }


        .condition-panel.active {
            display: block;
        }


        @keyframes fadeIn {

            from {
                opacity: 0;
                transform: translateY(8px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }

        }


        /* Content header */

        .condition-heading {
            display: grid;

            grid-template-columns:
                1fr
                310px;

            gap: 35px;

            align-items: start;

            margin-bottom: 35px;
        }


        .condition-heading h2 {
            color: var(--teal);

            font-size:
                clamp(28px, 3vw, 32px);

            line-height: 1.15;

            margin-bottom: 17px;
        }


        .condition-heading p {
            color: #63748a;

            font-size: 16px;

            line-height: 1.75;
        }


        .condition-image {
            width: 100%;
            height: 190px;

            object-fit: cover;

            border-radius: 10px;

            background: white;

            border: 1px solid #dbecef;
        }


        /* =====================================================
           BODY CONTENT
        ===================================================== */

        .condition-panel > h3 {
            color: var(--teal);

            font-size: 27px;

            margin:
                30px 0
                8px;
        }


        .condition-panel > p {
            color: #68778b;

            font-size: 16px;

            line-height: 1.8;

            margin-bottom: 18px;
        }


        /* =====================================================
           INFO CARDS
        ===================================================== */

        .info-grid {
            display: grid;

            grid-template-columns:
                repeat(2, 1fr);

            gap: 18px;

            margin-top: 28px;
        }


        .info-card {
            background: white;

            border: 1px solid #d9e9ed;

            border-radius: 13px;

            padding: 24px;

            transition: .3s;
        }


        .info-card:hover {
            transform: translateY(-4px);

            box-shadow:
                0 10px 25px
                rgba(0,50,80,.08);

            border-color: var(--teal-light);
        }


        .info-card-icon {
            width: 42px;
            height: 42px;

            border-radius: 50%;

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

            background: #e6f6f7;

            color: var(--teal);

            font-size: 19px;
            font-weight: 800;

            margin-bottom: 12px;
        }


        .info-card h4 {
            color: var(--teal);

            font-size: 20px;

            margin-bottom: 8px;
        }


        .info-card p {
            color: #68778b;

            font-size: 14px;

            line-height: 1.7;
        }


        /* =====================================================
           CTA
        ===================================================== */

        .condition-cta {
            margin-top: 35px;

            padding: 25px 28px;

            background:
                linear-gradient(
                    110deg,
                    var(--navy),
                    #074b76
                );

            border-radius: 12px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 20px;
        }


        .condition-cta h3 {
            color: white;

            font-size: 20px;

            margin-bottom: 4px;
        }


        .condition-cta p {
            color: #d8edf2;

            font-size: 13px;

            margin: 0;
        }


        .condition-cta a {
            flex-shrink: 0;

            padding: 12px 20px;

            background: var(--teal-light);

            color: var(--navy-dark);

            border-radius: 5px;

            font-size: 13px;

            font-weight: 800;
        }


         /* =========================================================
   FOOTER
========================================================= */

footer {
    background: #021638;
    color: white;
    padding: 50px 0 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 35px;
}

.footer-logo {
    font-family: Georgia,serif;
    font-size: 34px;
    margin-bottom: 12px;
}

.footer-about {
    color: #c9d8eb;
    line-height: 1.7;
    max-width: 400px;
}

.footer h3 {
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c9d8eb;
    font-size: 14px;
}

.footer-links a:hover {
    color: #22bec2;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.15);
    padding-top: 20px;
    text-align: center;
    color: #b7c7dc;
    font-size: 13px;
}


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 1000px) {

            .main-nav {
                gap: 14px;
            }

            .main-nav a {
                font-size: 12px;
            }

            .conditions-layout {
                grid-template-columns: 230px 1fr;
            }

            .condition-heading {
                grid-template-columns: 1fr;
            }

            .condition-image {
                height: 240px;
            }

            .footer-grid {
                grid-template-columns:
                    repeat(2, 1fr);
            }

        }


        @media (max-width: 750px) {

            .header-inner {
                min-height: 70px;
            }


            .menu-toggle {
                display: block;
            }


            .main-nav {
                display: none;

                position: absolute;

                top: 70px;
                left: 0;
                right: 0;

                padding: 18px;

                background: white;

                flex-direction: column;
                align-items: stretch;

                box-shadow:
                    0 10px 25px
                    rgba(0,30,70,.12);
            }


            .main-nav.open {
                display: flex;
            }


            .main-nav a {
                padding: 11px 8px;

                border-bottom:
                    1px solid #edf1f3;

                font-size: 14px;
            }


            .main-nav .appointment-btn {
                text-align: center;

                border: 0;
            }


            .logo-text strong {
                font-size: 25px;
            }


            .logo-text span {
                font-size: 8px;
            }


            .page-hero {
                padding: 45px 0;
            }


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


            .conditions-section {
                padding: 40px 0 60px;
            }


            .conditions-layout {
                display: block;
            }


            /* Horizontal tabs on mobile */

            .condition-tabs {
                position: relative;
                top: auto;

                display: flex;

                gap: 8px;

                overflow-x: auto;

                padding: 8px;

                margin-bottom: 18px;

                border-radius: 12px;

                scrollbar-width: none;
            }


            .condition-tabs::-webkit-scrollbar {
                display: none;
            }


            .condition-tab {
                flex: 0 0 auto;

                width: auto;

                white-space: nowrap;

                margin: 0;

                padding:
                    12px
                    18px;

                border-radius: 9px;

                font-size: 13px;
            }


            .condition-content {
                padding:
                    28px
                    20px
                    35px;

                min-height: 0;

                border-radius: 12px;
            }


            .condition-heading {
                gap: 20px;
            }


            .condition-heading h2 {
                font-size: 30px;
            }


            .condition-heading p {
                font-size: 14px;
            }


            .condition-image {
                height: 210px;
            }


            .condition-panel > h3 {
                font-size: 23px;
            }


            .condition-panel > p {
                font-size: 14px;
            }


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


            .condition-cta {
                flex-direction: column;

                align-items: flex-start;
            }


            .condition-cta a {
                width: 100%;

                text-align: center;
            }


            .footer-grid {
                grid-template-columns: 1fr;

                gap: 25px;
            }

        }


        @media (max-width: 420px) {

            .logo-mark {
                width: 40px;
                height: 40px;
            }


            .logo-text strong {
                font-size: 22px;
            }


            .logo-text span {
                letter-spacing: 1px;
            }


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


            .condition-content {
                padding: 22px 15px 30px;
            }


            .condition-heading h2 {
                font-size: 27px;
            }

        }


        @media(max-width:850px) {

    .menu-toggle {
        display: block;
    }

    .header-inner {
        height: 72px;
    }

    .nav {
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        padding: 20px;
        background: white;
        box-shadow: 0 15px 25px rgba(0,0,0,.10);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        padding: 14px 5%;
        border-bottom: 1px solid #edf1f4;
    }

    .nav a::after {
        display: none;
    }

    .nav .appointment-btn {
        margin-top: 15px;
        text-align: center;
    }

    .hero {
        padding-top: 72px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
    }

    .hero-image {
        order: -1;
        height: 390px;
    }

    .hero-content {
        padding: 25px 0 90px;
    }

    .feature-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .feature:nth-child(2)::after {
        display: none;
    }

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

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


@media(max-width:600px) {

    .container {
        width: 90%;
    }

    .logo-mark {
        width: 45px;
        height: 45px;
    }

    .logo-text strong {
        font-size: 26px;
    }

    .logo-text small {
        font-size: 6px;
    }

    .header .appointment-btn {
        display: none;
    }

    .hero-image {
        height: 290px;
    }

    .doctor-placeholder {
        height: 280px;
    }

    .hero-title {
        font-size: 39px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        text-align: center;
    }

    .features {
        border-radius: 18% 18% 0 0 / 5% 5% 0 0;
    }

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

    .feature {
        padding: 25px 15px 35px;
        border-bottom: 1px solid rgba(255,255,255,.15);
    }

    .feature:not(:last-child)::after {
        display: none;
    }

    .journey {
        padding: 70px 0;
    }

    .journey-heading {
        font-size: 31px;
    }

    .hospital-visual {
        height: 240px;
    }

    .shield {
        width: 125px;
        height: 155px;
    }

    .shield::after {
        font-size: 65px;
    }

    .timeline {
        padding-left: 0;
    }

    .timeline::before {
        left: 25px;
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: 17px;
    }

    .timeline-icon {
        width: 50px;
        height: 50px;
    }

    .appointment-form {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .form-group.full {
        grid-column: auto;
    }

    .submit-btn {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}


@media(max-width:400px) {

    .logo-text strong {
        font-size: 23px;
    }

    .logo-text small {
        display: none;
    }

    .hero-title {
        font-size: 34px;
    }

}


/* =========================================
   SOCIAL ICONS
========================================= */

.footer-social {

    display: flex;

    align-items: center;

    gap: 9px;

    margin-top: 20px;

}


.footer-social a {

    width: 38px;

    height: 38px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    background:
        rgba(255,255,255,0.10);

    color: #ffffff;

    font-size: 14px;

    transition:
        all .3s ease;
}


.footer-social a:hover {

    background: #078793;

    color: #ffffff;

    transform:
        translateY(-4px);

}


/* Individual hover colors */

.footer-social a:nth-child(1):hover {
    background: #1877f2;
}

.footer-social a:nth-child(2):hover {
    background: #e4405f;
}

.footer-social a:nth-child(3):hover {
    background: #0a66c2;
}

.footer-social a:nth-child(4):hover {
    background: #ff0000;
}

.footer-social a:nth-child(5):hover {
    background: #25d366;
}


 

        /* ==========================================
           DEMO HEADER
        ========================================== */

        .site-header {
            width: 100%;
            height: 80px;

            background: #ffffff;

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

            padding: 0 7%;

            border-bottom: 1px solid #e8eef1;
        }

        .logo {
            font-size: 23px;
            font-weight: 800;
            color: #062b68;
        }

        .logo span {
            color: #078793;
        }

        .book-btn {
            border: 0;
            outline: 0;

            background: linear-gradient(
                100deg,
                #078793,
                #062b68
            );

            color: #ffffff;

            padding: 12px 20px;

            border-radius: 6px;

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

            cursor: pointer;

            display: inline-flex;
            align-items: center;
            gap: 8px;

            transition: .3s;
        }

        .book-btn:hover {
            transform: translateY(-2px);

            box-shadow:
                0 8px 20px rgba(6, 43, 104, .18);
        }


        /* ==========================================
           DEMO CONTENT
        ========================================== */

        .main-content {
            min-height: 600px;

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

            text-align: center;

            padding: 30px;
        }

        .main-content h1 {
            font-size: 42px;
            margin-bottom: 12px;
        }

        .main-content p {
            color: #74838f;
            font-size: 14px;
        }


        /* ==========================================
           POPUP OVERLAY
        ========================================== */

        .enquiry-overlay {

            position: fixed;

            top: 0;
            left: 0;
            right: 0;
            bottom: 0;

            width: 100%;
            height: 100%;

            background: rgba(3, 22, 48, .78);

            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);

            display: none;

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

            padding: 20px;

            z-index: 99999;

            overflow-y: auto;
        }

        .enquiry-overlay.active {
            display: flex;
        }


        /* ==========================================
           POPUP BOX
        ========================================== */

        .enquiry-popup {

            position: relative;

            width: 100%;
            max-width: 900px;

            max-height: calc(100vh - 40px);

            background: #ffffff;

            border-radius: 18px;

            display: grid;

            grid-template-columns: 40% 60%;

            overflow: hidden;

            box-shadow:
                0 25px 80px rgba(0, 0, 0, .30);

            animation: popupShow .35s ease;
        }


        @keyframes popupShow {

            0% {
                opacity: 0;
                transform: translateY(30px) scale(.97);
            }

            100% {
                opacity: 1;
                transform: translateY(0) scale(1);
            }
        }


        /* ==========================================
           CLOSE BUTTON
        ========================================== */

        .enquiry-close {

            position: absolute;

            top: 14px;
            right: 14px;

            width: 38px;
            height: 38px;

            border: 0;
            outline: 0;

            border-radius: 50%;

            background: #ffffff;

            color: #062b68;

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

            font-size: 16px;

            cursor: pointer;

            z-index: 999;

            box-shadow:
                0 4px 15px rgba(0, 0, 0, .18);

            transition: all .25s ease;
        }

        .enquiry-close:hover {

            background: #078793;

            color: #ffffff;

            transform: rotate(90deg);
        }


        /* ==========================================
           LEFT SIDE
        ========================================== */

        .enquiry-left {

            position: relative;

            padding: 48px 35px;

            background:
                linear-gradient(
                    145deg,
                    #062b68 0%,
                    #075d79 100%
                );

            color: #ffffff;

            overflow: hidden;
        }


        /* Decorative circles */

        .enquiry-left::before {

            content: "";

            position: absolute;

            width: 260px;
            height: 260px;

            border-radius: 50%;

            background:
                rgba(255, 255, 255, .05);

            top: -130px;
            left: -130px;
        }

        .enquiry-left::after {

            content: "";

            position: absolute;

            width: 220px;
            height: 220px;

            border-radius: 50%;

            background:
                rgba(255, 255, 255, .05);

            right: -110px;
            bottom: -110px;
        }


        /* ==========================================
           LEFT CONTENT
        ========================================== */

        .enquiry-label {

            position: relative;
            z-index: 2;

            color: #53d1d0;

            font-size: 10px;

            font-weight: 800;

            letter-spacing: 2px;
        }

        .enquiry-left h2 {

            position: relative;
            z-index: 2;

            font-size: 30px;

            line-height: 1.25;

            margin-top: 13px;
            margin-bottom: 14px;
        }

        .enquiry-left h2 span {
            color: #53d1d0;
        }

        .enquiry-description {

            position: relative;
            z-index: 2;

            color: #d4e4ea;

            font-size: 12px;

            line-height: 1.75;

            margin-bottom: 28px;
        }


        /* ==========================================
           INFO ITEM
        ========================================== */

        .info-item {

            position: relative;
            z-index: 2;

            display: flex;

            align-items: center;

            gap: 12px;

            margin-bottom: 17px;
        }

        .info-icon {

            width: 40px;
            height: 40px;

            min-width: 40px;

            border-radius: 50%;

            background:
                rgba(255,255,255,.12);

            display: flex;

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

            color: #53d1d0;

            font-size: 13px;
        }

        .info-content strong {

            display: block;

            font-size: 11px;

            color: #ffffff;

            margin-bottom: 3px;
        }

        .info-content a,
        .info-content span {

            color: #d3e4eb;

            font-size: 10px;

            text-decoration: none;
        }

        .info-content a:hover {
            color: #53d1d0;
        }


        /* ==========================================
           TRUST BOX
        ========================================== */

        .trust-box {

            position: relative;
            z-index: 2;

            margin-top: 25px;

            padding: 12px 13px;

            border-radius: 7px;

            background:
                rgba(255,255,255,.08);

            border:
                1px solid rgba(255,255,255,.10);
        }

        .trust-box i {
            color: #53d1d0;
            margin-right: 5px;
        }

        .trust-box span {

            color: #d3e4eb;

            font-size: 9px;

            line-height: 1.6;
        }


        /* ==========================================
           RIGHT FORM
        ========================================== */

        .enquiry-right {

            padding: 38px;

            background: #ffffff;

            overflow-y: auto;

            max-height: calc(100vh - 40px);
        }


        /* Scrollbar */

        .enquiry-right::-webkit-scrollbar {
            width: 5px;
        }

        .enquiry-right::-webkit-scrollbar-track {
            background: #f5f7f8;
        }

        .enquiry-right::-webkit-scrollbar-thumb {
            background: #bdd6da;
            border-radius: 10px;
        }


        .enquiry-right h3 {

            color: #062b68;

            font-size: 23px;

            margin-bottom: 5px;
        }

        .form-intro {

            color: #7c8b95;

            font-size: 11px;

            margin-bottom: 21px;
        }


        /* ==========================================
           FORM GROUP
        ========================================== */

        .form-group {
            margin-bottom: 13px;
        }

        .form-group label {

            display: block;

            color: #30485c;

            font-size: 11px;

            font-weight: 700;

            margin-bottom: 5px;
        }

        .required {
            color: #e53935;
        }


        /* ==========================================
           INPUT
        ========================================== */

        .input-wrapper {

            width: 100%;

            min-height: 43px;

            display: flex;
            align-items: center;

            background: #fbfdfe;

            border:
                1px solid #dbe6ea;

            border-radius: 6px;

            transition: .25s;
        }

        .input-wrapper:focus-within {

            border-color: #078793;

            background: #ffffff;

            box-shadow:
                0 0 0 3px
                rgba(7,135,147,.08);
        }

        .input-icon {

            width: 40px;
            min-width: 40px;

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

            color: #078793;

            font-size: 12px;
        }

        .input-wrapper input,
        .input-wrapper select,
        .input-wrapper textarea {

            width: 100%;

            border: 0;
            outline: 0;

            background: transparent;

            color: #30485c;

            font-family: inherit;

            font-size: 11px;
        }

        .input-wrapper input,
        .input-wrapper select {

            height: 41px;

            padding-right: 10px;
        }

        .input-wrapper textarea {

            min-height: 70px;

            padding:
                9px 10px 9px 0;

            resize: vertical;
        }


        /* ==========================================
           TWO COLUMNS
        ========================================== */

        .form-row {

            display: grid;

            grid-template-columns:
                1fr 1fr;

            gap: 12px;
        }


        /* ==========================================
           SUBMIT BUTTON
        ========================================== */

        .enquiry-submit {

            width: 100%;

            height: 45px;

            margin-top: 4px;

            border: 0;
            outline: 0;

            border-radius: 6px;

            background:
                linear-gradient(
                    100deg,
                    #078793,
                    #062b68
                );

            color: #ffffff;

            font-size: 12px;

            font-weight: 700;

            cursor: pointer;

            display: flex;

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

            gap: 8px;

            transition: .3s;
        }

        .enquiry-submit:hover {

            transform: translateY(-2px);

            box-shadow:
                0 8px 20px
                rgba(6,43,104,.18);
        }


        /* ==========================================
           PRIVACY TEXT
        ========================================== */

        .form-security {

            text-align: center;

            color: #8a969f;

            font-size: 9px;

            margin-top: 10px;
        }

        .form-security i {

            color: #078793;

            margin-right: 3px;
        }


        /* ==========================================
           TABLET
        ========================================== */

        @media (max-width: 800px) {

            .enquiry-popup {

                max-width: 700px;

                grid-template-columns:
                    1fr 1fr;
            }

            .enquiry-left {
                padding: 40px 25px;
            }

            .enquiry-right {
                padding: 32px 25px;
            }

            .enquiry-left h2 {
                font-size: 26px;
            }
        }


        /* ==========================================
           MOBILE
        ========================================== */

        @media (max-width: 650px) {

            .enquiry-overlay {

                padding: 10px;

                align-items: center;

                overflow-y: auto;
            }

            .enquiry-popup {

                width: 100%;

                max-width: 480px;

                max-height:
                    calc(100vh - 20px);

                display: flex;

                flex-direction: column;

                border-radius: 14px;

                overflow: hidden;
            }


            /* LEFT */

            .enquiry-left {

                flex: 0 0 auto;

                padding:
                    32px 22px 20px;
            }

            .enquiry-left h2 {

                font-size: 24px;

                margin-top: 10px;
            }

            .enquiry-description {

                font-size: 11px;

                line-height: 1.6;

                margin-bottom: 18px;
            }

            .info-item {

                margin-bottom: 11px;
            }

            .info-icon {

                width: 35px;
                height: 35px;
                min-width: 35px;
            }

            .trust-box {

                margin-top: 16px;
            }


            /* RIGHT */

            .enquiry-right {

                flex: 1;

                min-height: 0;

                max-height: 55vh;

                overflow-y: auto;

                padding:
                    24px 20px;
            }

            .enquiry-right h3 {

                font-size: 20px;
            }

            .form-row {

                grid-template-columns: 1fr;

                gap: 0;
            }


            /* CLOSE */

            .enquiry-close {

                width: 35px;
                height: 35px;

                top: 9px;
                right: 9px;

                font-size: 14px;
            }
        }


        /* ==========================================
           SMALL MOBILE
        ========================================== */

        @media (max-width: 400px) {

            .enquiry-overlay {
                padding: 7px;
            }

            .enquiry-popup {

                max-height:
                    calc(100vh - 14px);
            }

            .enquiry-left {

                padding:
                    30px 17px 17px;
            }

            .enquiry-right {

                max-height: 57vh;

                padding:
                    22px 16px;
            }

            .enquiry-left h2 {

                font-size: 22px;
            }

            .enquiry-close {

                width: 33px;
                height: 33px;

                top: 7px;
                right: 7px;
            }
        }



/* ==========================================
           INFORMATION ITEMS
        ========================================== */

        .enquiry-info {

            display: flex;

            align-items: center;

            gap: 12px;

            margin-bottom: 20px;

            position: relative;

            z-index: 2;

        }


        .enquiry-info-icon {

            width: 42px;

            height: 42px;

            min-width: 42px;

            border-radius: 50%;

            background:
                rgba(255,255,255,.12);

            display: flex;

            align-items: center;

            justify-content: center;

            color: #53d1d0;

        }


        .enquiry-info strong {

            display: block;

            color: #ffffff;

            font-size: 12px;

            margin-bottom: 3px;

        }


        .enquiry-info a,
        .enquiry-info span {

            color: #d3e4eb;

            font-size: 11px;

            text-decoration: none;

        }


        .enquiry-info a:hover {

            color: #53d1d0;

        }


          /********************* icon on footer call for *******************/

.whatsapp-fixed,
.call-fixed {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  text-decoration: none;
}

/* WhatsApp */
.whatsapp-fixed {
  bottom: 20px;
  background: #25D366;
}

/* Call */
.call-fixed {
  bottom: 80px; /* space above WhatsApp */
  background: #25D366;
}
