/*  NAV CSS*/
/*#e6ebee*/
body {
    margin: 0;
    padding: 0;
    font-family: Oswald;
    background-color: rgb(213, 220, 225);
    overflow-x: hidden;
}

body a{
    color: #000;
    text-decoration: none;
}
header {
    position: sticky;
    width: 100%;
    height: auto;
    /* background: #c9d0d6c0; */
    z-index: 10;
    top: 0;
}

.mobileHeroAnimation {
    display: none;
    height: 130vw;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    background-image: url(/mobilebg.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    /*background: linear-gradient(180deg, #d5dbdc 0%, rgba(0, 0, 0, 0) 60%);*/
}

@media (max-width: 768px) {
    .mobileHeroAnimation {
        display: flex;
    }

    
}
/* Loading Animation Styles */
.nav-cover {
    background: linear-gradient(135deg, #c9d0d6c0, #b5bdc5c0);
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
    .nav-cover.loading img{
        margin: auto !important;
    }
    .nav-cover.loaded {
        position: sticky;
        width: 100%;
        height: auto;
        background: linear-gradient(180deg, rgb(213, 220, 225) 0%, rgba(0, 0, 0, 0) 100%);
        /*background: rgb(185 192 197 / 40%);*/
    }

    /* Loading state - full screen with only logo visible */
    .nav-cover.loading {
        position: fixed;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #c9d0d6c0, #b5bdc5c0);
        backdrop-filter: blur(10px);
    }

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: #fff;
    margin: 0 4rem;
    width: 100% !important;
    transition: all 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
}

/* Ensure logo is centered during loading */
.nav-cover.loading nav {
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide ALL navigation elements during loading */
body.loading .dropdown-container,
body.loading nav ul,
body.loading .nav,
body.loading .overlay,
body.loading .bookAppointment,
body.loading .menu-icon,
body.loading .mob-nav {
    opacity: 0 !important;
    visibility: hidden !important;
    transform: scale(0.8) !important;
    transition: all 1s ease-out !important;
    pointer-events: none !important;
    display: none !important;
}

/* Show navigation elements after loading - DESKTOP VIEW */
body.loaded .dropdown-container,
body.loaded nav ul {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    transition: all 1s ease-out 0.5s !important;
    pointer-events: auto !important;
    display: flex !important;
}

/* Show mobile menu button after loading - MOBILE VIEW */
body.loaded .nav {
    opacity: 1 !important;
    visibility: visible !important;
    transform: scale(1) !important;
    transition: all 1s ease-out 0.5s !important;
    pointer-events: auto !important;
    display: flex !important;
}

/* Logo animation */
.logo {
    margin-left: 4.8rem;
    height: 70px;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* Loading state for logo - only apply when explicitly loading */
body.loading .logo {
    height: 100px;
    /* animation: logoGlow 3s ease-in-out infinite;*/
}

@keyframes logoGlow {

    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(200, 55, 52, 0.3));
        transform: scale(1);
    }

    50% {
        filter: drop-shadow(0 0 40px rgba(200, 55, 52, 0.6));
        transform: scale(1.05);
    }
}

/* Main content animation */
.main-content {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1.5s ease-out;
    pointer-events: none;
}

/*main {
    margin-top: 110px;
}*/

/* Show main content after loading */
body.loaded .main-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0.5s;
}

.numberSection{
    background-color: rgb(234, 237, 240);
}

@media (max-width: 768px) {
    .logo{
        margin-left: 1.35rem;
    }
    .numberSection {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgb(233, 237, 240) 100%);
    }
}
    .blur {
        backdrop-filter: blur(10px);
    }

    .dropdown-container {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #5a5a5a;
        max-height: 256px;
        width: calc(200px - 1px);
        overflow-y: auto;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1000;
        margin-top: 10px;
        padding: 5px 10px;
    }

        .dropdown-content a {
            color: #d5d5d5 !important;
            padding: 8px 2px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid rgb(255, 255, 255);
            font-size: 0.8rem;
        }

            .dropdown-content a:hover {
                color: #ffffff;
            }

            .dropdown-content a:last-child {
                border-bottom: none;
            }

    .dropdown.show .dropdown-content {
        display: block;
    }

    button {
        font-family: Oswald;
    }

    .dropbtn {
        background: none;
        border: none;
        color: rgb(255, 255, 255);
        cursor: pointer;
        padding: 8px 12px;
        background-color: #1A1919;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        min-width: 200px;
        letter-spacing: 2px;
    }

        .dropbtn p {
            margin: 0;
            font-size: 1rem;
        }

        .dropbtn:hover {
            background-color: rgba(0, 0, 0, 0.882);
        }

    /* Scrollbar styling */
    .dropdown-content::-webkit-scrollbar {
        width: 6px;
    }

    .dropdown-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 3px;
    }

    .dropdown-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 3px;
    }

        .dropdown-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }


    .bookAppointment {
        padding: 8px 20px;
        background: transparent;
        width: 130px;
        letter-spacing: 2px;
        width: max-content;
        background-color: #000000;
        color: #ffffff;
        outline: none;
        border: none;
        cursor: pointer;
        position: relative;
        overflow: hidden;
        z-index: 1;
        transform: scale(1);
        transition: transform 0.3s ease;
    }

        .bookAppointment::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 70%;
            height: 100%;
            background-color: #C83734;
            transform: skewX(-20deg);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .bookAppointment:hover {
            transform: scale(1.05);
        }

            .bookAppointment:hover::before {
                left: -25%;
            }

    .mob-nav .bookAppointment {
        height: 2.75rem;
    }

    nav ul {
        display: flex;
        padding: 0;
        margin: 0;
    }

        nav ul li {
            list-style: none;
            width: 80px;
            text-align: center;
        }

            nav ul li a {
                text-decoration: none;
                color: #656565 !important;
                transition: all 0.3s ease;
            }

                nav ul li a:hover {
                    color: #000000;
                    font-weight: bold;
                }

                nav ul li a.active {
                    color: #000000;
                    font-weight: bold;
                }

    .cityscape-container {
        height: 20vh;
        background-color: #CED6DC;
        width: 100%;
        background-image: url(/cityscape.png);
        background-size: cover;
        background-position: 30% center;
        /* Moved slightly to the left */
        background-repeat: no-repeat;
    }

    .cityscape-offset {
        background-color: #CED6DC;
        height: 20vh;
        width: 100%;
    }


    /*HERO SECTION CSS*/


