* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
  
    height: 100vh;
    /* background-image: url('https://westvillecottage.com/westvilleimage/slider/home-default0.jpg'); */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* color: #000000; */
}


    body {
      margin: 0;
      font-family: sans-serif;
      /* background: #000; */
      color: #fff;
    }

    h2 {
      text-align: center;
      color: #e65100;
      margin-top: 20px;
    }
  



.hero {
    position: relative;
    /* background: url('https://westvillecottage.com/westvilleimage/slider/home-default0.jpg') no-repeat center center/cover; */
    height: 100vh;top
    margin-top: -90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    font-family: 'Great Vibes', cursive;
    color: rgb(41, 41, 41);
    font-size: 54px;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-text span {
    /* font-family: 'Playfair Display', serif; */
    font-size: 22px;
    text-transform: uppercase;
    display: block;
    letter-spacing: 2px;
}





/* START ATTRECTION BAR */
/* Wrapper */
/* ===== Booking Bar Styles ===== */
.booking-bar-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto; /* ✅ Horizontal scroll allow */
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
    padding: 10px 0;
    background: #f9f9f9;
}

.booking-bar {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: center;
    padding: 15px 20px;
}

.info-item {
    background: #fff;
    padding: 12px 18px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 140px; /* ✅ Har item ki ek fixed min width */
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.info-item i {
    font-size: 24px;
    color: #0077b6;
    margin-bottom: 6px;
}

.info-value {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.info-label {
    font-size: 14px;
    color: #777;
}

/* ===== Scrollbar Styling ===== */
.booking-bar-wrapper::-webkit-scrollbar {
    height: 6px;
}

.booking-bar-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.booking-bar-wrapper::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 3px;
}

/* ===== Responsive Fix ===== */
@media (max-width: 768px) {
    .booking-bar-wrapper {
        justify-content: flex-start; /* ✅ Left align on mobile */
        padding-left: 10px; /* ✅ Thoda space left side */
    }

    .booking-bar {
        gap: 15px;
        padding: 12px 15px;
    }

    .info-item {
        padding: 10px 12px;
        min-width: 120px; /* ✅ Items ek jaisa dikhne ke liye */
    }

    .info-item i {
        font-size: 22px;
    }

    .info-value {
        font-size: 16px;
    }

    .info-label {
        font-size: 13px;
    }
}


       
    .about-section {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      background-color: #f6fbfc;
     color: #34475c;
      padding: 50px 0;
      margin-top:-80px;
    }

    .about-wrapper {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
      flex-wrap: wrap;
    }

    .about-text {
      flex: 1;
      min-width: 300px;
      margin-left: 50px;
    }

    .about-text h2 {
      font-size: 32px;
      color: #021328;
      margin-bottom: 20px;
      font-weight: 600;
      line-height: 1.2;
    }

    .about-text .subtitle {
      display: block;
      font-size: 26px;
      font-weight: 300;
      color: #6f7070;
      margin-top: 5px;
    }

    .about-text p {
      font-size: 18px;
      line-height: 1.7;
      margin-bottom: 15px;
      color: #0b1230;
    }

    .about-text p strong {
      font-weight: 800;
    }

    .about-image {
      flex: 1;
      min-width: 300px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 40px;
    }

    .about-image img {
      width: 100%;
      max-width: 600px;
      height: 400px;
      object-fit: cover;
      border-radius: 8px;
    }

    /* Tablet: max 768px */
    @media (max-width: 768px) {
      .about-wrapper {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
      }

      .about-text {
        margin-left: 0;
      }

      .about-text h2 {
        font-size: 26px;
        text-align: center;
      }

      .about-text .subtitle {
        font-size: 20px;
        text-align: center;
      }

      .about-text p {
        font-size: 15px;
        text-align: justify;
      }

      .about-image img {
        max-width: 100%;
        height: auto;
      }
    }

    /* Mobile: max 480px */
    @media (max-width: 480px) {
      .about-text h2 {
        font-size: 22px;
      }

      .about-text .subtitle {
        font-size: 18px;
      }

      .about-text p {
        font-size: 14px;
      }

      .about-image {
        min-width: 100%;
        text-align: center;
      }

      .about-image img {
        max-width: 100%;
        height: auto;
        border-radius: 6px;
      }
    }
  
  
  /* Tablet: 768px and below */
@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
  }

  .about-text {
    margin-left: 0;
  }

  .about-text h2 {
    font-size: 26px;
    text-align: center;
  }

  .about-text .subtitle {
    font-size: 20px;
    text-align: center;
  }

  .about-text p {
    font-size: 15px;
    text-align: justify;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
  }
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
  .about-text h2 {
    font-size: 22px;
  }

  .about-text .subtitle {
    font-size: 18px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-image {
    min-width: 100%;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
  }
}

  

    

