
        :root {
            --primary-color: #6b2c2c;
            --primary-hover: #8b3c3c;
            --secondary-color: #b97b79;
            --text-light: #b97b79;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        
       /* Top Bar */
    .top-bar {
        background: var(--primary-color);
        color: #D1AE6C;
        padding: 4.5px 0;
        font-size: 16px; /* solid remove panniten */
    }

    /* Right side links inline */
    .top-bar a {
        color: #D1AE6C;
        text-decoration: none;
        margin-left: 15px;
        display: inline-flex;   /* IMPORTANT */
        align-items: center;
    }

    .top-bar a:hover {
        color: #D1AE6C;
    }

    .top-bar i {
        margin-right: 5px;
    }

    /* 🔽 Mobile Responsive */
    @media (max-width: 576px) {

        /* Email hide */
        .top-bar a[href^="mailto"] {
            display: none;
        }

        /* Phone center */
        .top-bar {
            text-align: center;
        }

        .top-bar a {
            margin-left: 0;
        }
    }

        

        .navbar {
            background: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            padding: 15px 0;
            overflow: hidden;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--primary-color) !important;
            font-weight: bold;
        }

       .logo-icon img{
            width: 300px;
            height: auto;
        }
        @media (min-width: 300px) {
        .logo-icon img{
            width: 250px;
        }
        }


        .nav-link {
            color: #666 !important;
            margin: 0 15px;
            font-weight: 500;
            text-transform: uppercase;
            font-size: 14px;
        }

        .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .btn-book {
            background: var(--primary-color);
            color: white;
            padding: 8px 25px;
            border-radius: 5px;
            text-transform: uppercase;
            font-size: 14px;
        }

        .btn-book:hover {
            background: var(--secondary-color);
            color: white;
        }
        .stars {
            font-size: 30px;
            color: transparent;             
            -webkit-text-stroke: 1px white;   
            }

            .carousel-text1 {
                font-size: 50px;
                font-weight: 700;
                color: #ffffff;
                letter-spacing: 2px;
                text-align: center;
                margin: 10px 0;
                text-transform: uppercase;
            }

            /* 📱 Mobile Responsive */
            @media (max-width: 768px) {
                .carousel-text1 {
                    font-size: 32px;
                    letter-spacing: 2px;
                    padding: 0 15px;
                
                }
            }

            @media (max-width: 480px) {
                .carousel-text1 {
                    font-size: 30px;
                    letter-spacing: 1.0px;
                    width:250px;
                    
                }
            }


        .carousel-in-text {
            font-size: 20px;
            color: white;
            margin-top: 10px;
            
        }

        .carousel-item {
            position: relative;
        }

        .carousel-item img{
            width: 100%;
            height: 600px;
            object-fit: cover;
            
        }
        
        /* Section background */
        .rooms-section {
            background-color: #E6E6D9;
        }

        /* Cards */
        .room-card {
            position: relative;
            background-color: #ffffff; /* white card to pop on background */
            border: none;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* Room price on top-right */
        .room-card .room-price {
            position: absolute;
            top: 10px;
            left: 10px;
            background-color: #6b2c2c; /* Bootstrap primary */
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            font-weight: 500;
            z-index: 10;
        }


        @keyframes zoomIn {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(1.1);
            }
        }

        .carousel-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 60px;
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
        }
        .carousel-text2 {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 60px;           /* Desktop size */
            font-weight: bold;
            text-align: center;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
            line-height: 1.1;
            padding: 0 15px;           /* Prevent overflow on mobile */
        }

        /* 📱 Tablet / Mobile */
        @media (max-width: 768px) {
            .carousel-text2 {
                font-size: 60px;       /* Scale down */
            }
        }

        /* 📱 Small Mobile */
        @media (max-width: 480px) {
            .carousel-text2 {
                font-size: 28px; 
                 width:350px;      /* Small mobile */
            }
        }



        .booking-card {
            margin-top: -50px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .rating {
            color: #ffc107;
        }

        .room-card {
            transition: transform 0.3s;
            border: none;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }

        .room-card:hover {
            transform: translateY(-5px);
        }

        .room-price {
            background: var(--primary-color);
            color: white;
            padding: 5px 15px;
            display: inline-block;
            font-size: 12px;
        }

        .service-item {
            cursor: pointer;
            padding: 20px;
            border-radius: 5px;
            transition: all 0.3s;
            color: #6b2c2c;
        }

        .service-item:hover {
            background: #f5f5f5;
        }

        .service-item.active {
            background: var(--primary-color);
            color: white;
        }

        .service-item.active h5,
        .service-item.active p {
            color: white;
        }

        .service-image {
            height: 525px;
            object-fit: cover;
            border-radius: 5px;
            transition: opacity 0.3s ease;
        }

        .discover-card {
            position: relative;
            height: 300px;
            overflow: hidden;
            border-radius: 5px;
        }

        .discover-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .discover-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background: rgba(255,255,255,0.9);
            padding: 10px 20px;
            font-weight: bold;
        }

        .testimonial-card {
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            border: none;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
        }

        .guest-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            border: 1px solid #ddd;
            border-top: none;
            border-radius: 0 0 5px 5px;
            z-index: 100;
            display: none;
            box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        }

        .guest-dropdown.active {
            display: block;
        }

        .guest-btn {
            width: 30px;
            height: 30px;
            border: 1px solid #ddd;
            background: white;
            cursor: pointer;
            transition: all 0.3s;
        }

        .guest-btn:hover {
            background: #f5f5f5;
            border-color: var(--primary-color);
        }

        .fav-btn{
            border-color: var(--primary-color);
            background-color: var(--primary-color);
            color: white;
        }

        .fav-btn:hover{
           
            background-color: var(--primary-hover);
            border-color: var(--primary-hover);
        }

         .d-flex1 {
        display: flex;
        align-items: center;
        margin-top: 15px;
        }

        .d-flex1 img {
            width: 55px;
            height: 55px;
            object-fit: cover;
            border-radius: 50%;
            border: 2px solid #e5e5e5;
        }

        .ms-3 {
            margin-left: 12px;
        }

        .ms-3 h5 {
            margin: 0;
            font-size: 15px;
            font-weight: 600;
            color: #333;
        }

        .ms-3 span {
            font-size: 13px;
            color: #777;
        }

        


        /*footer*/
        footer {
            background: transparent;
            border-top: 3px solid #6b2c2c;
            border-bottom: 3px solid #6b2c2c;
            color:var(--primary-color) !important;
            padding: 60px 0 20px;
        }

        .footer-title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            color:var(--primary-color) !important;
        }

        .footer-text {
            color:var(--secondary-color);
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .footer-link {
            color:var(--secondary-color);
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: color 0.3s;
        }

        .footer-link:hover {
            color: var(--secondary-color);
        }

        /* Container */
        .copyright {
            display: flex;             
            align-items: center;     
            gap: 10px;                 
            font-weight: 500;          
            font-size: 14px;
            color: var(--primary-color);
        }

        /* Link styling */
        .copyright-link {
            color: var(--secondary-color);
            text-decoration: none;
            font-weight: 700;          
            text-transform: uppercase; 
            
        }

        .copyright-link:hover{
        text-decoration: underline;
        }



        .contact-info {
            margin-bottom: 15px;
        }

        .contact-info i {
            margin-right: 10px;
            color: var(--secondary-color);
        }


        /*scrol button*/
                
            #topBtn {
        position: fixed;
        bottom: 40px;
        right: 20px;          /* 👉 RIGHT side */
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 2px solid #000;
        color: #ffffff;
        background: #b97b79;
        font-size: 25px;
        cursor: pointer;
        display: none;       /* start-la hide */
        z-index: 999;
        }
        

        /* WhatsApp Orb */
        .wa-orb {
            position: fixed;
            left: 30px;
            bottom: 5%;
            width: 80px;
            height: 80px;
            z-index: 9999;
            text-decoration: none;
            animation: waJump 1.8s infinite ease-in-out;
        }

        /* Outer breathing ring */
        .wa-ring {
            position: absolute;
            inset: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(37,211,102,0.6), transparent 60%);
            animation: breathe 3s infinite ease-in-out;
        }

        /* Core orb */
        .wa-core {
            position: absolute;
            inset: 12px;
            background: linear-gradient(145deg, #25D366, #075E54);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            box-shadow:
                inset 0 0 15px rgba(255,255,255,0.3),
                0 0 30px rgba(37,211,102,0.7);
        }

        /* Label */
        .wa-label {
            position: absolute;
            left: 90px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.85);
            color: #fff;
            padding: 10px 16px;
            border-radius: 20px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: 0.4s ease;
        }

        /* Desktop hover show */
        .wa-orb:hover .wa-label {
            opacity: 1;
        }

        /* Jump animation */
        @keyframes waJump {
            0%   { transform: translateY(0) rotate(0deg); }
            25%  { transform: translateY(-10px) rotate(-6deg); }
            50%  { transform: translateY(0) rotate(6deg); }
            75%  { transform: translateY(-6px) rotate(-3deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        /* Breathing ring */
        @keyframes breathe {
            0%   { transform: scale(1); opacity: 0.6; }
            50%  { transform: scale(1.25); opacity: 0.2; }
            100% { transform: scale(1); opacity: 0.6; }
        }

        /* 📱 Mobile Fix */
        @media (max-width: 480px) {

            .wa-orb {
                right: 13px;
                left: auto;
                bottom: 80px;
                width: 63px;
                height: 63px;
            }

            .wa-core {
                inset: 10px;
                font-size: 26px;
            }

            /* Auto pop message (WhatsApp style) */
            .wa-label {
                display: block;
                opacity: 0;
                left: auto;
                right: 75px;
                font-size: 12px;
                padding: 6px 10px;
                animation: labelPop 6s infinite;
            }
        }

            /* Mobile popup animation */
            @keyframes labelPop {
                0%, 70% { opacity: 0; }
                75%, 90% { opacity: 1; }
                100% { opacity: 0; }
            }
