* {
      margin: 0;
      padding: 0;
      font-family: 'Poppins', sans-serif;
    }
    a{
        text-decoration: none;
    }
    p{
        color: #000;
    }
    h2{
        color: #000;
        font-size: 25px;
        font-weight: bold !important;
    }
    h3{
        color: #000;
        font-size: 25px !important;
        font-weight: bold !important;
    }
    h4{
        color: #000;
        font-size: 25px !important;
        font-weight: bold !important;
        text-align: center;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
    .header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background: white;
      font-size: 24px;
      font-weight: bold;
    }

    .header a {
      font-size: 18px;
      color: #007bff;
      text-decoration: none;
    }

    /* Hero Section */
    .hero {
      position: relative;
      background: url('img/sri5.jpg') no-repeat center center/cover;
      height: 100vh;
      color: white;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero h1 {
      font-size: 60px;
      margin: 10px 0;
      font-weight: bold;
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    }

    .hero p {
      font-size: 24px;
      margin: 0;
      color: #fff;
    }

    /* Bottom button */
    .bottom-call {
      position: absolute;
      bottom: 90px;
      left: 50%;
      transform: translateX(-50%);
      background: #f4a261;
      color: white;
      padding: 15px 30px;
      border-radius: 25px;
      font-size: 15px;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .bottom-whatsapp {
      position: absolute;
      bottom: 10px;
      left: 50%;
      transform: translateX(-50%);
      background: #f4a261;
      color: white;
      padding: 15px 30px;
      border-radius: 25px;
      font-size: 15px;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    .bottom-call i {
      font-style: normal;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 36px;
      }

      .bottom-call {
        font-size: 16px;
        padding: 12px 20px;
      }
    }
    .rooms-section {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 30px;
      padding: 40px 20px;
      background: url('img/room-bg.webp'); 
      margin-top: 40px;
      margin-bottom: 40px;
    }
.rooms-section .subtitle {
  font-size: 18px;
  margin-bottom: 5px;
   color: #fff;
   text-align: center;
}

.rooms-section .section-title {
  font-size: 32px;
  margin-bottom: 40px;
  font-weight: 600;
  color: #fff;
  text-align: center;
}
.rooms-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

    .room-card {
      background: white;
      width: 320px;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .room-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }

    .room-content {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .room-content h3 {
      margin-top: 0;
      font-size: 20px;
      font-weight: 600;
    }

    .room-content p {
      color: #555;
      font-size: 15px;
      flex: 1;
    }

    .room-content .call-btn {
      margin-top: 20px;
      padding: 12px 25px;
      border: 2px solid #000;
      border-radius: 30px;
      background: transparent;
      font-weight: bold;
      cursor: pointer;
      transition: all 0.3s ease;
      align-self: flex-start;
      text-decoration: none;
      color: #000;
    }

    .room-content .call-btn:hover {
      background: #000;
      color: #fff;
    }

    @media (max-width: 1000px) {
      .rooms-section {
        flex-direction: column;
        align-items: center;
      }
    }
    .can {
        border: 2px solid red;
        text-align: center;
        background-color: #D9F3D9
    }
    h5{
        text-align: center;
        color: #000;
        font-size: 25px;
        font-weight: bold;
        font-family: 'Times New Roman', Times, serif;
    }
    .rooms-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5;
}
/* Contact Section */
.contact-section {
  padding: 40px 20px;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-info {
  flex: 1 1 350px;
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
  color: #555;
}

.contact-info .icon {
  font-size: 20px;
  margin-right: 10px;
}

.contact-info a {
  color: #333;
  text-decoration: none;
}

/* Map */
.contact-map {
  flex: 1 1 400px;
  min-width: 300px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 16px;
  background: #f9f9f9;
  color: #333;
  border-top: 1px solid #eee;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 100px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-buttons .btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn.call { background: #00c853; }
.btn.whatsapp { background: #25d366; }
.btn.close { background: #9c27b0; }

/* Chat Button */
.chat-toggle {
  display: none;
  position: fixed;
  bottom: 100px;
  left: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #9575cd;
  color: white;
  font-size: 24px;
  text-align: center;
  line-height: 55px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1000;
}


@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .contact-map iframe {
    height: 250px;
  }
  p {
    text-align: justify;
  }
  .contact-info {
    flex: 1 1 200px;
}
.contact-map {
    flex: 1 1 250px;
    min-width: 390px;
}
}
