        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            line-height: 1.6;
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: #111;
            color: #fff;
            padding: 8px 30px;
            display: flex;
            justify-content: space-between;
            font-size: 14px;
        }

        /* ===== NAVBAR ===== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 40px;
            position: relative;
            transition: 0.3s;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
        }

        .navbar.sticky {
            position: fixed;
            top: 0;
            width: 100%;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
            z-index: 999;
        }

        /* Logo */
        .logo {
            font-size: 24px;
            font-weight: 600;
            color: #d88a00;
        }

        /* Nav */
        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            position: relative;
            font-weight: 500;
        }

        .nav-links a::after {
            content: '';
            width: 0%;
            height: 2px;
            background: #d88a00;
            position: absolute;
            bottom: -5px;
            left: 0;
            transition: 0.3s;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Button */
        .btn {
            background: linear-gradient(45deg, #d88a00, #ffb347);
            color: #fff;
            padding: 10px 25px;
            border-radius: 30px;
            text-decoration: none;
            transition: 0.3s;
        }

        .btn:hover {
            transform: scale(1.05);
        }

        /* ===== HERO ===== */
        .hero {
            height: 100vh;
            background: url('https://images.unsplash.com/photo-1566073771259-6a8506099945') center/cover;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Overlay */
        .hero::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        .hero-content {
            position: relative;
            color: #fff;
            text-align: center;
            max-width: 600px;
        }

        .hero h1 {
            font-size: 48px;
            margin-bottom: 10px;
        }

        .hero p {
            margin-bottom: 20px;
            font-size: 18px;
        }

        /* ===== SECTION ===== */
        .section {
            padding: 70px 20px;
            text-align: center;
        }

        .section h2 {
            font-size: 32px;
            margin-bottom: 20px;
        }

        /* ===== ROOMS ===== */
        .rooms {
            display: flex;
            justify-content: center;
            gap: 25px;
            flex-wrap: wrap;
        }

        .room-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            width: 260px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: 0.3s;
        }

        .room-card:hover {
            transform: translateY(-8px);
        }

        /* Add image */
        .room-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }

        .room-card h3 {
            margin: 10px 0;
        }

        .room-card p {
            padding: 0 10px 15px;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #111;
            color: #fff;
            text-align: center;
            padding: 20px;
        }

        /* ===== MOBILE ===== */
        .menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
        }

        /* Mobile menu */
        .mobile-menu {
            position: fixed;
            right: -100%;
            top: 0;
            width: 260px;
            height: 100%;
            background: #fff;
            padding: 30px;
            transition: 0.4s;
            z-index: 1000;
        }

        .mobile-menu.active {
            right: 0;
        }

        .mobile-menu a {
            display: block;
            margin: 15px 0;
            text-decoration: none;
            color: #333;
            font-size: 18px;
        }

        /* Overlay */
        .overlay {
            display: none;
        }

        .overlay.active {
            display: block;
            position: fixed;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
        }

        /* ===== RESPONSIVE ===== */
        @media(max-width: 992px) {

            .nav-links,
            .btn {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
        }

        @media(max-width: 768px) {
            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 16px;
            }
        }





        /* ================= banner  ==================== */
        .hero-new {
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
        }

        /* Background */
        .hero-bg {
            position: absolute;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1582719478250-c89cae4dc85b') no-repeat center/cover;
            filter: brightness(0.6);
            z-index: 1;
        }

        /* Floating Card */
        .hero-box {
            position: relative;
            z-index: 2;
            max-width: 500px;
            /* background: rgba(255, 255, 255, 0.1); */
            /* backdrop-filter: blur(15px); */
            /* padding: 40px; */
            border-radius: 20px;
            color: #fff;
            /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); */
        }

        /* Heading */
        .hero-box h1 {
            font-size: 40px;
            font-weight: 700;
        }

        .hero-box span {
            color: #f0b429;
        }

        /* Text */
        .hero-box p {
            margin: 15px 0 25px;
        }

        /* Buttons */
        .hero-btns a {
            padding: 12px 25px;
            margin-right: 10px;
            border-radius: 30px;
            text-decoration: none;
        }

        .btn-main {
            background: linear-gradient(45deg, #d88a00, #f0b429);
            color: #fff;
        }

        .btn-outline {
            border: 2px solid #fff;
            color: #fff;
        }

        /* Responsive */
        @media(max-width: 768px) {}




        /* ======================== about =============================== */

        /* ROW ALIGN FIX */
        .about-advanced .row {
            align-items: center;
        }

        /* IMAGE STYLE */
        .about-images {
            position: relative;
            display: flex;
            justify-content: center;
        }

        /* MAIN IMAGE */
        .img-main {
            width: 100%;
            max-width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        }

        /* SMALL IMAGE */
        .img-small {
            position: absolute;
            width: 350px;
            height: 230px;
            object-fit: cover;
            bottom: -30px;
            right: 20px;
            border-radius: 15px;
            border: 5px solid #fff;
        }


        /* TEXT CONTENT */
        .about-text h6 {
            color: #d88a00;
            letter-spacing: 2px;
        }

        .about-text h2 {
            font-size: 34px;
            margin: 10px 0;
        }

        .about-text span {
            color: #d88a00;
        }

        .about-text p {
            color: #555;
            line-height: 1.6;
        }

        /* ===== FEATURES (NEW DESIGN 🔥) ===== */

        .features-box {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin: 20px 0;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            background: #fff;
            padding: 12px 15px;
            border-radius: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: 0.3s;
            cursor: pointer;
        }

        /* Arrow circle */
        .feature-item::before {
            content: "➜";
            background: linear-gradient(45deg, #d88a00, #f0b429);
            color: #fff;
            font-size: 14px;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
        }

        /* Hover effect */
        .feature-item:hover {
            transform: translateX(8px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        /* BUTTON */
        .about-btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            background: linear-gradient(45deg, #d88a00, #f0b429);
            color: #fff;
            text-decoration: none;
            transition: 0.3s;
        }

        .about-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        /* RESPONSIVE */
        @media(max-width: 768px) {
            .img-main {
                height: 300px;
            }

            .img-small {
                display: none;
            }

            .about-text h2 {
                font-size: 26px;
            }
        }




        /* ======================== SERVICES ===================== */

        .services-section {
            background: linear-gradient(to right, #fff7e6, #fff);
        }

        /* Title */
        .section-title {
            font-size: 38px;
            margin-bottom: 10px;
        }

        .section-subtitle {
            color: #777;
            margin-bottom: 40px;
        }

        /* CARD */
        .service-card {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            cursor: pointer;
        }

        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
            transition: 0.5s;
        }

        /* Overlay */
        .service-overlay {
            position: absolute;
            bottom: 0;
            width: 100%;
            padding: 25px;
            background: rgba(0, 0, 0, 0.6);
            color: #fff;
            transform: translateY(100%);
            transition: 0.5s;
        }

        /* Hover Effect */
        .service-card:hover img {
            transform: scale(1.1);
        }

        .service-card:hover .service-overlay {
            transform: translateY(0);
        }

        /* Text */
        .service-overlay h3 {
            margin-bottom: 10px;
        }

        /* Responsive */
        @media(max-width: 768px) {
            .service-card img {
                height: 250px;
            }
        }




        /* ================  FACILITY CLEAN DESIGN ==================== */


        .facility-clean {
            background: #f9f9f9;
        }

        /* Titles */
        .top-title {
            color: #d88a00;
            letter-spacing: 2px;
            font-weight: 600;
        }

        .main-title {
            font-size: 34px;
            margin: 10px 0;
            font-weight: 600;
        }

        .subtitle {
            color: #666;
            max-width: 700px;
            margin: auto;
        }

        /* BOX */
        .facility-box {
            background: #fff;
            border: 2px solid #e5e5e5;
            border-radius: 12px;
            padding: 30px 15px;
            transition: 0.3s;
        }

        /* ICON */
        .facility-box .icon {
            font-size: 35px;
            margin-bottom: 10px;
        }

        /* TEXT */
        .facility-box h6 {
            font-size: 16px;
            margin: 0;
        }

        /* HOVER EFFECT */
        .facility-box:hover {
            border-color: #d88a00;
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        }

        .facility-box:hover .icon {
            color: #d88a00;
        }

        /* RESPONSIVE */
        @media(max-width: 768px) {
            .main-title {
                font-size: 24px;
            }
        }




        /* ================= explore-section  ==================== */


        .explore-section {
            padding: 80px 0;
            background: linear-gradient(120deg, #0f2027, #203a43, #2c5364);
            color: #fff;
        }

        /* TEXT */
        .explore-content h2 {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .explore-content h2 span {
            color: #f0b429;
        }

        .explore-content ul {
            list-style: none;
            padding: 0;
        }

        .explore-content ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 25px;
        }

        /* Custom bullet */
        .explore-content ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            color: #f0b429;
        }

        /* Button */
        .explore-btn {
            display: inline-block;
            margin-top: 20px;
            padding: 12px 28px;
            background: linear-gradient(45deg, #d88a00, #f0b429);
            color: #fff;
            border-radius: 30px;
            text-decoration: none;
        }

        /* IMAGE */
        .image-box {
            position: relative;
        }

        .image-box img {
            width: 100%;
            border-radius: 20px;
        }

        /* GLASS EFFECT CARD */
        .image-box::after {
            content: "";
            position: absolute;
            top: 20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
        }

        /* HOVER EFFECT */
        .image-box:hover img {
            transform: scale(1.05);
            transition: 0.4s;
        }

        /* MOBILE */
        @media(max-width:768px) {
            .explore-content h2 {
                font-size: 28px;
            }
        }





        /* =================================== gallery-section ================================ */


        .gallery-section {
            padding: 80px 0;
            background: linear-gradient(to right, #fff, #fff7e6);
        }

        /* Heading */
        .sub-title {
            color: #d88a00;
            font-weight: 600;
        }

        .main-title {
            font-size: 36px;
            font-weight: 700;
        }

        /* Gallery Item */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
        }

        .gallery-item img {
            width: 100%;
            height: 280px;
            object-fit: cover;
            transition: 0.4s;
        }

        /* Overlay */
        .overlay {
            position: absolute;
            bottom: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            display: flex;
            align-items: flex-end;
            justify-content: center;
            opacity: 0;
            transition: 0.4s;
        }

        .overlay h4 {
            color: #fff;
            margin-bottom: 20px;
        }

        /* Hover */
        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-item:hover .overlay {
            opacity: 1;
        }

        /* Owl Dots */
        .owl-dots {
            text-align: center;
            margin-top: 20px;
        }

        .owl-dots .owl-dot span {
            width: 10px;
            height: 10px;
            background: #ccc;
            display: block;
            margin: 5px;
            border-radius: 50%;
        }

        .owl-dots .owl-dot.active span {
            background: #d88a00;
        }




        /* ========================= contact-section  ===================== */


        .contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa, #eef2f7);
        }

        /* Heading */
        .sub-title {
            color: #d88a00;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .main-title {
            font-size: 42px;
            font-weight: 700;
            margin-top: 10px;
        }

        /* LEFT INFO BOX STYLE */
        .contact-info .info-box {
            background: #fff;
            padding: 30px 20px;
            border-radius: 20px;
            margin-bottom: 25px;
            text-align: center;
            transition: 0.4s;
            position: relative;
            overflow: hidden;
        }

        /* Glow Border Effect */
        .contact-info .info-box::before {
            content: "";
            position: absolute;
            width: 100%;
            height: 0%;
            background: linear-gradient(45deg, #d88a00, #f0b429);
            top: 0;
            left: 0;
            z-index: 0;
            transition: 0.4s;
            opacity: 0.1;
        }

        .contact-info .info-box:hover::before {
            height: 100%;
        }

        /* Icon Circle */
        .contact-info .info-box i {
            width: 70px;
            height: 70px;
            background: linear-gradient(45deg, #d88a00, #f0b429);
            color: #fff;
            border-radius: 50%;
            line-height: 70px;
            font-size: 26px;
            margin-bottom: 15px;
            z-index: 1;
            position: relative;
        }

        /* Hover */
        .contact-info .info-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        /* FORM CARD */
        .contact-form {
            background: #fff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        /* INPUT STYLE */
        .form-control {
            border-radius: 12px;
            padding: 14px;
            border: 1px solid #ddd;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: #d88a00;
            box-shadow: 0 0 10px rgba(216, 138, 0, 0.2);
        }

        /* TEXTAREA */
        textarea.form-control {
            resize: none;
        }

        /* BUTTON */
        .btn-submit {
            background: linear-gradient(45deg, #d88a00, #f0b429);
            border: none;
            color: #fff;
            padding: 14px;
            border-radius: 30px;
            width: 100%;
            font-weight: 600;
            transition: 0.3s;
        }

        /* Button Hover */
        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        /* MAP DESIGN */
        .map-section {
            position: relative;
        }

        .map-section iframe {
            width: 100%;
            height: 450px;
            border: 0;
            filter: grayscale(20%);
        }

        /* Optional Overlay */
        .map-section::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.1);
            pointer-events: none;
        }

        /* RESPONSIVE */
        @media(max-width:768px) {
            .main-title {
                font-size: 28px;
            }

            .contact-form {
                padding: 25px;
            }
        }





        /* ========================== footer ========================== */

        .footer {
            background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
            color: #fff;
            padding: 60px 0 20px;
        }

        /* Headings */
        .footer-box h3,
        .footer-box h4 {
            margin-bottom: 20px;
        }

        .footer-box h3 span {
            color: #f0b429;
        }

        /* Text */
        .footer-box p {
            color: #ccc;
            font-size: 14px;
        }

        /* Links */
        .footer-box ul {
            list-style: none;
            padding: 0;
        }

        .footer-box ul li {
            margin-bottom: 10px;
        }

        .footer-box ul li a {
            text-decoration: none;
            color: #ccc;
            transition: 0.3s;
        }

        .footer-box ul li a:hover {
            color: #f0b429;
            padding-left: 5px;
        }

        /* Icons */
        .footer-box i {
            margin-right: 8px;
            color: #f0b429;
        }

        /* Social Icons */
        .social-icons {
            margin-top: 15px;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            margin-right: 10px;
            color: #fff;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: #f0b429;
            color: #000;
        }

        /* Bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 30px;
            padding-top: 15px;
        }

        .footer-bottom p {
            font-size: 14px;
            color: #aaa;
        }
