*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
        
        :root {
            --primary-color: #F89500;
            --secondary-color: #00102A;
            --hover-color: #e68600;
            --bg: #e1cebe45;
            --dark-bg: #0a0a0a;
            --text-light: #ffffff;
            --text-dark: #222222;
            --text-secondary: #aaaaaa;
        }
        a{
            text-decoration: none;
        }
        
        .navbar {
            transition: all 0.5s ease;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            background-color: rgba(0, 0, 0, 0.7) !important;
        }
        
        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.7) !important;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
        }
        
        .logo img {
            transition: transform 0.3s ease;
            width: 200px;
            padding: 5px;
            object-fit: cover;
        }
        
        .logo img:hover {
            transform: scale(1.1);
        }
        
        .book_btn-wrapper {
            position: relative;
            display: inline-block;
        }
        
        .book_btn {
            position: relative;
            border-radius: 10px;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: none;
            padding: 10px 25px;
            font-weight: 600;
            overflow: hidden;
            z-index: 1;
            transition: all 0.4s cubic-bezier(0.65, 0, 0.076, 1);
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .book_btn:hover {
            color: white;
            scale: 1.02;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
            border: 1px solid var(--secondary-color);
        }
        
        .book_btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background-color: var(--secondary-color);
            transition: all 0.4s cubic-bezier(0.65, 0, 0.076, 1);
            z-index: -1;
        }
        
        .book_btn:hover::before {
            width: 100%;
        }
        
        .book_btn span {
            display: inline-block;
            transition: transform 0.4s cubic-bezier(0.65, 0, 0.076, 1);
        }
        
        .book_btn:hover span {
            transform: translateX(5px);
        }
        
        .btn-gif {
            position: absolute;
            top: 50%;
            right: -40px;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
        }
        
        .book_btn:hover + .btn-gif {
            opacity: 1;
            right: -50px;
        }
        
        .nav-item {
            position: relative;
            margin: 0 10px;
        }
        
        .nav-link {
            color: white !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 8px 12px !important;
        }
        
        
        
        .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 5px;
            left: 12px;
            background-color: var(--primary-color);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: calc(100% - 24px);
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
            margin-top: 0;
            animation: fadeIn 0.2s ease;
        }
        
        .dropdown-menu {
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 10px 0;
            margin-top: 10px;
            display: none;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(5px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .dropdown-item {
            padding: 8px 20px;
            transition: all 0.2s ease;
            position: relative;
        }
        
        .dropdown-item:hover {
            background-color: rgba(248, 149, 0, 0.1);
            color: var(--primary-color);
        }
        .dropdown-item::before {
            content: '→';
            margin-right: 10px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        .dropdown-item:hover::before {
            opacity: 1;
            margin-right: 15px;
        }
        .dropdown-toggle::after {
            display: none !important;
        }
        
        .navbar-toggler {
            border: none;
            padding: 0.5rem;
            outline: none !important;
            box-shadow: none !important;
            position: relative;
            width: 40px;
            height: 40px;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler-icon, 
        .navbar-toggler-close {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 24px;
            height: 2px;
            background-color: white;
            display: block;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled .navbar-toggler-icon,
        .navbar.scrolled .navbar-toggler-close {
            background-color: var(--text-light);
        }
        
        .navbar-toggler-icon::before,
        .navbar-toggler-icon::after,
        .navbar-toggler-close::before,
        .navbar-toggler-close::after {
            content: '';
            position: absolute;
            width: 24px;
            height: 2px;
            background-color: inherit;
            left: 0;
            transition: all 0.3s ease;
        }
        
        .navbar-toggler-icon::before {
            top: -8px;
        }
        
        .navbar-toggler-icon::after {
            top: 8px;
        }
        
        .navbar-toggler-close::before {
            transform: rotate(45deg);
        }
        
        .navbar-toggler-close::after {
            transform: rotate(-45deg);
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
            opacity: 0;
        }
        
        .navbar-toggler[aria-expanded="true"] .navbar-toggler-close {
            opacity: 1;
        }
        
        .navbar-toggler[aria-expanded="false"] .navbar-toggler-close {
            opacity: 0;
        }
        
        @media (max-width: 991.98px) {
            .dropdown:hover .dropdown-menu {
                display: none;
            }
            
            .dropdown-menu.show {
                display: block !important;
                animation: fadeIn 0.2s ease;
            }
            
            .navbar-collapse {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background-color: rgba(255, 255, 255, 0.98);
                padding: 80px 30px 30px;
                box-shadow: none;
                margin-top: 0;
                transform: translateX(-100%);
                transition: transform 0.25s ease-out;
                z-index: 999;
                overflow-y: auto;
                will-change: transform;
            }
            
            .navbar-collapse.show {
                transform: translateX(0);
            }
            
            .nav-link {
                color: var(--secondary-color) !important;
                text-align: center;
                padding: 15px 0 !important;
                font-size: 1.2rem;
            }
            
            .nav-link::after {
                left: 50%;
                transform: translateX(-50%);
                bottom: 10px;
            }
            
            .nav-link:hover::after {
                width: 40%;
            }
            
            .nav-item {
                margin: 10px 0;
            }
            
            .dropdown-menu {
                background: transparent;
                box-shadow: none;
                text-align: center;
                position: static !important;
                transform: none !important;
                float: none;
                width: 100%;
                border: none;
                margin-top: 0;
            }
            
            .dropdown-item {
                padding: 10px 0;
                font-size: 1.1rem;
            }
            
            .dropdown-item::before {
                display: none;
            }
            
            .book_btn {
                margin: 30px auto 0;
                display: block;
                max-width: 200px;
            }
            
            .mobile-menu-close {
                position: absolute;
                top: 20px;
                right: 20px;
                font-size: 1.5rem;
                color: var(--secondary-color);
                background: none;
                border: none;
                cursor: pointer;
                transition: transform 0.2s ease;
            }
            
            .mobile-menu-close:hover {
                transform: rotate(90deg);
            }
            
            .btn-gif {
                display: none;
            }
            
            .dropdown-toggle {
                transition: all 0.2s ease;
            }
            
            .dropdown-toggle[aria-expanded="true"] {
                color: var(--primary-color) !important;
            }
        }
  .dropdown-menu {
    background-color: #FFF;
    padding: 5px;
  }

  /* SLIDER SECCTION STARTS */
 
     /* Slider container with enhanced shadow effect */
     .resort-slider-container {
        position: relative;
        width: 100%;
        height: 100vh;
        overflow: hidden;
    }

    /* Shadow overlay effect - fixed version */
    .resort-slider-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(           
             to bottom,            
              rgba(0,0,0,1.6) 0,            
               rgba(0,0,0,0.3) 20%,           
                rgba(0,0,0,0) 50%,          
                  rgba(0,0,0,1.5) 80%,          
                    rgba(0,0,0,1.8) 46%            );
        pointer-events: none;
        z-index: 2;
    }

    /* Additional outer shadow for depth */
    .resort-slider-container::after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        right: 0;
        height: 20px;
        background: radial-gradient(ellipse at center, 
            rgba(0,16,42,0.4) 0%, 
            rgba(0,16,42,0) 80%);
        z-index: 1;
    }

    /* Ensure proper z-index hierarchy */
    .resort-slider {
        position: relative;
        z-index: 1;
    }

    .slide-content {
        z-index: 3;
    }

    .slider-nav {
        z-index: 4;
    }

    /* Rest of your existing slider styles */
    .resort-slider {
        list-style-type: none;
        padding: 0;
        margin: 0;
        width: 100%;
        height: 100%;
    }
    
    .resort-slide {
        width: 300px;
        height: 400px;
        position: absolute;

        top: 52%;
        transform: translateY(-50%);
        z-index: 39;
        background-position: center;
        background-size: cover;
        border-radius: 20px;
        box-shadow: 0 20px 30px rgba(255,255,255,0.3) inset;
        transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
    }
    .resort-slide:nth-child(1), 
    .resort-slide:nth-child(2) {
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        transform: none;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
    }
    
    .resort-slide:nth-child(3) { left: 60%; }
    .resort-slide:nth-child(4) { left: calc(60% + 220px); }
    .resort-slide:nth-child(5) { left: calc(60% + 440px); }
    .resort-slide:nth-child(6) { left: calc(60% + 660px); opacity: 0; }
    
    .slide-content {
        width: min(30vw,400px);
        position: absolute;
        top: 46%;
        left: 5rem;
        transform: translateY(-50%);
       
        color: white;
        text-shadow: 0 3px 8px rgba(0,0,0,0.5);
        opacity: 0;
        display: none;
    }
    
    .slide-content .title {

        text-transform: uppercase;
        font-size: 3.4rem;
        font-weight: 1000;
    }
    
    .slide-content .description {
        line-height: 1.7;
        margin: 1rem 0 1.5rem;
        font-size: 1rem;
        font-weight: 600;
    }
    
    /* .slide-content button {
        width: fit-content;
        background-color: rgba(0,0,0,0.1);
        color: white;
        border: 2px solid white;
        border-radius: 0.25rem;
        padding: 0.75rem;
        cursor: pointer;
    }
     */
    .resort-slide:nth-of-type(2) .slide-content {
        display: block;
        animation: slideShow 0.75s ease-in-out 0.3s forwards;
    }
    
    @keyframes slideShow {
        0% {
            filter: blur(5px);
            transform: translateY(calc(-50% + 75px));
        }
        100% {
            opacity: 1;
            filter: blur(0);
        }
    }
    
    .slider-nav {
        position: absolute;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 5;
        user-select: none;
    }
    
    .slider-nav .nav-btn {
        background: rgba(248, 149, 0, 0.2);
        border: none;
        color: #F89500;
        margin: 0 0.25rem;
        padding: 0.75rem;
        border-radius: 50%;
        cursor: pointer;
        width: 30px;
    height: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    }

    .slider-nav .nav-btn:hover {
    background: #F89500;
    color: #111;
    transform: scale(1.1);
}
    
    
    @media (width > 650px) and (width < 900px) {
        .slide-content {
            width: min(30vw,400px);
        }
        .slide-content .title { font-size: 1rem; }
        .slide-content .description { font-size: 0.7rem; }
        .slide-content button { font-size: 0.7rem; }
        
        .resort-slide {
            width: 160px;
            height: 270px;
        }
        
        .resort-slide:nth-child(3) { left: 50%; }
        .resort-slide:nth-child(4) { left: calc(50% + 170px); }
        .resort-slide:nth-child(5) { left: calc(50% + 340px); }
        .resort-slide:nth-child(6) { left: calc(50% + 510px); opacity: 0; }
    }
    
    @media (width < 650px) {
        .slide-content {
            width: min(40vw,400px);
        }
        .slide-content .title { font-size: 0.9rem; }
        .slide-content .description { font-size: 0.65rem; }
        .slide-content button { font-size: 0.7rem; }
        
        .resort-slide {
            width: 130px;
            height: 220px;
        }
        
        .resort-slide:nth-child(3) { left: 50%; }
        .resort-slide:nth-child(4) { left: calc(50% + 140px); }
        .resort-slide:nth-child(5) { left: calc(50% + 280px); }
        .resort-slide:nth-child(6) { left: calc(50% + 420px); opacity: 0; }
    }
    .resort-slider-container::after{
        content: "";
        display: block;
        box-shadow: 10px 10px 40px #00102A;
    }
/* SLIDER SECTION ENDS */

/* ABOUT SECTION STARTS */

        
.container11 {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.row11 {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.align-items-center {
    align-items: center;
}

/* About Section - Main Container */
.about-section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--dark-bg), #1a1a1a);
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/cab.avif') center/cover;
    opacity: 0.05;
    z-index: 0;
}
.bg00::before{
    background: url('../img/s1.avif') center/cover;
}


/* Top Shadow */
.about-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

/* Image Composition */
.about-images {
    position: relative;
    height: auto;
    min-height: 350px;
    margin-bottom: 40px;
}

.about-main-img {
    position: relative;
    width: 100%;
    height: 300px;
    border: 10px solid rgba(248, 149, 0, 0.1);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    margin-bottom: 20px;
}

.about-secondary-img {
    position: relative;
    width: 100%;
    height: 250px;
    border: 8px solid #000;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    overflow: hidden;
    margin-left: auto;
}

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

.about-decor {
    display: none;
}

/* Content Area */
.about-content {
    position: relative;
    z-index: 2;
}

.about-header {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.about-title {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-light);
}

.about-title span {
    color: var(--primary-color);
}

.about-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
    margin: 0 auto 15px auto;
}

.about-subtitle {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.about-text {
    font-size: 1rem;
    color: var(--text-light);
    opacity: 0.9;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
}

/* Features */
.about-features {
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    margin-bottom: 20px;
    align-items: flex-start;
}

.about-feature-icon {
    background: rgba(248, 149, 0, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}
.about-feature-icon svg{
    color: var(--primary-color);
}
.about-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-feature-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.about-feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.about-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}


.about-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
    border: none;
    color: var(--text-dark);
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid var(--primary-color);
    text-align: center;
    width: 100%;
    max-width: 250px;
}

.about-link {
    text-transform: uppercase;
    display: flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    
}
.btn_out{
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    padding: 15px;
    &:hover{
        background-color: var(--primary-color);
        color: var(--secondary-color);
    }
}

.about-link i {
    font-size: 0.7rem;
    margin-left: 5px;
}

/* Hover Effects */
.about-main-img:hover .about-img,
.about-secondary-img:hover .about-img {
    transform: scale(1.05);
}

.about-feature:hover .about-feature-title {
    color: var(--primary-color);
}
.about-feature:hover .about-feature-title {
    color: var(--primary-color);
}

.about-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(248, 149, 0, 0.3);
    color: var(--text-light);
}

/* Responsive Breakpoints */
@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .about-section {
        padding: 100px 0;
    }
    
    .about-images {
        min-height: 450px;
    }
    
    .about-main-img {
        height: 350px;
    }
    
    .about-secondary-img {
        height: 300px;
        width: 80%;
    }
    
    .about-header,
    .about-text {
        text-align: left;
    }
    
    .about-divider {
        margin: 0 0 15px 0;
    }
    
    .about-actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    
    .about-btn {
        width: auto;
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .about-shadow {
        height: 150px;
    }
    
    .about-images {
        height: 550px;
        margin-bottom: 0;
        perspective: 1500px;
    }
    
    .about-main-img {
        position: absolute;
        width: 80%;
        height: 80%;
        top: 0;
        left: 0;
        transform: rotateY(-5deg);
        transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
        margin-bottom: 0;
    }
    
    .about-secondary-img {
        position: absolute;
        width: 50%;
        height: 50%;
        bottom: 0;
        right: 0;
        transform: rotate(-5deg);
        transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
    }
    
    .about-decor {
        display: block;
        position: absolute;
        width: 80px;
        height: 80px;
        border: 4px solid var(--primary-color);
        bottom: 62px;
        left: -15px;
        rotate: 35deg;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-images:hover .about-main-img {
        transform: rotateY(0deg);
    }
    
    .about-images:hover .about-secondary-img {
        transform: rotate(0deg);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .about-title {
        font-size: 3rem;
    }
    
    .about-feature-icon {
        width: 60px;
        height: 60px;
        margin-right: 20px;
    }
    
    .about-feature i {
        font-size: 1.5rem;
    }
    
    .about-feature-title {
        font-size: 1.25rem;
    }
    
    .about-feature-desc {
        font-size: 1rem;
    }
}
.ab1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/cars.avif') center center / cover no-repeat;

    opacity: 0.05;
    z-index: 0;
}
/* ABOUT SECTION ENDS */

/* SERVICE SECTION STARTS */
 /* SERVICES SECTION STYLES */
 .about-section {
    padding: 100px 0;
    position: relative;
    background-color: #0a0a0a;
}

.about-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 300;
}

.section-title span {
    color: #F89500;
    font-weight: 600;
}

.section-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, #F89500, transparent);
    margin: 0 auto 20px;
}

