body, html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    font-family: Arial, sans-serif;
  }
  
  #navbar {
    background: #fff;
    opacity: .85;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    z-index: 10;
  }
  
  #navbar ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
  }
  
  #navbar li {
    padding: 0 15px;
  }
  
  #navbar li a {
    text-decoration: none;
    color: black;
    font-weight: bold;
  }
  
  #navbar li a:hover {
    text-decoration: underline;
  }
  
  #brand-name {
    font-size: 1.5em;
    color: black;
    text-decoration: none;
    margin: 0 20px;
    cursor: pointer;
    margin-right: 200px;
    font-style: italic;
  }
  
  #book-slot {
    padding: 10px 20px;
    border: 2px solid black;
    background: transparent;
    color: black;
    font-size: 1em;
    cursor: pointer;
    margin-right: 35px;
  }
  #book-slot:hover {
    background: black;
    color: white;
    transition: background-color 0.3s, color 0.3s;
  }
  
  #home {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    background-image: radial-gradient(circle at center, rgba(255, 255, 255, 0.497), rgba(129, 129, 129, 0.3)), url('homepage.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding-top: 60px; /* Offset for fixed navbar */
  }
  
  .home-content {
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
  }
  
  .home-content h1 {
    color: #000;
    margin: 0 0 20px;
    size: 200px;
    font-size: 50px;
    font-style: italic;
  }
  
  .take-tour-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffffff;
    color: #000;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    opacity: 0.85;
  }
  
  .take-tour-btn:hover {
    background-color: #f8f8f8;
    color: #444;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    #navbar ul, #brand-name, #book-slot {
      flex-direction: column;
    }
  
    #book-slot {
      margin: 10px 0;
    }
  
    #home {
      padding-top: 100px; /* Increased offset for stacked navbar */
    }
  }
  

  #about-us {
    background: #ffffff; /* light gray background */
    padding: 40px 0;
    font-family: Arial, sans-serif;
  }
  
  #about-us .container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .about-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%; /* Creates a circular image */
    object-fit: cover; /* Ensures the image covers the area without distortion */
    margin-right: 20px;
  }
  
  .about-text h1 {
    margin-top: 0;
    color: #333;
  }
  
  .about-text p {
    color: #666;
    line-height: 1.6;
  }
  
  /* Responsive adjustments for smaller screens */
  @media (max-width: 768px) {
    #about-us .container {
      flex-direction: column;
      text-align: center;
    }
  
    .about-image img {
      margin-right: 0;
      margin-bottom: 20px;
    }
  }

  #feature-section {
    display: flex;
    justify-content: space-around;
    background-color: rgba(220, 220, 220, 0.825); /* Grey background with opacity */
    padding: 20px;
    text-align: center;
}

.feature img {
    width: 300px; /* Adjust width as needed */
    height: 300px; /* Adjust height as needed */
    border-radius: 10px; /* Rounded corners for the image */
    margin-bottom: 10px; /* Space between the image and the button */
}

.feature button {
    padding: 10px 20px;
    font-size: 16px;
    color: black;
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    width: 50%; /* Make buttons full width of the image */
}

.feature button:hover {
    background-color: #f8f8f8; /* Light grey on hover */
}

  

  /* Additional styles for other sections */
  