* {
  margin: 0px 0px;
}
.vastu-element {
  background-image: radial-gradient(circle, #d4a373 0%, #8b5e3c 100%);
}

.transition-200 {
  transition: all 0.2s ease;
}

/* Navigation */
.nav-link {
  color: #92400e; /* amber-800 */
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: #b45309; /* amber-600 */
}

/* Dropdown */
.dropdown {
  position: relative; /* Ensure the dropdown is positioned relative to its parent */
}
.dropdown-menu {
  display: none; /* Hide the dropdown menu by default */
  position: absolute; /* Position it absolutely */
  z-index: 10; /* Ensure it appears above other elements */
}
.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  color: #92400e;
}

.dropdown-item:hover {
  background-color: #fef3c7; /* amber-50 */
}

/* Responsive Mobile Menu (future use if needed) */
.mobile-menu {
  display: none;
}

@media (max-width: 768px) {
  .mobile-menu {
    display: block;
  }
}

.vastu-element {
  background-image: radial-gradient(circle, #d4a373 0%, #8b5e3c 100%);
}
.transition-200 {
  transition: all 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-5px);
}
#contactForm {
  scroll-margin-top: 100px;
}

/* about us */
.transition-200 {
  transition: all 0.2s ease;
}
.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.timeline-item:not(:last-child):after {
  content: "";
  position: absolute;
  left: 7px;
  top: 30px;
  height: calc(100% - 30px);
  width: 2px;
  background: #d4a373;
}
