    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        }

            html {
                scroll-padding-top: 6rem;
                scroll-behavior: smooth;
            }

            body {
                font-family: 'Georgia', serif;
                line-height: 1.6;
                color: #333;
                overflow-x: hidden;
            }


            /* Header */
                .header {
                    position: fixed;
                    top: 0;
                    width: 100%;
                    background: rgba(255, 255, 255, 0.95);
                    backdrop-filter: blur(10px);
                    z-index: 1000;
                    padding: 1rem 2rem;
                    transition: all 0.3s ease;
                }

            .nav {
                display: flex;
                justify-content: space-between;
                align-items: center;
                max-width: 1400px;
                margin: 0 auto;
            }

            .logo {
                font-size: 1.8rem;
                font-weight: bold;
                color: #cc9900;;
            }

            .brand-logo {
              display: flex;
              align-items: center;
              gap: 0.5rem;
              font-size: 1.5rem
;              font-weight: bold;
              
            }

            .brand-logo img {
              height: 40px;
              width: auto;
            }

            .nav-links {
                display: flex;
                list-style: none;
                gap: 2rem;
            }

            .nav-links a {
                text-decoration: none;
                color: #333;
                font-weight: 500;
                transition: color 0.3s ease;
            }

            .nav-links a:hover {
                color: #2c5282;
            }

            .nav-buttons {
                display: flex;
                gap: 1rem;
            }

            .btn {
                padding: 0.75rem 1.5rem;
                border: none;
                border-radius: 25px;
                cursor: pointer;
                font-weight: 500;
                transition: all 0.3s ease;
                text-decoration: none;
                display: inline-block;
                color: #cc9900;
            }

            .btn-outline {
                background: transparent;
                border: 2px solid #2c5282;
                color: #2c5282;
            }

            .btn-primary {
                background: linear-gradient(135deg, #f9e79f 0%, #f1c40f 40%, #d4ac0d 100%);
                color: white;
                font-weight: bold;
            }

            .btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(44, 82, 130, 0.3);
            }

            /* Hero Section */
            .hero {
                height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                text-align: center;
                background: linear-gradient(
                    rgba(0, 60, 0, 0.5),
                    rgba(0, 60, 0, 0.2)
                ), url('images/heroBg.jfif');
                background-size: cover;
                background-position: center;
                color: white;
                position: relative;
                z-index: 1;
            }

            .hero-content {
                max-width: 800px;
                padding: 2rem;
                animation: fadeInUp 1s ease-out;
            }

            .hero h1 {
                font-size: 4.5rem;
                margin-bottom: 1rem;
                font-weight: 300;
                line-height: 1.2;
            }

            .hero-subtitle {
                font-size: 1.2rem;
                margin-bottom: 2rem;
                opacity: 0.9;
            }


            /* Popular View Points */
            .section {
                padding-top: 4rem;
                padding-bottom: 2rem;
                max-width: 1400px;
                margin: 0 auto;
                
            }

            .section-title {
                font-size: 2.5rem;
                margin-bottom: 3rem;
                text-align: center;
                color: #FFD700;;
            }

            .view-points {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                gap: 2rem;
                margin-bottom: 1rem;
            }

            .view-point-card {
                position: relative;
                border-radius: 20px;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
                transition: all 0.3s ease;
                cursor: pointer;
            }

            .view-point-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            }

            .card-image {

                width: 100%;
                height: 250px;
                background: linear-gradient(45deg, #87CEEB, #20B2AA);
                position: relative;
                overflow: hidden;
            }

            /*.card-image::before {
                content: '';
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 60px;
                height: 60px;
                background: white;
                border-radius: 50%;
                opacity: 0.3;
            }*/

            .card-content {
                padding: 1.5rem;
                background: white;
            }

            .card-title {
                font-size: 1.3rem;
                color:#cc9900;
            }

            .card-description {
                color: #666;
                font-size: 0.9rem;
                background: white;
            }

            /* Extraordinary Space */
            .extraordinary-space {
                background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
                padding: 5rem 2rem;
                margin: 3rem 0;
            }

            .extraordinary-space::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
                            radial-gradient(circle at 70% 30%, rgba(255, 165, 0, 0.08) 0%, transparent 50%);
                pointer-events: none;
        }

            .extraordinary-content {
                max-width: 1400px;
                margin: 0 auto;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 4rem;
                align-items: center;
            }

            .extraordinary-text {
                padding: 2rem;
                color: #fff;
            }

            .extraordinary-text h2 {
                font-size: 2.5rem;
                margin-bottom: 1.5rem;
                background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
                
            }

            .extraordinary-text h2::after {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 0;
                width: 100px;
                height: 3px;
                background: linear-gradient(90deg, #FFD700, #FFA500);
                border-radius: 2px;
            }

            .extraordinary-text p {
                font-size: 1.1rem;
                line-height: 1.8;
                color: #e0e0e0;;
                margin-bottom: 1rem;
            }

            .extraordinary-text b i {
                color: #FFD700;
                font-size: 1.4rem;
                text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
            }

            .extraordinary-image {
                position: relative;
                height: 400px;
                width: 70%;
                border-radius: 50px;
                background: linear-gradient(135deg, #20B2AA, #87CEEB);
                overflow: hidden;
            }
            
            /*Extraordinry slider*/
            .click-slider {
              position: relative;
              max-width: 800px;
              margin: auto;
              height: 400px; /* set your desired height */
              overflow: hidden;
            }

            .click-slide {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              object-fit: cover;
              opacity: 0;
              transition: opacity 1s ease-in-out;
            }

            .click-slide.active {
              opacity: 1;
              z-index: 1;
            }


            /*amenities*/
            #amenities {
              padding: 2rem;
              text-align: center;
              background: #fffdf7;
            }

            #amenities h2 {
              font-size: 3.5rem;
              color: #cc9900;
              margin-bottom: 0.5rem;
              text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
            }

            .subtitle {
              font-size: 1.1rem;
              color: #666;
              margin-bottom: 2rem;
            }

            .amenities-grid {
              display: flex;
              flex-wrap: wrap;
              justify-content: center;
              gap: 1.5rem;
            }

            .amenity-card {
              background: #fef9f1;
              padding: 1.2rem 1.5rem;
              border-radius: 10px;
              box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
              max-width: 250px;
              text-align: left;
              font-size: 0.95rem;
              color: #333;
              transition: transform 0.3s ease;
            }

            .amenity-card:hover {
              transform: translateY(-5px);
            }

            .amenity-card h3 {
              font-size: 1.1rem;
              margin-bottom: 0.5rem;
              color: #2d3748;
            }

            .amenity-card p {
              margin: 0;
              color: #555;
            }

            /*time ckeck in */
            .check-box {
                  max-width: 650px;
                  margin: 2rem auto;
                  background: black;
                  border-radius: 12px;
                  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
                  padding: 2rem;
                  text-align: center;
                  animation: fadeInUp 1s ease forwards;
                }

                .time-section {
                  display: flex;
                  justify-content: space-around;
                  align-items: center;
                  flex-wrap: wrap;
                  margin-bottom: 1.2rem;
                }


            .time-box {
              width: 45%;
              padding: 1rem;
              border-radius: 10px;
              box-shadow: 0 2px 6px rgba(0,0,0,0.06);
              transition: transform 0.4s ease, box-shadow 0.4s ease;
              color: #fff;
            }

            .time-box.day {
              background: linear-gradient(135deg, #fceabb 0%, #f8b500 100%);
            }

            .time-box.night {
              background: linear-gradient(135deg, #2b5876 0%, #4e4376 100%);
            }

            .time-box:hover {
              transform: translateY(-6px) scale(1.03);
              box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
            }


            /* Rooms & Facilities */
            /* Section Padding */
            .section {
              padding: 5rem 2rem;
              background: #fffdf7;

            }

            /* 2x2 Grid Layout for Rooms */
            .rooms-wrapper {
              display: grid;
              grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
              gap: 3rem;
              padding: 2rem 0;
            }

            /* Individual Room Block */
            .rooms-grid {
              display: flex;
              flex-direction: column;
              gap: 1.5rem;
            }

            /* Room Image Container */
            .room-image {
              height: 350px;
              width: 100%;
              border-radius: 20px;
              position: relative;
              overflow: hidden;
            }

            /* Room Details Styling */
            .room-details {
              background: white;
              padding: 2rem;
              border-radius: 15px;
              box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            }

            .room-details h3 {
              font-size: 1.5rem;
              margin-bottom: 1rem;
              color: Black;
            }

            .room-details p {
              color: black;
              margin-bottom: 1.5rem;
            }

            .room-price {
              background: #cc9900;
              color: white;
              padding: 0.5rem 1rem;
              border-radius: 20px;
              display: inline-block;
              margin-bottom: 1rem;
              font-weight: bold;
            }

            /* SlideShow */
            .slider-container {
              max-width: 600px;
              position: relative;
              margin: auto;
              overflow: hidden;
            }

            .slide {
              display: none;
              width: 100%;
            }

            .arrow-btn {
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              background: rgba(0,0,0,0.5);
              color: white;
              font-size: 2rem;
              border: none;
              padding: 0.5rem 1rem;
              cursor: pointer;
              z-index: 10;
              transition: background 0.3s ease;
            }

            .arrow-btn:hover {
              background: rgba(0,0,0,0.8);
            }

            .arrow-left {
              left: 10px;
            }

            .arrow-right {
              right: 10px;
            }

            /* Why Choose Us */
            .why-choose-us {
                background: linear-gradient(120deg, #000000, #333333, #cc9900);
                background-size: cover;
                color: black;
                padding: 5rem 2rem;
                text-align: center;
            }

            .why-choose-content {
                max-width: 1200px;
                margin: 0 auto;
            }

            .why-choose-content h2 {
                font-size: 2.5rem;
                margin-bottom: 2rem;
                color: #4F7942;
            }

            .features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
                margin-top: 3rem;
            }

            .feature-card {
                background: linear-gradient(135deg, #fffbea 0%, #fff3b0 50%, #f9e79f 100%);
                padding: 2rem;
                border-radius: 15px;
                backdrop-filter: blur(10px);
                transition: all 0.3s ease;
            }

            .feature-card:hover {
                transform: translateY(-5px);
                background: rgba(255, 255, 255, 0.15);
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 50%;
                margin: 0 auto 1rem;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.5rem;
            }

            /* Gallery */
            .gallery-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1rem;
                margin-bottom: 3rem;
            }

            .gallery-item {
                height: 200px;
                background: linear-gradient(45deg, #f7fafc, #edf2f7);
                border-radius: 15px;
                transition: all 0.3s ease;
                cursor: pointer;
            }

            .gallery-item:hover {
                transform: scale(1.05);
                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            }

            /* Testimonials */
            .testimonials {
                
                padding: 2rem 2rem;
            }

            .testimonial-card {
                background: white;
                padding: 2rem;
                border-radius: 15px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                max-width: 600px;
                margin: 0 auto;
                text-align: center;
            }

            .testimonial-text {
                font-size: 1.1rem;
                font-style: italic;
                margin-bottom: 1.5rem;
                color: #666;
            }

            .testimonial-author {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 1rem;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
                background: #2c5282;
                border-radius: 50%;
            }

            /* Newsletter */
            .newsletter {
                background: #fffacd;
                color: #cc9900;
                padding: 4rem 2rem;
                text-align: center;
            }

            .newsletter-form {
                max-width: 500px;
                margin: 2rem auto 0;
                display: flex;
                gap: 1rem;
                justify-content: center;
            }


            .newsletter-btn {
                background: #cc9900;
                color: black;
                border: none;
                justify-content: center;
                text-align: center;
                padding: 1rem 2rem;
                border-radius: 25px;
                font-weight: bold;
                cursor: pointer;
                transition: all 0.3s ease;
            }

            .newsletter-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
            }

            /* Footer */
 .footer {
  background-color: #000;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  color: #dca100;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.footer-column p,
.footer-column a {
  color: #cdd5df;
  line-height: 1.6;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #f3c152;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column iframe {
    height: 200px;
  }
}

            /* Animations */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .fade-in {
                animation: fadeInUp 0.8s ease-out;
            }

            /* Responsive Design */
            @media (max-width: 768px) {
                .nav-links {
                    display: none;
                }

                .hero h1 {
                    font-size: 2.5rem;
                }

                .search-box {
                    flex-direction: column;
                }

                .extraordinary-content {
                    grid-template-columns: 1fr;
                    text-align: center;
                }

                .rooms-grid {
                    grid-template-columns: 1fr;
                }

                .newsletter-form {
                    flex-direction: column;
                }

                .section-title {
                    color:#cc9900;
                    font-size: 4rem;
                }
            }

            /* Smooth Scrolling */
            html {
                scroll-behavior: smooth;
            }

            /* Custom Scrollbar */
            ::-webkit-scrollbar {
                width: 8px;
            }

            ::-webkit-scrollbar-track {
                background: #f1f1f1;
            }

            ::-webkit-scrollbar-thumb {
                background: #2c5282;
                border-radius: 4px;
            }

            ::-webkit-scrollbar-thumb:hover {
                background: #2a4a7a;
            }