    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&family=Montserrat:ital,wght@0,300;0,700;1,600&display=swap');

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

    body {
        font-family: 'Montserrat', sans-serif;
        overflow-x: hidden;
        background: radial-gradient(circle, #000000 30%, #014940 100%);
        height: 100%;
    }

    .gap {
        padding: 20px;
    }

    /* HERO SECTION */
    .hero {
        border-radius: 25px;
        position: relative;
        width: 100%;
        height: 100vh;
        background-image: url("/assets/images/Hero BG.png");
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    /* NAVBAR */
    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 60px;
        z-index: 10;
    }

    .logo img {
        width: 150px;
        height: auto;
    }

    .nav-links {
        display: flex;
        gap: 35px;
        align-items: center;
        list-style: none;
    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 16px;
        position: relative;
        transition: opacity 0.3s, color 0.3s;
    }

    .nav-links a:hover {
        opacity: 1;
        text-decoration: underline;
        text-underline-offset: 6px;
    }


    .book-btn {
        background: white;
        color: #2d3748;
        padding: 4px 5px;
        border-radius: 30px;
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.3s;
    }

    .book-btn:hover {
        transform: scale(1.05);
    }

    .circle {
        width: 40px;
        height: 40px;
        background-color: #122107;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
    }

    .airo {
        color: white;
        font-size: 18px;
        transform: rotate(90deg);
    }



    /* book appointment button ----------------------- */
    .book-appointment {
        padding: 15px 30px;
        border: 2px solid rgba(255, 255, 255, 0.5);
        border-radius: 30px;
        background: rgba(10, 9, 9, 0.392);
        color: white;
        font-size: 18px;
        cursor: pointer;
        display: none;
        align-items: center;
        gap: 10px;
        transition: 0.3s ease;
        backdrop-filter: blur(5px);

        /* Fixed Position Add kiya */
        position: fixed;
        bottom: 30px;
        right: 35px;
        z-index: 1100;
        /* Menu button se upar dikhe */
    }

    .book-appointment:hover {
        background: rgba(12, 0, 0, 0.879);
        border-color: white;
        transform: scale(1.05);
    }

    /* book appointment button end here -------------- */


    /* CONTENT SECTION */
    .content {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 100px;
        z-index: 5;
        flex-wrap: wrap;
    }

    .left-content {
        flex: 1;
        min-width: 300px;
        max-width: 600px;
    }

    .main-heading {
        font-size: 70px;
        font-weight: 900;
        color: white;
        margin-bottom: 50px;
        line-height: 1.1;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .info-text {
        font-size: 36px;
        color: white;
        line-height: 1.6;
        min-height: 160px;
        transition: opacity 0.5s, transform 0.5s;
    }

    .highlight {
        color: #f59e0b;
        font-weight: 700;
    }

    .right-content {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .right-content img {
        width: 120%;
        max-width: 650px;
        height: auto;
        transition: transform 0.3s ease;
    }

    .right-content img:hover {
        transform: scale(1.05);
    }

    /* ANIMATIONS */
    .fade-in {
        animation: fadeIn 0.6s ease forwards;
    }

    .fade-out {
        animation: fadeOut 0.6s ease forwards;
    }





    /* Second Sction */

    .section {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100vh;
        box-sizing: border-box;
    }

    .left-side,
    .right-side {
        width: 50%;
        height: 100%;
        box-sizing: border-box;
    }

    /* LEFT SIDE */
    .left-side {
        background: linear-gradient(135deg, #b8a89a 0%, #9a8978 100%);
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .left-side img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
    }

    /* RIGHT SIDE */
    .right-side {
        background: #0d3d3d;
        padding: 80px 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* HEADINGS & CONTENT */
    .main-title {
        font-size: 60px!important;
        font-weight: 900;
        color: #ff9800;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .title-underline {
        width: 100%;
        height: 3px;
        background: #ff9800;
        margin-bottom: 80px;
    }

    .content-list {
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin-bottom: 20px;
    }

    .content-item {
        color: white;
        font-size: 25px;
        line-height: 1.3;
        font-weight: 300;
    }

    /* BUTTON */
    .learn-more-btn {
        align-self: center;
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.4);
        padding: 5px 50px;
        border-radius: 50px;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .learn-more-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-2px);
    }

    .btn-text-small {
        font-size: 16px;
        font-weight: 300;
    }

    .btn-text-large {
        font-size: 24px;
        font-weight: 700;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
        .section {
            flex-direction: column;
            height: auto;
        }

        .left-side,
        .right-side {
            width: 100%;
            height: auto;
        }

        .left-side {
            min-height: 20vh;
        }

        .right-side {
            padding: 60px 50px;
        }

        .main-title {
            font-size: 50px;
        }

        .content-item {
            font-size: 15px;
        }
    }



    /* Layout */
    .oxs-container {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100vh;
        box-sizing: border-box;
    }

    /* TEXT AREA (LEFT) */
    .oxs-textbox {
        width: 50%;
        height: 100%;
        background: #0d3d3d;
        padding: 80px 100px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-sizing: border-box;
    }

    .oxs-title {
        font-size: 60px;
        font-weight: 900;
        color: #ff9800;
        margin-bottom: 20px;
        line-height: 1.1;
    }

    .oxs-divider {
        width: 100%;
        height: 3px;
        background: #ff9800;
        margin-bottom: 80px;
    }

    .oxs-list {
        display: flex;
        flex-direction: column;
        gap: 50px;
        margin-bottom: 20px;
    }

    .oxs-item {
        color: white;
        font-size: 25px;
        line-height: 1.4;
        font-weight: 300;
    }

    /* IMAGE AREA (RIGHT) */
    .oxs-image-box {
        width: 50%;
        height: 100%;
        background: linear-gradient(135deg, #b8a89a 0%, #9a8978 100%);
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        box-sizing: border-box;
    }

    .oxs-image-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.7;
    }

    /* BUTTON */
    .oxs-button {
        align-self: center;
        background: transparent;
        color: white;
        border: 2px solid rgba(255, 255, 255, 0.4);
        padding: 5px 50px;
        border-radius: 50px;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .oxs-button:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
        transform: translateY(-2px);
    }

    .oxs-btn-small {
        font-size: 16px;
        font-weight: 300;
    }

    .oxs-btn-large {
        font-size: 24px;
        font-weight: 700;
    }

    /* RESPONSIVE DESIGN */
    @media (max-width: 1024px) {
        .oxs-container {
            flex-direction: column-reverse;
            height: auto;
        }

        .oxs-textbox,
        .oxs-image-box {
            width: 100%;
            height: auto;
        }

        .oxs-image-box {
            min-height: 20vh;
        }

        .oxs-textbox {
            padding: 60px 50px;
        }

        .oxs-title {
            font-size: 50px;
        }

        .oxs-item {
            font-size: 15px;
        }
    }


    .video-section {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    .video-section video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }


    /*  Text Sectioin -------------------------- */
    .text-box {
        margin: 0;
        padding: 0;
        height: 40vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background: radial-gradient(circle, #000000 30%, #014940 100%);
        font-family: 'Poppins', sans-serif;
        text-align: center;
    }

    /* Text styling */
    .center-text h1 {
        color: white;
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        max-width: 80%;
        margin: 0 auto;
        word-wrap: break-word;
    }

    /* Responsive font sizes */
    @media (max-width: 768px) {
        .center-text h1 {
            font-size: 2.5rem;
        }

        .gap {
            padding: 10px;
        }
    }

    @media (max-width: 480px) {
        .center-text h1 {
            font-size: 1.8rem;
        }
    }

    .space {
        width: 100%;
        height: 4rem;
    }

    .layout-wrapper {
        width: 100%;
        background: #8a9ba1;
        border-radius: 40px;
        padding: 60px;
        position: relative;
    }

    .brand-heading {
        font-size: 140px;
        font-weight: 900;
        color: #fff;
        text-align: center;
        margin-bottom: 40px;
        letter-spacing: 5px;
    }

    .info-card {
        border-radius: 30px;
        overflow: hidden;
        display: flex;
        height: 550px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        transition: opacity 0.5s ease;
    }

    .image-side {
        flex: 1;
        background: #c5b5ad;
        position: relative;
        overflow: hidden;
    }

    .product-pic {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.9;
    }

    .text-side {
        flex: 1;
        background: rgba(70, 55, 45, 0.95);
        padding: 80px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .product-heading {
        font-size: 90px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 10px;
        line-height: 1;
    }

    .small-subtitle {
        font-size: 32px;
        color: #fff;
        margin-bottom: 80px;
        font-weight: 300;
    }

    .main-tagline {
        font-size: 42px;
        color: #fff;
        line-height: 1.4;
        margin-bottom: 80px;
        font-weight: 300;
        text-align: flex-start;
    }

    .action-btn {
        background: #fff;
        color: #333;
        border: none;
        padding: 10px 50px;
        border-radius: 40px;
        font-size: 22px;
        font-weight: 400;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    }

    .action-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    }

    .nav-dots {
        display: flex;
        justify-content: center;
        gap: 15px;
        margin-top: 40px;
    }

    .dot-item {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #fff;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .dot-item:not(.active) {
        opacity: 0.4;
    }

    .dot-item:hover {
        opacity: 0.7;
    }

    /* Transition animations */
    .fade-out {
        opacity: 0;
    }

    .fade-in {
        animation: fadeIn 0.6s forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: scale(0.98);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    /* Responsive Breakpoints */

    @media (max-width: 1200px) {
        .brand-heading {
            font-size: 100px;
        }

        .product-heading {
            font-size: 70px;
        }

        .main-tagline {
            font-size: 32px;
        }

        .small-subtitle {
            font-size: 26px;
        }
    }

    @media (max-width: 968px) {
        .info-card {
            flex-direction: column;
            height: auto;
        }

        .image-side {
            min-height: auto;
        }

        .text-side {
            padding: 60px 40px;
        }

        .brand-heading {
            font-size: 80px;
        }

        .product-heading {
            font-size: 60px;
        }

        .main-tagline {
            font-size: 28px;
            margin-bottom: 50px;
        }
    }

    @media (max-width: 768px) {
        .layout-wrapper {
            padding: 40px 30px;
        }

        .brand-heading {
            font-size: 30px;
        }

        .product-heading {
            font-size: 38px;
        }

        .small-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
        }

        .main-tagline {
            font-size: 14px;
            margin-bottom: 40px;
        }

        .action-btn {
            padding: 15px 40px;
            font-size: 18px;
        }
    }



















    /* Responsive Styles */
    @media (max-width: 900px) {

        .btn-explore1 {
            max-width: 144px;
            gap: 20px;
            font-size: 12px;
        }

        .book-appointment {
            display: flex;
            padding: 13px 20px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 30px;
            background: rgba(10, 9, 9, 0.392);
            color: white;
            font-size: 10px;
            right: 15px;
        }
    }

    @media (max-width: 500px) {
        .hero1 h1 {
            font-size: 28px !important;
        }
    }







    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateX(100px);
        }

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

    @keyframes fadeOut {
        from {
            opacity: 1;
            transform: translateX(0);
        }

        to {
            opacity: 0;
            transform: translateX(-100px);
        }
    }


    /* RESPONSIVE DESIGN */
    @media (max-width: 1024px) {
        .content {
            flex-direction: column;
            text-align: center;
            padding: 40px 31px;
            gap: 0px;
        }

        .main-heading {
            font-size: 60px;
        }

        .info-text {
            font-size: 28px;
        }
    }

    @media (max-width: 768px) {
        nav {
            padding: 15px 30px;
        }

        .nav-links {
            display: none;
        }

        .main-heading {
            font-size: 45px;
        }

        .info-text {
            font-size: 22px;
        }

        .hero1 p {
            top: 53%;
            left: 4%;
            font-size: 11px;
        }
    }

    @media (max-width: 480px) {
        .book-btn {
            padding: 10px 18px;
            font-size: 14px;
        }

        .main-heading {
            font-size: 45px;
        }

        .info-text {
            font-size: 25px;
        }
    }








    /*  scroll ----------- */


        /* Scroll Container */
        .scroll-section {
            background: linear-gradient(to bottom, #000000 0%, #007164 70%, #001e1b 100%);

            position: relative;
            width: 100%;
        }

        /* Hero Text 1,2,3 Section */
        .main {
            width: 100%;
            height: 100vh;
            padding: 50px 0px;
            position: relative;
        }

        /* Add top padding to create visible gap/peek effect */
        .main:nth-child(2) {
            padding-top: 110px;
        }

        .main:nth-child(3) {
            padding-top: 160px;
        }

        .hero1 {
            width: 100%;
            height: 100%;
            background-size: cover;
            background-color: #b8a89a;
            background-position: center right;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 0 8px;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
        }

        .hero1 h1 {
            color: #fff;
            font-size: 60px;
            position: absolute;
            top: 20%;
            left: 6%;
            text-shadow:
                0 0 10px #160a1667,
                0 0 20px #183b3b58,
                0 0 30px #27271146;
            z-index: 2;
            line-height: 1.1;
        }

        /* Hero Paragraph */
        .hero1 p {
            position: absolute;
            top: 63%;
            left: 6%;
            color: #f8f8f8;
            font-size: 40px;
            font-weight: 500;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            text-shadow:
                0 0 10px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(0, 0, 0, 0.3);
            opacity: 0.9;
            z-index: 2;
            line-height: 1.2;
        }

        /* Next Section */
        .next-section {
            width: 100%;
            min-height: 100vh;
            background-color: #f0f0f0;
            /* padding: 100px 50px; */
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .next-section h2 {
            font-size: 48px;
            color: #063341;
            text-align: center;
        }

        .more-content {
            height: 100vh;
            background: #063341;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .more-content h2 {
            color: white;
            font-size: 36px;
            text-align: center;
        }

        /* Responsive Styles */
        @media (max-width: 900px) {
            .main {
                padding: 30px 20px;
            }

            .main:nth-child(2),
            .main:nth-child(3) {
                margin-top: 60px;
            }

            .hero1 {
                border-radius: 40px;
            }

            .hero1 h1 {
                font-size: 50px;
                padding: 20px;
                top: 18%;
            }

            .hero1 p {
                font-size: 30px;
                top: 60%;
            }

            .btn-explore1 {
                width: 250px;
                gap: 60px;
                font-size: 16px;
                padding: 12px 24px;
            }

            .next-section {
                padding: 80px 30px;
            }

            .next-section h2 {
                font-size: 36px;
            }

            .more-content h2 {
                font-size: 28px;
            }
        }

        @media (max-width: 600px) {
            .main {
                padding: 15px;
            }

            .main:nth-child(2),
            .main:nth-child(3) {
                margin-top: 40px;
            }

            .hero1 {
                border-radius: 30px;
            }

            .hero1 h1 {
                font-size: 28px;
                padding: 10px;
                top: 12%;
                left: 5%;
            }

            .hero1 p {
                font-size: 16px;
                top: 52%;
                left: 5%;
                letter-spacing: 0.5px;
            }

            .btn-explore1 {
                width: 150px;
                gap: 10px;
                font-size: 11px;
                padding: 10px 16px;
                bottom: 10%;
                left: 5%;
            }

            .next-section {
                padding: 60px 20px;
            }

            .next-section h2 {
                font-size: 26px;
            }

            .more-content h2 {
                font-size: 22px;
            }
        }

        @media (max-width: 400px) {
            .main:nth-child(2),
            .main:nth-child(3) {
                margin-top: 30px;
            }

            .hero1 h1 {
                font-size: 24px;
                top: 10%;
            }

            .hero1 p {
                font-size: 14px;
                top: 50%;
            }

            .btn-explore1 {
                width: 130px;
                font-size: 10px;
                padding: 8px 14px;
                gap: 8px;
            }

            .next-section h2 {
                font-size: 22px;
            }

            .more-content h2 {
                font-size: 20px;
            }
        }