
        body {
            /* position: relative; */
            background-size: cover;
            background-attachment: fixed;
        }

        .swiper {
            width: 100%;
            height: 100vh;
        }

        .swiper-slide {
            text-align: center;
            overflow: hidden;
            font-size: 18px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .swiper-pagination-bullet-active {
            background: black;
        }

        .navbar {
            z-index: 1000;
        }

        .nav-link {
            padding-top: 0 !important;
            padding-bottom: 0 !important;
            color: white !important;
            border-right: 1px solid white;
        }

        .nav-item {
            line-height: 1;
        }

        nav li:last-child a {
            border: none;
        }

        .section-img {
            width: 100%;
        }

        .relative {
            position: relative;
        }

        .section1-text {
            position: absolute;
            top: 43%;
            left: 52%;
            font-size: 0.9rem;
            text-align: left;
        }

        .right-arrow {
            width: 6rem;
            height: 1.5rem;
        }

        .down-arrow {
            height: 2rem;
            width: 2rem;
        }

        .left-arrow {
            width: 7rem;
            height: 2.5rem;
        }

        .section2-text {
            position: absolute;
            top: 10%;
            left: 45%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section2-sidetext {
            position: absolute;
            top: 23%;
            left: 80%;
            font-size: 0.9rem;
            font-weight: bold;
            text-align: center;
        }

        .section3-text1 {
            position: absolute;
            top: 5%;
            left: 10%;
            font-size: 0.9rem;
            text-align: end;
        }

        .section3-text2 {
            position: absolute;
            top: 10%;
            left: 39%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section3-sidetext {
            position: absolute;
            top: 23%;
            left: 70%;
            font-size: 0.9rem;
            font-weight: bold;
            text-align: center;
        }

        .section4-text {
            position: absolute;
            top: 5%;
            left: 42%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section4-sidetext {
            position: absolute;
            top: 23%;
            left: 75%;
            font-size: 0.9rem;
            font-weight: bold;
            text-align: center;
        }

        .section5-sidetext {
            position: absolute;
            top: 23%;
            left: 5%;
            font-size: 0.9rem;
            font-weight: bold;
            text-align: center;
        }

        .section5-text {
            position: absolute;
            top: 5%;
            left: 30%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section6-text {
            position: absolute;
            top: 7%;
            left: 65%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section7-text {
            position: absolute;
            top: 20%;
            left: 10%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section8-text {
            position: absolute;
            top: 20%;
            right: 15%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section9-text {
            position: absolute;
            top: 20%;
            right: 15%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section10-text {
            position: absolute;
            top: 20%;
            right: 15%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section11-text {
            position: absolute;
            top: 20%;
            right: 15%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section12-text {
            position: absolute;
            top: 20%;
            right: 15%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section13-text {
            position: absolute;
            top: 20%;
            right: 15%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section14-text {
            position: absolute;
            top: 20%;
            right: 15%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section15-text {
            position: absolute;
            top: 30%;
            right: 15%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section16-text {
            position: absolute;
            top: 20%;
            right: 15%;
            font-size: 0.9rem;
            text-align: center;
        }

        .section17-text {
            position: absolute;
            top: 20%;
            left: 34%;
            font-size: 0.9rem;
            text-align: center;
        }

        .view-btn {
            background: none;
            border: 2px dashed white;
            padding: 8px;
            font-size: large;
            color: white;
            text-align: center;
        }

        /* Adjust footer styling */
        .footer {
            position: fixed;
            left: 0;
             z-index: 10; /* Ensure this is higher than the swiper */
            bottom: 0;
            width: 100%;
            background-color: #f8f9fa;
            text-align: center;
            padding: 10px 0;
        }

        .footer-logos-left {
            width: 23px;
            height: 23px;
        }

        .footer-logos-right {
            width: 45px;
            height: 20px;
        }

        .footer-p {
            font-size: 15px;
            font-weight: 500;
        }

        .animate-text {
            opacity: 0;
            transition: opacity 5s ease-in-out;
        }

        .animate-text.visible {
            opacity: 1;
        }

        @keyframes slideIn {
            0% {
                transform: translateX(100%);
                opacity: 0;
            }

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

        .slide-in {
            animation: slideIn 3s ease-out;
        }

        .swiper-pagination-bullet {
            position: relative;
        }

        .swiper-pagination-bullet:hover::after {
            content: attr(data-tooltip);
            position: absolute;
            top: 50%;
            left: -10px;
            transform: translate(-100%, -50%);
            background-color: #000;
            color: #fff;
            padding: 5px 10px;
            border-radius: 4px;
            white-space: nowrap;
            z-index: 10;
        }

        .swiper-pagination-bullet:hover::before {
            content: "";
            position: absolute;
            top: 50%;
            left: -5px;
            transform: translate(-100%, -50%);
            border-width: 5px;
            border-style: solid;
            border-color: transparent transparent transparent #000;
            z-index: 10;
        }

        .thumbnail_slider {
            /* max-width: 700px; */
            margin: 2rem;
            display: flex;
            flex-direction: column;
        }

        .splide__slide {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 380px;
            width: 580px;
            overflow: hidden;
            transition: 0.2s;
            border-width: 2px !important;
            margin: 10px 4px;
        }

        .splide--nav>.splide__track>.splide__list>.splide__slide.is-active {
            box-shadow: 2px 3px 8px #000000a3;
        }

        .splide__slide img {
            margin: auto;
            margin-bottom: 1rem;
            /* max-width: 100%;
            max-height: 100%; */
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .slide-description {
            margin: 2rem;
            /* Adjust as needed */
            padding: 14px;
            border:1px solid black;
            background: white;
            color: black;
            /* Example background color */
        }

        .slide-description h5 {
            margin-bottom: 10px;
        }

        .slide-description p {
            font-size: 14px;
        }

        .splide:not(.is-overflow) .splide__arrows {
            display: none;
        }

        /* Slider CSS End  */