.heroCoponentSection {
    padding-top: 50px;
    margin-bottom: -200px;
}

@media (max-width: 768px) {
    .heroCoponentSection {
        display: none;
    }

    .garageTool {
        display: none;
    }
}

.heroBgImage {
    display: flex;
    position: relative;
    background-image: url('/heroBgMain.png');
    aspect-ratio: 3 / 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: visible;
}

.namasteMonkey {
    height: 13vw;
    object-fit: contain;
    position: absolute;
    top: 8vw;
    left: 7.5vw;
}

.heroCar {
    aspect-ratio: 490/137;
    background-image: url('/carWithoutTyre.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 16vw;
    position: absolute;
    top: 7vw;
    left: 23vw; /* initial, will be overridden by JS */
    will-change: left, transform;
}

.reartyre {
    height: 9vw;
    object-fit: contain;
    position: absolute;
    top: 7vw;
    left: 9.5vw;
    will-change: transform;
}

.FrontTyre {
    height: 8.5vw;
    object-fit: contain;
    position: absolute;
    top: 7.4vw;
    left: 40.2vw;
    will-change: transform;
}

.hero-txt {
    text-align: center;
    margin: 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

    .hero-txt p {
        letter-spacing: 1px;
        margin: 0 auto;
        max-width: max-content;
        font-weight: 500;
    }

    .hero-txt h1 {
        font-size: 40px;
        margin: 0 auto;
        max-width: max-content;
        color: #C83734;
    }


    .number-cards-secetion {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin: 20px 56px;
        position: relative;
        z-index: 1;
    }

    @media (max-width: 1050px) {
        .number-cards-secetion {
            flex-direction: column;
            margin: 0 10px;
        }
    }

    .social {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

        .social img {
            height: 30px;
            border: 1px solid #000000;
            padding: 3px;
            border-radius: 5px;
            opacity: 0.65;
        }

    .number-cards {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 30px;
        flex-wrap: wrap;
    }

    @media (max-width: 600px) {
        .number-cards {
            justify-content: center;
        }

        .divider-line {
            display: none;
        }
    }

    .number-card {
        display: flex;
        align-items: baseline;
        gap: 10px;
    }

    .divider-line {
        height: 20px;
        width: 1px;
        background-color: #000000;
    }



    /*MONKEY STORY SECTION CSS*/
.monkeyStorySection {
    display: flex;
    flex-wrap: wrap;
    height: auto;
    padding: 2rem;
    margin: 3rem;
    margin-right: 62px;
    background: linear-gradient(to right, #00000000, #00000000 40%, #C83734) top left / 100% 1px no-repeat, linear-gradient(to right, #00000000, #00000000 40%, #C83734) bottom left / 100% 1px no-repeat, #00000000;
    border-right: 1px solid #C83734;
}

    .namaste-monkey {
        height: 30vw;
    }

    .monkeystorycontent {
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: right;
        color: #292F33;
    }

        .monkeystorycontent h2 {
            font-size: 3.5rem;
            margin: 0;
        }

        .monkeystorycontent h1 {
            font-weight: 700;
            font-size: 4.5rem;
            margin: 0;
            background: linear-gradient(270deg, #C83734, #000000);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            animation: monkey-gradient-animate 8s linear infinite;
        }

    @keyframes monkey-gradient-animate {
        0% {
            background-position: 0% 50%;
        }

        100% {
            background-position: 100% 50%;
        }
    }

    .monkeystorycontent p {
        font-size: 1.2rem;
        font-weight: 300;
        margin: 1rem 0;
    }

    /* Responsive styling for monkeyStorySection */
    @media (max-width: 1024px) {
        .monkeyStorySection {
            margin: 2rem;
            padding: 1.5rem;
        }

        .monkeystorycontent h2 {
            font-size: 2.8rem;
        }

        .monkeystorycontent h1 {
            font-size: 3.5rem;
        }

        .monkeystorycontent p {
            font-size: 1.1rem;
        }

        .namaste-monkey {
            height: 35vw;
        }
    }

    @media (max-width: 768px) {
        .monkeyStorySection {
            margin: 1.5rem;
            padding: 10px 1rem;
            flex-direction: column;
        }

        .monkeystorycontent {
            text-align: start;
            margin-top: 2rem;
        }

            .monkeystorycontent h2 {
                font-size: 2.2rem;
            }

            .monkeystorycontent h1 {
                font-size: 2.8rem;
            }

            .monkeystorycontent p {
                font-size: 1rem;
            }

        .namaste-monkey {
            height: 40vw;
            margin: 0 auto;
            display: block;
        }

        .number-card {
            display: flex;
            align-items: baseline;
            font-size: 0.8rem;
            gap: 0px;
        }

            .number-card .h1, h1 {
                font-size: calc(1.3rem + 0.7vw);
            }
    }

    @media (max-width: 576px) {
        .monkeyStorySection {
            margin: 1rem;
            padding: 10px 0.8rem;
        }

        .monkeystorycontent h2 {
            font-size: 1.8rem;
        }

        .monkeystorycontent h1 {
            font-size: 2.2rem;
        }

        .monkeystorycontent p {
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .namaste-monkey {
            height: 50vw;
        }

        .number-card {
            display: flex;
            align-items: baseline;
            font-size: 0.7rem;
            gap: 0px;
        }

            .number-card .h1, h1 {
                font-size: calc(1.3rem + 0.5vw);
            }
    }

    @media (max-width: 480px) {
        .monkeyStorySection {
            margin: 0.5rem;
            padding: 0.5rem;
        }

        .monkeystorycontent h2 {
            font-size: 1.5rem;
        }

        .monkeystorycontent h1 {
            font-size: 1.8rem;
        }

        .monkeystorycontent p {
            font-size: 0.85rem;
        }

        .namaste-monkey {
            height: 60vw;
        }

        .number-card {
            display: flex;
            align-items: baseline;
            font-size: 0.7rem;
            gap: 0px;
        }

            .number-card .h1, h1 {
                font-size: calc(1.3rem + 0.5vw);
            }
    }





    .read-more-btn-text {
        display: flex;
        align-items: center;
        flex-direction: column;
        cursor: pointer;
        width: 100vw;
    }

        .read-more-btn-text p {
            margin: 0;
            margin-bottom: -10px;
            z-index: 1;
        }

    .yellow-accent {
        background-color: #F1C74C;
        height: 10px;
        width: 100%;
        z-index: 0;
        padding: 0 40px;
    }

    @media (min-width: 768px) {
        html {
            font-size: 16px;
        }
    }

    /*COME TO US SECTION CSS*/

    .customTitle {
        background-color: #1A1919;
        width: 100%;
        padding: 50px 0;
        display: grid;
        grid-template-areas: "overlap";
        place-items: center;
        position: relative;
        overflow : hidden;
    }

    .customTitle-title-bg {
        color: #ffffff;
        opacity: 0.1;
        text-align: center;
        margin: 0;
        font-size: 150px;
        letter-spacing: 15px;
        font-weight: bold;
        grid-area: overlap;
        z-index: 1;
        white-space: nowrap;
    }

    .customTitle h1 {
        color: #ffffff;
        text-align: center;
        margin: 0;
        font-size: 30px;
        font-weight: bold;
        grid-area: overlap;
        z-index: 2;
    }

.car-logo-carsouel {
    margin: 50px 0;
    overflow: hidden;
    width: auto;
}

.car-logo-carsouel-track {
    display: flex;
    white-space: nowrap;
    gap: 100px;
    align-items: center;
}

    

.car-logo-carsouel-img {
    height: 70px;
    flex-shrink: 0;
}


    /* Responsive Styling */
    @media (max-width: 1024px) {
        .customTitle-title-bg {
            font-size: 100px;
            letter-spacing: 20px;
        }

        .customTitle h1 {
            font-size: 24px;
        }

        .car-logo-carsouel-track {
            gap: 60px;
        }

        .car-logo-carsouel-img {
            height: 60px;
        }
    }

    @media (max-width: 768px) {
        .customTitle-title-bg {
            font-size: 60px;
            letter-spacing: 10px;
        }

        .customTitle h1 {
            font-size: 15px;
        }

        .car-logo-carsouel-track {
            gap: 40px;
        }

        .car-logo-carsouel-img {
            height: 50px;
        }
    }

    @media (max-width: 480px) {
        .customTitle-title-bg {
            font-size: 60px;
            letter-spacing: 5px;
        }

        .customTitle h1 {
            font-size: 15px;
            padding: 0 10px;
        }

        .car-logo-carsouel-track {
            gap: 30px;
        }

        .car-logo-carsouel-img {
            height: 40px;
        }
    }

    /*SERVICES SECTION CSS*/
    .services-carosuel {
        display: flex;
        gap: 60px;
        align-items: center;
        position: relative;
        padding: 40px 30px 0 66px;
        min-height: 60vh;
        margin: 0 auto;
        width: 100%;
    }

    .services-carosuel-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        opacity: 0;
        z-index: -1;
    }

        .services-carosuel-background.active {
            opacity: 1;
        }

        .services-carosuel-background::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(230, 235, 239, 0.9), rgba(255, 255, 255, 0.1));
            z-index: 1;
        }

    .services-carosuel-track {
        display: flex;
        gap: 12px;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        width: max-content;
        height: 70%;
        z-index: 2;
        position: relative;
        flex-shrink: 0;
    }

        .services-carosuel-track span {
            height: 20px;
            width: 3px;
            background-color: rgba(110, 110, 110, 0.7);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
            position: relative;
            overflow: hidden;
        }

            .services-carosuel-track span::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 0;
                transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .services-carosuel-track span:hover {
                background-color: rgba(158, 158, 158, 0.8);
                transform: scaleX(1.5);
            }

            .services-carosuel-track span.active {
                background-color: #C83734;
                width: 5px;
            }

                .services-carosuel-track span.active::before {
                    height: 100%;
                }

    /* Content styling */
    .services-carosuel-content {
        display: flex;
        flex-direction: column;
        gap: 24px;
        z-index: 2;
        position: relative;
        opacity: 0.96;
        transition: opacity 0.3s linear;
        flex: 1;
        max-width: 100%;
    }

        .services-carosuel-content.active {
            opacity: 1;
            transition: opacity 0.3s linear;
        }

        .services-carosuel-content h1 {
            font-size: clamp(2rem, 5vw, 4.5rem);
            margin: 0;
            color: #C83734;
            font-weight: 500;
            opacity: 0.96;
            transition: opacity 0.3s linear;
            line-height: 1.1;
        }

        .services-carosuel-content.active h1 {
            opacity: 1;
            transition: opacity 0.3s linear;
        }

    .services-carosuel-content-heading h1 {
        margin: 0;
    }

    .services-carosuel-content-heading p {
        margin: 0;
        font-size: clamp(1rem, 2.5vw, 2.2rem);
        color: #414141;
        opacity: 0.96;
        transition: opacity 0.3s linear;
        margin: 12px 0;
        line-height: 1.5;
    }

    .services-carosuel-content.active .services-carosuel-content-heading p {
        opacity: 1;
        transition: opacity 0.3s linear;
        font-weight: 400;
    }

    .services-carosuel-content-item {
        opacity: 0.96;
        transition: opacity 0.3s linear;
    }

    .services-carosuel-content.active .services-carosuel-content-item {
        opacity: 1;
        transition: opacity 0.3s linear;
    }

    .services-carosuel-content-item ul li {
        margin: 0;
        text-align: start;
        font-size: clamp(16px, 3vw, 20px);
        color: #414141;
        margin-top: 12px;
        font-weight: 300;
        transition: all 0.3s ease;
        cursor: pointer;
        position: relative;
        line-height: 1.3;
    }

        .services-carosuel-content-item ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: #C83734;
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .services-carosuel-content-item ul li:hover::before {
            /*opacity: 1;*/
        }

    .services-carosuel-content-item p {
        font-size: clamp(0.875rem, 2vw, 1rem);
        color: #414141;
        margin: 8px 0 20px 0;
        font-weight: 400;
        line-height: 1.4;
    }

    /* Main services container */
    #services {
        position: relative;
        overflow: hidden;
        width: 100%;
        margin: 0;
        padding: 0;
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

        /* Ensure background images cover the entire services section */
        #services .services-carosuel-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

    /* VIEW ALL SERVICES button */
    .read-more-btn-text {
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        z-index: 3;
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 90%;
        width: auto;
    }

        .read-more-btn-text span {
            color: #292F33;
            margin: 0;
            white-space: nowrap;
            z-index: 1;
            font-size: clamp(14px, 2.5vw, 16px);
        }

    .yellow-accent {
        padding: 0 clamp(40px, 8vw, 70px);
        margin-top: -20px;
        z-index: 0;
    }

    /* Responsive Breakpoints */

    /* Large Tablets and Small Desktops */
    @media (max-width: 1200px) {
        .services-carosuel {
            gap: 40px;
            min-height: 55vh;
            padding: 1.5rem;
        }

        .services-carosuel-content {
            gap: 20px;
            max-width: 500px;
        }
    }

    /* Tablets */
    @media (max-width: 1024px) {
        .services-carosuel {
            gap: 30px;
            min-height: 50vh;
        }

        .services-carosuel-track {
            height: 60%;
        }

        .services-carosuel-content {
            gap: 18px;
            max-width: 450px;
        }

        .read-more-btn-text {
            bottom: 25px;
        }
    }

    /* Mobile Landscape */
    @media (max-width: 768px) {
        .services-carosuel {
            flex-direction: column;
            gap: 30px;
            height: 530px;
            align-items: baseline;
            /* Space for button */
        }

        .services-carosuel-track {
            flex-direction: row;
            width: 100%;
            height: auto;
            justify-content: center;
            gap: 8px;
        }

            .services-carosuel-track span {
                width: 30px;
                height: 3px;
            }

                .services-carosuel-track span.active {
                    width: 40px;
                    height: 4px;
                }

        .services-carosuel-content {
            text-align: center;
            gap: 16px;
            max-width: 100%;
        }

        .services-carosuel-content-item h3 {
            text-align: left;
        }

        .services-carosuel-content-item p {
            text-align: left;
        }

        .read-more-btn-text {
            bottom: 20px;
            width: auto;
        }

        #services {
            min-height: 60vh;
        }
    }



    /*ExpertDiv CSS*/

    .expertsDiv {
        width: 100%;
        padding: 40px 0;
        display: grid;
        grid-template-areas: "overlap";
        place-items: center;
        position: relative;
        padding: 4.5rem;
        background: #e6ebee;
    }

    .expertsTitleBg {
        color: #292F33;
        opacity: 0.1;
        text-align: center;
        margin: auto;
        font-size: 150px;
        letter-spacing: 30px;
        font-weight: bold;
        grid-area: overlap;
        z-index: 1;
        white-space: nowrap;
    }

    .expertsDiv h1 {
        color: #000;
        text-align: center;
        margin: auto;
        font-size: 30px;
        font-weight: bold;
        grid-area: overlap;
        z-index: 2;
    }

    .expertImg {
        display: block;
        width: 300px;
        height: auto;
        margin: auto;
    }

    .col-md-4 {
        background-image: url(~/frame.png);
    }

    .expertFrame {
        background-image: url(/frame.png);
        background-repeat: no-repeat;
        background-size: 100% 74%;
        background-position: bottom center;
    }

    .expertNameDiv {
        background-image: url(/Path_4453.svg);
        background-repeat: no-repeat;
        height: 64px;
        background-size: 216px 61px;
        background-position: center;
        text-align: center;
    }

        .expertNameDiv h3 {
            padding: 10px;
            color: #C83734;
        }

    .expertDetails {
        padding: 25px;
        /*border: 1px solid;
        border-image: linear-gradient(to bottom, #707476, #C83734);
        border-image-slice: 1;
        border-top: none;*/
    }

        .expertDetails h5 {
            text-align: center;
            font-weight: 400;
            letter-spacing: 2px;
        }

        .expertDetails p {
            text-align: center;
            font-size: smaller;
            letter-spacing: 2px;
            font-weight: 300;
        }

    .btnViewAllExperts {
        background: linear-gradient(to bottom, #00000000 60%, #F1C74C 40%);
        margin: 35px auto;
        border: none;
        font-weight: 400;
        font-size: larger;
        padding: 0 10px;
        color: #000 !important;
    }

    .btnCarousel {
        width: 3.5%;
        height: 95%;
        margin: -30px;
    }

    /* Responsive styles for Experts Section */

    @media (max-width: 1024px) {
        .expertsTitleBg {
            font-size: 100px;
            letter-spacing: 15px;
        }

        .expertsDiv h1 {
            font-size: 20px;
        }

        .expertImg {
            width: 250px;
        }

        .btnViewAllExperts {
            font-size: medium;
        }

        .btnCarousel {
            width: 5%;
        }
    }

    @media (max-width: 768px) {
        .expertsDiv {
            padding: 15px 40px
        }

        .expertsTitleBg {
            font-size: 70px;
            letter-spacing: 10px;
        }

        .expertsDiv h1 {
            font-size: 18px;
        }

        .expertImg {
            width: 200px;
        }

        .expertDetails {
            padding: 15px;
        }

            .expertDetails h5,
            .expertDetails p {
                font-size: 14px;
            }

        .btnViewAllExperts {
            font-size: 14px;
            margin: 10px auto 35px
        }

        .btnCarousel {
            margin: 0px;
            width: 10%;
            height: 85%;
        }

            .btnCarousel img {
                max-width: 40px;
            }

        .col-md-4 {
            padding: 20px;
        }
    }

    @media (max-width: 576px) {
        .expertsTitleBg {
            font-size: 60px;
            letter-spacing: 5px;
            white-space: normal;
        }

        .expertsDiv h1 {
            font-size: 16px;
        }

        .carousel-item .row {
            flex-direction: column;
            align-items: center;
        }

        .col-md-4 {
            width: 100%;
            max-width: 90%;
            padding: 15px;
        }

        .expertImg {
            width: 180px;
        }

        .btnViewAllExperts {
            font-size: 14px;
        }

        .btnCarousel {
            margin: 0;
            width: 10%;
            height: 85%;
        }

            .btnCarousel img {
                max-width: 40px;
            }

        .expertNameDiv {
            background-size: 160px 45px;
            height: 48px;
        }

            .expertNameDiv h3 {
                font-size: 16px;
                padding: 8px;
            }

        .expertDetails h5,
        .expertDetails p {
            font-size: 13px;
            letter-spacing: 1px;
        }
    }


    /*Comparison Container CSS*/
    .comparisonContainer {
        padding: 54px;
    }

    .arrow {
        font-size: 2rem;
        display: inline-block;
        animation: arrow-left-right 1.2s infinite alternate cubic-bezier(0.4, 0, 0.2, 1);
        transition: transform 0.2s;
    }

    @keyframes arrow-left-right {
        0% {
            transform: translateX(0);
        }

        30% {
            transform: translateX(10px);
        }

        60% {
            transform: translateX(-10px);
        }

        100% {
            transform: translateX(0);
        }
    }


    .comparisonContainer h4 {
        font-size: 65px !important;
    }

    .comparisonContainer h3 {
        font-size: 90px;
        background: linear-gradient(to right, #C83734, #212121);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }

    .comparisonContainer h5 {
        color: #C83734;
        font-size: 28px;
        margin-top: 1.2rem;
    }

    .comparisonContainer span {
        color: #5F5F5F;
        font-size: 44px;
    }

    .sliderContainer {
        border: 2px solid #C83734;
        border-radius: 14px;
        overflow: hidden;
        width: 85%;
        margin: auto;
        margin-right: 10px; 
    }

    figure {
        width: 100% !important;
        height: auto;
    }

    @media (max-width: 1024px) {
        .comparisonContainer {
            padding: 1rem 2rem;
        }

            .comparisonContainer h4 {
                font-size: 42px !important;
            }

            .comparisonContainer h3 {
                font-size: 60px;
            }

            .comparisonContainer h5 {
                font-size: 22px;
            }

            .comparisonContainer span {
                font-size: 36px;
            }

        .sliderContainer {
            width: 95%;
        }

        .cd-image-container {
            max-width: 100%;
        }

        .cd-resize-img img {
            height: auto;
            width: 100%;
            position: static;
        }
    }

    @media (max-width: 768px) {
        .comparisonContainer {
            padding: 2rem 1rem;
        }

            .comparisonContainer .row {
                flex-direction: column;
            }

            .comparisonContainer h4 {
                font-size: 32px !important;
            }

            .comparisonContainer h3 {
                font-size: 45px;
            }

            .comparisonContainer h5 {
                margin-bottom: 12px;
                font-size: 20px;
            }

            .comparisonContainer span {
                font-size: 28px;
            }

        .cd-image-container {
            width: 100%;
            margin-top: 30px;
        }

        .sliderContainer {
            width: 100%;
        }

        .cd-resize-img img {
            height: auto;
            width: 100%;
            position: static;
        }

        .cd-handle {
            width: 36px;
            height: 36px;
            margin-left: -18px;
            margin-top: -18px;
            background-size: 16px;
        }
    }

    @media (max-width: 480px) {
        .comparisonContainer {
            padding: 1.5rem 1rem;
        }

            .comparisonContainer h4 {
                font-size: 26px !important;
            }

            .comparisonContainer h3 {
                font-size: 36px;
            }

            .comparisonContainer h5 {
                margin-bottom: 12px;
                font-size: 18px;
            }

            .comparisonContainer span {
                font-size: 24px;
            }

        .sliderContainer {
            width: 100%;
        }

        .cd-handle {
            width: 30px;
            height: 30px;
            margin-left: -15px;
            margin-top: -15px;
            background-size: 14px;
        }

        .cd-image-label {
            padding: 0.7em;
            font-size: 0.9rem;
        }
    }

    /*footer CSS*/

    footer {
        background-color: #1A1919;
        color: #ffffff;
        padding: 50px 0 10px 0;
    }

    .footer-logo {
        margin-top: 7vh;
    }

    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding-right: 100px;
    }

        .footer-container img {
            max-height: 70px;
        }

    @media (max-width: 768px) {
        .footer-logo {
            margin-top: 3vh;
        }

        .footer-container {
            padding-right: 10px;
        }
    }


    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-left: 10px;
        max-width: 400px;
    }

        .footer-contact a {
            text-decoration: none;
            color: #c6c6c6 !important;
            font-weight: 300;
        }

    .footer-address {
        display: flex;
        flex-direction: column;
        max-width: 400px;
        margin-left: 10px;
    }

        .footer-address p {
            margin: 0;
            font-weight: 300;
            color: #c6c6c6;
        }

    .footer-contact a:hover {
        color: #C83734;
    }

    .footer-txt-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        margin-top: 50px;
    }

    .footer-copyright {
        text-align: center;
        margin: 10px 0;
        font-weight: 300;
        color: #707070;
        font-size: 14px;
    }

    .footer-txt {
        width: calc(100% - 3vw);
        margin-bottom: -2vw;
    }

.mail-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-top: 10px;
    max-width: 400px;
}

    .mail-bar input {
        width: 100%;
        height: 40px;
        border: none;
        border-radius: 10px;
        padding: 0 10px;
        background-color: transparent;
        border: 1px solid #707070;
        color: white;
    }

    .mail-bar button {
        background-color: #C83734;
        border-radius: 10px;
        border: none;
        cursor: pointer;
        padding: 5px 10px 5px 20px;
        transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 2px 8px 0 rgba(200, 55, 52, 0.10);
        position: relative;
        overflow: hidden;
    }
            .mail-bar button::after {
                content: "";
                position: absolute;
                left: 50%;
                top: 50%;
                width: 0;
                height: 0;
                background: rgba(255, 255, 255, 0.18);
                border-radius: 100%;
                transform: translate(-50%, -50%);
                transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1), height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 0;
                pointer-events: none;
            }

            .mail-bar button:hover {
                background: linear-gradient(90deg, #C83734 60%, #e85d5a 100%);
                box-shadow: 0 4px 16px 0 rgba(200, 55, 52, 0.18);
                transform: translateY(-2px) scale(1.04);
            }

            .mail-bar button:active::after {
                width: 180%;
                height: 180%;
            }

            .mail-bar button:hover img {
                transform: rotate(45deg) scale(1.15);
                filter: drop-shadow(0 2px 8px #fff7);
            }

            .mail-bar button img {
                height: 27px;
                filter: invert(1);
                transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), filter 0.35s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 1;
                position: relative;
            }

    .mapouter {
        position: relative;
        text-align: right;
        width: 400px;
        height: 150px;
        margin: 10px 0;
        overflow: hidden;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        .footer-contact {
            gap: 2px;
        }

        .footer-address {
            margin-top: 22px;
        }
        .footer-copyright {
           
            font-size: 8px;
        }
    }

    @media (max-width: 440px) {
        .mapouter {
            width: 300px;
        }

        .gmap_canvas {
            width: 300px;
        }

        .footer-contact {
            gap: 2.5px;
        }

        .footer-address {
            margin-top: 22px;
        }
    }

    .gmap_canvas {
        overflow: hidden;
        background: none !important;
        width: 400px;
        height: 150px;
    }

    .gmap_iframe {
        width: 400px !important;
        height: 150px !important;
    }

    /*Golden Section CSS*/
.golden-section {
    margin: 0px 38px;
    margin-right: 48px;
    padding: 32px 32px 32px 0px;
    border: 1px solid transparent;
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 40%, rgb(200, 55, 52)) left top / 100% 1px no-repeat, linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 40%, rgb(200, 55, 52)) left bottom / 100% 1px no-repeat, rgba(0, 0, 0, 0);
    border-right: 1px solid rgb(200, 55, 52);
}

    .golden-section-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .golden-section-content {
        display: flex;
        flex-direction: column;
        margin-left: 0 !important;
    }

        .golden-section-content h2 {
            font-size: 3.5rem;
            font-weight: 500;
            margin: 0;
        }

        .golden-section-content h1 {
            font-size: 4.5rem;
            font-weight: 500;
            background: linear-gradient(120deg, #EDAF00 60%, #fff7b2 10%, #C83734 10%, #EDAF00 10%, #292F33 10%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            color: transparent;
            animation: golden-gradient-elegant 5s ease-in-out infinite;
        }

    @keyframes golden-gradient-elegant {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }

    .uprightArrow {
        margin-top: 26px;
        height: 25px;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        animation: uprightArrowBounce 1.2s infinite alternate;
    }

    @keyframes uprightArrowBounce {
        0% {
            transform: translateY(0) scale(1);
        }

        60% {
            transform: translateY(-8px) scale(1.08);
        }

        100% {
            transform: translateY(0) scale(1);
        }
    }

    .golden-section-content p {
        font-size: 1.2rem;
        font-weight: 300;
        color: #292F33;
        margin: 5vh 0;
    }

    .golden-section-content-end p {
        font-size: 1.2rem;
        font-weight: 300;
        color: #292F33;
    }

    .golden-section-img {
        height: 45vh;
    }

    @keyframes scroll-logos {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-1260px);
        }
    }

    /* Responsive Styles for Golden Cruiser Section */

    @media (max-width: 1024px) {
        .golden-section {
            margin: 50px;
            padding: 15px;
        }

        .golden-section-content h1 {
            font-size: 2.8rem;
        }

        .golden-section-content h2 {
            font-size: 2rem;
        }

        .golden-section-content p,
        .golden-section-content-end p {
            font-size: 1.1rem;
        }

        .golden-section-img {
            height: 40vh;
        }
    }

    @media (max-width: 768px) {
        .golden-section {
            margin: 0 5px;
        }

        .golden-section-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .golden-section-content {
            align-items: baseline !important;
        }

            .golden-section-content h1 {
                font-size: 2.2rem;
            }

            .golden-section-content h2 {
                font-size: 1.6rem;
                text-align: start;
            }

            .golden-section-content p,
            .golden-section-content-end p {
                text-align: start;
                font-size: 1rem;
                margin: 3vh 0;
            }

        .golden-section-img {
            display: block;
            align-self: auto;
            height: 35vh;
            max-width: 95%;
        }

        .read-more-btn-text {
            text-align: center;
        }

        .uprightArrow {
            margin-top: 10px;
        }
    }

    @media (max-width: 480px) {
        .golden-section {
            margin: 30px 10px;
            padding: 10px;
        }

        .golden-section-content h1 {
            font-size: 1.8rem;
        }

        .golden-section-content h2 {
            font-size: 1.3rem;
        }

        .golden-section-content p,
        .golden-section-content-end p {
            font-size: 0.95rem;
        }

        .golden-section-img {
            height: auto;
            width: 100%;
        }

        .read-more-btn-text p {
            font-size: 0.95rem;
        }

        .uprightArrow {
            margin-top: 10px;
        }
    }

    /* Slide Up Fade In Animation */
    .slide-up-fade-in {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

        .slide-up-fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Intersection Observer styles for different delay classes */
        .slide-up-fade-in[data-delay="1"] {
            transition-delay: 0.2s;
        }

        .slide-up-fade-in[data-delay="2"] {
            transition-delay: 0.4s;
        }

        .slide-up-fade-in[data-delay="3"] {
            transition-delay: 0.6s;
        }

        .slide-up-fade-in[data-delay="4"] {
            transition-delay: 0.8s;
        }

        .slide-up-fade-in[data-delay="5"] {
            transition-delay: 1s;
        }

        /* Enhanced animation variants */
        .slide-up-fade-in.slow {
            transition: opacity 1.2s ease-out, transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-up-fade-in.fast {
            transition: opacity 0.5s ease-out, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-up-fade-in.bounce {
            transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        /* Different slide directions */
        .slide-up-fade-in.from-left {
            transform: translateX(-50px);
        }

            .slide-up-fade-in.from-left.active {
                transform: translateX(0);
            }

        .slide-up-fade-in.from-right {
            transform: translateX(50px);
        }

            .slide-up-fade-in.from-right.active {
                transform: translateX(0);
            }

        .slide-up-fade-in.from-bottom {
            transform: translateY(50px);
        }

            .slide-up-fade-in.from-bottom.active {
                transform: translateY(0);
            }

        .slide-up-fade-in.scale-in {
            transform: translateY(50px) scale(0.9);
        }

            .slide-up-fade-in.scale-in.active {
                transform: translateY(0) scale(1);
            }

        /* Stagger animation for child elements */
        .slide-up-fade-in.stagger > * {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-up-fade-in.stagger.active > * {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-up-fade-in.stagger > *:nth-child(1) {
            transition-delay: 0.1s;
        }

        .slide-up-fade-in.stagger > *:nth-child(2) {
            transition-delay: 0.2s;
        }

        .slide-up-fade-in.stagger > *:nth-child(3) {
            transition-delay: 0.3s;
        }

        .slide-up-fade-in.stagger > *:nth-child(4) {
            transition-delay: 0.4s;
        }

        .slide-up-fade-in.stagger > *:nth-child(5) {
            transition-delay: 0.5s;
        }

        .slide-up-fade-in.stagger > *:nth-child(6) {
            transition-delay: 0.6s;
        }

    /* Animated Burger Menu */
    .nav {
        --color: #000000;
        background: none;
        width: 60px;
        height: 40px;
        position: relative;
        display: none;
        justify-content: center;
        align-items: center;
    }

        .nav svg {
            fill: none;
            stroke: var(--color);
            stroke-width: 4px;
            stroke-linecap: round;
            stroke-linejoin: round;
            width: 40px;
            height: 24px;
        }

            .nav svg use:nth-of-type(1) {
                opacity: 1;
                stroke-dashoffset: 221;
                stroke-dasharray: 46 249;
                transition: stroke-dashoffset .12s linear .2s, stroke-dasharray .12s linear .2s, opacity 0s linear .2s;
            }

            .nav svg use:nth-of-type(2) {
                animation: stroke-animation-reverse 1.2s ease-out forwards;
            }

        .nav input {
            position: absolute;
            height: 100%;
            width: 100%;
            z-index: 2;
            cursor: pointer;
            opacity: 0;
        }

            .nav input:checked + svg use:nth-of-type(1) {
                stroke-dashoffset: 175;
                stroke-dasharray: 0 295;
                opacity: 0;
                transition: stroke-dashoffset .07s linear .07s, stroke-dasharray .07s linear .07s, opacity 0s linear .14s;
            }

            .nav input:checked + svg use:nth-of-type(2) {
                animation: stroke-animation 1.2s ease-out forwards;
            }

    @keyframes stroke-animation {
        0% {
            stroke-dashoffset: 295;
            stroke-dasharray: 25 270;
        }

        50% {
            stroke-dashoffset: 68;
            stroke-dasharray: 59 236;
        }

        65% {
            stroke-dashoffset: 59;
            stroke-dasharray: 59 236;
        }

        100% {
            stroke-dashoffset: 68;
            stroke-dasharray: 59 236;
        }
    }

    @keyframes stroke-animation-reverse {
        0% {
            stroke-dashoffset: 68;
            stroke-dasharray: 59 236;
        }

        50% {
            stroke-dashoffset: 290;
            stroke-dasharray: 25 270;
        }

        65% {
            stroke-dashoffset: 295;
            stroke-dasharray: 25 270;
        }

        100% {
            stroke-dashoffset: 290;
            stroke-dasharray: 25 270;
        }
    }

    .menu-icon {
        display: none;
    }

    .overlay {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }

        .overlay.active {
            opacity: 1;
        }

    @media (max-width: 1000px) {
        .overlay {
            position: fixed;
            top: 70px;
            left: 0;
            width: 100%;
            bottom: 0;
            z-index: 9;
            backdrop-filter: blur(10px);
            align-items: flex-end;
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
        }

            .overlay.active {
                opacity: 1;
            }

        .mob-nav {
            background-color: #ffffff;
            border-radius: 20px 20px 0 0;
            padding: 20px;
            height: max-content;
            width: 100%;
            transform: translateY(100%);
            transition: transform 0.3s ease-in-out;
        }

        .overlay.active .mob-nav {
            transform: translateY(0);
        }

        .overlay .mob-nav button {
            width: 100%;
            background-color: #fcfcfc;
            border: 1px solid #eeeeee;
            border-radius: 10px;
            color: #000000;
        }

        .overlay .mob-nav ul {
            padding: 0;
            margin: 0;
        }

            .overlay .mob-nav ul li {
                list-style: none;
                padding: 10px 0;
            }

                .overlay .mob-nav ul li a {
                    color: #000000;
                    text-decoration: none;
                }

        nav {
            margin: 0 1rem;
            padding: 10px 0;
        }

        .logo {
            height: 50px;
        }

        .bookAppointment {
            padding: 5px 10px;
        }

        main {
            margin-top: 70px;
        }
    }

    /* Mobile responsive behavior */
    @media (max-width: 1000px) {
        /* Hide desktop elements on mobile */
        body.loaded .dropdown-container,
        body.loaded nav ul {
            display: none !important;
        }
        /* Show mobile menu button on mobile */
        body.loaded .nav {
            display: flex !important;
        }
    }

    @media (min-width: 1001px) {
        /* Show desktop elements on desktop */
        body.loaded .dropdown-container,
        body.loaded nav ul {
            display: flex !important;
        }
        /* Hide mobile menu button on desktop */
        body.loaded .nav {
            display: none !important;
        }
    }



    /*Booking Modal CSS*/

    .bookingContainer {
        height: 100%;
        width: 100%;
        background: #00000075;
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10;
        display: flex;
        backdrop-filter: blur(10px);
        overflow: scroll;
    }

        .bookingContainer::-webkit-scrollbar {
            scrollbar-width: none;
            display: none;
        }

    .bookingModal {
        position: relative;
        height: auto;
        width: 60vw;
        background: #fff;
        border: none;
        border-radius: 15px / 15px;
        margin: auto;
        padding: 1.5rem;
    }

    .modalHeader {
        width: 100%;
        height: auto;
        text-align: center;
        border-bottom: 2px solid;
        border-image: linear-gradient(to right, transparent, #C83734, transparent) 1;
    }

        .modalHeader h4 {
            font-size: 3.5rem;
            color: #C83734;
        }

        .modalHeader h6 {
            font-size: 1.4rem;
            margin-bottom: 1.5rem;
        }

    .modalBody {
        text-align: center;
        padding: 3.5rem;
    }

        .modalBody img {
            max-width: 3%;
            margin: 0.5rem;
        }

        .modalBody h6 {
            font-size: 1.6rem;
            color: #5A5A5A;
            font-weight: 300;
            margin: 0.25rem;
        }

        .modalBody a {
            font-size: 1.2rem;
            color: #5A5A5A;
            font-weight: 200;
            margin: 0.25rem;
        }

    .sectionHeading {
        font-size: 2.2rem;
        font-weight: bold;
        color: #1A1919;
    }

    .input-group {
        width: 70%;
        margin: 3rem auto;
    }

        .input-group input {
            color: #292F33;
        }

    .input-group-text {
        display: flex;
        align-items: center;
        padding: .375rem .75rem;
        font-size: 1rem;
        font-weight: 400;
        line-height: 2.5;
        background: none;
        color: #292F33 !important;
        text-align: center;
        white-space: nowrap;
        border: 1px solid #ced4da;
        border-radius: .25rem;
    }

    .modalSubmit img {
        position: absolute;
        width: 95px;
        margin-left: 0;
        z-index: 2;
    }

    .btnGroup {
        position: relative;
        margin: 1rem auto !important;
    }

        .btnGroup button {
            width: 50%;
            position: sticky;
            margin-top: 77px;
            margin-left: 60px;
            letter-spacing: 2px;
        }

    .otp-container {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 3.5rem 0 1rem 0 !important;
    }

    .otp-input {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 24px;
        text-align: center;
        border: 2px solid #ccc;
        border-radius: 8px;
        outline: none;
        transition: border-color 0.3s;
    }

        .otp-input:focus {
            border-color: #C83734;
            box-shadow: 0 0 5px rgba(200, 55, 52, 0.4);
        }

    .form-group {
        text-align: start;
        margin-top: 30px;
    }

        .form-group label {
            margin-bottom: 10px;
        }

        .form-group span {
            font-size: 1rem;
            color: red;
            font-weight: 200;
        }


    .center-top-close {
        position: absolute;
        top: -62px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1000;
        background-color: white;
        border-radius: 50%;
        padding: 0.5rem;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
.btn-close {
    width: 1.5em !important;
    height: 1.5em !important;
}

    /*CSS For Services Page*/
    .searchBox input {
        border: none;
        background: none;
    }


    .callNowCard {
        margin: 0 0.5rem;
        background-color: #e6ebef;
        border: 5px solid #fff;
    }

    .productCard {
        background-color: #e6ebef;
        border: 5px solid #fff;
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 10px;
    }

    .chip {
        background-color: #fff;
        width: max-content;
    }

    /* ===========================================
    Responsive Adjustments for <= 720px Screens
    =========================================== */
    @media (max-width: 720px) {
        .bookingModal {
            width: 90vw;
            padding: 1.2rem;
        }

        .modalHeader h4 {
            font-size: 2.4rem;
        }

        .modalHeader h6 {
            font-size: 1.2rem;
        }

        .modalBody {
            padding: 2rem;
        }

        .sectionHeading {
            font-size: 1.8rem;
        }

        .input-group {
            width: 90%;
            flex-direction: row;
            align-items: stretch;
            gap: 10px;
        }

        .otp-container {
            gap: 6px;
            flex-wrap: wrap;
        }

        .otp-input {
            width: 40px;
            height: 40px;
            font-size: 20px;
        }

        .btnGroup button {
            width: 100%;
            margin: 60px 0 0 0;
        }

        .modalBody img {
            max-width: 6%;
            margin: 0.1rem;
        }

        .modalSubmit img {
            display: none;
            /* Hide monkey image for cleaner UI on small screens */
        }
    }

    /*  Responsive Adjustments for <= 486px Screens */
    @media (max-width: 486px) {
        .modalHeader h4 {
            font-size: 1.8rem;
        }

        .modalHeader h6 {
            font-size: 1rem;
        }

        .sectionHeading {
            font-size: 1.4rem;
        }

        .modalBody h6,
        .modalBody a {
            font-size: 1rem;
        }

        .input-group {
            width: 100%;
            flex-direction: row;
            align-items: stretch;
            gap: 10px;
            margin: 2rem auto;
        }

        .input-group-text {
            width: 100%;
            justify-content: center;
        }

        .otp-input {
            width: 35px;
            height: 35px;
            font-size: 18px;
        }

        .form-group {
            margin-top: 20px;
        }

        .btnGroup button {
            font-size: 0.95rem;
            padding: 0.6rem 1rem;
            margin-top: 50px;
        }

        .center-top-close {
            top: -10px;
            padding: 0.3rem;
        }

        .modalBody {
            padding: 1.5rem;
        }
    }
    /* END */


    /*Service page CSS
*/


    .productCard {
        flex-direction: column;
    }

        .productCard > div:first-child {
            flex-shrink: 0;
            width: 100%;
        }

        .productCard img {
            display: block;
            margin: 0 auto;
        }



    @media (min-width: 768px) {
        .productCard {
            flex-direction: row;
            align-items: center;
        }

            .productCard > div:first-child {
                width: auto;
            }
    }

    @media (max-width: 767.98px) {
        .searchBox .form-control {
            flex-grow: 1;
        }

        .productCard .d-flex.flex-column.gap-1 {
            width: 100%;
        }

        .productCard .align-items-end {
            width: 100%;
            justify-content: center;
        }
    }

    /*About Page CSS*/

    

    @media (max-width: 767.98px) {
        .pageHeading {
            margin-top: 5rem;
        }
    }

    /*Services Page CSS*/

    .pageHeading {
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    #serviceCardsContainer {
        height: 70vh;
        overflow: scroll;
    }

    @media (max-width: 767.98px) {
        .pageHeading {
            margin-top: 5rem;
            margin-bottom: 0rem;
        }
    }