@import url('https://fonts.cdnfonts.com/css/glacial-indifference-2');

@font-face {
    font-family: 'Glacial Indifference';
    src: url('fonts/glacial-indifference.woff2') format('woff2'),
        url('fonts/glacial-indifference.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* Force override if libraries (Tailwind/Bootstrap) set fonts later */
/* html, body, * {
  font-family: "Glacial Indifference", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif !important;
} */




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

/* Load Glacial Indifference from CDN */

body {
    font-family: 'Glacial Indifference', sans-serif;
    color: #333;
    background-color: #fff !important;
    /* background-color: #e7dac2cf !important; */
    font-weight: 400;
}

h2,
h5 {
    /* font-family: 'Glacial Indifference', sans-serif !important; */
    /* font-family: "Century Gothic", Arial, sans-serif !important; */
    /* font-weight: 300;
    line-height: 33px; */
    /* letter-spacing: 2.90px; */
    text-transform: capitalize !important;
}

/* html,
body {
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
} */


/* NAVBAR MAIN */

.nav-top {
    display: flex;
    align-items: center;
    justify-content: end;
    padding-top: 10px;
}

.nav-social {
    display: flex;
    gap: 12px;
    z-index: 9999;
}

.nav-social .icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.nav-social-sticky .icon:hover {
    /* transform: translateY(-5px) scale(1.08); */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.nav-social .icon:hover {
    /* transform: translateY(-5px) scale(1.08); */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.nav-social .whatsapp {
    background: #25D366;
    color: #fff;
}

.nav-social .instagram {
    background: #E1306C;
    color: #fff;
}

.nav-social .phone {
    background: #222;
    color: #fff;
}


.nav-section {
    position: fixed;
    top: 0%;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
    /* background-color: #b79c7e; */
    background-color: rgba(238, 237, 232, 0.7);
    /* box-shadow: 0 4px 15px #d1baa0dc; */
}

/* this line is used to scroll navbar */
.nav-section.hide-nav {
    transform: translateY(-100%);
    top: 83px;
    background-color: rgba(238, 237, 232, 0.7);
    /* background-color: #b79c7ef0; */
}

.nav-bgs {
    width: 100%;
    border-radius: 30px;
    /* border: 0.5px solid black; */


}

/* LOGO */



.logo img {
    width: 120px;
    height: auto;
    padding-left: 10px;
    transition: width 0.4s ease, transform 0.4s ease;
}

/* On scroll UP (expanded logo) */
/* .logo .show-large img {
    width: 300px;
    transform: scale(1);
} */


/* NAV LINKS */
.nav_a .nav-link {
    font-size: 18px;
    /* font-weight: bold; */
    color: #000 !important;
    padding: 8px 15px;
    transition: 0.3s;
    text-decoration: none;
}



.nav_a .nav-item {
    padding-right: 70px;
}

.nav_a .nav-link:hover {
    /* color: white !important; */
    opacity: 0.3!important;
}

/* COLLAPSE NAV CENTERING */
.min-nav ul {
    width: 100%;
    justify-content: center;
}

@media (max-width: 991px) {

    /* Remove background and shadow */
    .nav-bgs {
        background-color: transparent;
        box-shadow: none;
        border-radius: 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 5px 15px;
    }

    /* Logo with border radius in box */
    .logo img {
        width: 90px;
        height: auto;
        padding: 8px;
        border-radius: 20px;
        display: block;
        padding-left: 8px;
    }

    /* Toggle button styling */
    .menu-btn {
        height: 100px;
        width: 100px;
        background-color: #b79c7e;
        border-radius: 15px !important;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 0;
    }

    .menu-btn span,
    .menu-btn span::before,
    .menu-btn span::after {
        margin-top: 9px;
    }

    .menu-btn span {
        margin-top: 0px;
        margin-right: 0;
    }

    /* Collapsed nav menu */
    .navbar-collapse {
        background: #fff;
        padding: 20px 0;
        border-radius: 15px;
        margin-top: 10px;
    }

    .nav_a .nav-link {
        font-size: 16px;
        text-align: center;
        padding: 12px 0;
    }

    .nav_a .nav-item {
        padding-right: 0;
    }
}

/* SMALL MOBILE */
@media (max-width: 575px) {
    .nav-section {
        top: 0px;
    }

    .logo img {
        width: 80px;
        padding: 6px;
    }

    .menu-btn {
        height: 38px !important;
        width: 48px !important;
    }


    .nav_a .nav-link {
        font-size: 15px;
    }
}

/* Center logo and toggle on mobile */
@media (max-width: 991px) {
    .navbarscr>.d-flex {
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
}


/* humbar menu */

/* COLLAPSE NAV CENTERING */
.min-nav ul {
    width: 100%;
    justify-content: center;
}

/* HAMBURGER MENU */

/* Toggle button styling */
.menu-btn {
    height: 40px;
    width: 50px;
    background-color: #b79c7e;
    border-radius: 15px !important;
    padding: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0;
    /* border: none !important; */
}

/* Hide Bootstrap's default icon */
.menu-btn .navbar-toggler-icon {

    width: 20px;
    height: 16px;
    position: relative;
    display: inline-block;
}

/* Create hamburger lines */
.menu-btn .navbar-toggler-icon::after,
.menu-btn .navbar-toggler-icon::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    left: 0;
    transition: 0.3s ease-in-out;
}

.menu-btn .navbar-toggler-icon::before {
    top: 0;
}

.menu-btn .navbar-toggler-icon::after {
    bottom: 0;
}

/* Active state - X icon */
.menu-btn.active .navbar-toggler-icon {
    background-image: none;
    border-top: none;
    box-shadow: none;
}

.menu-btn.active .navbar-toggler-icon::before {
    top: 50%;
    transform: rotate(45deg);
    margin-top: -1px;
}

.menu-btn.active .navbar-toggler-icon::after {
    bottom: 50%;
    transform: rotate(-45deg);
    margin-bottom: -1px;
}

/* humbar menu */

/* END NAVBAR MAIN */




/*  HOME PAGE */
/* ===================== */


/* --- 1. Banner/Carousel Styles (Default: Desktop/Large Screens) --- */

.banner-section {
    margin-top: 85px; 
    padding: 0;
}

.carousel-inner {
    position: relative;
    width: 100%;
    /* 100vh for full-screen banner on desktop */
    height: 100vh;
    /* height: calc(100vh-85px)!important; */
    overflow: hidden;
}

.carousel-item {
    height: 100vh;
    /* height: calc(100vh-85px)!important; */
    /* Match the inner container height */
    min-height: 500px;
}

.banner-img {
    height: 100%;
    /* position: relative;
    top: 87px; */
    /* height: 100vh; */
    width: 100%;
    /* Ensure image fills the container */
    object-fit: cover;
    /* Maintain aspect ratio and cover the space */
    /* filter: brightness(0.6);  */
}



.carousel-caption.caption-center {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    /* Use flexbox for perfect vertical and horizontal centering */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10%;
    text-align: center;
    color: white;
}

.carousel-caption h1,
.carousel-caption p {
    text-align: center;
    margin-bottom: 0.5rem;
}

.carousel-caption h1 {
    animation: shadowFade 2s ease-in-out infinite alternate;
}

@keyframes shadowFade {
    0% {
        text-shadow: 2px 2px 8px rgba(110, 110, 110, 0.2);
    }

    100% {
        text-shadow: 4px 4px 18px rgba(113, 107, 107, 0.9);
    }
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators [data-bs-slide-to] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(3, 0, 0, 0.5);
    border: none;
    transition: all 0.3s ease;
}

.carousel-indicators [data-bs-slide-to].active {
    width: 12px;
    height: 12px;
    background-color: rgb(9, 9, 8);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.carousel-indicators [data-bs-slide-to]:hover {
    background-color: rgb(8, 7, 4);
}


.carousel-indicators button:hover {
    background-color: rgb(9, 8, 4);
    transform: scale(1.2);
}

/* Arrow Button Styling */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
}

@media (min-width: 768px) {
    .carousel-caption h1 {
        font-size: 5rem;
    }
}

@media (max-width: 992px) {

    .carousel-inner,
    .carousel-item {
        height: 50vh !important;
        bottom: 18px;
    }
}


@media (max-width: 767px) {

    .carousel-inner,
    .carousel-item {
        height: 50vh !important;
        bottom: 18px;
        /* margin-top: 80px; */
        /* height: calc(50vh-85px); */
        /* Set a specific percentage of viewport height */
        min-height: 300px;
        /* Safety minimum height */
    }
    .banner-section{
        /* margin-top: 75px; */
    }

    /* Adjust heading size for better fit on small screens */
    .carousel-caption h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 375px) {
    .carousel-inner,
    .carousel-item {
         bottom: 24px;
    
    }
}


/* --- BANNER SECTION END --- */


/* --- 3. About Section Styles --- */

/* .about-view {
            background-color: #b58b4f;
            width: fit-content;
            border: 1px solid white;
            color: white;
        } */
/* .about-section{
             background-image: url("{% static 'assets/images/image6.webp' %}") center/cover no-repeat;
         } */

.about-section {
    /* background-image: linear-gradient(rgba(249, 248, 248, 0.9), rgba(251, 249, 249, 0.5)), url("../images/image17.webp"); */
    /* Correct relative path */
    background-color: white;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content-about h2 {
    /* font-family: "Crimson Pro", serif; */
    /* font-weight: 600;
            line-height: 33px;
            letter-spacing: 2.9px; */
}


img.img-bottom {
    border-radius: 27px
        /* Specific height for the second image */
}

img.img-bottom1 {
    height: 15rem;
    border-radius: 27px;
    object-fit: cover;
    width: 100%;
}


/* ABOUT SECTION END */

/* START LINE DESIGN */
.decorative-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 40px 0; */
    gap: 20px;
}

.divider-line {
    flex: 1;
    /* max-width: 300px; */
    height: 1px;
    background: linear-gradient(to right, transparent, #333, transparent);
    position: relative;
}

.divider-line:first-child {
    background: linear-gradient(to right, transparent, #333);
}

.divider-line:last-child {
    background: linear-gradient(to left, transparent, #333);
}

.divider-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SVG decoration similar to image 2 */
.divider-icon svg {
    width: 100%;
    height: 100%;
}

/* END LINE DESIGN */

/* --- 4. Categories/Marquee Styles --- */

.category-section {
    overflow: hidden;
}

.content-category h2 {
    /* font-family: Crimson Pro; */
    /* font-weight: 600;
            line-height: 33px;
            letter-spacing: 2.90px; */
    text-align: center;
}

.footer-section .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.category-item {
    display: inline-block;
    padding: 0 15px;
    text-align: center;
    flex-shrink: 0;
    width: 150px;
    cursor: pointer;
    transition: all 0.3s ease;

}

.category-item:hover {
    transform: translateY(-10px);
}

.category-img {
    width: 100%;
    /* overflow: hidden; */
    margin-bottom: 10px;
}

.category-img img {
    width: 150px;
    height: 150px;
    /* width: 100%;
            height: auto; */
    border-radius: 50%;
    transition: all 0.3s ease;
}

.category-item:hover .category-img img {

    transform: scale(1.05);
}

.category-item .name {
    margin-top: 10px;
    /* font-weight: bold; */
}

.container-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 80px;
}

/* Arrow Button Styling */
.arrow-btn-category-home {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    flex-shrink: 0;
}

.arrow-btn-category-home:hover {
    background-color: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.15);
}

.arrow-btn-category-home:active {
    transform: translateY(-50%) scale(0.95);
}

.arrow-btn-category-home.left {
    left: 0;
}

.arrow-btn-category-home.right {
    right: 0;
}

/* END Arrow Button Styling */

/* Icon Slider */
.icon-slider {
    width: 100%;
    overflow: hidden;
}


.category {
    display: flex;
    gap: 25px;
    padding: 20px 10px;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
    margin: 0;
    list-style: none;
    flex-wrap: nowrap;
    min-width: max-content;
}

.category::-webkit-scrollbar {
    display: none;
}


@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-60px * 15));
    }
}

.category.auto-scroll {
    animation: marquee 15s linear infinite;
}

.category.auto-scroll {
    animation: marquee 15s linear infinite;
}



@media (max-width: 768px) {
    .container-wrapper {
        padding: 0 30px;
    }

    .arrow-btn-category-home {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }


    .category-item .name {
        font-size: 12px;
    }

}

@media (max-width: 576px) {

    .arrow-btn-category-home {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .category {
        gap: 10px;
    }


    .content-category h2 {
        font-size: 24px;
    }
}


/* END THE CATEGORY CAROUSEL OPTION IN HOME PAGE */


/* Product Image Zoom Effect */
.content-product h2 {
    /* font-family: Crimson Pro; */
    /* font-weight: 600;
    line-height: 33px;
    letter-spacing: 2.90px; */
    text-align: center;
}



.product-card .product-image-wrapper {
    overflow: hidden;
}

.product-card .product-image {
    transition: transform 0.5s ease-in-out;
    /* Smooth transition for the transform */
    transform: scale(1);
    /* Initial state: no zoom */
    border-radius: 27px;

    width: 100%;
    height: 300px;
    object-fit: cover;
    /* keeps image clean, not stretched */
    border-radius: 8px;
    object-position: top;
    /* optional */
    display: block;
}



.product-card:hover .product-image {
    transform: scale(1.08);
    /* Zoom in by 8% on hover */
}

/* Optional: Add a subtle lift and shadow to the entire card on hover */
.product-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 27px;
}

.product-card:hover {
    transform: translateY(-5px);
    /* Lifts the card slightly */
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
    /* More pronounced shadow */
}

#modalImage {
    max-height: 90vh;
    object-fit: contain;
}