.rooms-section {
    background: #fff;
    padding: 60px 20px;
}

.rooms-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.room-box {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.room-box img {
    width: 100%;
}

.room-content {
    padding: 20px;
}

.cta-buttons {
    text-align: center;
    margin-top: 30px;
}

.cta-buttons button {
    background: #a47850;
    color: rgb(0, 0, 0);
    border: none;
    padding: 12px 25px;
    margin: 10px;
    font-weight: bold;
    cursor: pointer;
}

.theater-section {
    background: url('https://i.imgur.com/AgXVPSe.jpg') center/cover;
    color: #000000;
    text-align: center;
    padding: 80px 20px;
}

.theater-section h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.theater-section p {
    max-width: 700px;
    margin: auto;
    font-size: 16px;
    line-height: 1.7;
}

.full_main_container-body {
    width: 97%;
    padding: 0px 20px;
    margin-left: 20px;
}



 



    .rustic-main-section {
      font-family: 'Playfair Display', serif;
     background-color: #f8fdfd;
      color: #333;
      height: 700px;
      padding: 0px 0;
      margin-top: -40px;
    }

    .rustic-section {
      padding: 30px 15px;
      position: relative;
      
    }

    h2.rustic-section-title {
      text-align: center;
      font-size: 3rem;
         font-family: 'helvetica'serif;
      margin-bottom: 30px;
      font-weight: 600;
      color: #313131;
    }

    .rustic-image-block {
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .rustic-image-block img {
      width: 100%;
      height: 400px;
      object-fit: cover;
      display: block;
    }

    .rustic-arrow {
      font-size: 2rem;
      color: #b50374;
    }

    .rustic-block {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 30px;
      margin-bottom: 40px;
    }

    .rustic-block.reverse {
      flex-direction: row-reverse;
    }

    .rustic-block .img-col,
    .rustic-block .text-col {
      flex: 1 1 45%;
    }

    .rustic-text-col p {
      /* font-family: 'Dancing Script', cursive; */
      font-size: 1.3rem;
      padding: 10px;
      line-height: 1.8;
    }

    /* Responsive Media Queries */
    @media (max-width: 991px) {
      h2.rustic-section-title {
        font-size: 2.5rem;
      }

      .rustic-image-block img {
        height: 300px;
      }

      .rustic-text-col p {
        font-size: 1.2rem;
      }

      .rustic-main-section {
        height: auto;
        padding-bottom: 30px;
      }
    }

    @media (max-width: 767px) {
      .rustic-block,
      .rustic-block.reverse {
        flex-direction: column;
      }

      .rustic-block .img-col,
      .rustic-block .text-col {
        flex: 1 1 100%;
      }

      .rustic-image-block img {
        height: 250px;
      }

      h2.rustic-section-title {
        font-size: 2.2rem;
      }

      .rustic-text-col p {
        font-size: 1.1rem;
      }

      .rustic-main-section {
        height: auto;
        padding-bottom: 40px;
      }
    }

    @media (max-width: 480px) {
      .rustic-text-col p {
        font-size: 1rem;
        padding: 8px;
      }

      h2.rustic-section-title {
        font-size: 2rem;
      }

      .rustic-arrow {
        font-size: 1.5rem;
      }

      .rustic-image-block img {
        height: 220px;
      }
    }
  



      
     


    /* ===== HEADER ===== */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 90px;
      background: #001f4d;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0px 40px;
    }

    /* Contact Sections */
    .email-section,
    .phone-section {
      display: flex;
      align-items: center;
      gap: 8px;
      color: #fff;
      font-size: 15px;
      white-space: nowrap;
       margin-top: -19px;
    }

    .email-section i,
    .phone-section i {
      color: orange;
    }

    /* Center Navigation */
    .center-nav {
      display: flex;
      align-items: center;
      gap: 40px;
    }

    .menu-left,
    .menu-right {
      display: flex;
      gap: 30px;
    }

    .menu-left a,
    .menu-right a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      font-size: 16px;
      margin-top: -19px;
      transition: color 0.3s ease;
    }

    .menu-left a:hover,
    .menu-right a:hover {
      color: #02f91f;
    }
      /* Active link */
    .menu-left a.active, 
    .menu-right a.active,
    .mobile-menu a.active {
      color: orange !important;
     
      text-decoration: none !important; /* underline remove */
    }

    /* Logo */
    .logo-badge img {
      height: 130px;
      width: auto;
      margin-top: -9px;
      display: block;
    }

    /* ===== MOBILE MENU ===== */
    .hamburger {
      display: none;
      font-size: 25px;
      color: #fff;
      cursor: pointer;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100%;
      background: rgba(0, 0, 0, 0.95);
      display: flex;
      flex-direction: column;
      padding: 60px 20px;
      transition: right 0.3s ease;
      z-index: 2000;
    }

    .mobile-menu a {
      color: #fff;
      margin-bottom: 20px;
      text-decoration: none;
      font-size: 18px;
    }

    .mobile-menu .close-btn {
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 24px;
      cursor: pointer;
    }


    /* ===== RESPONSIVE ===== */
    @media (max-width: 991px) {
      .menu-left,
      .menu-right,
      .email-section,
      .phone-section {
        display: none;
      }

      .hamburger {
        display: block;
      }

      .logo-badge img {
        height: 80px;
        margin-top:10px;
      }

      .topbar {
        justify-content: space-between;
      }
    }

  /* ===== END HEADER ===== */





  .video-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 5%;
  height: 60vh;
  color: white;
  gap: 50px;
  flex-wrap: wrap;
  background: url('./images/img4.jpg') no-repeat center center/cover;
  overflow: hidden;
  z-index: 1;
}

