
        body {
            font-family: Arial, sans-serif;
            padding: 0;
            margin: 0;
        }

        /* TOP BAR */
        .top-bar {
            background: #2c3e75;
            color: #fff;
            font-size: 14px;
            padding: 6px 0;
        }

        /* NAVBAR */
        .navbar {
            position: sticky;
            /* fixed ki jagah sticky */
            top: 0;
            width: 100%;
            background: #fff;
            z-index: 999;
            transition: 0.3s;
        }

        /* SCROLL EFFECT */
        .navbar.scrolled {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            padding: 8px 0;
        }

        .navbar-brand {
            font-size: 28px;
            font-weight: 600;
            color: #ff7a00 !important;

        }

        .navbar-nav .nav-link {
            color: #000 !important;
            font-weight: 500;
            margin-left: 15px;
        }

        .navbar-nav .nav-link.active {
            color: #ff7a00 !important;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        .navbar-toggler i {
            transition: 0.3s;
        }

        .navbar-toggler:hover i {
            color: #2c3e75;
        }

        /* Mobile Fix */
        @media (max-width: 768px) {
            .top-bar {
                text-align: center;
                font-size: 12px;
            }

            .navbar-brand {
                font-size: 22px;
            }

            .navbar-nav {
                text-align: center;
            }
        }




        /* =================== Banner ================= */

        /* Hero Section */
        .hero {
            position: relative;
            height: 90vh;
            overflow: hidden;
        }

        /* Slider */
        .hero-slider {
            position: absolute;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .hero-slider img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;

            opacity: 0;
            transform: scale(1.15);
            filter: brightness(0.7);

            transition:
                opacity 1.5s ease-in-out,
                transform 6s ease-in-out,
                filter 1.5s ease-in-out;
        }

        .hero-slider img.active {
            opacity: 1;
            transform: scale(1);
            filter: brightness(1);
        }

        /* Overlay */
        .hero-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
        }

        /* Content */
        .hero-content {
            position: relative;
            z-index: 3;
            color: #fff;
            text-align: center;
            top: 50%;
            transform: translateY(-50%);
            padding: 20px;
        }

        .hero-content h1 {
            font-size: 48px;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 25px;
        }

        /* Buttons */
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-size: 16px;
            color: #fff;
            transition: 0.3s;
        }

        .book {
            background: #5cb85c;
        }

        .call {
            background: #f07b3f;
        }

        .book:hover {
            transform: translateY(-3px);
            background: #5cb85c !important;
        }

        .call:hover {
            transform: translateY(-3px);
            background: #f07b3f !important;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero {
                height: 70vh;
            }

            .hero-content h1 {
                font-size: 28px;
            }

            .hero-content p {
                font-size: 16px;
            }

            .btn {
                padding: 10px 20px;
                font-size: 14px;
            }
        }



        /* ============= About us ============= */

        .about-section {
            background: linear-gradient(135deg, #f8f9fa, #eef2f7);
        }

        /* ROW FIX (Equal Height) */
        .about-section .row {
            align-items: stretch;
        }

        /* IMAGE COLUMN FLEX */
        .image-col {
            display: flex;
            position: relative;
        }

        /* IMAGE FIX */
        .main-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            transition: 0.4s;
        }

        .main-img:hover {
            transform: scale(1.05);
        }

        /* FLOATING CARD */
        .floating-card {
            position: absolute;
            bottom: -20px;
            left: 30px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 25px;
            border-radius: 15px;
            text-align: center;
        }

        .floating-card h4 {
            margin: 0;
            color: #ff7a00;
        }

        /* FEATURE BOX */
        .feature-box {
            background: #fff;
            border-radius: 12px;
            transition: 0.3s;
        }

        .feature-box i {
            font-size: 22px;
            color: #ff7a00;
            margin-bottom: 8px;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        /* MOBILE FIX */
        @media (max-width: 768px) {
            .image-col {
                height: auto;
            }

            .main-img {
                height: auto;
            }

            .floating-card {
                position: static;
                margin-top: 15px;
            }
        }

        /* =================== service ============== */

        .section-title {
            text-align: center;
            font-size: 40px;
            font-weight: 600;
            margin-bottom: 40px;
            color: #ff6a00;
        }

        /* Card Design */
        .room-card {
            border-radius: 20px;
            overflow: hidden;
            transition: 0.4s;
            background: #fff;
            border: 2px solid rgba(0, 0, 0, 0.1);
            position: relative;
        }



        /* Image */
        .room-img {
            height: 230px;
            object-fit: cover;
            width: 100%;
        }

        /* Price Badge */
        .price-tag {
            position: absolute;
            top: 15px;
            right: 15px;
            background: linear-gradient(45deg, #ff6a00, #ffb347);
            color: #fff;
            padding: 6px 15px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
        }

        /* Content */
        .room-content {
            padding: 20px;
        }

        .room-content h5 {
            font-weight: 600;
        }

        .room-content p {
            color: #777;
            font-size: 14px;
        }

        /* Button */
        .book-btn {
            background: linear-gradient(45deg, #ff6a00, #ffb347);
            border: none;
            border-radius: 30px;
            padding: 10px 20px;
            color: #fff;
            transition: 0.3s;
        }

        .book-btn:hover {
            background: linear-gradient(45deg, #ff6a00, #ffb347);
            transform: scale(1.05);
        }

        /* Icon */
        .icon {
            color: #28a745;
            margin-right: 5px;
        }



        /* =============== testimonial ======================= */


        .testimonial-card {
            background: #fff;
            border: none;
            border-radius: 5px;
            position: relative;
            overflow: hidden;
            padding: 0 20px 20px 20px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            margin: auto;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 60px;
            width: 100%;
            background: linear-gradient(to right, #ff6a00, #ffb347);
            z-index: 0;
        }

        .testimonial-header {
            position: relative;
            z-index: 1;
            color: #fff;
            font-size: 20px;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .testimonial-img {
            width: 60px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #fff;
            background: #ff6a00;
            padding: 3px;
        }

        .testimonial-content {
            margin-top: 20px;
            font-size: 16px;
            color: #333;
            min-height: 120px;
        }

        .testimonial-footer {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            margin-top: 20px;
            z-index: 1;
            position: relative;
        }

        .testimonial-stars {
            color: #ffc107;
            margin-right: 10px;
        }

        .testimonial-rating {
            font-size: 14px;
            color: #555;
        }

        .testimonial-shape {
            position: absolute;
            top: 60px;
            left: 0;
            width: 0;
            height: 0;
            border-top: 40px solid transparent;
            border-left: 40px solid #fff;
            z-index: 1;
        }

        .owl-nav button {
            background: #6f51e2 !important;
            color: #fff !important;
            border-radius: 50% !important;
            width: 40px;
            height: 40px;
            margin: 10px;
            font-size: 20px !important;
        }

        .owl-dots .owl-dot span {
            background: #9f5de2 !important;
        }

        .testimonial-carousel .owl-stage-outer {
            padding: 20px 0;
        }

        .testimonial-quote {
            font-size: 60px;
            color: #f3f1f7;
            position: absolute;
            left: 20px;
            top: 80px;
            opacity: 0.2;
            z-index: 0;
        }

        .testimonial-carousel .owl-item img {
            display: block;
            width: 80px;
        }



        /* ===================== Faq ===================== */

        .faq-section {
            padding: 60px 20px;
            background: #eef2f7;
        }

        /* ROW FIX (equal height) */
        .faq-section .row {
            align-items: stretch;
        }

        /* LEFT IMAGE */
        .faq-image {
            height: 100%;
            position: relative;
            overflow: hidden;
        }

        .faq-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 15px;
        }

        /* OPTIONAL OVERLAY */
        .faq-image::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.3));
            border-radius: 15px;
        }

        /* RIGHT SIDE */
        .faq-container {
            padding: 10px;
        }

        .faq-title {
            font-size: 30px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        /* FAQ CARD */
        .faq-item {
            background: #fff;
            margin-bottom: 15px;
            border-radius: 12px;
            overflow: hidden;
            border-left: 5px solid #ff7a00;
        }


        /* QUESTION */
        .faq-question {
            padding: 18px 20px;
            cursor: pointer;
            font-weight: 600;
            position: relative;
        }

        .faq-question::after {
            content: "+";
            position: absolute;
            right: 20px;
            font-size: 22px;
        }

        /* ANSWER */
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            padding: 0 20px;
            transition: all 0.4s ease;
            color: #555;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 15px 20px;
        }

        .faq-item.active .faq-question::after {
            content: "-";
        }

        /* RESPONSIVE */
        @media(max-width:768px) {
            .faq-title {
                text-align: center;
            }

            .faq-image {
                height: 250px;
            }
        }



        /* =============== contact-section =================== */

        .contact-section {
            padding: 50px 0;
        }

        /* MAIN BOX */
        .contact-box {
            display: flex;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 5px;
            overflow: hidden;
        }

        /* LEFT SIDE */
        .contact-left {
            background: linear-gradient(135deg, #ff6a00, #ffb347);
            color: #fff;
            padding: 40px;
            width: 40%;
        }

        .contact-left h3 {
            margin-bottom: 15px;
        }

        .contact-left p {
            font-size: 14px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* INFO */
        .contact-info {
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .contact-info span {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

        /* RIGHT SIDE */
        .contact-right {
            padding: 40px;
            width: 60%;
        }

        .contact-right h3 {
            margin-bottom: 25px;
        }

        /* FORM */
        .form-control {
            border: none;
            border-bottom: 1px solid #ccc;
            border-radius: 0;
            padding-left: 0;
            margin-bottom: 20px;
        }

        .form-control:focus {
            box-shadow: none;
            border-color: #ffb347;
        }

        /* BUTTON */
        .btn-custom {
            background: #ffb347;
            color: #fff;
            padding: 10px 25px;
            border-radius: 3px;
            border: none;
        }

        .btn-custom:hover {
            background: #ff6a00;
        }

        /* RESPONSIVE */
        @media(max-width:768px) {
            .contact-box {
                flex-direction: column;
            }

            .contact-left,
            .contact-right {
                width: 100%;
            }
        }


        /* FOOTER */
        .footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 60px 20px 20px;
        }

        /* HEADINGS */
        .footer h4 {
            color: #fff;
            margin-bottom: 20px;
        }

        /* LINKS */
        .footer a {
            color: #cbd5e1;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            transition: 0.3s;
        }

        .footer a:hover {
            color: #6366f1;
        }

        /* SOCIAL */
        .social-icons a {
            display: inline-block;
            margin-right: 10px;
            font-size: 18px;
        }

        /* NEWSLETTER */
        .newsletter input {
            width: 100%;
            padding: 10px;
            border-radius: 5px;
            border: none;
            margin-bottom: 10px;
        }

        .newsletter button {
            width: 100%;
            padding: 10px;
            background: #ff7a00;
            border: none;
            color: #fff;
            border-radius: 5px;
        }

        /* BOTTOM */
        .footer-bottom {
            border-top: 1px solid #1e293b;
            margin-top: 30px;
            padding-top: 15px;
            font-size: 14px;
            display: flex;
        }