/* enquiry form */

.enquiryform {
    margin: 0 auto;
    display: flex;
    gap: 30px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    padding: 30px;
    /* background: #f2ece0; */
}

/* Left Column (Image & Content) */
.image-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.image-wrapper {
    width: 100%;
}

.enquiry-img {
    width: 80%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 27px;
}

input::placeholder,
textarea::placeholder {
    color: #d6d4d4 !important;
    /* change to your preferred color */
    opacity: 1 !important;
    /* ensures the color shows fully */
}


/* Right Column (Form) */
.form-column {
    flex: 1;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: #f2ece0;
}


.form-column h2 {
    /* font-family: 'Crimson Pro', serif; */
    /* font-weight: 600;
            line-height: 33px;
            letter-spacing: 2.90px; */
    padding-bottom: 20px;
    color: #333;
}

/* Form Styling */
.form-group {
    margin-bottom: 8px;
}

.enquiry-form label {
    display: block;
    margin-bottom: 5px;
    /* font-weight: 600; */
    color: #555;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="tel"],
.enquiry-form textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
    transition: border-color 0.3s;

}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
    border-color: #b79c7e;
    outline: none;
}

.enquiry-form textarea {
    resize: vertical;
}

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 4px;
    margin-bottom: 20px;
    display: none;
}

