body {
    margin: 0px;
    font-family: 'Albert Sans', 'Segoe UI', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

.box-shadow {
    box-shadow: 0px 5px 20px 0px rgba(1, 1, 1, 0.1);
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInUp {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideInDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Common Base */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

/* In-view Trigger */
.animate-on-scroll.in-view {
    opacity: 1;
}

/* Slide Up */
.slide-up {
    transform: translateY(40px);
}

.slide-up.in-view {
    transform: translateY(0);
}

/* Slide Down */
.slide-down {
    transform: translateY(-40px);
}

.slide-down.in-view {
    transform: translateY(0);
}

/* Slide Left */
.slide-left {
    transform: translateX(40px);
}

.slide-left.in-view {
    transform: translateX(0);
}

/* Slide Right */
.slide-right {
    transform: translateX(-40px);
}

.slide-right.in-view {
    transform: translateX(0);
}


.slide-in-up {
    animation: slideInUp 1s ease-out forwards;
}

.slide-in-up-delay {
    animation: slideInUp 1s ease-out 0.3s forwards;
}

.slide-in-down {
    animation: slideInDown 1s ease-out forwards;
}


.slide-in-left {
    animation: slideInLeft 1s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}

.slide-in-left-delay {
    animation: slideInLeft 1s ease-out 0.5s forwards;
}

/* Slide from left */
.animate-on-scroll-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll-left.in-view {
    opacity: 1;
    transform: translateX(0);
}


:root {
    --color-teal: #5A827E;
    /* rgb(90, 130, 126) */
    --color-sage: #84AE92;
    /* rgb(132, 174, 146) */
    --color-green: #B9D4AA;
    /* rgb(185, 212, 170) */
    --color-yellow: #FAFFCA;
    /* rgb(250, 255, 202) */
    --color-lime-glow: #D8F4C5;
    --color-forest-shadow: #3D5C50;
    --color-mint: #A6DAB7;


    --blue-1: #4EC9DF;
    --blue-2: #63A1D0;
    --blue-3: #3576A7;
    --blue-4: #344986;
    --blue-5: #03BDDE;


    /* Optional RGB format variables */
    --rgb-teal: 90, 130, 126;
    --rgb-sage: 132, 174, 146;
    --rgb-green: 185, 212, 170;
    --rgb-yellow: 250, 255, 202;
}

.bg-radiant-gradient {
    background: linear-gradient(135deg, var(--color-sage), var(--color-mint), var(--color-green), var(--color-lime-glow));
}

.bg-cool-gradient {
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2), var(--blue-3), var(--blue-4));
    color: #fff;
}

.bg-pc-yellow {
    background-color: var(--color-yellow) !important;
}

.bg-pc-sage {
    background-color: var(--color-sage) !important;
}

.bg-pc-green {
    background-color: var(--color-green) !important;
}

.bg-blue-1 {
    background-color: var(--blue-1) !important;
}

.bg-blue-2 {
    background-color: var(--blue-2) !important;
}

.bg-blue-3 {
    background-color: var(--blue-3) !important;
}

.bg-blue-4 {
    background-color: var(--blue-4) !important;
}

.bg-blue-5 {
    background-color: var(--blue-5) !important;
}

/* Loading Bar */
#page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #c7da1c;
    z-index: 9999;
    transition: width 0.4s ease;
}

.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
}

.lightbox:target {
    display: flex;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 40px;
    text-decoration: none;
    z-index: 10000;
}

.lightbox .close:hover {
    color: #ff4d4d;
}

.btn-stroke {
    background-color: transparent !important;
    border: 1px solid #fff !important;
}

.bg-overlay {
    background: rgba(10, 10, 10, 0.541) !important;
}

#backToTopBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    bottom: 40px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #000;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(34, 34, 34, 0.3);
    transition: background-color 0.3s;
}

#backToTopBtn:hover {
    background-color: #333;
    color: #fff;
    border: 1px solid #B9D4AA;
}

.d-flex {
    display: flex !important;
}

.text-white {
    color: white;
}

.d-none {
    display: none !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.pointer {
    cursor: pointer;
}

.position-relative {
    position: relative !important;
}

.flex-column {
    flex-direction: column !important;
}

.d-b-screen {
    display: block;
}

.d-n-screen {
    display: none;
}

.larger {
    font-size: larger;
}

.x-large {
    font-size: x-large;
}

.pd-10 {
    padding: 10px;
}

.pr-15 {
    padding-right: 15px;
}

.border-b-1 {
    border-bottom: 1px solid #f0f0f0;
}

.dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.541);
    z-index: 0;
}

/* Header */
.header {
    width: 100%;
    height: auto;
    padding: 10px 0px;
    background-color: #344986;
    border-bottom: 1px solid #63A1D0;
}

.header-details {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.logo {
    width: 20%;
    height: auto;
}

.logo img {
    width: 150px;
    height: auto;
}

.header-shortcuts {
    font-size: 16px;
    width: 80%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.header-shortcuts a:hover {
    font-weight: bold;
}

#menu {
    background: #fff;
    padding: 20px;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); */
    height: 90vh;
    width: 500px;
    border-left: 1px solid #f0f0f0;
    position: absolute;
    right: 0px;
    z-index: 95;
}

.menu-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.menu-list {
    margin: 30px 10px;
}

.page-banner {
    height: 300px;
    overflow: hidden;
    margin-bottom: 40px;
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2), var(--blue-3), var(--blue-4));
}