.video-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(50, 49, 49, 0.6); /* semi-dark overlay */
  backdrop-filter: blur(0.3px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 0;
}

.video-text,
.video-box {
  position: relative;
  z-index: 1;
}


    .video-text {
      flex: 1 1 500px;
      text-align: left;
    }

    .video-text h2 {
      font-size: 64px;
      margin-bottom: 20px;
      font-weight: bold;
    }

    .video-text p {
      font-size: 22px;
      font-weight: bold;
      line-height: 1.6;
      text-transform: uppercase;
    }

    .video-box {
      flex: 1 1 500px;
      display: flex;
      justify-content: center;
    }

    .video-box iframe {
      width: 100%;
      max-width: 550px;
      height: 315px;
      border: none;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    }

    @media (max-width: 768px) {
      .video-section {
        flex-direction: column;
        height: auto;
        padding: 10px 20px;
        text-align: center;
       
    
      }
 .video-box iframe {
    margin-top: -250px;
    }
      .video-text {
        text-align: center;
      }

      .video-text h2 {
        font-size: 40px;
      }

      .video-text p {
        font-size: 18px;
      }
    }
 






    .testimonial-section {
      padding: 80px 20px;
      background-color: #fefefe;
      color: #333;
      text-align: center;
    }

    .testimonial-title {
      font-size: 38px;
      font-weight: 600;
      color:#222;
      margin-bottom: 0px;
      font-family: 'Playfair Display', serif;
    }

    .swiper {
      max-width: 900px;
      height: auto;
      margin: auto;
      position: relative;
    }

    .swiper-wrapper {
      height: 100%;
    }

    .swiper-slide {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      opacity: 0 !important;
      transition: opacity 0.6s ease-in-out;
      height: auto;
      padding: 40px 30px;
      background-color: #ffffff;
      border-radius: 20px;
      /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1); */
    }

    .swiper-slide.swiper-slide-active {
      opacity: 1 !important;
    }

    .testimonial-quote {
      font-style: italic;
      font-size: 1.1rem;
      margin-bottom: 30px;
      position: relative;
      padding-left: 20px;
       color: #34475c;
    }

    .testimonial-quote::before {
      content: "“";
      font-size: 3rem;
      color: #052c57;
      position: absolute;
      top: -10px;
      left: -10px;
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 15px;
      margin-top: 20px;
    }

    .testimonial-user img {
      width: 60px;
      height: 60px;
      object-fit: cover;
      border-radius: 50%;
      border: 2px solid #007BFF;
    }

    .testimonial-user h6 {
      margin: 0;
      font-size: 1.1rem;
      font-weight: 600;
    }

    .testimonial-user span {
      font-size: 0.9rem;
      color: #666;
      display: block;
    }

    .swiper-pagination-bullet {
      background: #007BFF;
      opacity: 0.4;
    }

    .swiper-pagination-bullet-active {
      opacity: 1;
    }

    @media (max-width: 768px) {
      .testimonial-title {
        font-size: 28px;
      }

      .swiper-slide {
        padding: 30px 20px;
      }

      .testimonial-quote::before {
        font-size: 2rem;
      }
    }


    /* =======================
   Responsive Adjustments
   ======================= */

