.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}.fadeinleft {
    opacity:0;
    transform: translateX(200px);
    transition: all 1.3s ease-out;
}

.fadeinright{
    opacity: 0;
    transform: translateX(-200px);
    transition: all 0.8s ease-out;
}

.fadeindown{
    opacity: 0;
    transform: translateY(-100px);
    transition: all 1.2s ease-out;
}

.fade-in{
    opacity:0;
    transition: all 1.3s ease-in;
}

.active-left,.active,.active-right,.active-down{
    opacity:1;
    transform: translateX(0);
    transform: translateY(0);
}



.fadein{
opacity: 0;
}   


 :root {
            --primary-color: #3b61dd;
            --secondary-color: #14212c;
            --light-color: #f8f9fa;
            --dark-color: #212529;
        }
        
        body {
            font-family: 'Jost', sans-serif;
            color: #555;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
            color: var(--secondary-color);
        }
        
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
       
        
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 20px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
           
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            text-align: center;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
           
            margin: 15px auto;
        }
        
        /* Header Styles */
        .navbar {
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        
        .navbar-dark .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s ease;
        }
        
        .navbar-dark .navbar-nav .nav-link:hover {
            color: #fff;
        }
        
        .navbar-dark .navbar-toggler {
            border: none;
        }
        




/* Navbar Styles */
        .navbar {
            padding: 15px 0;
            transition: var(--transition);
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .navbar.navbar-scroll {
            padding: 10px 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        
        
        .navbar-nav {
            margin: 0 auto;
        }
        
        .navbar-nav .nav-item {
            margin: 0 10px;
        }
        





        .navbar-nav .nav-link {
            color: var(--dark-color);
            font-weight: 400;
            padding: 15px 15px;
            transition: var(--transition);
            position: relative;
        }

        
        
        
        
        
        .navbar .btn-primary {
            margin-left: 20px;
        }
        
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: var(--transition);
        }
        
        .btn-primary:hover {
            border-color: #b08d55;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(193, 159, 103, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://sandaltanman.com/wp-content/uploads/2021/06/Ksamil-Beaches-Main-1.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    z-index: 10;
    overflow: hidden;
    animation: smoothZoom 15s ease-in-out infinite;
}

@keyframes smoothZoom {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}
        
        .hero-content h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 40px;
        }
        
        .booking-form {
            background: rgba(255, 255, 255, 0.9);
            padding: 30px;
            border-radius: 5px;
            margin-top: 30px;
        }
        .fac-row{
            background-color: white;
            padding: 10px 10px;
            border-radius: 35px;
            position: relative;
            z-index: 11;
        }
        /* Features Section */
        .features-section {
            background-color: #F2FFFF;          

        }

        .features-section5 {
            background-color: #F2FFFF;          
            margin-top: -4em;
        }
 
    




        .feature-box1 {
            text-align: center;
            padding: 30px 20px;
            transition: all 0,3s ease;
            background-color:#F2FFFF;          
;
            border: 80px;
            border-color: rgb(255, 255, 255);
            border-radius: 35px;
            height: 120px;
        }

        .feature-box1:hover {
            transform: translateY(-0px);
            box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
        }
        
        .feature-bo1 img {
            width: 46px;
            
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
            background-color: #F2FFFF;
            border-radius: 35px;
            border-color: white;
            border: 20px;
            height: 120px;
        }
        .about-section{
             background-color: #F2FFFF;
        }
        
        .feature-box:hover {
            transform: translateY(-0px);
            box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
        }
        
        .feature-box img {
            width: 46px;
            
        }
        

        /* About Section*/
.about-section {
    padding: 100px 0;
    background-color: #F2FFFF ;
}