.captcha-container {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.text-danger {
    color: #d32f2f;
    font-size: 14px;
    margin-top: 8px;
}


.submit-btn {
    background-color: #b79c7e;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.1em;
    /* font-weight: 600; */
    width: 40%;
    transition: background-color 0.3s;
    display: block;
    margin: 0 auto;
}



.submit-btn:hover {
    background-color: #a68b6e;
}

.submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsiveness (Mobile View) */
@media (max-width: 768px) {
    .enquiryform {
        flex-direction: column;
        gap: 0;
    }

    .image-column,
    .form-column {
        padding: 20px;
    }

    .image-column {
        order: -1;
    }

    .submit-btn {
        width: 100%;
    }

    .enquiry-img {
        width: 100%;
    }
}

/* Footer */

.footer-section {
    background-color: #b79c7e;
}

/* .footer .footer-items{
    gap:30px;
} */
@media (max-width: 550px) {
    .footer .footer-items {
        display: flex;
        flex-direction: column;
    }
}

/* End footer */

/* Sticky Social Bar */
.social-sticky {
    position: fixed;
    bottom: 16%;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.social {
    display: flex;
    gap: 12px;
    z-index: 9999;
}

/* Icon Style */
.social-sticky .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: 0.3s ease;
}

.social .icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); */
    transition: 0.3s ease;
}