/* Medium devices (tablets, 768px - 991px) */
@media (max-width: 991px) {
  .testimonial-section {
    padding: 60px 15px;
  }

  .testimonial-title {
    font-size: 32px;
  }

  .swiper {
    max-width: 700px;
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .testimonial-user h6 {
    font-size: 1rem;
  }

  .testimonial-user span {
    font-size: 0.85rem;
  }
}

/* Small devices (phones, less than 768px) */
@media (max-width: 767px) {
  .testimonial-section {
    padding: 40px 10px;
  }

  .testimonial-title {
    font-size: 26px;
  }

  .swiper {
    max-width: 100%;
  }

  .swiper-slide {
    padding: 25px 15px;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    padding-left: 15px;
  }

  .testimonial-quote::before {
    font-size: 2rem;
    top: 0;
    left: -5px;
  }

  .testimonial-user img {
    width: 50px;
    height: 50px;
  }

  .testimonial-user h6 {
    font-size: 1rem;
  }

  .testimonial-user span {
    font-size: 0.8rem;
  }
}

/* Extra small devices (less than 480px) */
@media (max-width: 480px) {
  .testimonial-title {
    font-size: 24px;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  .testimonial-user {
    flex-direction: column;
    gap: 10px;
  }

  .testimonial-user img {
    margin-bottom: 5px;
  }
}




    .modern-footer {
      background: linear-gradient(135deg, #1e1e2f, #28293d);
      color: #f5f5f5;
      padding: 50px 20px 20px;
      font-family: 'Segoe UI', sans-serif;
    }

    /* Top Content Layout */
    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    /* Columns */
    .footer-column {
      flex: 1;
      min-width: 250px;
    }

    .footer-column h5 {
      font-size: 1rem;
      letter-spacing: 1px;
      margin-bottom: 10px;
      color: #ffb347;
      text-transform: uppercase;
    }

    .footer-column p.phone {
      font-size: 1.1rem;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .footer-link {
      color: #f5f5f5;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: 0.3s;
    }

    .footer-link:hover {
      border-bottom: 1px solid #ffb347;
    }

    /* Navigation Links as inline orange */
    .footer-nav {
      margin-bottom: 15px;
    }

    .footer-nav a {
      color: #ffb347;
      text-decoration: none;
      font-weight: 500;
      margin: 0 8px;
      transition: color 0.3s ease;
    }

    .footer-nav a:hover {
      color: #fff;
    }

    /* Social Icons */
    .social-icons a {
      color: white;
      font-size: 1.5rem;
      margin-right: 15px;
      transition: color 0.3s ease;
    }

    .social-icons a:hover {
      color: #ffb347;
    }

    /* Divider */
    .footer-divider {
      height: 1px;
      background-color: rgba(255, 255, 255, 0.2);
      margin: 30px 0;
    }

    /* Bottom Section */
    .footer-bottom {
      text-align: center;
      font-size: 0.9rem;
      color: #ccc;
    }

    .atlas-logo {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: -20px;
      gap: 18px;
    }

    .atlas-logo img {
      height: 55px;
       margin-top: -10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .social-icons {
        margin-top: 15px;
      }

      .footer-nav {
        margin-top: 10px;
      }
    }
    