.section-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.services-slider-container {
    position: relative;
    z-index: 2;
    padding: 20px 0 50px;
    overflow: hidden;
}

.services-slider-wrapper {
    width: 100%;
    overflow: visible;
}

.services-slider {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    width: max-content;
    padding: 10px;
}

.service-card {
    max-width: 450px;
    background: rgba(20, 20, 20, 0.8);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.5s ease;
    flex-shrink: 0;
    border: 1px solid rgba(248, 149, 0, 0.1);
}

@media (max-width: 992px) {
    .service-card {
        min-width: 300px;
    }
}

@media (max-width: 768px) {
    .service-card {
        min-width: 280px;
    }
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border-color: rgba(248, 149, 0, 0.3);
}

.service-media {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.5s ease;
}

.service-card:hover .service-overlay {
    opacity: 1;
    background: rgba(0,0,0,0.7);
}

.overlay-content {
    text-align: center;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.service-card:hover .overlay-content {
    transform: translateY(0);
}

.pulse-icon {
    font-size: 3rem;
    color: #F89500;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

.overlay-content h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.rating-stars {
    color: #F89500;
    font-size: 0.9rem;
}

.service-content {
    padding: 25px;
}

.service-title {
    color: #fff;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 500;
    position: relative;
    padding-bottom: 10px;
}

.service-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.service-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 25px;
}

.service-features span {
    color: rgba(255,255,255,0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.service-features i {
    color: #F89500;
}

.service-card:hover .service-features span {
    transform: translateX(5px);
}

.service-cta {
    background: transparent;
    color: #F89500;
    border: 1px solid #F89500;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-cta:hover {
    background: #F89500;
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(248, 149, 0, 0.3);
}

.arrow-hover {
    transition: transform 0.3s ease;
}

.service-cta:hover .arrow-hover {
    transform: translateX(5px);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 20px;
}

.slider-prev, .slider-next {
    background: rgba(248, 149, 0, 0.2);
    border: none;
    color: #F89500;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.slider-prev:hover, .slider-next:hover {
    background: #F89500;
    color: #111;
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #F89500;
    transform: scale(1.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive styles */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-slider {
        gap: 20px;
    }
    
    .service-media {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card {
        max-width: 200px;
    }
}

 @media (max-width: 768px) {
    .services-slider-container {
        overflow: hidden;
        padding: 30px 15px;
        width: 107vw;
        margin-left: -15px;
    }
    
    .services-slider {
        display: flex;
        width: 100%;
        gap: 0;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
    
    .service-card {
        min-width: calc(100% - 30px); 
        width: calc(100% - 30px);
        scroll-snap-align: center;
        margin: 0 15px;
        flex-shrink: 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    
    .services-slider::-webkit-scrollbar {
        display: none;
    }
    
    .slider-controls {
        margin-top: 25px;
        position: relative;
        z-index: 3;
    }
    
    .slider-prev, 
    .slider-next {
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .slider-prev {
        left: 5px;
    }
    
    .slider-next {
        right: 5px;
    }
    
    .slider-dots {
        margin-top: 15px;
    }
}
/* SERVICE SECTION ENDS */

 /* ROOM TYPES SECTION STARTS */
.room_section {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: linear-gradient(135deg, var(--dark-bg), #1a1a1a);
    padding: 100px 0;
}

.room_section::before {
    /* content: '';
    position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 100%;
    background: url('../img/cab.avif') center/cover;
    opacity: 0.05;
    z-index: 0;
}

    
 .rooms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.room-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.room-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.room-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.room-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.room1 .room-badge {
    background: #F89500;
}

.room2 .room-badge {
    background: #00102A;
}

.room3 .room-badge {
    background: #4CAF50;
}

.room-content {
    padding: 25px;
}

.room-title {
    font-size: 1.5rem;
    color: #00102A;
    margin-bottom: 10px;
}

.room-description {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.room-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #555;
    font-size: 0.9rem;
}

.room-features i {
    color: var(--primary-color);
}

.room-price {
    font-size: 1.3rem;
    color: #00102A;
    font-weight: 600;
    margin-bottom: 20px;
}

.room-actions {
    display: flex;
    gap: 15px;
}

.view-details-btn, .book-now-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-details-btn {
    background: transparent;
    border: 1px solid #00102A;
    color: #00102A;
}

.book-now-btn {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}

.view-details-btn:hover {
    background: #f0f0f0;
}

.book-now-btn:hover {
    background: #e68600;
    border-color: #e68600;
}
.room-shadow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 26%, transparent 60%);
    z-index: 0;
}

@media (max-width: 768px) {
    .room-card{
        max-width: 100%;
        margin: 10px;
    }
}
 /* ROOM TYPES SECTION ENDS */

 /* FACILITIES SECTION STYLES */
 .amenities-section {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    overflow: hidden;
}

.amenities-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent);
    z-index: 1;
}

.amenities-section .container {
    position: relative;
    z-index: 1;
}

.amenities-section .section-title {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.amenities-section .section-title span {
    color: var(--primary-color);
}

.amenities-section .section-subtitle {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}



.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.amenity-item {
    text-align: center;
    padding: 40px 25px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

.amenity-item:hover {
    transform: translateY(-10px);
    background: rgba(0, 0, 0, 0.8);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.amenity-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.amenity-item:hover .amenity-icon {
    transform: scale(1.1);
}

.amenity-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: #f6f6f6;
    letter-spacing: 1px;
}

.amenity-description {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.view-all-amenities {
    text-align: center;
    margin-top: 60px;
}

.amenities-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: var(--primary-color);
    color: rgb(0, 0, 0);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.amenities-link:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateX(5px);
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(230, 134, 0, 0.3);
}


@media (max-width: 992px) {
    .amenities-section {
        background-attachment: scroll;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .amenities-section {
        padding: 80px 0;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .amenity-item {
        padding: 30px 20px;
    }
}

@media (max-width: 576px) {
    .amenities-section .section-title {
        font-size: 2rem;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .amenity-icon {
        font-size: 2.5rem;
    }
    .slide-content{
        left: 2rem;
    }
    .amenities-link {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 15px;
        background: var(--primary-color);
        color: white;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        border: 2px solid var(--primary-color);
    }
}

/*  Facilities SECTION ENDS  */
    /* TESTIMONIALS SECTION STYLES */
    .testimonial-bg {
        position: relative;
        padding: 100px 0;
        background-size: cover;
        background-position: center;
        background-image: url('../img/air.avif');
        color: white;
    }
    
    .testimonials-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        z-index: 0;
    }
    
    .testimonials-section .container {
        position: relative;
        z-index: 1;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .testimonial-item {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border-radius: 10px;
        padding: 30px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.4s ease;
    }
    
    .testimonial-item:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .quote-icon {
        color: var(--primary-color);
        font-size: 1.8rem;
        margin-bottom: 15px;
        opacity: 0.7;
    }

    .testimonial-text {
        font-style: italic;
        line-height: 1.8;
        margin-bottom: 25px;
        color: rgba(255, 255, 255, 0.9);
    }

    .testimonial-author {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .author-avatar img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid var(--primary-color);
    }

    .author-name {
        font-weight: 600;
        margin-bottom: 5px;
    }

    .author-location {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
        margin-bottom: 5px;
    }

    .rating-stars {
        color: var(--primary-color);
        font-size: 0.9rem;
    }

    /* FOOTER SECTION STYLES */
    .footer-section {
        background: #0a0e23;
        color: white;
       
    }

    .footer-top {
        padding: 80px 0 50px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 25px;
        position: relative;
        padding-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .footer-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 50px;
        height: 2px;
        background: var(--primary-color);
    }

    .footer-about {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        transition: all 0.3s ease;
    }

    .social-links a:hover {
        background: var(--primary-color);
        transform: translateY(-3px);
    }

    .footer-links {
        list-style: none;
        padding: 0;
    }

    .footer-links li {
        margin-bottom: 12px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .footer-links a:hover {
        color: var(--primary-color);
        padding-left: 5px;
    }

    .footer-contact {
        list-style: none;
        padding: 0;
    }

    .footer-contact li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
    }

    .footer-contact i {
        color: var(--primary-color);
        margin-top: 8px;
        font-size: 20px;
    }

    .newsletter-text {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .newsletter-form {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        padding: 12px 15px;
        border: none;
        border-radius: 5px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }

    .newsletter-form input::placeholder {
        color: rgba(255, 255, 255, 0.6);
    }

    .newsletter-form button {
        padding: 12px 20px;
        background: var(--primary-color);
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-weight: 600;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .newsletter-form button:hover {
        background: #e68600;
        transform: translateY(-2px);
    }

    .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-between;
        text-align: center;
    }

    .copyright {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .footer-legal {
        display: flex;
        gap: 20px;
    }

    .footer-legal a {
        color: rgba(255, 255, 255, 0.5);
        font-size: 0.85rem;
        transition: all 0.3s ease;
    }

    .footer-legal a:hover {
        color: var(--primary-color);
    }

    /* RESPONSIVE STYLES */
    @media (min-width: 768px) {
        .footer-bottom-content {
            flex-direction: row;
            text-align: left;
        }
        
        .copyright {
            margin-bottom: 0;
        }
    }

    @media (max-width: 768px) {
        .testimonials-section,
        .footer-top {
            padding: 60px 0;
        }
        
        .testimonials-grid {
            grid-template-columns: 1fr;
        }
    }
    .amenities-link2:hover{
       
         
            padding: 12px 20px;
            background: var(--primary-color);
            color: rgb(0, 0, 0);
            border-radius: 50px;
            font-weight: 600;
            /* text-transform: uppercase; */
            /* letter-spacing: 1px;
            font-size: 0.9rem; */
            transition: all 0.3s ease;
            border: 2px solid var(--primary-color);
    }
    .testimonial-bg {
        position: relative;
        background: url('../img/cab.avif') no-repeat center center/cover;
        overflow: hidden;
    }
    .testimonial-bg2{
        position: relative;
        background: url('../img/car.avif') no-repeat center center/cover;
        overflow: hidden;
    }
    .testimonial-bg3{
        position: relative;
        background: url('../img/cor.avif') no-repeat center center/cover;
        overflow: hidden;
    }
    .testimonial-bg4{
        position: relative;
        background: url('../img/cars.avif') no-repeat center center/cover;
        overflow: hidden;
    }
    
    .testimonials-overlay::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      
        background: linear-gradient(to bottom, rgba(0, 0, 0, 1.6), rgba(0,0,0,0.2));
        z-index: 1;
    }
    
    .testimonials-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
     
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }
    
    /* Ensure content stays above the overlay */
    .room-types-section > .container,
    .room-types-section .section-header,
    .testimonials-grid,
    .testimonial-item {
        position: relative;
        z-index: 2;
    }
    
    /* PROPERTY LISTING STARTS */
     /* PROPERTY LISTINGS SECTION STYLES */
     .property-listings-section {
        padding: 100px 0;
        background: #f8f9fa;
    }
    
    .property-listings-section .section-title {
        color: #424242;
    }
    
    .property-listings-section .section-title span {
        color: var(--primary-color);
    }
    
    .property-listings-section .section-divider {
        background: linear-gradient(to right, transparent, var(--primary-color), transparent);
        height: 2px;
        width: 100px;
        margin: 20px auto;
    }
    
    .property-listings-section .section-subtitle {
        color: #666;
        margin-bottom: 30px;
    }
    
    .filter-controls {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 40px;
        justify-content: center;
    }
    
    .filter-group {
        display: flex;
        align-items: center;
        gap: 10px;
    }
    
    .filter-group label {
        font-weight: 500;
        color: #ffffff;
    }
    
    .filter-group select {
        padding: 8px 15px;
        border: 1px solid #ddd;
        border-radius: 6px;
        background: white;
        font-family: 'Poppins', sans-serif;
    }
    
    .property-listings-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
    }
    
    .property-card {
        background: white;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
        position: relative;
    }
    
    .property-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .property-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--primary-color);
        color: white;
        padding: 5px 12px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 500;
        z-index: 1;
    }
    
    .property-image {
        height: 250px;
        background-size: cover;
        background-position: center;
        position: relative;
    }
    
    .property-price {
        position: absolute;
        bottom: 20px;
        left: 20px;
        background: rgba(0, 0, 0, 0.7);
        color: white;
        padding: 8px 15px;
        border-radius: 5px;
        font-weight: 600;
        font-size: 1.2rem;
    }
    
    .property-price span {
        font-size: 0.9rem;
        font-weight: normal;
        opacity: 0.8;
    }
    
    .property-actions {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .wishlist-btn {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.9);
        border: none;
        color: #555;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .wishlist-btn:hover {
        background: var(--primary-color);
        color: white;
    }
    
    .property-details {
        padding: 20px;
    }
    
    .property-title {
        font-size: 1.2rem;
        margin-bottom: 8px;
        color: #00102A;
    }
    
    .property-location {
        color: #666;
        margin-bottom: 15px;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .property-features {
        display: flex;
        gap: 15px;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .property-features span {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 0.9rem;
        color: #555;
    }
    
    .property-amenities {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .property-amenities span {
        background: #f5f5f5;
        padding: 5px 10px;
        border-radius: 20px;
        font-size: 0.8rem;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .property-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .property-rating {
        color: var(--primary-color);
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .property-rating span {
        color: #777;
        font-weight: normal;
        font-size: 0.8rem;
    }
    
    .view-details-btn {
        color: var(--primary-color);
        font-weight: 500;
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
    }
    
    .view-details-btn:hover {
        color: #e68600;
        text-decoration: underline;
    }
    
    .view-all-properties {
        text-align: center;
        margin-top: 50px;
    }
    
    .view-all-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 30px;
        background: var(--primary-color);
        color: white;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .view-all-btn:hover {
        background: #e68600;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(230, 134, 0, 0.3);
    }
    
    /* RESPONSIVE STYLES */
    @media (max-width: 992px) {
        .property-listings-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
    }
    
    @media (max-width: 768px) {
        .property-listings-section {
            padding: 80px 0;
        }
        
        .filter-controls {
            flex-direction: column;
            align-items: flex-start;
        }
        
        .filter-group {
            width: 100%;
        }
        
        .filter-group select {
            flex-grow: 1;
        }
    }
    
    @media (max-width: 576px) {
        .property-listings-grid {
            grid-template-columns: 1fr;
        }
        
        .property-image {
            height: 220px;
        }
    }
    /* PROPERTY LISTING ENDS */

    /* BREADCRUM */
    .b_top1 {
        position: relative;
        min-height: 250px;
        overflow: hidden;
        display: flex;
        align-items: center;
        background: linear-gradient(rgba(0, 16, 42, 0.7), rgba(0, 0, 0, 0.7));
    }
    
    .b_top2 {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    
    .b_top2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .b_top3 {
        width: 100%;
    }
    
    .b_top4 {
        width: 100%;
        text-align: center;
        padding: 160px 10px 90px;
    }
    
    .b_top5 {
        font-size: 4rem;
        font-weight: 700;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: white;
    }
    
    .b_top5 span {
        color: var(--primary-color);
    }
    
    .b_top6 {
        display: inline-flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        padding: 10px 25px;
        border-radius: 50px;
    }
    
    .b_top6 a {
        color: var(--text-light);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .b_top6 a:hover {
        color: var(--primary-color);
    }
    
    .b_top7 {
        margin: 0 10px;
        color: var(--text-muted);
    }
    /* BREADCRUMB END */
    /* ABOUT HISTORY STARTS */
    .history-section {
        background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    .history-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
        opacity: 0.03;
        z-index: 0;
    }

    .container {
        position: relative;
        z-index: 1;
    }

    .history-img-container {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
        height: 450px;
    }

    .about_history {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .about_history img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    .decorative-frame {
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        border: 2px solid rgba(248, 149, 0, 0.3);
        pointer-events: none;
    }

    .year-badge {
        position: absolute;
        top: 30px;
        right: 30px;
        background: rgba(248, 149, 0, 0.9);
        color: #111;
        padding: 8px 20px;
        border-radius: 30px;
        font-weight: 700;
        font-size: 1.1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .history-content {
        padding-left: 50px;
    }

    .section-tag {
        font-size: 0.9rem;
        color: var(--primary-color);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .history-title {
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 25px;
        line-height: 1.3;
        position: relative;
    }

    .history-title span {
        color: var(--primary-color);
    }

    .history-title .underline {
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 3px;
        background: var(--primary-color);
    }

    .history-text {
        color: rgba(255,255,255,0.8);
        line-height: 1.8;
        margin-bottom: 30px;
        font-size: 1.05rem;
    }

    .highlight-item {
        display: flex;
        margin-bottom: 15px;
        align-items: flex-start;
    }

   

    .highlight-item h4 {
        color: #fff;
        margin: 0 0 5px 0;
        font-size: 1.1rem;
    }

    .highlight-item p {
        color: rgba(255,255,255,0.6);
        margin: 0;
        font-size: 0.95rem;
    }

    .history-cta {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .history-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
        color: #111;
        padding: 14px 30px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .history-btn svg {
        margin-left: 8px;
    }

    .history-video {
        color: #fff;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .video-icon {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        transition: all 0.3s ease;
    }

    /* Hover Animations */
    .history-img-container:hover img {
        transform: scale(1.1) rotate(1deg);
    }

    .history-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(248, 149, 0, 0.3);
    }

    .history-video:hover {
        color: var(--primary-color);
    }

    .history-video:hover .video-icon {
        background: rgba(248, 149, 0, 0.2) !important;
        transform: scale(1.1);
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .history-content {
            padding-left: 0 !important;
            padding-top: 40px;
        }

        .history-img-container {
            height: 400px !important;
        }
    }

    @media (max-width: 768px) {
        .history-section {
            padding: 70px 0 !important;
        }

        .history-title {
            font-size: 2rem !important;
        }

        .history-img-container {
            height: 350px !important;
        }
    }
    /* ABOUT HISTORY ENDS */

    /* ATTRACTION STARTS */
    .att_1 {
        background: linear-gradient(to bottom, #111, #1a1a1a);
        padding: 100px 0;
        position: relative;
    }

    

    .att_3 {
        position: relative;
        z-index: 1;
    }

    .att_4 {
        font-size: 2.5rem;
        color: #fff;
        margin-bottom: 15px;
        font-weight: 700;
    }

    .att_5 {
        color: #f89500;
    }

    .att_6 {
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, #f89500, #00102a);
        margin: 0 auto 15px auto;
    }

    .att_7 {
        color: #ccc;
        letter-spacing: 1px;
        text-transform: uppercase;
        font-size: 0.9rem;
    }

    .att_8 {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        height: 400px;
        transition: all 0.4s ease;
    }

    .att_9 {
        width: 100%;
        height: 100%;
        position: relative;
        overflow: hidden;
    }

    .att_10 {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .att_11 {
        position: absolute;
        bottom: 0; left: 0;
        width: 100%;
        padding: 30px;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    }

    .att_12 {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .att_13 {
        color: rgba(255,255,255,0.8);
        margin: 0;
        font-size: 0.9rem;
    }

    .att_14 {
        position: absolute;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: linear-gradient(135deg, rgba(248,149,0,0.8), rgba(0,16,42,0.8));
        opacity: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 30px;
        transition: all 0.4s ease;
        color: #fff;
        text-align: center;
    }

    .att_14 h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .att_14 p {
        color: rgba(255,255,255,0.9);
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .att_14 a {
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        letter-spacing: 1px;
        border: 2px solid #fff;
        padding: 8px 25px;
        border-radius: 50px;
        transition: all 0.3s ease;
    }

    .att_15 {
        display: inline-block;
        background: linear-gradient(135deg, #f89500, #00102a);
        color: #fff;
        padding: 14px 35px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 1px;
        margin-top: 20px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(248,149,0,0.3);
    }

    .att_8:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

    .att_8:hover .att_10 {
        transform: scale(1.1);
    }

    .att_8:hover .att_14 {
        opacity: 1;
    }

    .att_15:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(248,149,0,0.4);
    }
    /* ATTRACTION ENDS */

    
    /* Policy Content */
    .policy-section {
        padding: 80px 0;
        background: var(--dark-bg);
    }
    
    .policy-container {
        background: rgba(255,255,255,0.03);
        border-radius: 15px;
        padding: 60px;
        border: 1px solid rgba(255,255,255,0.05);
        backdrop-filter: blur(5px);
    }
    
    .policy-header {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .pp1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .pp1 span {
        color: var(--primary-color);
    }
    
    
    
    .last-updated {
        color: var(--text-light);
        font-style: italic;
    }
    
    /* Policy Content */
    .policy-content h2 {
        color: var(--primary-color);
        font-size: 1.8rem;
        margin: 40px 0 20px;
        font-weight: 600;
    }
    
    .policy-content h3 {
        color: var(--text-secondary);
        font-size: 1.4rem;
        margin: 30px 0 15px;
        font-weight: 500;
    }
    
    .policy-content p {
        color: var(--text-light);
        margin-bottom: 20px;
    }
    
    .policy-content ul {
        color: var(--text-secondary);
        margin-bottom: 25px;
        padding-left: 20px;
    }
    
    .policy-content li {
        margin-bottom: 10px;
        position: relative;
    }
    
    .policy-content li i {
        color: var(--primary-color);
        
    }
    
    .highlight-box {
        background: rgba(248,149,0,0.05);
        border-left: 4px solid var(--primary-color);
        padding: 20px;
        margin: 30px 0;
        border-radius: 0 5px 5px 0;
    }
    
    .highlight-box p {
        margin-bottom: 0;
        color: var(--text-secondary);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
        
        
        .policy-container {
            padding: 40px;
        }
    }
    
    @media (max-width: 768px) {
        .policy-hero {
            height: 40vh;
            min-height: 350px;
        }
        
        .pp1 {
            font-size: 2rem;
        }
        
        .policy-container {
            padding: 30px;
        }
    }
    
    @media (max-width: 576px) {
        .policy-hero {
            height: 50vh;
        }
        
        .policy-container {
            padding: 25px 20px;
        }
    }
    ul li{
        list-style: none;
    }

    /* TERMS AND CONDITION STARTS */
     
      
        /* Terms Content */
        .terms-section {
            padding: 80px 0;
            background: var(--dark-bg);
        }
        
        .terms-container {
            background: rgba(255,255,255,0.03);
            border-radius: 15px;
            padding: 60px;
            border: 1px solid rgba(255,255,255,0.05);
            backdrop-filter: blur(5px);
        }
        
        .terms-header {
            margin-bottom: 50px;
            text-align: center;
        }
        
        .pp1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .pp1 span {
            color: var(--primary-color);
        }
        
       
        .last-updated {
            color: var(--text-light);
            font-style: italic;
        }
        
        /* Terms Content Styling */
        .term_1, .term_2, .term_3, .term_4, 
        .term_5, .term_6, .term_7, .term_8,
        .term_9, .term_10, .term_11, .term_12 {
            margin-bottom: 40px;
        }
        
        .terms-content h2 {
            color: var(--primary-color);
            font-size: 1.8rem;
            margin: 40px 0 20px;
            font-weight: 600;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }
        
        .terms-content h3 {
            color: var(--text-secondary);
            font-size: 1.4rem;
            margin: 30px 0 15px;
            font-weight: 500;
        }
        
        .terms-content p {
            color: var(--text-light);
            margin-bottom: 20px;
        }
        
        .terms-content ul {
            color: var(--text-light);
            margin-bottom: 25px;
            padding-left: 20px;
        }
        
        .terms-content li {
            margin-bottom: 10px;
            position: relative;
        }
        
        .terms-content li i {
            color: var(--primary-color);
            
        }
        
        .highlight-box {
            background: rgba(248,149,0,0.05);
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 30px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .highlight-box p {
            margin-bottom: 0;
            color: var(--text-secondary);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .terms-container {
                padding: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .terms-hero {
                height: 40vh;
                min-height: 350px;
            }
            
           
            .pp1 {
                font-size: 2rem;
            }
            
            .terms-container {
                padding: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .terms-hero {
                height: 50vh;
            }
            
            
            .terms-container {
                padding: 25px 20px;
            }
        }
        /* TERMS AND CONDITION ENDS */

        /* CONTACT US SECTION STARTS */
        .con_us1 {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }
        
        @media (min-width: 768px) { .con_us1 { max-width: 720px; } }
        @media (min-width: 992px) { .con_us1 { max-width: 960px; } }
        @media (min-width: 1200px) { .con_us1 { max-width: 1140px; } }
        
        /* Hero Section */
        .con_us2 {
            position: relative;
            min-height: 200px;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(0, 16, 42, 0.7), rgba(0, 0, 0, 0.7));
        }
        
        .con_us3 {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }
        
        .con_us3 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        
        .con_us4 {
            width: 100%;
            text-align: center;
            padding: 50px 20px;
        }
        
        .con_us5 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 0px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .con_us5 span {
            color: var(--primary-color);
        }
        
        .con_us6 {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 50px;
        }
        
        .con_us6 a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .con_us6 a:hover {
            color: var(--primary-color);
        }
        
        .con_us7 {
            margin: 0 10px;
            color: var(--text-secondary);
        }
        
        /* Contact Section */
        .con_us8 {
            padding: 100px 0;
            position: relative;
            background: var(--dark-bg);
        }
        
        .con_us9 {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .con_us10 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .con_us10 span {
            color: var(--primary-color);
        }
        
        .con_us11 {
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--hover-color));
            margin: 0 auto 20px auto;
        }
        
        .con_us12 {
            color: var(--text-secondary);
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Contact Cards */
        .con_us13 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(291px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }
        
        .con_us14 {
            background: rgba(255,255,255,0.03);
            border-radius: 15px;
            padding: 40px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(255,255,255,0.05);
            backdrop-filter: blur(5px);
        }
        
        .con_us14:hover {
            transform: translateY(-10px);
            background: rgba(248, 149, 0, 0.05);
            border-color: rgba(248, 149, 0, 0.2);
            box-shadow: 0 15px 30px rgba(0,0,0,0.3);
        }
        
        .con_us15 {
            width: 70px;
            height: 70px;
            background: rgba(248,149,0,0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
        }
        
        .con_us15 i {
            color: var(--primary-color);
            font-size: 1.8rem;
        }
        
        .con_us16 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .con_us17 {
            color: var(--text-secondary);
            line-height: 1.8;
        }
        
        .con_us17 a {
            color: var(--text-light);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .con_us17 a:hover {
            color: var(--primary-color);
        }
        
        /* Contact Form */
        .con_us18 {
            background: rgba(255,255,255,0.03);
            border-radius: 15px;
            padding: 60px;
            border: 1px solid rgba(255,255,255,0.05);
            backdrop-filter: blur(5px);
            margin: 0 auto;
        }
        
        .con_us19 {
            font-size: 1.8rem;
            font-weight: 600;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .con_us20 {
            margin-bottom: 25px;
        }
        
        .con_us21 {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-light);
        }
        
        .con_us22 {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 8px;
            color: var(--text-light);
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .con_us22:focus {
            outline: none;
            border-color: var(--primary-color);
            background: rgba(248,149,0,0.05);
            box-shadow: 0 0 0 3px rgba(248,149,0,0.1);
        }
        
        textarea.con_us22 {
            min-height: 180px;
            resize: vertical;
        }
        
        .con_us23 {
            background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
            color: var(--text-dark);
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 40px auto 0;
            width: fit-content;
        }
        
        .con_us23:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(248,149,0,0.3);
        }
        
        
        .con_us25 {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(0,0,0,0.3);
            /* height: 500px; */
            border: 1px solid rgba(255,255,255,0.1);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 992px) {
            .con_us5 {
                font-size: 3rem;
            }
            
            .con_us18 {
                padding: 40px;
            }
        }
        
        @media (max-width: 768px) {
            .con_us2 {
                height: 50vh;
                min-height: 400px;
            }
            
            .con_us5 {
                font-size: 2.5rem;
            }
            
            .con_us10 {
                font-size: 2rem;
            }
            
            .con_us18 {
                padding: 30px;
            }
            
            .con_us25 {
                height: 400px;
            }
        }
        
        @media (max-width: 576px) {
            .con_us2 {
                height: 60vh;
            }
            
            .con_us5 {
                font-size: 2rem;
            }
            
            /* .con_us13 {
                grid-template-columns: 1fr;
            } */
            .b_top5{
                font-size: 2.2rem;
            }
            .con_us18 {
                padding: 25px 20px;
            }
            
            .con_us25 {
                height: 300px;
            }
        }
        /* CONTACT US SECTION ENDS */
        /* CAB CTA STARTS */
        .CAB_11 {
            /* background: linear-gradient(135deg, var(--secondary-color), #001a3a); */
            background: #0a0e23;
            padding: 20px 0;
            position: relative;
            overflow: hidden;
        }
        
        .CAB_11::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(248,149,0,0.1) 0%, transparent 70%);
            animation: CAB_rotate 20s linear infinite;
            z-index: 0;
        }
        
        @keyframes CAB_rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .CAB_12 {
            position: relative;
            z-index: 1;
            text-align: center;
            display: flex;
            justify-content: center;
        }
        
        .CAB_13 {
            display: flex;
            align-items: center;
            background: rgba(0,0,0,0.4);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(248,149,0,0.2);
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform: scale(1);
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            animation: CAB_pulse 2s infinite alternate;
            max-width: 800px;
            /* width: 100%; */
        }
        
        @keyframes CAB_pulse {
            0% { box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
            100% { box-shadow: 0 10px 40px rgba(248,149,0,0.2); }
        }
        
        .CAB_14 {
            font-size: 3rem;
            color: var(--primary-color);
            margin-right: 30px;
            animation: CAB_bounce 3s infinite;
            flex-shrink: 0;
        }
        
        @keyframes CAB_bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        
        .CAB_15 {
            text-align: left;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .CAB_16 {
            margin: 0 0 10px 0;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--text-light);
            line-height: 1.3;
        }
        
        .CAB_phone-container {
            display: flex;
            align-items: center;
            margin: 5px 0 15px 0;
        }
        
        .CAB_17 {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 700;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            display: inline-block;
            margin-left: 10px;
        }
        
        .CAB_17:hover {
            color: var(--hover-color);
            transform: translateX(5px);
        }
        
        .CAB_18 {
            margin: 0;
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.5;
            max-width: 500px;
        }
        
        .CAB_button-container {
            margin-top: 20px;
            display: flex;
            gap: 15px;
        }
        
        .CAB_19 {
            display: inline-block;
            padding: 12px 30px;
            background: rgba(248,149,0,0.1);
            color: var(--primary-color);
            border: 1px solid var(--primary-color);
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-align: center;
        }
        
        .CAB_19:hover {
            background: var(--primary-color);
            color: var(--text-dark);
            transform: translateY(-3px);
        }
        
        .CAB_19.primary {
            background: var(--primary-color);
            color: var(--text-dark);
        }
        
        .CAB_19.primary:hover {
            background: var(--hover-color);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .CAB_13 {
                flex-direction: column;
                text-align: center;
                padding: 25px;
            }
            
            .CAB_14 {
                margin-right: 0;
                margin-bottom: 20px;
                font-size: 2.5rem;
            }
            
            .CAB_15 {
                text-align: center;
                align-items: center;
            }
            
            .CAB_16 {
                font-size: 1.5rem;
            }
            
            .CAB_17 {
                font-size: 1.3rem;
            }
            
            .CAB_phone-container {
                justify-content: center;
            }
            
            .CAB_button-container {
                flex-direction: column;
                /* width: 100%; */

            }
            
            .CAB_19 {
                width: 100%;
            }
        }
        /* CAB CTA ENDS */
        /* STICKY CHAT BUTTON SECTION STARTS */
        .btn_fix1 {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
          }
          
          .btn_fix2 {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
            background: #25D366;
            color: white;
            border-radius: 50%;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            animation: btn_fix_pulse 2s infinite;
          }
          
          .btn_fix2:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            background: var(--secondary-color);
            animation: none;
          }
          
          .btn_fix3 {
            font-size: 34px;
            animation: btn_fix_wiggle 2.5s infinite;
          }
          
          /* Animations */
          @keyframes btn_fix_pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
          }
          
          @keyframes btn_fix_wiggle {
            0%, 100% { transform: rotate(0deg); }
            25% { transform: rotate(10deg); }
            75% { transform: rotate(-10deg); }
          }
          
          /* Responsive adjustments */
          @media (max-width: 768px) {
            .btn_fix1 {
              bottom: 20px;
              right: 20px;
            }
            
            .btn_fix2 {
              width: 50px;
              height: 50px;
            }
            
            .btn_fix3 {
              font-size: 28px;
            }
          }
          /* STICKY CHAT BUTTON SECTION ENDS */


          
/* Attractions Section Styles */
    .attractions-section {
        padding: 100px 0;
        position: relative;
    }

    .attractions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 50px;
    }

    .attraction-card {
        background: rgba(10,10,10,0.7);
        border-radius: 15px;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(255,255,255,0.1);
        height: 100%;
        display: flex;
        flex-direction: column;
        backdrop-filter: blur(5px);
    }

    .attraction-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.5);
        border-color: rgba(248, 149, 0, 0.3);
        background: rgba(20,20,20,0.8);
    }

    .attraction-img {
        position: relative;
        height: 250px;
        overflow: hidden;
    }

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

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

    .img-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    }

    .attraction-content {
        padding: 25px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .attraction-content h3 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: var(--text-light);
    }

    .attraction-content p {
        color: rgba(255, 255, 255, 0.8);;
        margin-bottom: 20px;
        flex-grow: 1;
    }

    .explore-btn {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
    }

    .explore-btn i {
        margin-left: 8px;
        transition: transform 0.3s ease;
    }

    .explore-btn:hover {
        color: var(--hover-color);
    }

    .explore-btn:hover i {
        transform: translateX(5px);
    }

    .view-all-btn {
        background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
        color: var(--text-dark);
        border: none;
        padding: 16px 40px;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 1rem;
        cursor: pointer;
        transition: all 0.3s ease;
        display: inline-flex;
        align-items: center;
    }

    .view-all-btn i {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .view-all-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(248,149,0,0.3);
    }

    .view-all-btn:hover i {
        transform: translateX(5px);
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .attractions-grid {
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .attractions-section {
            padding: 80px 0;
        }
        
        .attraction-img {
            height: 200px;
        }
    }

    @media (max-width: 576px) {
        .attractions-grid {
            grid-template-columns: 1fr;
        }
        
        .attraction-content {
            padding: 20px;
        }
    }
/* <!-- TOURIST ATTRACTIONS SECTION ENDS --> */