* {
    margin: 0;
    padding: 0;
}

body {
    overflow-x: hidden;
    max-width: 100%;
    background-color: #E2E2E2 !important;
}

html {
    scroll-behavior: smooth;
    max-width: 100%;
    overflow-x: hidden;
}

li {
    list-style-type: none !important;
}

a {
    text-decoration: none !important;
    font-size: 16px !important;
    color: #000000 !important;
    font-family: "Poppins", sans-serif !important;
}

p {
    font-family: "Poppins", sans-serif !important;
    font-size: 16px;
    color: #222222c9 !important;
    font-weight: 300 !important;
}

h1,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif !important;
    color: #222222 !important;
}

.sp {
    padding-top: 70px;
    padding-bottom: 70px;
}

h1 {
    font-size: 80px;
}

.container {
    max-width: 1300px !important;
    margin: auto;
}

:root {
    /* Colors */
    --Blue: #171717;
    --inner-border: #f1f1f1;
}

.main-tittle-sp {
    color: #22222280 !important;
}

h2 {
    font-size: 70px !important;
    font-family: "Poppins", sans-serif !important;
    color: #222222 !important;
}

h4 {
    font-size: 24px !important;
}

h3 {
    font-size: 45px !important;
}

/* LOADER SECTION START HERE */

.loader-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a0a;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-container {
    width: 50%;
    height: 50%;
    border-radius: 150px;
    border: 2px solid white;
    position: relative;
    transform: scale(1);
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    background: transparent;
    will-change: transform, border-radius;
}

.loader-fill {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 0%;
    background: white;
    border-radius: 80px 0 0 80px;
    z-index: 1;
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 130px;
    font-weight: 600;
    color: white;
    mix-blend-mode: difference;
    letter-spacing: 4px;
    z-index: 2;
}

.main-content {
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
}

.main-content.visible {
    opacity: 1;
    pointer-events: auto;
}

.loader-subtext {
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 22px;
    font-weight: 400;
    color: #ffffffcc;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    opacity: 1;
    /* Visible initially */
    transition: opacity 0.8s ease;
    white-space: nowrap;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.loader-text img {
    width: 100%;
    transform: scale(1.8) translateY(-12px);
}


/* LOADER SECTION START HERE */

/* SMALL CARD START */

.section-small-card {
    display: flex;
    justify-content: end;
    border-radius: 30px;
    border: 5.5px solid #EDEDED;
    width: fit-content;
    background-color: #ffffff;
    position: absolute;
    right: 0;
    box-shadow: 0px 42px 59px -37px rgba(0, 0, 0, 0.87) !important;
}

.section-small-card h6 {
    align-items: center;
    display: flex;
    margin-bottom: 0 !important;
    padding: 0 10px;
}

.section-small-card img {
    width: 100%;
}

/* SMALL CARD END */

/* BUTTON START*/

.b-button {
    --blue-700: #171717;
    --border_radius: 9999px;
    --transtion: 0.3s ease-in-out;
    --offset: 2px;

    cursor: pointer;

    align-items: center;
    gap: 0.5rem;

    transform-origin: center;

    padding: 7px 25px;
    background-color: transparent;

    border: none;
    border-radius: var(--border_radius);
    transform: scale(calc(1 + (var(--active, 0) * 0.1)));

    transition: transform var(--transtion);
}

.b-button::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    height: 100%;
    background-color: var(--blue-700);

    border-radius: var(--border_radius);
    box-shadow: inset 0 0.5px hsl(0, 0%, 100%), inset 0 -1px 2px 0 hsl(0, 0%, 0%),
        0px 4px 10px -4px hsla(0 0% 0% / calc(1 - var(--active, 0))),
        0 0 0 calc(var(--active, 0) * 0.375rem) hsl(260 97% 50% / 0.75);

    transition: all var(--transtion);
    z-index: 0;
}

