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

    body {
      font-family:sans-serif;
    }

    nav {
      background-color: #ffffff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #1d4ed8;
      text-decoration: none;
    }

     .nav-links {
      display: flex;
      gap: 1.5rem;
    }

    .nav-links a {
        position: relative;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        padding: 0.5rem 0;
        transition: color 0.3s;
      }
      
      .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0%;
        height: 2px;
        background-color: #1d4ed8;
        transition: width 0.3s ease-in-out;
      }
      
      .nav-links a:hover {
        color: #1d4ed8;
      }
      
      .nav-links a:hover::after {
        width: 100%;
      }
      

    .auth-buttons a {
      margin-left: 1rem;
      text-decoration: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      font-size: 0.9rem;
      transition: background-color 0.3s;
    }

    .login {
      color: #333;
      border: 1px solid #ccc;
    }

    .login:hover {
      background-color: #f0f0f0;
    }

    .register {
      background-color: #1d4ed8;
      color: #fff;
    }

    .register:hover {
      background-color: #2563eb;
    }

    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      cursor: pointer;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        border-top: 1px solid #eee;
        padding: 1rem 0;
      }

      .nav-links.active {
        display: flex;
      }

      .auth-buttons {
        display: none;
      }

      .menu-toggle {
        display: block;
      }
    }

    /* home section */
    .home-section {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 12rem 4rem;
        background: url(assets/Images/house6.avif) no-repeat center center/cover;
        color: white;
        position: relative;
      }
  
      .overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
      }
  
      .home-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
      }
  
      .home-content h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
      }
  
      .home-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
      }
  
      .home-content a {
        text-decoration: none;
        background-color: #1d4ed8;
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 5px;
        font-weight: 600;
        transition: background-color 0.3s;
      }
  
      .home-content a:hover {
        background-color: #2563eb;
      }
  
      @media (max-width: 768px) {
        .home-content h1 {
          font-size: 2rem;
        }
  
        .home-content p {
          font-size: 1rem;
        }
      }
  
 /* room section */
      .room-section {
        padding: 4rem 1rem;
        max-width: 1200px;
        margin: 0 auto;
        text-align: center;
      }
      
      .room-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: #1d4ed8; /* Blue heading */
      }
      
      .rooms-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
      }
      
      .room-card {
        background-color: #fff;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
      }
      
      .room-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
      }
      
      .room-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
      }
      
      .room-info {
        padding: 1rem;
      }
      
      .room-info h3 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        color: #333;
      }
      
      .room-info p {
        color: #666;
        margin-bottom: 1rem;
        font-size: 0.95rem;
      }
      
      .room-info .price {
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 1.1rem;
        color: #1e3a8a; /* Darker blue for price */
      }
      
      .room-info a {
        text-decoration: none;
        background-color: #1d4ed8;
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 4px;
        font-weight: 500;
        transition: background-color 0.3s, transform 0.2s;
        display: inline-block;
      }
      
      .room-info a:hover {
        background-color: #2563eb;
        transform: scale(1.05);
      }

/* Booking Section */
.booking-section {
  padding: 4rem 1rem;
  margin: 0 auto;
  
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.booking-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
 
  gap: 2rem;
}

/* Left Side - HomyStay Info */
.booking-info {
  flex: 1 1 40%;
  text-align: left;
}

.booking-info h1 {
  font-size: 2.5rem;
  color: #1d4ed8;
}

.booking-info p {
  font-size: 1.2rem;
  color: #555;
}

/* Right Side - Booking Form */
.booking-form-container {
  flex: 1 1 50%;
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.booking-form-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1d4ed8;
}

.booking-form-container p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.booking-form {
  text-align: left;
}

.booking-form .form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.booking-form label {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.booking-form input {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.booking-form input:focus {
  border-color: #1d4ed8;
  outline: none;
}

/* Button */
.booking-form button {
  background-color: #1d4ed8;
  color: white;
  padding: 0.8rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.booking-form button:hover {
  background-color: #2563eb;
  transform: scale(1.03);
}

/* Responsive Design */
@media (max-width: 768px) {
  .booking-container {
      flex-direction: column;
      text-align: center;
  }

  .booking-info {
      text-align: center;
  }
}

  
/* Contact Section */
.contact-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 60px 20px;
  background-color: #fff;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 20px;
  margin: auto;
}

/* Contact Info */
.contact-info {
  background-color:  #1d4ed8;;
  color: white;
  padding: 40px 30px;
  border-radius: 10px;
  width: 45%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-info h2 {
  margin-bottom: 20px;
  font-size: 26px;
  text-align: center;
}

.contact-info p {
  font-size: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
}

.contact-info p i {
  font-size: 20px;
}

.social-icons {
  margin-top: 20px;
  text-align: center;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  transition: color 0.3s ease;
}

/* Social Media Hover with Brand Colors */
.social-icons a:hover .fa-facebook-f { color: #1877F2; }
.social-icons a:hover .fa-x-twitter { color: #000000; }
.social-icons a:hover .fa-instagram { color: #E4405F; }
.social-icons a:hover .fa-linkedin-in { color: #0A66C2; }

/* Contact Form */
.contact-form {
  background-color: white;
  padding: 40px 30px;
  border-radius: 10px;
  width: 50%;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
  margin-bottom: 20px;
  font-size: 26px;
  color:  #1d4ed8;
  text-align: center;
}

.contact-form .form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form textarea {
  resize: none;
  height: 120px;
}

.contact-form button {
  background-color:  #1d4ed8;;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  width: 100%;
  font-size: 18px;
}

.contact-form button:hover {
  background-color:  #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-section {
      flex-direction: column;
      align-items: center;
  }

  .contact-info,
  .contact-form {
      width: 90%;
      margin-bottom: 20px;
  }

  .contact-form .form-group {
      flex-direction: column;
  }
}
  /* Footer Section */
.footer-section {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 3rem 1rem 1rem;
    margin-top: 4rem;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .footer-brand h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
  }
  
  .footer-brand p {
    font-size: 1rem;
    color: #9ca3af;
    max-width: 300px;
  }
  
  .footer-links h4,
  .footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
  }
  
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 0.5rem;
  }
  
  .footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #60a5fa;
  }
  
  .footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    border-top: 1px solid #374151;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: #9ca3af;
  }
  
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-brand p {
      max-width: 100%;
    }
  }
  

  .social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f1f1f1;
    text-decoration: none;
    color: #333;
    font-size: 24px;
    transition: 0.3s ease-in-out;
}

/* Hover effect - Change to original brand colors */
.social-icons a:hover {
    background-color: transparent;
}

.social-icons a:hover .fa-facebook-f { color: #1877F2; }  /* Facebook Blue */
.social-icons a:hover .fa-x-twitter { color: #000000; }   /* Twitter Blue */
.social-icons a:hover .fa-instagram { color: #E4405F; } /* Instagram Pink-Red */
.social-icons a:hover .fa-linkedin-in { color: #0A66C2; } /* LinkedIn Blue */

  /* Scroll Animatin for Booking Section */
  .scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }
  
  .scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
  }