/* Hover effect */
.icon:hover{
     /* width: 28px;
    height: 28px;
     border-radius: 50%; */
    /* transform: translateY(-5px) scale(1.08); */
     transition: 0.3s ease;
     font-size: 22px;
     
}

.social-sticky .icon:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.social .icon:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.social-sticky .whatsapp {
    background: #25D366;
    color: #fff;
}

.social-sticky .instagram {
    background: #E1306C;
    color: #fff;
}

.social-sticky .phone {
    background: #222;
    color: #fff;
}

.social .whatsapp {
    /* background: #25D366; */
    /* color: #fff; */
    color: #222;
}

.social .instagram {
    /* background: #E1306C; */
    /* color: #fff; */
    color: #222;
}

.social .phone {
    /* background: #222; */
    /* color: #fff; */
    color: #222;
}

/* Individual brand colors */
/* .whatsapp:hover {
    background: #25D366;
    color: #fff;
} */

/* .instagram:hover {
    background: #E1306C;
    color: #fff;
} */

/* .phone:hover {
    background: #222;
    color: #fff;
} */

.footer-links:hover{
  /* color: #fff!important; */
  opacity: 0.8!important;
}

/* Scroll Down Hint Arrow */
#introArrow {
    /* Positioning (Keep these from the previous solution) */
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    /* Base transform */

    /* Appearance */
    font-size: 1rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 0px 6px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;

    /* Hiding/Showing Transition */
    opacity: 1;
    transition: opacity 0.3s ease, visibility 0.3s ease;

    /* NEW: Apply the pulse animation */
    animation: pulse 1.5s infinite ease-in-out;
    /* 1.5s duration, loops infinitely, smooth transition */
}

