
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #2b2b2b;
    color: #d4af37;
    padding: 10px 20px;
    position: relative;
  }
  
  .logo {
    display: flex;
    align-items: center;
    font-size: 18px;
  }
  
  .logo img {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  
  /* Navigation Links */
  .nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .nav-links li {
    position: relative;
    text-align: center;
    padding: 10px 15px;
  }
  .nav-links li:hover {
    position: relative;
    text-align: center;
    padding: 10px 15px;
    background-color: #555;
  }
  .nav-links a {
    text-decoration: none;
    color: #997b55;
    font-weight: 500;
    padding: 10px 15px;
  }
  
  /* Submenu */
  .submenu-container {
    position: relative;
  }
  
  .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #444;
    display: none;
    position: absolute; /* Prevents affecting the navbar height */
    top: 100%; /* Position submenu below the parent */
    left: 0;
    width: 250px; /* Adjust the width as needed */
    z-index: 10;
  }
  
  .submenu li {
    padding: 10px 15px;
    text-align: left;
  }
  
  .submenu a {
    color:#997b55;
  }
  
  .submenu li:hover {
    background-color: #555;
  }
  
  /* Hover Behavior for Desktop */
  .submenu-container:hover .submenu {
    display: block;
  }
  
  /* Hamburger Menu */
  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .hamburger span {
    height: 3px;
    width: 25px;
    background-color: #d4af37;
    margin: 4px 0;
  }
  
  /* Close Button */
  .close-btn {
    display: none;
    font-size: 24px;
    color: #d4af37;
    cursor: pointer;
  }
  
  /* Desktop View */
  @media (min-width: 769px) {
    .nav-links {
      display: flex;
      flex-direction: row;
    }
  
    .hamburger,
    .close-btn {
      display: none;
    }
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .nav-links {
      flex-direction: column;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-in-out;
    }
  
    .nav-links.active {
      max-height: 400px; /* Adjust based on number of items */
    }
  
    .submenu {
      display: none;
      position: static;
      background-color: #2b2b2b;
    }
  
    .submenu.active {
      display: block;
    }
  
    .hamburger {
      display: flex;
    }
  
    .close-btn.active {
      display: block;
    }
  }
  

  /* scroll img*/

  .front-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
  }
  
  .image-container {
    position: relative;
    width: 100%;
    max-width: 100%; /* Ensure the image scales properly */
    height: auto;
  }
  
  .image-container img {
    width: 100%; /* Make the image responsive */
    height: auto;
    display: block;
    height: 200px;
  }
  
  .image-container .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4); /* Add a transparent overlay */
  }
  
  .image-container .overlay h1 {
    color: white;
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
  }
  

/* FAQ */
#faqsection
{
  margin-top: 30px;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #ddd;
}

.faq-title {
  background: #f7f7f7;
  padding: 15px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-title:hover {
  background: #e2e2e2;
}

.faq-content {
  display: none;
  padding: 15px;
  background: #fff;
}

.faq-content p, .faq-content ul {
  margin: 0 0 10px;
}

.faq-content ul {
  padding-left: 20px;
  list-style: disc;
}

.toggle-icon {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  transition: transform 0.3s ease;
}


/* Footer */

footer {
  background-color: #222;
  color: #fff;
  padding: 40px 20px;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 200px;
  color: white;
}
.footer-column p{
  color: white;
  margin-top: 15px;
  font-size: 16px;
}
.footer-column h4 {
  font-size: 12px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  margin-left: 20px;
}

.social-icons a {
  color: #fff;
  font-size: 20px;
  text-decoration: none;
}

.social-icons a:hover {
  color: #007bff;
}

.buttons {
  margin-top: 20px;
}

.buttons a {
  display: inline-block;
  background: #555;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  margin-right: 10px;
  font-size: 10px;
  margin-bottom: 20px;
  margin-left: 50px;
}

.buttons a:hover {
  background: #333;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  border-top: 1px solid #444;
  padding-top: 15px;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}


.designdiv{
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
  position: relative;
  font-size: 14px;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content span {
  color: #fff;
}

.footer-content a {
  color: #f00;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}


/* Whatapp button */
/* Whatapp button */
.whatsapp-container {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 1000;
}

.whatsapp-button {
  background-color: #25D366;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}

.whatsapp-button i {
  font-size: 28px;
}

.tooltip {
  position: absolute;
  bottom: 70px;
  right: 10px;
  background-color: #25D366;
  color: #fff;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s ease, opacity 0.3s ease;
}

.tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #25D366 transparent transparent transparent;
}

.whatsapp-container:hover .tooltip {
  visibility: visible;
  opacity: 1;
}

@media(max-width:768px)
{
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
  }
  .footer-column {
    flex: 1;
    margin: 10px;
    min-width: 200px;
    color: white;
    text-align: center;
  }
  .footer-column p{
    color: white;
    margin-top: 15px;
    font-size: 14px;
  }
  .footer-column:nth-child(3)
  {
    width: 40%;
  }
}