    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
    nav {
        position: relative;
        z-index: 99;
        width: 100%;
        padding-left: 200px;
        padding-right: 200px;
    }
    
    nav .wrapper {
        position: relative;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 28px;
    }
    
    .image-width {
        width: 100%;
    }
    
    .wrapper .logo a {
        color: #f2f2f2;
        font-size: 30px;
        font-weight: 600;
        text-decoration: none;
    }
    
    .wrapper .nav-links {
        display: inline-flex;
        gap: 28px;
        padding-left: 0px !important;
    }
    
    .nav-links li {
        list-style: none;
    }
    
    .nav-links {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .nav-links li {
        overflow: hidden;
    }
    
    .nav-links li a {
        display: inline-block;
        text-decoration: none;
        color: #000;
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 700;
        position: relative;
        overflow: hidden;
    }
    
    .nav-links li a span {
        display: inline-block;
        transform: translateY(0);
        transition: transform 0.4s ease;
    }
    /* Hover animation */
    
    .nav-links li:hover a span {
        transform: translateY(-100%);
    }
    /* Clone second span for roll-up effect */
    
    .nav-links li a::after {
        content: attr(data-text);
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        color: #000;
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 700;
        transition: transform 0.4s ease;
    }
    
    .nav-links li:hover a::after {
        transform: translateY(-100%);
    }
    /* nav-link------------------------------------------------------------------ */
    
    .nav-links .mobile-item {
        display: none;
    }
    
    .nav-links .drop-menu {
        position: absolute;
        background-color: #2425269e !important;
        width: 180px;
        line-height: 45px;
        padding-left: 20px;
        top: 100%;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, visibility 0.3s ease-in-out;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.13);
        z-index: 100;
    }
    
    .nav-links li:hover .drop-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links li:hover .drop-menu,
    .nav-links li:hover .mega-box {
        transition: all 0.3s ease-in-out;
        top: 70px;
        opacity: 1;
        visibility: visible;
    }
    
    .drop-menu li a {
        width: 100%;
        display: block;
        padding: 0 0 0 15px;
        font-weight: 400;
        border-radius: 0px;
    }
    
    .mega-box {
        position: absolute;
        left: 0;
        width: 100%;
        padding: 0 30px;
        top: 85px;
        opacity: 0;
        visibility: hidden;
    }
    
    .mega-box .content {
        background: #242526;
        padding: 25px 20px;
        display: flex;
        width: 100%;
        justify-content: space-between;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
    }
    
    .mega-box .content .row {
        width: calc(25% - 30px);
        line-height: 45px;
    }
    
    .content .row img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .content .row header {
        color: #f2f2f2;
        font-size: 20px;
        font-weight: 500;
    }
    
    .content .row .mega-links {
        margin-left: -40px;
        border-left: 1px solid rgba(255, 255, 255, 0.09);
    }
    
    .row .mega-links li {
        padding: 0 20px;
    }
    
    .row .mega-links li a {
        padding: 0px;
        padding: 0 20px;
        color: #d9d9d9;
        font-size: 17px;
        display: block;
    }
    
    .row .mega-links li a:hover {
        color: #f2f2f2;
    }
    
    .wrapper .btn {
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        display: none;
    }
    
    .wrapper .btn.close-btn {
        position: absolute;
        right: 30px;
        top: 10px;
    }
    
    @media screen and (max-width: 970px) {
        .wrapper .btn {
            display: block;
        }
        .drop-menu li {
            margin: 0;
        }
        .drop-menu li a {
            border-radius: 5px;
            font-size: 18px;
        }
        .mega-box {
            position: static;
            top: 65px;
            opacity: 1;
            visibility: visible;
            padding: 0 20px;
            max-height: 0px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .mega-box .content {
            box-shadow: none;
            flex-direction: column;
            padding: 20px 20px 0 20px;
        }
        .mega-box .content .row {
            width: 100%;
            margin-bottom: 15px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }
        .mega-box .content .row:nth-child(1),
        .mega-box .content .row:nth-child(2) {
            border-top: 0px;
        }
        .content .row .mega-links {
            border-left: 0px;
            padding-left: 15px;
        }
        .row .mega-links li {
            margin: 0;
        }
        .content .row header {
            font-size: 19px;
        }
    }
    
    nav input {
        display: none;
    }
    
    .body-text {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        text-align: center;
        padding: 0 30px;
    }
    
    .body-text div {
        font-size: 45px;
        font-weight: 600;
    }
    
    .nav-links {
        margin-bottom: 0px;
    }
    
    .icon-color {
        color: #000000;
    }
    
    .drp-dwn-clr {
        color: #ffffff !important;
        font-size: 14px;
        font-weight: 400;
    }
    /* Arrow icon style */
    
    .desktop-item .arrow {
        margin-left: 6px;
        transition: transform 0.3s ease;
    }
    /* Rotate the arrow on hover of the parent li */
    
    .nav-links li:hover>a .arrow {
        transform: rotate(180deg);
    }
    
    #showDrop:checked~label .arrow {
        transform: rotate(180deg);
    }
    
    #showDrop:checked+label .arrow {
        transform: rotate(180deg);
    }
    
    #showDrop:checked~.drop-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .arrow {
        margin-left: 50%;
        transition: transform 0.3s ease-in-out;
    }
    /* new-css------------------------------------------------------------------------------- */
    
    .banner {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        width: 100%;
        background-image: url(./images/home/banner.png);
        height: 940px;
        /* You must set a specified height */
        background-position: center;
        /* Center the image */
        background-repeat: no-repeat;
        /* Do not repeat the image */
        background-size: cover;
        /* Resize the background image to cover the entire container */
        justify-content: space-between;
        z-index: 5;
        overflow: hidden;
    }
    
    .banner-img {}
    
    .social-media {
        width: fit-content;
        display: flex;
        flex-direction: row;
        position: relative;
        background-color: #ffffff;
        padding: 16px 24px;
        gap: 42px;
        border-radius: 50px;
        margin-left: 100px;
    }
    
    .social-media-fix {
        display: flex;
        flex-direction: row;
        padding: 16px 24px;
        gap: 42px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #fff;
        /* or any background color you prefer */
        display: flex;
        justify-content: center;
        z-index: 9999;
        border-radius: 20px 20px 0px 0px;
    }
    
    .social-grp {
        display: flex;
        flex-direction: row;
        gap: 8px;
        text-decoration: none;
    }
    
    .social-name {
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #000000;
        display: flex;
        align-items: center;
    }
    
    .banner-content-area {
        display: flex;
        position: relative;
        width: 100%;
        flex-direction: column;
        gap: 20px;
        padding-top: 140px;
    }
    
    .banner-header-section {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 12px;
    }
    
    .yellow-btn-sec {
        display: flex;
        position: relative;
        width: fit-content;
        flex-direction: row;
        border: 1px solid #ffffff;
        border-radius: 50px;
        background-color: #FDF1C0;
        padding: 12px;
        gap: 8px;
    }
    
    .yellow-round {
        width: 12px;
        height: 12px;
        border-radius: 50px;
        background-color: #FEE543;
        margin: auto 0;
    }
    
    .yellow-round-text {
        font-family: "Inria Sans", sans-serif;
        font-weight: 300;
        font-style: italic;
        font-size: 18px;
        color: #000000;
        display: flex;
        line-height: 18px;
    }
    
    .the-name {
        display: flex;
        align-items: center;
        font-family: "Geist", sans-serif;
        font-size: 15px;
        font-weight: 300;
        color: #000000;
    }
    
    .big-name {
        font-family: "Grandstander", cursive;
        font-size: 50px;
        line-height: 50px;
        color: #000000;
        background-color: #FEE543;
        font-weight: 700;
        padding: 10px 69px;
        display: flex;
        justify-content: center;
        margin: auto;
        border-radius: 50px;
    }
    
    .types-wand {
        display: flex;
        align-items: center;
        font-family: "Geist", sans-serif;
        font-size: 20px;
        font-weight: 300;
        color: #000000;
        justify-content: center;
    }
    /* .glob-area-full {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 10px;
} */
    
    .glob-area-full {
        width: 100%;
        position: relative;
        display: flex;
        justify-content: center;
        margin-top: 385px;
        opacity: 0;
        transition: margin-top 1.2s ease, opacity 1.2s ease;
    }
    
    .glob-area-full.animate {
        margin-top: 10px;
        opacity: 1;
    }
    
    .globe-anim {
        width: 1350px !important;
        z-index: 99;
    }
    
    .globe-section {
        z-index: 10;
    }
    /* .wandering-man {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    animation: bouncer-two 6s infinite ease-in-out alternate;
} */
    
    .wandering-man {
        position: absolute;
        bottom: -350px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 99;
        opacity: 0;
        transition: bottom 1s ease, opacity .8s ease;
        animation: bouncer-two 6s infinite ease-in-out alternate;
    }
    
    .wandering-man.animate {
        bottom: -15px;
        opacity: 1;
    }
    
    .wand-one {
        position: absolute;
        left: 58px;
        top: 276px;
        animation: bouncer 6.0s infinite ease-in-out alternate;
        z-index: 99;
    }
    
    .wand-two {
        position: absolute;
        left: 133px;
        bottom: 204px;
        animation: bouncer 4.0s infinite ease-in-out alternate;
        z-index: 999;
    }
    
    .wand-three {
        position: absolute;
        right: 227px;
        top: 202px;
        animation: bouncer 5.0s infinite ease-in-out alternate;
        z-index: 999;
    }
    
    .wand-four {
        position: absolute;
        right: 153px;
        bottom: 196px;
        animation: bouncer 4.0s infinite ease-in-out alternate;
        z-index: 999;
    }
    
    .wand-five {
        position: absolute;
        left: 35%;
        bottom: 45%;
        animation: bouncer 4.0s infinite ease-in-out alternate;
        z-index: 999;
    }
    
    @keyframes bouncer {
        0% {
            transform: translateY(-2px);
        }
        50% {
            transform: translateY(10px);
        }
        100% {
            transform: translateY(-2px);
        }
    }
    
    @keyframes bouncer-two {
        0% {
            transform: translate(-50%, -2px);
        }
        50% {
            transform: translate(-50%, 10px);
        }
        100% {
            transform: translate(-50%, -2px);
        }
    }
    /* about-section--------------------------------------------------------------------- */
    
    .about-section {
        width: 100%;
        position: relative;
        display: flex;
        background-color: #1F1F1F;
        overflow: hidden;
    }
    
    .running-words {
        font-family: "Geist", sans-serif;
        font-size: 30px;
        font-weight: 700;
        color: #35332C;
    }
    
    .about-section {
        width: 100%;
        overflow: hidden;
        background-color: #1F1F1F;
        position: relative;
    }
    
    .running-words {
        display: flex;
        width: max-content;
        animation: scrollLeft 60s linear infinite;
        padding-top: 20px;
    }
    
    .scroll-text {
        white-space: nowrap;
        font-family: "Geist", sans-serif;
        font-size: 30px;
        font-weight: 700;
        color: #35332C;
        padding-right: 20px;
        /* spacing between repeated lines if needed */
    }
    /* Animation for scrolling */
    
    @keyframes scrollLeft {
        0% {
            transform: translateX(0%);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    .self-section {
        padding-left: 200px;
        padding-right: 100px;
        position: relative;
        width: 100%;
        display: flex;
        flex-direction: row;
        background-color: #1F1F1F;
        gap: 50px;
    }
    
    .self-content {
        width: 40%;
        display: flex;
        flex-direction: column;
        opacity: 0;
        /* hidden initially */
        transform: translateY(50px);
        /* start from bottom */
    }
    
    .self-head {
        font-family: "Geist", sans-serif;
        font-size: 42px;
        font-weight: 500;
        color: #ffffff;
        line-height: 42px;
    }
    
    .self-small-head {
        font-family: "Grandstander", cursive;
        font-size: 42px;
        font-weight: 500;
        color: #ffffff;
    }
    
    .self-para {
        font-family: "Geist", sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #858585;
    }
    
    .self-image {
        width: 60%;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .container-for-utube {
        width: 100%;
        position: relative;
        padding-left: 200px;
        padding-right: 200px;
        background-color: #1F1F1F;
    }
    
    .youtube-container {
        position: relative;
        width: 100%;
        height: 650px;
        overflow: hidden;
        border-radius: 16px;
    }
    
    .youtube-video-wrapper {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%;
    }
    
    .youtube-video-wrapper iframe {
        width: auto;
        height: 56.25vw;
        min-height: 100%;
        min-width: 177.77vh;
        border: 0;
    }
    /* globe-area---------------------------------------------------------- */
    
    .globe-container {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        height: 1208px;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        z-index: 1;
    }
    
    .bg-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        z-index: 0;
    }
    
    .globe-image {
        position: relative;
        z-index: 50;
    }
    
    .img-100 {
        width: 100%;
    }
    
    .statue,
    .tower {
        opacity: 0;
        transition: all 1s ease-out;
    }
    
    .statue {
        position: absolute;
        left: 0;
        bottom: 0;
        transform: translateX(-100px);
        z-index: 100;
    }
    
    .tower {
        position: absolute;
        right: 0;
        bottom: 0;
        transform: translateX(100px);
        z-index: 100;
    }
    /* Active state */
    
    .statue.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    .tower.visible {
        opacity: 1;
        transform: translateX(0);
    }
    
    .stroke-test {
        font-family: "Poppins", sans-serif;
        font-style: italic;
        letter-spacing: -7px;
        font-weight: 800;
        font-size: 170px;
        line-height: 145px;
        -webkit-text-stroke: 3px #CFD6DB;
        color: transparent;
        text-align: center;
        z-index: 1;
        opacity: 0;
        transform: translateY(260px);
        transition: opacity 1s ease-out, transform 1s ease-out;
    }
    
    .stroke-test.visible {
        opacity: 1;
        transform: translateY(47px);
    }
    
    .text-arrow-sec {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 70px;
        gap: 60px;
    }
    
    .glob-text {
        font-family: "Geist", sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #858585;
        z-index: 1;
        width: 30%;
        text-align: center;
    }
    
    .arrow-smooth {
        z-index: 1;
    }
    /*----------------------------------------------------------------------- country-section------------------------------------------------------------ */
    
    .australia {
        position: absolute;
        left: 1072px;
        bottom: 10px;
    }
    
    .china {
        position: absolute;
        left: 1008px;
        top: 120px;
    }
    
    .india {
        position: absolute;
        left: 950px;
        top: 165px;
    }
    
    .japan {
        position: absolute;
        left: 1209px;
        top: 152px;
    }
    
    .indonesia {
        position: absolute;
        left: 1068px;
        bottom: 129px;
    }
    
    .russia {
        position: absolute;
        left: 924px;
        top: 18px;
    }
    
    .kazakhastan {
        position: absolute;
        left: 828px;
        top: 59px;
    }
    
    .qatar {
        position: absolute;
        left: 834px;
        top: 99px;
    }
    
    .dubai {
        position: absolute;
        left: 800px;
        top: 139px;
    }
    
    .saudi {
        position: absolute;
        left: 694px;
        top: 100px;
    }
    
    .italy {
        position: absolute;
        left: 623px;
        top: 32px;
    }
    
    .denmark {
        position: absolute;
        left: 516px;
        top: 8px;
    }
    
    .canada {
        position: absolute;
        left: 230px;
        top: 132px;
    }
    
    .usa {
        position: absolute;
        left: 168px;
        top: 200px;
    }
    
    .australia,
    .china,
    .india,
    .japan,
    .indonesia,
    .russia,
    .kazakhastan,
    .qatar,
    .dubai,
    .saudi,
    .italy,
    .denmark,
    .canada,
    .usa {
        position: absolute;
        /* cursor: pointer; */
    }
    
    .popup-video {
        position: absolute;
        bottom: 100%;
        /* Display above the image */
        padding-bottom: 10px;
        /* 10px gap */
        left: 25%;
        transform: translateX(-50%);
        display: none;
        z-index: 100;
    }
    
    .popup-video .video-content {
        width: 250px;
        height: 140px;
        background: #000;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        position: relative;
    }
    
    .popup-video iframe {
        width: 100%;
        height: 100%;
        border: none;
    }
    
    .popup-video .close-btn {
        position: absolute;
        top: 5px;
        right: 5px;
        background: #fff;
        color: #000;
        font-size: 22px;
        width: 30px;
        height: 30px;
        line-height: 30px;
        border-radius: 50%;
        text-align: center;
        cursor: pointer;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    }
    
    .smooth-anim {
        animation: bouncer 3.0s infinite ease-in-out alternate;
    }
    
    @media (max-width: 1300px) {
        .popup-video {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            bottom: auto;
            padding-bottom: 0;
            display: none;
            z-index: 1000;
        }
    }
    /*--------------------------------------------- reel-section------------------------------------------------------ */
    
    .common-container {
        width: 100%;
        height: 1400px;
        position: relative;
        display: flex;
        padding-left: 200px;
        padding-right: 200px;
        padding-top: 50px;
        background-color: #1F1F1F;
    }
    
    .common-container-youtube {
        width: 100%;
        height: 1135px;
        position: relative;
        display: flex;
        padding-left: 200px;
        padding-right: 200px;
        padding-top: 50px;
        background-color: #1F1F1F;
    }
    
    .see-the-world {
        width: 100%;
        height: 100vh;
        background-image: url(./images/home/sky-see.png);
        background-size: cover;
        background-position: center;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: end;
    }
    
    .hills,
    .foodie,
    .see-text {
        opacity: 0;
        position: absolute;
    }
    
    .hills {
        bottom: 0;
        z-index: 2;
        transform: translateY(100px);
    }
    
    .foodie {
        bottom: 0;
        left: 290px;
        z-index: 3;
        transform: translateX(-100px);
    }
    
    .see-text {
        font-family: "Geist", sans-serif;
        font-weight: 500;
        font-size: 270px;
        color: #99ACBE;
        display: flex;
        justify-content: center;
        letter-spacing: -8px;
        z-index: 1;
        transform: translateY(80px);
        /* was 100px */
        bottom: 200px;
        /* was 100px, move text higher */
        width: 100%;
        opacity: 0;
        position: absolute;
    }
    
    .see-text-area {
        position: absolute;
        width: 500px;
        top: 135px;
        right: 200px;
        font-family: "Geist", sans-serif;
        font-size: 16px;
        font-weight: 400;
        color: #000000;
        z-index: 10;
        text-align: right;
    }
    /* .hills,
.foodie,
.see-text {
    opacity: 0;
    transform: translateY(80px);
    transition: all .5s ease;
}

.hills.animate {
    opacity: 1;
    transform: translateY(0);
}

.foodie {
    transform: translateX(-100px);
}

.foodie.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 1s ease 0.6s;
}

.see-text.animate {
    opacity: 1;
    transform: translateY(-220px);
    transition: all 1s ease 1.2s;
} */
    /* .hills,
.foodie,
.see-text {
    opacity: 0;
    transition: all 1s ease-in-out;
} */
    /* dd------------------------------------------------------------------------------------------------------------ */
    /* 
.hills {
    transform: translateY(100px);
}

.hills.animate {
    opacity: 1;
    transform: translateY(0);
}




.foodie {
    transform: translateX(-100px);
}

.foodie.animate {
    opacity: 1;
    transform: translateX(0);
}




.see-text {
    transform: translateY(50px);
}

.see-text.animate {
    opacity: 1;
    transform: translateY(-220px);
} */
    /* gsdfg----------------------------------------------------------------------------- */
    /* .hills,
.foodie,
.see-text {
    opacity: 0;
    position: absolute;
}

.hills {
    bottom: 0;
    z-index: 2;
    transform: translateY(100px);
}

.foodie {
    bottom: 0;
    left: 290px;
    z-index: 3;
    transform: translateX(-100px);
}

.see-text {
    font-family: "Geist", sans-serif;
    font-weight: 500;
    font-size: 270px;
    color: #99ACBE;
    display: flex;
    justify-content: center;
    letter-spacing: -8px;
    z-index: 1;
    transform: translateY(100px);
} */
    /* full-video-section=----------------------------- */
    
    .full-video-section {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%;
        /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }
    
    .full-video-section iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        /* Optional: prevents interaction */
    }
    /* venture-section--------------------------------------- */
    
    .venture-section {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        padding-left: 200px;
        padding-right: 200px;
        padding-bottom: 200px;
    }
    
    .venture-head {
        display: flex;
        font-family: "Geist", sans-serif;
        font-size: 200px;
        line-height: 200px;
        font-weight: 700;
        color: #000000;
        letter-spacing: -7px;
        justify-content: center;
        padding-top: 100px;
    }
    
    .gray-clr {
        color: #D2D2D2;
        font-family: "Geist", sans-serif;
        margin-right: 20px;
    }
    
    .venture-sub-head {
        font-family: "Geist", sans-serif;
        font-size: 16px;
        font-weight: 500;
        color: #858585;
        display: flex;
        width: 40%;
        text-align: center;
        margin: auto;
        padding-top: 40px;
    }
    
    .venture-img-area {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: row;
        padding-top: 80px;
        gap: 100px;
    }
    
    .venture-first {
        width: 50%;
        position: relative;
        display: flex;
        flex-direction: column;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
    }
    
    .lyka-logo-one {
        padding-bottom: 25px;
    }
    
    .lyka-holiday-big {
        overflow: hidden;
        border-radius: 10px;
    }
    
    .lyka-holiday-big img {
        width: 100%;
        transition: transform 0.5s ease-in-out;
    }
    
    .name-link {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .name-big {
        font-family: "Geist", sans-serif;
        font-size: 26px;
        font-weight: 600;
        color: #000000;
        padding-top: 25px;
        padding-bottom: 10px;
    }
    
    .link-arrow {
        display: flex;
        margin: auto 0;
    }
    
    .link-arrow {
        display: flex;
        margin: auto 0;
        transition: margin 0.4s ease-in-out;
    }
    
    .lyka-small-para {
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #4B4B4B;
    }
    /* Hover Effects */
    
    .venture-first:hover .lyka-holiday-big img {
        transform: scale(1.1);
    }
    
    .venture-first:hover .link-arrow {
        margin-right: 5px;
    }
    /* gallery-section------------------------------------------------------------- */
    
    .bg-gallery {
        background-color: #1F1F1F;
    }
    
    .gallery-head {
        font-family: "Geist", sans-serif;
        font-size: 150px;
        line-height: 110px;
        font-weight: 700;
        color: #262626;
        display: flex;
        justify-content: center;
        padding-top: 40px;
        flex-wrap: wrap;
    }
    
    .gallery-head span {
        display: inline-block;
        animation: jump 1.2s infinite;
    }
    
    .gallery-head span:nth-child(1) {
        animation-delay: 0s;
    }
    
    .gallery-head span:nth-child(2) {
        animation-delay: 0.05s;
    }
    
    .gallery-head span:nth-child(3) {
        animation-delay: 0.1s;
    }
    
    .gallery-head span:nth-child(4) {
        animation-delay: 0.15s;
    }
    
    .gallery-head span:nth-child(5) {
        animation-delay: 0.2s;
    }
    
    .gallery-head span:nth-child(6) {
        animation-delay: 0.25s;
    }
    
    .gallery-head span:nth-child(7) {
        animation-delay: 0.3s;
    }
    
    .gallery-head span:nth-child(8) {
        animation-delay: 0.35s;
    }
    /* space */
    
    .gallery-head span:nth-child(9) {
        animation-delay: 0.4s;
    }
    
    .gallery-head span:nth-child(10) {
        animation-delay: 0.45s;
    }
    
    .gallery-head span:nth-child(11) {
        animation-delay: 0.5s;
    }
    
    .gallery-head span:nth-child(12) {
        animation-delay: 0.55s;
    }
    
    .gallery-head span:nth-child(13) {
        animation-delay: 0.6s;
    }
    /* space */
    
    .gallery-head span:nth-child(14) {
        animation-delay: 0.65s;
    }
    
    .gallery-head span:nth-child(15) {
        animation-delay: 0.7s;
    }
    
    .gallery-head span:nth-child(16) {
        animation-delay: 0.75s;
    }
    
    .gallery-head span:nth-child(17) {
        animation-delay: 0.8s;
    }
    
    .gallery-head span:nth-child(18) {
        animation-delay: 0.85s;
    }
    
    @keyframes jump {
        0%,
        100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-20px);
        }
    }
    /* Main CSS */
    
    .grid-wrapper>div {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .grid-wrapper>div>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 5px;
    }
    
    .grid-wrapper {
        display: grid;
        grid-gap: 10px;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        grid-auto-rows: 200px;
        grid-auto-flow: dense;
    }
    
    .grid-wrapper .wide {
        grid-column: span 2;
    }
    
    .grid-wrapper .tall {
        grid-row: span 2;
    }
    
    .grid-wrapper .big {
        grid-column: span 2;
        grid-row: span 2;
    }
    /* footer-section--------------------------------------------------------------------------- */
    
    .ftr-bg {
        background-image: url(./images/home/ftr.jpg);
        position: relative;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        display: flex;
        flex-direction: column;
        height: 825px;
        overflow: hidden;
        justify-content: center;
    }
    
    .ftr-container {
        padding-left: 200px;
        padding-right: 200px;
        padding-top: 90px;
        padding-bottom: 90px;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 120px;
        overflow: hidden;
    }
    
    .get-touch-section {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: row;
        gap: 100px;
    }
    
    .contact-area {
        justify-content: space-between;
    }
    
    .get-head {
        font-family: "Geist", sans-serif;
        font-size: 28px;
        line-height: 35px;
        font-weight: 700;
        color: #ffffff;
        padding-bottom: 15px;
    }
    
    .get-para {
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #ffffff;
    }
    
    .call-area {
        position: relative;
        display: flex;
        flex-direction: column;
    }
    
    .icon-plus-text {
        display: flex;
        flex-direction: row;
    }
    
    .heading-section {
        font-family: "Geist", sans-serif;
        font-size: 18px;
        font-weight: 500;
        color: #ffffff;
        margin-left: 10px;
        padding-bottom: 30px;
    }
    
    .heading-sub {
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #ffffff;
        text-decoration: none;
        display: flex;
        padding-bottom: 5px;
    }
    
    .ftr-iamge-areas {
        width: 100%;
        position: relative;
        display: flex;
        border-radius: 0px 30px 0px 30px;
    }
    
    .brd-img {
        border-radius: 0px 30px 0px 30px;
    }
    
    .form-head {
        display: flex;
        flex-direction: row;
        font-family: "Geist", sans-serif;
        font-size: 28px;
        font-weight: 600;
        color: #ffffff;
    }
    
    .custom-contact-form {
        font-family: "Geist", sans-serif;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
        width: 100%;
        border-radius: 10px;
    }
    
    .form-group-column {
        display: flex;
        flex-direction: column;
        flex: 1 1 260px;
    }
    
    .form-group-column-wide {
        flex: 2 1 480px;
        display: flex;
        flex-direction: column;
    }
    
    .custom-label {
        font-family: "Geist", sans-serif;
        font-size: 14px;
        color: #fff;
        margin-bottom: 8px;
        margin-top: 20px;
    }
    
    .custom-input,
    .custom-textarea {
        font-family: "Geist", sans-serif;
        background-color: #0000006b;
        border: none;
        color: #ffffff;
        font-size: 14px;
        padding: 14px 20px;
        margin-bottom: 10px;
        border-radius: 12px;
        outline: none;
    }
    
    .custom-input::placeholder,
    .custom-textarea::placeholder {
        font-family: "Geist", sans-serif;
        color: #ffffff;
        font-size: 12px;
    }
    
    .custom-textarea {
        font-family: "Geist", sans-serif;
        resize: vertical;
        min-height: 80px;
    }
    
    .custom-submit-btn {
        height: fit-content;
        width: 100%;
        font-family: "Geist", sans-serif;
        background-color: #ffe53b;
        border: none;
        color: #000;
        font-weight: 600;
        font-size: 16px;
        line-height: 20px;
        padding: 14px;
        border-radius: 8px;
        cursor: pointer;
        transition: background 0.3s ease;
    }
    
    .custom-submit-btn:hover {
        background-color: #f6d940;
    }
    
    @media (max-width: 768px) {
        .custom-contact-form {
            flex-direction: column;
        }
        .form-group-column-wide {
            order: 3;
        }
    }
    
    .plane-img {
        position: absolute;
        right: 545px;
        bottom: -50px;
        animation: bouncer-plane 4.0s infinite ease-in-out alternate;
        opacity: 0;
        transition: bottom 1.5s ease-in-out, opacity 1s ease-in-out;
    }
    
    .plane-img.animate {
        bottom: 275px;
        opacity: 1;
    }
    
    .auto-sec {
        margin: auto 0 0;
    }
    
    @keyframes bouncer-plane {
        0% {
            transform: translateY(-2px);
        }
        50% {
            transform: translateY(10px);
        }
        100% {
            transform: translateY(-2px);
        }
    }
    
    .dark-area {
        background-color: #1F1F1F;
        padding-top: 50px;
        padding-bottom: 30px;
    }
    
    .ftr-menu {
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: #ffffff;
        text-decoration: none;
    }
    
    .gaps {
        gap: 30px;
        text-decoration: none !important;
    }
    
    .social-media-ftr {
        width: 100%;
        display: flex;
        flex-direction: row;
        position: relative;
        gap: 42px;
        justify-content: center;
    }
    
    .social-name-ftr {
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 500;
        color: #ffffff;
        display: flex;
        align-items: center;
    }
    
    .copy-right {
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #565656;
        display: flex;
        justify-content: center;
    }
    
    .web {
        text-decoration: none;
        color: #565656;
        margin-left: 5px;
        transition: all ease-in-out .5s;
    }
    
    .web:hover {
        color: #ffe53b;
    }
    
    .slider-wrapper {
        width: 100%;
        background: white;
        position: relative;
        overflow: hidden;
        padding: 20px 0;
    }
    
    .slider {
        max-width: 1200px;
        margin: 0 auto;
        overflow: hidden;
        position: relative;
        /* Apply the fade effect to container edges only */
        -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
        mask-image: linear-gradient(to right, transparent, black 11%, black 90%, transparent);
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }
    
    .slide-track {
        display: flex;
        animation: scroll 180s linear infinite;
        width: max-content;
    }
    
    .slide {
        width: 150px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
    
    .slide img {
        height: auto;
        transition: transform 0.3s;
    }
    
    .country-slide-name {
        font-family: "Geist", sans-serif;
        font-size: 14px;
        font-weight: 400;
        color: #000000;
    }
    
    .small-icons {
        width: 9px;
    }
    
    .flag-width {
        width: 30px;
    }
    
    @keyframes scroll {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
    
    @media screen and (max-width: 1900px) {
        nav {
            position: relative;
            z-index: 99;
            width: 100%;
            padding-left: 140px;
            padding-right: 140px;
        }
        .self-section {
            padding-left: 140px;
            padding-right: 100px;
            gap: 50px;
        }
        .self-image {
            gap: 30px;
        }
        .container-for-utube {
            padding-left: 140px;
            padding-right: 140px;
        }
        .venture-section {
            padding-left: 140px;
            padding-right: 140px;
            padding-bottom: 200px;
        }
        .ftr-container {
            padding-left: 140px;
            padding-right: 140px;
        }
        .gallery-head {
            font-size: 100px;
            line-height: 90px;
        }
        .common-container {
            padding-left: 140px;
            padding-right: 140px;
            padding-top: 50px;
            background-color: #1F1F1F;
        }
        .common-container-youtube {
            padding-left: 140px;
            padding-right: 140px;
            padding-top: 50px;
            background-color: #1F1F1F;
        }
    }
    
    @media screen and (max-width: 1780px) {
        .common-container {
            width: 100%;
            height: 1140px;
        }
    }
    
    @media screen and (max-width: 1700px) {
        .self-image {
            gap: 20px;
        }
        .self-image {
            width: 60%;
        }
        .self-content {
            width: 35%;
            display: flex;
            flex-direction: column;
        }
        .venture-head {
            font-size: 145px;
            line-height: 140px;
            padding-top: 60px;
        }
        .venture-img-area {
            gap: 35px;
        }
        .see-text {
            font-size: 220px;
            bottom: 230px;
        }
        .tower {
            width: 250px;
        }
        .statue {
            width: 250px;
        }
    }
    
    @media screen and (max-width: 1800px) {
        .plane-img {
            right: 450px;
        }
    }
    
    @media screen and (max-width: 1629px) {
        .common-container-youtube {
            width: 100%;
            height: 1054px;
        }
    }
    
    @media screen and (max-width: 1600px) {
        nav {
            padding-left: 100px;
            padding-right: 100px;
        }
        .self-section {
            padding-left: 100px;
            padding-right: 100px;
        }
        .container-for-utube {
            padding-left: 100px;
            padding-right: 100px;
        }
        .venture-section {
            padding-left: 100px;
            padding-right: 100px;
            padding-bottom: 200px;
        }
        .ftr-container {
            padding-left: 100px;
            padding-right: 100px;
        }
        .common-container {
            padding-left: 100px;
            padding-right: 100px;
        }
        .common-container-youtube {
            padding-left: 100px;
            padding-right: 100px;
        }
        .wand-four {
            right: 40px;
        }
        .wand-two {
            left: 45px;
        }
        .wand-three {
            right: 80px;
        }
        .stroke-test {
            font-size: 130px;
            line-height: 120px;
        }
        .banner {
            height: 820px;
        }
        .banner-content-area {
            padding-top: 50px;
        }
        .wand-one {
            width: 200px;
        }
        .wand-two {
            width: 200px;
        }
        .wand-three {
            width: 200px;
        }
        .wand-four {
            width: 200px;
        }
        .globe-anim {
            width: 1100px !important;
            z-index: 99;
        }
        .plane-img {
            right: 360px;
        }
        .slider {
            max-width: 1080px;
        }
        .common-container-youtube {
            width: 100%;
            height: 1094px;
        }
    }
    
    @media screen and (max-width: 1500px) {
        .tower {
            width: 200px;
        }
        .statue {
            width: 200px;
        }
    }
    
    @media screen and (max-width: 1500px) {
        .self-section {
            justify-content: space-between;
        }
        .globe-anim {
            width: 1045px !important;
            z-index: 99;
        }
        .wandering-man {
            width: 650px;
        }
        .globe-anim {
            width: 870px !important;
            z-index: 99;
        }
        .glob-area-full.animate {
            margin-top: 80px;
        }
        .big-name {
            font-size: 35px;
            line-height: 35px;
        }
        .banner-content-area {
            padding-top: 60px;
        }
        .banner {
            height: 820px;
        }
        .see-text-area {
            top: 70px;
            right: 80px;
        }
        .plane-img {
            right: 230px;
        }
        .get-touch-section {
            gap: 60px;
        }
    }
    
    @media screen and (max-width: 1400px) {
        .self-head {
            font-size: 35px;
            line-height: 35px;
        }
        .self-small-head {
            font-size: 35px;
        }
        .self-content {
            width: 40%;
        }
        .see-text {
            font-size: 180px;
            bottom: 255px;
        }
        .slider {
            max-width: 970px;
        }
        .common-container-youtube {
            width: 100%;
            height: 1047px;
        }
    }
    
    @media screen and (max-width: 1400px) {
        nav {
            padding-left: 80px;
            padding-right: 80px;
        }
        .self-section {
            padding-left: 80px;
            padding-right: 80px;
        }
        .container-for-utube {
            padding-left: 80px;
            padding-right: 80px;
        }
        .venture-section {
            padding-left: 80px;
            padding-right: 80px;
            padding-bottom: 100px;
        }
        .ftr-container {
            padding-left: 80px;
            padding-right: 80px;
        }
        .common-container {
            padding-left: 80px;
            padding-right: 80px;
        }
        .common-container-youtube {
            padding-left: 80px;
            padding-right: 80px;
        }
        .banner-content-area {
            padding-top: 45px;
        }
        .banner {
            height: 750px;
        }
        .big-name {
            font-size: 35px;
            line-height: 35px;
        }
        .types-wand {
            font-size: 16px;
        }
        .globe-anim {
            width: 870px !important;
            z-index: 99;
        }
        .wand-one {
            top: 223px;
        }
        .wand-one {
            width: 200px;
        }
        .wand-two {
            width: 200px;
        }
        .wand-three {
            width: 200px;
        }
        .wand-four {
            width: 200px;
        }
        .ftr-iamge-areas {
            width: 75%;
        }
    }
    
    @media screen and (max-width: 1300px) {
        .wand-two {
            bottom: 231px;
        }
        .wand-four {
            bottom: 240px;
        }
        .globe-image {
            overflow-y: scroll;
            width: 100%;
        }
        .get-touch-section {
            gap: 20px;
        }
        .popup-video .video-content {
            width: 225px;
            height: 165px;
        }
        .get-touch-section {
            gap: 30px;
        }
    }
    
    @media screen and (max-width: 1250px) {
        .self-content {
            width: 50%;
        }
        .self-image {
            width: 50%;
        }
        .self-section {
            gap: 20px;
        }
        .globe-anim {
            width: 870px !important;
            z-index: 99;
        }
        .glob-area-full.animate {
            margin-top: 80px;
        }
        .big-name {
            font-size: 35px;
            line-height: 35px;
        }
        .types-wand {
            font-size: 16px;
        }
        .banner-content-area {
            padding-top: 90px;
        }
        .social-media {
            margin-left: 50px;
        }
        .gallery-head {
            font-size: 65px;
            line-height: 70px;
        }
        .ftr-container {
            padding-top: 50px;
            padding-bottom: 50px;
            gap: 80px;
            overflow: hidden;
        }
        .ftr-bg {
            justify-content: space-between;
        }
        .custom-contact-form {
            flex-wrap: wrap;
            gap: 30px;
        }
        .ftr-bg {
            height: auto;
        }
        .common-container-youtube {
            width: 100%;
            height: 1045px;
        }
    }
    
    @media screen and (max-width: 1220px) {
        .plane-img.animate {
            bottom: 454px;
            opacity: 1;
        }
    }
    
    @media screen and (max-width: 1200px) {
        .self-section {
            flex-direction: column;
        }
        .self-content {
            width: 100%;
        }
        .self-image {
            width: 100%;
            justify-content: start;
        }
        .wandering-man {
            width: 565px;
        }
        .glob-area-full.animate {
            margin-top: 8px;
        }
        .social-media {
            padding: 10px 17px;
            gap: 20px;
        }
        .statue {
            width: 200px;
        }
        .tower {
            width: 200px;
        }
        .globe-container {
            height: 1360px;
        }
        .glob-text {
            width: 50%;
        }
        .text-arrow-sec {
            padding-top: 0px;
            gap: 20px;
        }
        .youtube-container {
            height: 450px;
        }
        .glob-text {
            font-size: 14px;
            width: 50%;
        }
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(-90px);
        }
        .globe-image {
            overflow-y: scroll;
            width: 100%;
            top: -118px;
        }
        .stroke-test {
            font-size: 95px;
            line-height: 86px;
            letter-spacing: -3px;
            -webkit-text-stroke: 1px #CFD6DB;
        }
        .slider {
            max-width: 820px;
        }
    }
    
    @media screen and (max-width: 1180px) {
        .get-touch-section {
            flex-direction: column;
        }
        .get-touch-section {
            gap: 50px;
        }
        .ftr-bg {
            height: auto;
        }
        .flag-width {
            width: 25px;
        }
    }
    
    @media screen and (max-width: 1151px) {
        .common-container {
            width: 100%;
            height: 966px;
        }
    }
    
    @media screen and (max-width: 1100px) {
        .see-text {
            font-size: 130px;
            bottom: 276px;
            letter-spacing: -3px;
        }
        .slide {
            width: 110px;
        }
    }
    
    @media screen and (max-width: 1080px) {
        .wand-one {
            width: 150px;
        }
        .wand-two {
            width: 150px;
        }
        .wand-three {
            width: 150px;
        }
        .wand-four {
            width: 150px;
        }
        .social-name {
            font-size: 13px;
        }
        .nav-links li a {
            font-size: 13px;
        }
        .wrapper .nav-links {
            gap: 14px;
        }
        nav {
            padding-left: 40px;
            padding-right: 40px;
        }
        .self-section {
            padding-left: 40px;
            padding-right: 40px;
        }
        .container-for-utube {
            padding-left: 40px;
            padding-right: 40px;
        }
        .venture-section {
            padding-left: 40px;
            padding-right: 40px;
        }
        .ftr-container {
            padding-left: 40px;
            padding-right: 40px;
        }
        .common-container {
            padding-left: 40px;
            padding-right: 40px;
        }
        .common-container-youtube {
            padding-left: 40px;
            padding-right: 40px;
        }
        .ftr-iamge-areas {
            width: 100%;
        }
    }
    
    @media screen and (max-width: 991px) {
        .globe-container {
            height: 1100px;
        }
        .slider {
            max-width: 617px;
        }
        .stroke-test {
            -webkit-text-stroke: 1px #646464;
        }
        .social-media {
            margin-left: 8px;
        }
    }
    
    @media screen and (max-width: 950px) {
        .social-media {
            width: fit-content;
            display: flex;
            flex-direction: row;
            background-color: #ffffff;
            padding: 16px 24px;
            gap: 30px;
            margin-left: 0px;
        }
        .social-name {
            display: none;
        }
        .logo {
            width: 70px;
        }
        .wand-three {
            right: 23px;
        }
    }
    
    @media screen and (max-width: 880px) {
        .common-container-youtube {
            width: 100%;
            height: 1100px;
        }
    }
    
    @media screen and (max-width: 861px) {
        .common-container-youtube {
            width: 100%;
            height: 1250px;
        }
    }
    
    @media screen and (max-width: 847px) {
        .common-container {
            width: 100%;
            height: 2000px;
        }
    }
    
    @media screen and (max-width: 850px) {
        .wand-one {
            width: 120px;
        }
        .wand-two {
            width: 120px;
        }
        .wand-three {
            width: 120px;
        }
        .wand-four {
            width: 120px;
        }
        .wand-one {
            left: 19px;
        }
        .wand-two {
            bottom: 315px;
        }
        .wand-four {
            bottom: 300px;
        }
        .see-text {
            font-size: 100px;
            bottom: 450px;
            letter-spacing: -3px;
        }
        .foodie {
            bottom: 0;
            left: 165px;
        }
        .see-text-area {
            top: 45px;
            right: 50px;
        }
        .venture-head {
            font-size: 106px;
            line-height: 110px;
            padding-top: 15px;
        }
        .venture-sub-head {
            width: 75%;
        }
    }
    
    @media screen and (max-width: 800px) {
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(35px);
        }
        .stroke-test {
            font-size: 83px;
            line-height: 83px;
            letter-spacing: -2px;
        }
        .globe-container {
            height: 1111px;
        }
        .glob-text {
            font-size: 14px;
            width: 64%;
        }
        .gallery-head {
            font-size: 40px;
            line-height: 39px;
        }
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(-88px);
        }
    }
    
    @media screen and (max-width: 820px) {
        .youtube-video-wrapper iframe {
            width: auto;
            height: 91.25vw;
        }
    }
    
    @media screen and (max-width: 767px) {
        .wand-one {
            display: none;
        }
        .wand-two {
            display: none;
        }
        .wand-three {
            display: none;
        }
        .wand-four {
            display: none;
        }
        .slider {
            max-width: 510px;
        }
    }
    
    @media screen and (max-width: 737px) {
        .common-container-youtube {
            width: 100%;
            height: 1920px;
        }
    }
    
    @media screen and (max-width: 768px) {
        .form-group-column {
            flex: 1 1 180px;
        }
        .custom-contact-form {
            flex-wrap: wrap;
            gap: 0px;
        }
        .form-group-column-wide {
            flex: 2 1 215px;
            display: flex;
            flex-direction: column;
        }
        .plane-img.animate {
            bottom: 735px;
            opacity: 1;
        }
        .ftr-container {
            gap: 140px;
            overflow: hidden;
        }
    }
    
    @media screen and (max-width: 700px) {
        .social-media {
            gap: 20px;
        }
        nav .wrapper {
            padding-top: 15px;
        }
        .wand-five {
            position: absolute;
            left: 4%;
        }
    }
    
    @media screen and (max-width: 655px) {
        .common-container {
            width: 100%;
            height: 1500px;
        }
    }
    
    @media screen and (max-width: 625px) {
        .common-container-youtube {
            width: 100%;
            height: 1817px;
        }
    }
    
    @media screen and (max-width: 650px) {
        .see-text {
            font-size: 90px;
        }
        .venture-head {
            font-size: 80px;
            line-height: 114px;
        }
        .venture-head {
            font-size: 80px;
            line-height: 114px;
            letter-spacing: -2px;
        }
        .venture-sub-head {
            padding-top: 10px;
        }
        .venture-img-area {
            padding-top: 45px;
        }
        .social-name-ftr {
            display: none;
        }
        .dark-area {
            padding-top: 40px;
            padding-bottom: 30px;
        }
        .social-media-ftr {
            gap: 30px;
        }
        .stroke-test {
            font-size: 76px;
            line-height: 87px;
            letter-spacing: -2px;
        }
    }
    
    @media screen and (max-width: 600px) {
        nav {
            padding-left: 20px;
            padding-right: 20px;
        }
        .self-section {
            padding-left: 20px;
            padding-right: 20px;
        }
        .container-for-utube {
            padding-left: 20px;
            padding-right: 20px;
        }
        .venture-section {
            padding-left: 20px;
            padding-right: 20px;
        }
        .ftr-container {
            padding-left: 20px;
            padding-right: 20px;
        }
        .common-container {
            padding-left: 20px;
            padding-right: 20px;
        }
        .common-container-youtube {
            padding-left: 20px;
            padding-right: 20px;
        }
    }
    
    @media screen and (max-width:575px) {
        .social-media {
            display: none;
        }
        .nav-links li a {
            font-size: 14px;
        }
        .banner {
            height: 665px;
        }
        .wandering-man {
            width: 455px;
        }
        .glob-area-full.animate {
            margin-top: 54px;
        }
        .big-name {
            padding: 10px 45px;
        }
        .self-image {
            flex-direction: column;
        }
        .venture-img-area {
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            padding-top: 80px;
            gap: 50px;
        }
        .venture-first {
            width: 100%;
        }
        .venture-img-area {
            width: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
            padding-top: 45px;
            gap: 50px;
        }
        .venture-section {
            padding-bottom: 50px;
        }
        .venture-head {
            font-size: 55px;
            line-height: 85px;
            letter-spacing: -2px;
        }
        .statue {
            width: 150px;
        }
        .tower {
            width: 150px;
        }
        .see-text-area {
            top: 30px;
            right: 20px;
        }
        .see-text-area {
            width: 410px;
            font-size: 15px;
            font-weight: 400;
        }
        .heading-section {
            padding-bottom: 10px;
        }
        .contact-area {
            gap: 30px;
        }
        .foodie {
            bottom: 0;
            left: 25px;
        }
        .see-text {
            font-size: 65px;
        }
        .big-name {
            padding: 10px 25px;
        }
        .big-name {
            font-size: 30px;
            line-height: 35px;
        }
        .stroke-test {
            -webkit-text-stroke: 1px #646464;
        }
        .gallery-head span {
            display: inline-block;
            animation: jump 8.2s infinite;
        }
        .aero-plane {
            width: 200px;
        }
        .youtube-container {
            height: 380px;
        }
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(22px);
        }
        .dark-area {
            padding-bottom: 70px;
        }
        .social-media-fix {
            display: flex;
        }
        .globe-container {
            height: 1100px;
        }
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(-96px);
        }
        .slider {
            max-width: 400px;
        }
        .country-slide-name {
            font-size: 12px;
        }
        .small-icons {
            width: 7px;
        }
        .slide {
            gap: 5px;
        }
        .slider-wrapper {
            padding: 8px 0;
        }
        .flag-width {
            width: 25px;
        }
        nav .wrapper {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .gray-clr {
            margin-right: 3px;
        }
        .common-container-youtube {
            width: 100%;
            height: 1611px;
        }
        .youtube-video-wrapper iframe {
            width: auto;
            height: 91.25vw;
        }
    }
    
    @media screen and (min-width:575px) {
        .social-media-fix {
            display: none;
        }
    }
    
    @media screen and (max-width:500px) {
        .gallery-head {
            font-size: 30px;
            line-height: 35px;
        }
        .venture-sub-head {
            font-size: 14px;
            ;
            width: 100%;
        }
        .gl-sm-pb-30 {
            padding-bottom: 15px;
        }
        .common-container-youtube {
            width: 100%;
            height: 1500px;
        }
    }
    
    @media screen and (max-width:450px) {
        .glob-area-full.animate {
            margin-top: 106px;
        }
        .stroke-test {
            font-size: 68px;
            line-height: 67px;
            letter-spacing: 0px;
        }
        .ftr-container {
            gap: 108px;
            overflow: hidden;
        }
        .plane-img {
            right: 130px;
        }
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(15px);
        }
        .social-media-fix {
            gap: 30px;
        }
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(-96px);
        }
        .globe-image {
            overflow-y: scroll;
            width: 100%;
            top: -55px;
        }
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(-41px);
        }
        .globe-container {
            height: 1053px;
        }
        .stroke-test {
            font-size: 54px;
            line-height: 51px;
            letter-spacing: 0px;
        }
        .globe-image {
            overflow-y: scroll;
            width: 100%;
            top: -18px;
            white-space: nowrap;
        }
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(-9px);
        }
    }
    
    @media screen and (max-width:420px) {
        .the-name {
            font-size: 14px;
        }
        .yellow-round-text {
            font-size: 15px;
        }
        .yellow-btn-sec {
            padding: 8px;
            gap: 8px;
        }
        .wand-five {
            bottom: 38%;
        }
        .see-text-area {
            width: 355px;
            font-size: 15px;
        }
        .copy-right {
            flex-direction: column;
            text-align: center;
        }
        .stroke-test {
            font-size: 55px;
            line-height: 53px;
            letter-spacing: 0px;
        }
    }
    
    @media screen and (max-width:425px) {
        .youtube-video-wrapper iframe {
            width: auto;
            height: 109.25vw;
        }
    }
    
    @media screen and (max-width:400px) {
        .stroke-test {
            font-size: 57px;
            line-height: 50px;
        }
        .see-text-area {
            width: 340px;
            font-size: 15px;
        }
        .self-small-head {
            font-size: 30px;
        }
        .self-head {
            font-size: 30px;
        }
    }
    
    @media screen and (max-width:385px) {
        .see-text {
            font-size: 58px;
        }
    }
    
    @media screen and (max-width:370px) {
        .wand-five {
            bottom: 38%;
        }
        .gallery-head {
            font-size: 26px;
            line-height: 30px;
        }
        .see-text-area {
            width: 325px;
            font-size: 14px;
        }
        .stroke-test.visible {
            opacity: 1;
            transform: translateY(11px);
        }
    }
    
    .sk-ww-instagram-reels .sk-posts-container.sk-grid {
        display: grid;
        grid-template-columns: repeat(var(--sk-column-count, auto), minmax(auto, 1fr));
        grid-auto-rows: 450px !important;
        gap: var(--sk-space-between-images);
        align-items: stretch;
    }
    
    #backToTopBtn {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 99;
        border: none;
        outline: none;
        background: #FEE543;
        cursor: pointer;
        padding: 12px;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    #backToTopBtn:hover {
        background: #FEE543;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    #backToTopBtn svg {
        display: block;
        margin: auto;
    }
    
    #backToTopBtn svg {
        fill: #000000;
        /* White icon */
    }
    
    .captcha-btn {
        display: flex;
        flex-direction: row;
        gap: 20px;
        padding-top: 20px;
    }
    
    .gl_cod_order_captcha {
        font-size: 18px;
        text-align: center;
        color: #555;
        border: 1px dashed #888;
        background: #F0F1F2;
        padding: 7px 25px;
        margin: 0 15px 0 0;
    }
    
    .gl_order_captcha::placeholder {
        color: #2c2c2c;
        /* Change this to any color you want */
        opacity: 1;
        /* Ensures full visibility (some browsers make it faded by default) */
    }
    
    @media screen and (max-width:767px) {
        .captcha-btn {
            display: flex;
            flex-direction: column;
        }
    }
    
    @media screen and (max-width:575px) {
        #backToTopBtn {
            bottom: 105px;
            right: 5px;
        }
    }