.b-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 100%;
    height: 100%;
    background-color: hsla(260 97% 61% / 0.75);
    background-image: radial-gradient(at 51% 89%,
            hsla(266, 45%, 74%, 1) 0px,
            transparent 50%),
        radial-gradient(at 100% 100%, hsla(266, 36%, 60%, 1) 0px, transparent 50%),
        radial-gradient(at 22% 91%, hsla(266, 36%, 60%, 1) 0px, transparent 50%);
    background-position: top;

    opacity: var(--active, 0);
    border-radius: var(--border_radius);
    transition: opacity var(--transtion);
    z-index: 2;
}

.b-button:is(:hover, :focus-visible) {
    --active: 1;
}

.b-button:active {
    transform: scale(1);
}

.b-button .b-dots_border {
    --size_border: calc(100% + 2px);

    overflow: hidden;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: var(--size_border);
    height: var(--size_border);
    background-color: transparent;

    border-radius: var(--border_radius);
    z-index: -10;
}

.b-button .b-dots_border::before {
    content: "";
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-origin: left;
    transform: rotate(0deg);

    width: 100%;
    height: 2rem;
    background-color: white;

    mask: linear-gradient(transparent 0%, white 120%);
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.b-button .b-sparkle {
    position: relative;
    z-index: 10;

    width: 1.75rem;
}

.b-button .b-sparkle .b-path {
    fill: currentColor;
    stroke: currentColor;

    transform-origin: center;

    color: hsl(0, 0%, 100%);
}

.b-button:is(:hover, :focus) .b-sparkle .b-path {
    animation: path 1.5s linear 0.5s infinite;
}

.b-button .b-sparkle .b-path:nth-child(1) {
    --scale_path_1: 1.2;
}

.b-button .b-sparkle .b-path:nth-child(2) {
    --scale_path_2: 1.2;
}

.b-button .b-sparkle .b-path:nth-child(3) {
    --scale_path_3: 1.2;
}

@keyframes path {

    0%,
    34%,
    71%,
    100% {
        transform: scale(1);
    }

    17% {
        transform: scale(var(--scale_path_1, 1));
    }

    49% {
        transform: scale(var(--scale_path_2, 1));
    }

    83% {
        transform: scale(var(--scale_path_3, 1));
    }
}

.b-button .b-text_button {
    position: relative;
    z-index: 10;

    background-image: linear-gradient(90deg,
            hsla(0 0% 100% / 1) 0%,
            hsla(0 0% 100% / var(--active, 0)) 200%);
    background-clip: text;

    font-size: 16px;
    font-weight: 500;
    color: transparent;
}

.booking-btn {
    position: absolute;
    left: 10px;
    bottom: 00px;
}

/* BUTTON END */

/* INNER PAGE START HERE */

.inner-head {
    width: 100%;
    height: 200px;
    background-image: url(../assets/hero-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
    position: relative;
}

.inner-head-content {
    display: flex;
    max-width: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, 50%);
    gap: 30px;
}

.inner-head-content h6 {
    font-size: 16px !important;
    font-weight: 500 !important;
    color: var(--Blue) !important;
}

.inner-head a {
    font-size: 16px !important;
    font-weight: 500 !important;
}

.inner-head-content img {
    width: 12px;
    height: 12px;
    margin-top: 5px;
}

.full-width-card {
    width: 99.2% !important;
    height: 100% !important;
}

.full-width-card-bg {
    height: 2000px !important;
}

/* INNER PAGE END HERE */

/* WHATSAPP ICON START */

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9993;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    overflow: visible;
    text-decoration: none;
}

.whatsapp-float i {
    transition: transform 0.3s ease;
    z-index: 2;
    color: #ffffff;
}

.whatsapp-label {
    position: absolute;
    right: 70px;
    background-color: #25d366;
    color: white;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transform: translateX(10px);
    z-index: 1;
}

.whatsapp-float:hover i {
    transform: scale(1.2);
    color: #ffffff;
}

.whatsapp-float:hover .whatsapp-label {
    opacity: 1;
    transform: translateX(0);
}

/* WHATSAPP ICON END */