    *{
        margin: 0;
        padding: 0;
    }
    body {
      margin: 0;
   background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('img/banner.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    color: #fff;
    height: 500px;
      display: flex;
    }
    h1{
        margin-top: 0px !important;
        font-weight: bolder;
        font-size: 25px;
        font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    }
 p{
    text-align: justify;
 }
 li{
    list-style: none;
 }
 h1{
    text-align: center;
 }
    /* LEFT FIXED SIDEBAR */
    .wrap {
      width: 400px;           
      padding: 5px;
      overflow-y: auto;    
      position: fixed;      
      top: 0;
      left: 0;
      height: 100vh;    
      background-color: #0A0F1D;
      border-top-left-radius: 50px;
      border-start-end-radius: 50px;
      border-top: 1px solid whitesmoke;
      padding-bottom: 100px;
    }

    /* RIGHT MAIN CONTENT */
    .main {
      margin-left: 425px;    /* space for sidebar */
      padding: 20px;
      flex: 1;
      position: fixed;
    }

    .box {
      margin-bottom: 5px;
      /*padding: 12px;*/
      border-radius: 6px;
    }

    /* Scrollbar style */
    .wrap::-webkit-scrollbar {
      width: 8px;
    }
    .wrap::-webkit-scrollbar-thumb {
      background: #fff;
      border-radius: 4px;
    }
    .wrap::-webkit-scrollbar-track {
      background: #222;
    }
        .swiper {
      width: 100%;
      padding: 10px 0;
    }
    .swiper-slide {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .swiper-slide img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 10px;
    }
    .btn-primary{
    background-color: #2D67CF;
    font-size: 12px;
    gap: 2px;
    border: none;
    color: white;
    border-radius: 8px;
    }
    .btn-secondary{
    background-color: #42954F;
    font-size: 12px;
    gap: 2px;
    border: none;
    color: white;
    border-radius: 8px;
    }
    .view{
        border-radius: 5px;
    border: 1px solid #00A0FF;
    background: #0C1632;
    color: #fff;
    padding: 5px 20px;
    }

    /* Bottom fixed section */
    .bottom-fixed {
      position: fixed;
      bottom: 0;
      left: 0;
      width: 31%;
      background: #111827;
      padding: 15px;
      display: flex;
      justify-content: space-between;
      gap: 15px;
      box-shadow: 0 -2px 10px rgba(0,0,0,0.5);
        z-index: 1000;   
    }
    .bottom-fixed a{
        text-align: center;
        color: #fff;
    }
    .fixed-bottom{
        margin-left: 250px;
    }
    .gel{
        background-color: #00A0FF;
        border-radius: 10px;
        padding: 5px;
    }
    .review-contact {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      flex-wrap: wrap;
      border: 1px solid #ddd;
      padding: 15px 20px;
      border-radius: 8px;
    }

    /* Left Google Review */
    .google-review {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .google-review img {
      width: 80px; /* Google logo */
    }

    .review-text {
      font-size: 15px;
      line-height: 1.4;
    }

    .review-text .rating {
      font-weight: bold;
      font-size: 16px;
      margin-right: 5px;
    }

    .stars {
      color: #fbbc04; /* Google star yellow */
      font-size: 18px;
      margin: 0 5px;
    }

    .review-text a {
      color: #1a73e8;
      text-decoration: none;
    }
    .review-text a:hover {
      text-decoration: underline;
    }

    /* Right Contact */
    .contact {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-icon {
      font-size: 24px;
      color: #444;
    }

    .contact-number {
      font-weight: bold;
      font-size: 18px;
    }

    .contact-sub {
      font-size: 14px;
      color: #666;
    }
.stay li{
    font-size: 12px;
}
    /* Responsive */
    @media (max-width: 768px) {
      .review-contact {
        flex-direction: column;
        align-items: flex-start;
      }
    }
     @media only screen and (max-width: 476px) {
        .wrap {
      width: 424px; 
           border-top-left-radius: 0px;
      border-start-end-radius: 0px;
    }
    .bottom-fixed {
        width: 100%;
    }
     }
     .clay{
  background: #000000c4;
  padding: 30px;
  padding-top: 5px;
  border-radius: 20px;
}
.whatsapp-float {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 55px;
  height: 55px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  animation: pulse 1.6s infinite;
}

.whatsapp-float img {
  width: 40px;
  height: 40px;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}