/* CSS class to hide the arrow (Keep this too) */
.hide-arrow {
    opacity: 0 !important;
    visibility: hidden !important;
    /* IMPORTANT: Stop the animation when hidden */
    animation: none !important;
}

@keyframes pulse {
    0% {
        transform: translateX(-50%) scale(1);
    }

    50% {
        transform: translateX(-50%) scale(1.1);
        /* Zoom in by 10% */
    }

    100% {
        transform: translateX(-50%) scale(1);
    }
}

/* HOME PAGE END */



/* ABOUT PAGE START  */

/* Main Section */
.resort-section {
    position: relative;
    background: linear-gradient(135deg,
        rgba(150, 150, 150, 0.8) 0%,
        rgba(180, 180, 180, 0.6) 100%),
    url("{% static 'assets/images/image17.webp' %}") center/cover no-repeat;

    padding: 80px 40px 100px;
    border-radius: 30px;
    margin: 40px;
    overflow: hidden;
}

/* Geometric overlay shapes */
.resort-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: rgba(100, 100, 100, 0.3);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    z-index: 1;
}

.resort-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: 10%;
    width: 500px;
    height: 500px;
    background: rgba(80, 80, 80, 0.4);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    z-index: 1;
}

/* Header Content */
.section-header {
    position: relative;
    z-index: 2;
    /* max-width: 600px; */
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    /* font-weight: 300; */
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Cards Container */
.cards-container {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.cards-container::-webkit-scrollbar {
    display: none;
}

/* Navigation Arrows */
.nav-arrows {
    position: absolute;
    top: 50px;
    right: 40px;
    display: none;
    gap: 15px;
    z-index: 3;
}

.arrow-btn-about {

    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.arrow-btn-about:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.arrow-btn-about svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}


.arrow-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.arrow-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.arrow-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

/* Glass Card */
.glass-card {
    min-width: 520px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 25px;
    align-items: center;
    transition: all 0.3s;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Card Image */
.card-image {
    width: 280px;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card Content */
.card-content {
    flex: 1;
    color: white;
}

.card-content h3 {
    font-size: 1.5rem;
    /* font-weight: 400; */
    margin-bottom: 15px;
}

.card-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.card-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.card-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.card-arrow svg {
    width: 18px;
    height: 18px;
    stroke: white;
    stroke-width: 2;
    fill: none;
}

/* Image Only Cards */
.image-card {
    min-width: 380px;
    height: 230px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-card:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .resort-section {
        padding: 60px 20px 80px;
        margin: 20px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .nav-arrows {
        top: 30px;
        right: 20px;
    }

    .glass-card {
        min-width: 90vw;
        flex-direction: column;
    }

    .card-image {
        width: 100%;
        height: 200px;
    }

    .image-card {
        min-width: 90vw;
    }
}




/* START LOOK BOOK */
/* CATEGORY START  */
.category-tabs-wrapper {
    /* position: relative; */
    overflow-x: auto;
    padding-bottom: 20px;
    /* Space for the scrollbar on desktop */
    -webkit-overflow-scrolling: touch;
    /* Improved scrolling on iOS */
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.category-tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.category-track {
    display: flex;
    flex-wrap: nowrap;
    /* Forces all items onto one line */
    width: fit-content;
    gap: 4rem;
    /* overflow-x: auto; */
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
}

.category-item .nav-link.active {

    background-color: #b58b4f;
    color: white;
    /* font-weight: bold; */
    background-image: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    /* Keep a subtle shadow for depth */
}

.category-item .nav-link {
    background-color: #b79c7e;
    color: #333;

}

.category-item button {
    background: #b58b4f;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    border: none;
}

.arrow-btn {
    background: #b58b4f;
    border: none;
    padding: 12px;
    border-radius: 50%;
    position: absolute;
    top: 35%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    z-index: 10;
}


.arrow-btn.left {
    left: 1%;
    top: 18%;
}

.arrow-btn.right {
    right: 1%;
    top: 18%;
}

.arrow-btn i {
    font-size: 18px;
}


@media (max-width: 767px) {
    .category-item {
        flex-basis: 7.666%;
        width: 150px;
        white-space: normal;

    }

    .arrow-btn.left {
        left: 2%;
        top: 5%
    }

    .arrow-btn.right {
        right: 2%;
        top: 5%
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .category-item {
        flex-basis: 16.666%;

    }
}

@media (min-width: 1200px) {
    .category-item {
        flex-basis: 12.5%;

    }
}





.product-grid .product-image-wrapper {
    overflow: hidden;
}

.product-grid .product-image {
    transition: transform 0.5s ease-in-out;
    /* Smooth transition for the transform */
    transform: scale(1);
    /* Initial state: no zoom */
    border-radius: 27px;
}

.product-grid .product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    /* keeps image clean, not stretched */
    border-radius: 8px;
    object-position: top;
    /* optional */
    display: block;
}

.product-grid .product-image:hover {
    transform: scale(1.08);
    /* Zoom in by 8% on hover */
}

/* Optional: Add a subtle lift and shadow to the entire card on hover */
.product-grid {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border-radius: 27px;
    padding-bottom: 20px;
}

.product-grid:hover {
    transform: translateY(-5px);
    /* Lifts the card slightly */
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175) !important;
    /* More pronounced shadow */
}

/* CATEGORY START  */
/* END LOOK BOOK */


/* CONTACT START */

/* Custom Styles for the Hover Effect */

.team-card {
    background-image: linear-gradient(60deg, #c17216 -40%, #FFCC70 46%, #965c1a 120%);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    cursor: pointer;
    overflow: hidden;
    /* Important for the before/after pseudo-elements */
}

/* Ensure content is correctly centered and positioned */
.team-card .card-content {
    /* Uses Bootstrap p-4 for padding */
    position: relative;
    z-index: 2;
    /* Keep content above pseudo-elements */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
}

/* Hover Effects */
.team-card:hover {
    transform: rotateY(10deg) rotateX(10deg) scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5) !important;
    /* Enhanced shadow */
}

.team-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient to match original design intent */
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 1;
}

.team-card:hover:before {
    transform: translateX(-100%);
}

.team-card:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient to match original design intent */
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.1));
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
    z-index: 1;
}

.team-card:hover:after {
    transform: translateX(100%);
}

/* CONTACT PAGE END */

/* .pdf-wrapper {
    position: relative;
    min-height: 600px;
}

.pdf-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid #ddd;
    border-top: 4px solid #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-bottom: 12px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
} */