.about-section .container {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.about-img1, .about-img2 {
    position: relative;
    overflow: hidden;
}

.about-img1 {
    border-radius: 15px 0 0 0px;
}

.about-img2 {
    border-radius: 0 0px 15px ;
}

.about-img1 img, 
.about-img2 img {
    transition: all 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}


.about-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.about-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section .row {
        flex-direction: column;
    }
    
    .about-img1, 
    .about-img2 {
        border-radius: 15px 15px 0 0;
    }
    
    .about-section .flex-row-reverse {
        flex-direction: column-reverse !important;
    }
    
    .about-section .p-4 {
        padding: 1.5rem !important;
    }
}
        
    
        

        /* Rooms Section */
        .rooms-section {
            padding: 100px 0;
            background: #F2FFFF;
        }
        
        .room-card {
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(94, 48, 48, 0.1);
            transition: all 0.3s ease;
        }
        
        .room-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .room-img {
            position: relative;
            overflow: hidden;
        }
        
        .room-img img {
            transition: all 0.5s ease;
            width: 100%;
        }
        
        .room-card:hover .room-img img {
            transform: scale(1.1);
        }
        
        .room-price {
    position: relative; 
    bottom: -50px;
    right: -230px;
    color:#64BC5F; 
    padding: 10px 15px;
    font-weight: 600;
    border-radius: 4px;
}

        
        /* Testimonials Section */
      .testimonials-section {
            padding: 80px 0;
            background:  #F2FFFF;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 20px;
        }
        
        .section-title .lead {
            font-size: 1.2rem;
            color: #7f8c8d;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            margin: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
        }
        
        .testimonial-avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 4px solid #F2FFFF;
        }
        
        .testimonial-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .name-and-text h3 {
            font-size: 1.4rem;
            color: #2c3e50;
            text-align: center;
        }
        
        .z-subtitle {
            text-align: center;
            color: #7f8c8d;
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .z-stars {
            display: flex;
            justify-content: center;
            padding: 0;
            margin: 0 0 15px 0;
            list-style: none;
        }
        
        .z-stars li {
            margin: 0 2px;
            color: #f1a90f;
        }
        
        blockquote div {
            font-style: italic;
            color: #555;
            line-height: 1.6;
            text-align: center;
        }
        
        .owl-nav {
            text-align: center;
            margin-top: 30px;
        }
        
        .owl-prev, .owl-next {
            background: #e3e6e9 !important;
            color: rgb(8, 8, 8) !important;
            width: 40px;
            height: 40px;
            border-radius: 20% !important;
            margin: 0 10px;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .owl-prev:hover, .owl-next:hover {

            transform: scale(1.1);
        }
        
        
        
        @media (max-width: 768px) {
            .testimonial-card {
                padding: 20px;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
        }
        
        /* Footer */
        .footer {
            background: var(--secondary-color);
            color: rgba(255, 255, 255, 0.7);
            padding: 80px 0 0;
        }
        
        .footer-title {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-title:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 2px;
            background: var(--primary-color);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-social a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: var(--primary-color);
            transform: translateY(-5px);
        }
        
        .footer-bottom {
            background: rgba(0, 0, 0, 0.2);
            padding: 20px 0;
            margin-top: 40px;
        }
        
        /* Utilities */
        .text-primary {
            color: var(--primary-color) !important;
        }
        
        .bg-primary {
            background-color: var(--primary-color) !important;
        }
        
        .stars {
            color: #ffb007;
            margin-bottom: 15px;
        }
        
        /* Preloader */
        #preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #fff;
            z-index: 9999;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .spinner {
            width: 50px;
            height: 50px;
            border: 5px solid #f3f3f3;
            border-top: 5px solid var(--primary-color);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }




        

  .banner-simple {
            padding: 200px 0 100px;
            background: linear-gradient(#cbf5f180, rgba(243, 237, 237, 0.5)), url('https://kinsley.bslthemes.com/wp-content/themes/kinsley/assets/img/palm.svg') no-repeat center center/cover;
            color: var(--secondary-color);
            text-align: center;
            position: relative;
        }
        
        .banner-simple h1 {
            color: var(--secondary-color);
            margin-bottom: 20px;
        }
        
        .banner-simple p {
            color: var(--secondary-color);
            max-width: 700px;
            margin: 0 auto 30px;
        }
        
        .breadcrumbs {
         display: flex;
         justify-content: center;
         list-style: none;  
         
                          
}

        .zeka-breadcrumbs li {
            margin: 0 10px;
            position: relative;
            text-align: center;
            
        }
        
        .zeka-breadcrumbs li:not(:last-child):after {
            content: '>';
            position: absolute;
            right: -15px;
            
        }
        
        .zeka-breadcrumbs a {
            color: var(--primary-color);
            
        }
        
        .zeka-breadcrumbs a:hover {
            color: var(--primary-color);
        }




        .quote-with-author {
            display: flex;
            align-items: center;
        }
        
        .photo-frame {
            border-radius: 20px;
           
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
        }
        
        blockquote {
            font-size: 24px;
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 50px;
            position: relative;
            padding-left: 30px;
        }
        
        blockquote:before {
            content: '"';
            font-size: 60px;
            position: absolute;
            left: 0;
            top: -20px;
            color: var(--primary-color);
            font-family: serif;
        }
        
        .quote-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        





.services-section {
            padding: 100px 0;
            background: #F2FFFF;
        }
        
        .service-card {
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            background: white;
            border-radius: 10px;
            overflow: hidden;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .service-cover-frame {
            position: relative;
            overflow: hidden;
        }
        
        .service-cover-frame img {
            transition: all 0.5s ease;
            width: 100%;
        }
        
        .service-card:hover .service-cover-frame img {
            transform: scale(1.1);
        }
        
       .service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #64BC5F;
    color: white;
    padding: 0 20px;
    font-weight: 600;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(68, 177, 17, 0.3);
    border: 20px transparent white;
    z-index: 10;
    font-family: 'Jost', sans-serif;
    height: 40px;
    line-height: 40px;
    text-align: center;
}


        
        .service-description {
            padding: 20px;
        }
        
        .z-stars {
            color: #ffc107;
            margin-bottom: 15px;
            list-style: none;
            padding: 0;
            display: flex;
        }
        
        .z-stars li {
            margin-right: 5px;
        }
        
        



         .rooms-section {
            padding: 50px 0;
        }
        
        .filter-buttons {
            display: flex;
            justify-content: center;
            margin-bottom: 60px;
        }
        
        .filter-btn {
            background: none;
            border: none;
            padding: 10px 20px;
            margin: 0 10px;
            cursor: pointer;
            font-size: 16px;
            font-weight: 500;
            color: #777;
            transition: color 0.3s;
        }
        
        .filter-btn.active, .filter-btn:hover {
            background-color: #2430e2;
            border-radius: 20px;
            color: #e6e6eb;
        }
        
        .rooms-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        
        .room-card {
            background: #fff;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s;
        }
        
        .room-card:hover {
            transform: translateY(-10px);
        }
        
        .room-image {
            height: 250px;
            overflow: hidden;
        }
        
        .room-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .room-card:hover .room-image img {
            transform: scale(1.1);
        }
        
        .room-details {
            padding: 25px;
        }
        
        .room-details h2 {
            font-size: 22px;
            margin-bottom: 15px;
        }
        
        .room-details p {
            color: #777;
            margin-bottom: 20px;
        }
        
        .room-features {
            margin-bottom: 20px;
        }
        
        .room-feature {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            font-size: 14px;
        }
        
       
        .book-room-btn {
            display: inline-block;
            background-color: var(--primary-color);
            border-radius: 30px;
            color: white;
            padding: 12px 25px;
            text-decoration: none;
            font-weight: 500;
        }
       
       

        
 @media (max-width: 1024px) {
            .rooms-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }
            
            .hero-content h1 {
                font-size: 36px;
            }
            
            .rooms-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-container {
                grid-template-columns: 1fr;
            }
            
            .carousel-item {
                width: 300px;
            }
        }




/* Responsive */
        @media (max-width: 768px) {
            .banner-simple h1 {
                font-size: 42px;
            }
            
            .wpcf7-form {
                padding: 30px 20px;
            }
            
            .contact-info-section .col-lg-4 {
                margin-bottom: 30px;
            }
        }

        /* Contact Info Section */
        .contact-info-section {
            padding: 100px 0;
            background-color: #f9f9f9;
        }
        
        .icon-box {
            text-align: center;
            padding: 40px 30px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .icon-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        }
        
        .icon-box img {
            height: 70px;
            margin-bottom: 20px;
        }
        
        .icon-box h5 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--secondary-color);
        }
        
        .icon-box p {
            color: #777;
            margin-bottom: 0;
        }
        
        /* Contact Form Section */
        .contact-form-section {
            padding: 100px 0;
            position: relative;
        }
        
        .contact-form-section .knsl-deco-left,
        .contact-form-section .knsl-deco-right {
            position: absolute;
            width: 200px;
            opacity: 0.1;
            z-index: -1;
        }
        
        .contact-form-section .knsl-deco-left {
            left: 0;
            top: 50px;
        }
        
        .contact-form-section .knsl-deco-right {
            right: 0;
            bottom: 50px;
        }
        
        .knsl-title-frame {
            text-align: center;
            margin-bottom: 100px;
        }
        
        .knsl-title-frame h2 {
            font-size: 42px;
            margin-bottom: 20px;
        }
        
        .knsl-title-frame p {
            font-size: 18px;
            color: #777;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .wpcf7-form {
            background: white;
            padding: 50px;
            border-radius: 10px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
        }
        
        .wpcf7-form-control {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid #eaeaea;
            border-radius: 5px;
            margin-bottom: 25px;
            font-family: 'Jost', sans-serif;
            transition: all 0.3s ease;
        }
        
        .wpcf7-form-control:focus {
            border-color: var(--primary-color);
            outline: none;
            box-shadow: 0 0 0 3px rgba(36, 48, 226, 0.1);
        }
        
        textarea.wpcf7-form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .knsl-form-submit-frame {
            text-align: center;
        }
        
        .knsl-text-sm {
            font-size: 14px;
            color: #777;
            margin-top: 20px;
        }
        



        .btn-box {
      display: inline-block;
      background-color: #f6a623; /* orange */
      color: #fff;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: bold;
      font-size: 14px;
      text-decoration: none;
      box-shadow: 0 6px 12px rgba(246, 166, 35, 0.3),
                  0 0 0 6px #fff; /* white ring around button */
      transition: all 0.3s ease;
    }

    .btn-box:hover {
      background-color: #e8961f;
      box-shadow: 0 8px 14px rgba(246, 166, 35, 0.4),
                  0 0 0 6px #fff;
    }

    .btn-box span {
      color: #fff;
    }

    .btn-box small {
      color: rgba(255,255,255,0.8);
      margin-right: 6px;
    }
        



    

/* Gallery Section Styles */
.gallery-section {
    padding: 100px 0;
    background-color: #eff5f5;
}
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.gallery-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 48, 226, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-caption {
    text-align: center;
    color: white;
    padding: 20px;
}

.gallery-caption h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.gallery-caption p {
    font-size: 14px;
    margin: 0;
}

/* Filter buttons */
.filter-buttons {
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: none;
    padding: 10px 20px;
    margin: 0 10px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #777;
    transition: all 0.3s ease;
}

.filter-btn.active, .filter-btn:hover {
    background-color: #2430e2;
    border-radius: 20px;
    color: #fff;
}

/* Lightbox customization */
.lb-data .lb-caption {
    font-size: 16px;
    font-weight: 500;
}

.lb-data .lb-number {
    font-size: 14px;
    color: #777;
}










 
 
        
    
        
        .gallery-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px;
        }
        
        .gallery-intro h2 {
            font-size: 42px;
            margin-bottom: 20px;
            color: var(--secondary-color);
            position: relative;
            display: inline-block;
        }
        
        .gallery-intro h2:after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            margin: 15px auto;
        }
        
        .gallery-intro p {
            font-size: 18px;
            color: #777;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        
        /* Owl Carousel Customization */
        
        
        
        
        .photo-carousel.owl-carousel {
            position: relative;
        }
        
        .photo-carousel .owl-stage-outer {
            padding: 10px 0;
        }
        
        .photo-carousel .item {
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            margin: 10px;
        }
        
        .photo-carousel .item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        }
        
        .photo-carousel .item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .photo-carousel .item:hover img {
            transform: scale(1.05);
        }
        
        /* Owl Carousel Navigation */
        .photo-carousel .owl-nav {
            position: absolute;
            top: -80px;
            right: 0;
            margin-top: 0;
        }
        
        .photo-carousel .owl-nav button {
            width: 0px;
            height: 40px;
            background: white !important;
            border-radius: 50% !important;
            color: var(--primary-color) !important;
            font-size: 20px !important;
            display: flex !important;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-left: 10px;
            transition: all 0.3s ease;
        }
        
        .photo-carousel .owl-nav button:hover {
            background: var(--primary-color) !important;
            color: white !important;
        }
        
        .photo-carousel .owl-dots {
            margin-top: 20px;
            text-align: center;
        }
        
        .photo-carousel .owl-dot span {
            width: 12px;
            height: 12px;
            margin: 5px;
            background: #ddd;
            display: block;
            border-radius: 50%;
            transition: all 0.3s ease;
        }
        
        .photo-carousel .owl-dot.active span,
        .photo-carousel .owl-dot:hover span {
            background: var(--primary-color);
            transform: scale(1.2);
        }
        
    


        .gallery-section .container {
            background: white;
            padding: 5px;
            box-shadow: 5 5px 25px rgba(0, 0, 0, 0.05);
        }
        
        @media (max-width: 768px) {
            .gallery-intro h2 {
                font-size: 32px;
            }
            
            .gallery-intro p {
                font-size: 16px;
            }
            
            .photo-carousel .owl-nav {
                position: relative;
                top: 0;
                text-align: center;
                margin: 20px 0;
            }
            
            .photo-carousel .item {
                height: 1000px 1000px;
            }
        }    
     


 .room-type {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: #EBA744;
            color: white;
            padding: 8px 15px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            z-index: 10;
        }
        

         
        
        .item {
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 250px;
        }
        
        .item:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .room-box {
            position: relative;
            width: 100%;
            height: 100%;
        }
        
        .room-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .item:hover .room-box img {
            transform: scale(1.05);
        }




.navbar-brand {
            font-size: 28px;
            font-weight: 700;
            color: var(--secondary-color);
        }      
        
        .language-flag {
            width: 20px;
            height: 15px;
            margin-right: 5px;
            display: inline-block;
            vertical-align: middle;
        }
        .dropdown-menu {
            min-width: 150px;
        }
        .dropdown-item {
            display: flex;
            align-items: center;
        }
        .dropdown-toggle::after {
            margin-left: 5px;
        }


          .logo-img {
            height: 70px;
            margin-right: 10px;
        }
        
         .logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .hotel-logo {
            height: 40px;
            margin-right: 10px;
        }
        
       .powered-by {
            display: flex;
            align-items: center;
            justify-content: flex-end;
            gap: 10px;
        }
        
        .intermedia-logo img {
            height: 30px;
            width: auto;
            filter: brightness(0) invert(1);
            transition: filter 0.3s ease;
        }
        
        .intermedia-logo:hover img {
            filter: brightness(0) invert(0.8);
        }
        
        @media (max-width: 767px) {
            .footer-bottom .row > div {
                text-align: center;
                margin-bottom: 10px;
            }
            
            .powered-by {
                justify-content: center;
            }
        }