nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 97%;
    height: 100px;
    position: fixed; /* Set position to fixed */
    top: 0; /* Position at the top of the viewport */
    background-color: rgba(255, 255, 255, 0.9); /* Add a background color */
    z-index: 1000; /* Set a high z-index to ensure it appears above other content */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Add a shadow for depth */
}

.logo {
    width: 160px;
    height: 100px;
}

a {
    text-decoration: none;
    color: rgb(255, 255, 255); /* Change text color to contrast with the background */
}

.call:hover {
    transform: scale(1.1, 1.1);
    transition-duration: 200ms, 300ms;
    cursor: pointer;
}

.call {
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: bold;
    line-height: 1em;
    background-color: #AF1E23;
    border-radius: 100px 100px 100px 100px;
    padding: 10px 12px 10px 20px;
    display: flex;
    justify-content: space-around;
}

.fa-solid {
    font-weight: 900;
    position: relative;
    font-size: 13px;
    left: -5px;
    bottom: 1px;
}



.header{
    margin-top: 150px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}
.img-border{
    border: 1px solid #241717;
    border-radius: 10px;
    padding: 10px;
    width: 400px;
    height: 400px;
    background: linear-gradient(180deg, #9d351b 0%, #160c0c 100%);
    
}

.img-border:hover{
    animation: change 4000ms linear ;
}

.header .img-border img{
    width: 400px;
    height: 400px;
}

@keyframes change {
    0% {
        transform: rotate(0deg);
        background: linear-gradient(180deg, #2c465c 0%, #865399 100%);
    }
    100% {
        transform: rotate(10deg);
    }
}


.content {
   
    display: flex;
    flex-direction: column;
}

 h2{
     text-align: center;
     color: #096B94;
     font-family: "Cairo", Sans-serif;
     position: relative;
}

h2 .line{
    width: 100px;
    position: absolute;
    border: 2px solid #dbdb18;
    color: yellowgreen;
    top: 60px;
    left: 129px;
}
.content h4{
    color: #310606;
    text-align: center;
    max-width: 350px;
    line-height: 1.7;
}


.whatsapp-button {
    position: fixed;
    bottom: 65px;
    right: 20px;
    width: 60px; /* Set width and height to create a circular shape */
    height: 60px; /* Set width and height to create a circular shape */
    border-radius: 50%; /* Make the button circular */
    background-color: #25d366; /* WhatsApp green */
    color: #fff;
    border: none;
    font-size: 40px;
    cursor: pointer;
    z-index: 999; /* Ensure button is above other content */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Add shadow for better visibility */
  }

  .break{
    margin: 30px auto;
    width: 75%;
    border: 2px solid #051;
   
  }
  /*start of rooms for double*/
  #big-room{
    margin-top: 50px;
  }
  #big-room .text-content{
    text-align: center;
  }
  
   #big-room .text-content h3{
    margin-bottom: 10px;
    color: #606b77;
    font-size: 20px;
    font-family: sans-serif;
    padding: 10px;
  } 

 /*end of rooms for double*/
@media (max-width:768px) {
    .header{
        flex-wrap: wrap;
    }
    .img-border{
        width: 90%;
        height: 300px;
        padding: 5px;
    }

    .header .img-border img{
        width: 100%;
        height: 300px;
    } 
}


.card-container {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
}

.card {
    width: 250px;
    padding: 15px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.card-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    cursor: pointer;
}

.card-content h2 {
    margin: 0 0 10px;
    font-size: 24px;
}

.card-content .price {
    font-size: 20px;
    color: #666;
    margin: 10px 0;
}

.card-content .price .old-price {
    color: #999;
    text-decoration: line-through;
}

.card-content .price .new-price {
    color: blue; /* You can choose any color you like */
    margin-left: 10px; /* Adds some space between the old and new price */
}
.add-to-cart {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-size: 16px;
}

.add-to-cart:hover {
    background-color: #218838;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 40px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev {
    left: 0;
    border-radius: 3px 3px 0 0;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}


/*clients opinion*/
  .testimonial-container {
    text-align: center;
    margin: 100px 1px;
  }
  
  .testimonial-heading {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }
  
  .testimonial-card {
    position: relative;
    max-width: 600px;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
  }
  
  .testimonial-content {
    display: flex;
    align-items: center;
    padding: 20px;
  }
  
  .testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 20px;
    border: 2px solid #f76c6c;
  }
  
  .testimonial-text {
    text-align: left;
  }
  
  .testimonial-name {
    font-size: 18px;
    color: #f76c6c;
    margin: 0;
  }
  
  .testimonial-title {
    font-size: 14px;
    color: #999;
    margin: 5px 0;
  }
  
  .testimonial-description {
    font-size: 16px;
    color: #333;
  }
  
  .testimonial-navigation {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .nav-button {
    background-color: #f76c6c;
    border: none;
    margin: 15px 5px;
    color: white;
    font-size: 18px;
    cursor: pointer;
    user-select: none;
    padding: 10px;
    border-radius: 50%;
    outline: none;
  }
  
  @media (max-width: 768px) {
    .testimonial-card {
        width: 90%;
    }
  
    .testimonial-heading {
        font-size: 1.5rem;
    }
  }
  /*clients opinion*/

  /*bottom navbar*/

  .navbar {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.nav-link {
    text-decoration: none;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
}

.nav-link i {
    font-size: 24px;
    margin-bottom: 5px;
}

.nav-link.active i,
.nav-link:hover i {
    color: #17a2b8;
}

.nav-text {
    margin-top: 2px;
}

@media (max-width: 768px) {
    .navbar {
        padding: 5px 0;
    }

    .nav-link i {
        font-size: 20px;
    }

    .nav-text {
        font-size: 10px;
    }
}