/*  Topbar */
.topbar {
  background: linear-gradient(90deg, #000, #b8860b, #d4af37, #000);
  color: #fff;
  font-size: 14px;
  flex-wrap: wrap;
}
.topbar .social-icons a {
  color: #fff;
  margin-right: 20px;
  font-size: 16px;
  transition: 0.3s;
}
.topbar .social-icons a:last-child {
  margin-right: 0;
}
.topbar .social-icons a:hover {
  color: #d4af37;
  transform: scale(1.2);
}
.topbar .contact-info {
  color: #fff;
  flex-wrap: wrap;
  gap: 10px;
}

/*  Navbar  */
.custom-navbar {
  background: transparent;
  transition: background 0.5s, box-shadow 0.5s;
  padding: 2px 0;
}
.custom-navbar .navbar-brand .brand-text {
  font-weight: bold;
  font-size: 20px;
  background: linear-gradient(90deg, #b8860b, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.custom-navbar .nav-link {
  color: #d4af37 !important;
  margin: 0 14px;
  position: relative;
  font-weight: 500;
  transition: all 0.3s ease;
}
.custom-navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #b8860b, #d4af37);
  transition: width 0.4s;
}
.custom-navbar .nav-link:hover::after {
  width: 100%;
}
.custom-navbar .nav-link:hover {
  transform: translateY(-3px);
}
.small-icon {
  font-size: 12px;
  transition: transform 0.3s ease, color 0.3s;
  color: #d4af37;
}
.custom-navbar.scrolled {
  background: linear-gradient(90deg, #000, #1a1a1a, #000);
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.5);
}

/* Hero Section */
.hero-section {
  background: url('../images/foot.jpg') center/cover no-repeat;
  padding: 60px 20px;
  position: relative;
  text-align: center;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.hero-section h1,
.hero-section p {
  position: relative;
  z-index: 2;
  word-wrap: break-word;
}

/* Services section */
.container {
  display: flex;
  flex-wrap: wrap;
}
.services-list {
  flex: 1 1 250px;
  max-width: 250px;
  border-right: 1px solid #ddd;
  padding: 20px;
}
.services-list button {
  display: block;
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: none;
  background-color: #f0f0f0;
  cursor: pointer;
  text-align: left;
  border-radius: 5px;
  transition: background 0.3s;
}
.services-list button:hover {
  background-color: #e0e0e0;
}
.services-details {
  flex: 3 1 500px;
  padding: 20px;
  max-height: 90vh;
  overflow-y: auto;
}
.service-item {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  scroll-margin-top: 20px;
}
.service-item h2 {
  margin-top: 0;
}
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }
  .services-list, .services-details {
    max-width: 100%;
    flex: 1 1 100%;
    border-right: none;
    border-bottom: 1px solid #ddd;
  }
}

/* Footer Section */
.footer-section {
  position: relative;
  background: url("../images/footer_image.jpg") center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 50px 0 10px;
}
.footer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 0;
}
.footer-section .container {
  position: relative;
  z-index: 1;
}
.footer-logo {
  max-width: 160px;
  animation: fadeInDown 1.2s ease;
}
.footer-about {
  font-size: 14px;
  line-height: 1.7;
  animation: fadeInUp 1.2s ease;
}
.footer-heading {
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  animation: fadeInLeft 1.2s ease;
}
.footer-heading::after {
  content: "";
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #b8860b, #d4af37);
  display: block;
  margin-top: 5px;
}
.footer-links li {
  margin-bottom: 10px;
  animation: fadeInRight 1.2s ease;
}
.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #d4af37;
  padding-left: 5px;
}
.social-icons a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  transition: all 0.3s ease;
}
.social-icons a:hover {
  color: #d4af37;
  transform: translateY(-3px) scale(1.2);
}
.footer-bottom {
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.9),
    rgba(212, 175, 55, 0.9),
    rgba(0, 0, 0, 0.9)
  );
  font-size: 14px;
  color: #fff;
  padding: 15px 0;
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