.hero {
    height: 100vh;
    overflow: hidden;
    margin-bottom: 40px;
    /* background-color: #4EC9DF; */
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2), var(--blue-3), var(--blue-4));
    /* background: linear-gradient(135deg, var(--color-sage), var(--color-mint), var(--color-green), var(--color-lime-glow)); */
}

.hero-video {
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

.hero .container {
    z-index: 1;
}

.hero h1 {
    font-size: 48px;
}

.section-title {
    margin: 60px 0 30px;
}

.banner {
    height: 300px !important;
    background: linear-gradient(135deg, var(--blue-1), var(--blue-2), var(--blue-3), var(--blue-4));
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none !important;
}

.cta-section {
    /* padding: 60px 0; */
    background: url(../imgs/commercial.gif) no-repeat;
    background-position: center center;
    background-size: 100%;
    color: #fff;
}

.partner-logo {
    height: 50px;
    /* Fixed box height */
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.partner-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Footer */
.footer {
    width: 100%;
    height: auto;
    background-color: var(--blue-3);
    color: #fff;
    display: flex;
    justify-content: space-around;
    padding: 60px 0px 100px 0px;
    margin-bottom: -5px;
}

.footer-logo {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    margin-left: -10px;
}

.footer-box {
    display: block;
}

.footer-box h4 {
    padding-bottom: 20px;
}

.footer-rights {
    background-color: var(--blue-4);
    color: #fff;
    display: flex;
    justify-content: center;
    padding-top: 20px;
    margin: 0px;
}

.hotel-card-img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    height: 200px;
    border-radius: 0px 0px 10px 10px;
}

.product-country {
    /* width: 30px; */
    min-width: 100px;
    max-width: max-content;
    height: 35px;
    border-radius: 30px;
    padding: 0px 8px;
    font-weight: 700;
    background: rgba(5, 5, 5, 0.726);
}

.text-red {
    color: red !important;
}

.product-favorite {
    background: rgba(5, 5, 5, 0.726);
    border-radius: 50%;
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* font-size: 18px; */
}

.text-grey {
    color: #6b6b6b;
}

.rounded-badge {
    border-radius: 50%;
    padding: auto;
}

.fontb {
    font-weight: bold;
}

.ml-10 {
    margin-left: 10%;
}

.mr-10 {
    margin-right: 10%;
}

.m-min-40 {
    margin-top: -40px !important;
}

.m-min-20 {
    margin-top: -20px !important;
}

.m-min-10 {
    margin-top: -10px !important;
}

.m-min-15 {
    margin-top: -15px !important;
}

.m-min-5 {
    margin-top: -3rem !important;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    flex-wrap: wrap;
}

.step-card {
    width: 250px;
    margin: 30px;
    padding: 20px;
    color: white;
    border-radius: 16px;
    z-index: 1;
    position: relative;
    clip-path: polygon(0px 0%, 0% 0px, 73.6% -1px, 100.4% 45.05%, 100.80% 45.35%, 77.6% 100%, 10% 100%, -1px 100.08%);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.step-card h3 {
    font-size: 18px;
    margin: 50px 0px 20px 0px;
    font-weight: bold !important;
    text-align: center;
}

.step-card p {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
}

.step-img {
    position: absolute;
    right: 0;
    top: 10px;
    width: 200px;
    z-index: 2;
}

.step-number {
    background: white;
    color: #333;
    font-weight: bold;
    border-radius: 50%;
    padding: 6px 12px;
    display: inline-block;
    margin-bottom: 10px;
    margin-left: -180px;
}

/* Colors */
.step1 {
    background-color: #3EB489;
    /* Greenish */
}

.step2 {
    background-color: #0093E9;
    /* Blue */
}

.step3 {
    background-color: #F5A623;
    /* Orange */
}

.how-to-earn .step {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
}

.how-to-earn .step-icon {
    width: 40px;
    height: 40px;
    background-color: #000;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 20px;
}

.how-to-earn .step-text {
    font-size: 1rem;
    line-height: 1.6;
}

.text-red {
    color: #d15252 !important;
}

/* Tablet (Portrait and Landscape: 768px to 1024px) */
@media screen and (min-width: 768px) and (max-width: 900px) {
    /* Tablet-specific styles go here */

}

/* Mobile (up to 767px) */
@media screen and (max-width: 767px) {

    /* misc */
    .d-b-screen {
        display: none;
    }

    .how-to-earn .step-icon {
        width: 20px;
        height: 20px;
        background-color: transparent !important;
        color: #000;
    }

    .banner {
        height: 200px !important;
    }



    .page-banner {
        height: 200px !important;
    }

    /* Mobile-specific styles go here */
    .footer {
        width: 100%;
        height: auto;
        display: block;
        padding: 60px 0px 100px 0px;
        margin-bottom: -5px;
    }

    .footer-box {
        display: block;
        margin-left: 20px;
    }

    .footer-box h4 {
        padding-top: 20px;
        padding-bottom: 10px;
    }

    .footer-rights {
        padding-left: 20px;
    }

    /* Header */
    .header-details {
        width: 90%;
    }

    .header-shortcuts {
        font-size: 16px;
        width: 50%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    #menu {
        padding: 20px 5%;
        width: 100%;
        border-left: 1px solid #f0f0f0;
        position: absolute;
        right: 0px;
    }

    .menu-list {
        margin: 30px 10px;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        z-index: 0;
        background-color: #4EC9DF;
    }

    .hero h1 {
        font-size: 30px;
    }

    .card {
        margin-bottom: 30px !important;
    }
}

/* Small Mobile (up to 480px) */
@media screen and (max-width: 480px) {

    /* Small mobile-specific styles */

}