/*  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;
}

/* About */
.about-title {
  color: #d4af37;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeInDown 1s ease forwards;
}
.about-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  animation: fadeInLeft 1.2s ease forwards;
}
.about-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: justify;
  opacity: 0;
  animation: fadeInUp 1.5s ease forwards;
}
.about-img {
  overflow: hidden;
  border-radius: 12px;
  transform: scale(0.95);
  animation: zoomIn 1.2s ease forwards;
}
.about-img img {
  transition: transform 0.6s ease;
}
.about-img:hover img {
  transform: scale(1.08);
}
/* Animations */
@keyframes fadeInDown {
  0% {opacity: 0; transform: translateY(-20px);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInLeft {
  0% {opacity: 0; transform: translateX(-40px);}
  100% {opacity: 1; transform: translateX(0);}
}
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(40px);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes zoomIn {
  0% {opacity: 0; transform: scale(0.85);}
  100% {opacity: 1; transform: scale(1);}
}

/* Why choose us */
.why-choose-section {
  background: transparent;
  color: #222;
}
.choose-subtitle {
  color: #d4af37;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  animation: fadeDown 1s ease forwards;
}
.choose-title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #000;
  opacity: 0;
  animation: fadeUp 1.2s ease forwards;
  animation-delay: 0.3s;
}
.choose-desc {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 1.4s ease forwards;
  animation-delay: 0.6s;
}
.choose-card {
   background: linear-gradient(90deg,rgba(111, 109, 109, 0.9),rgba(241, 192, 32, 0.9),
  rgba(111, 109, 109, 0.9));
  border-radius: 14px;
  transition: all 0.5s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  color: #fff;
}
.choose-card:hover {
  transform: translateY(-10px) scale(1.03);
  background: linear-gradient(135deg,#d4af37, #000000, #2b2b2b, #d4af37);
  color: #fff;
  box-shadow: 0 10px 25px rgba(212,175,55,0.5);
}
.choose-icon {
  width: 70px;
  height: 70px;
  background: #e3732e;
  color: #101010;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto;
  transition: all 0.4s ease;
}
.choose-card:hover .choose-icon {
  background: #d4af37;
  color: #000;
  transform: scale(1.15);
}
.fade-card {
  animation: fadeInZoom 1s ease forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
/* Keyframes */
@keyframes fadeDown {
  0% {opacity: 0; transform: translateY(-30px);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes fadeUp {
  0% {opacity: 0; transform: translateY(30px);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInZoom {
  0% {opacity: 0; transform: translateY(40px) scale(0.9);}
  100% {opacity: 1; transform: translateY(0) scale(1);}
}

/* Our mission section */
.card-hover {
  transition: transform 0.4s, box-shadow 0.4s;
  border-radius: 20px;
}
.card-hover:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 45px rgba(0,0,0,0.2);
  background: #d4af37;
  color: white;
}
.about h2 {
  font-weight: 700;
  letter-spacing: 1px;
}
.card-hover h3 {
  font-weight: 600;
}
.card-hover p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 10px;
}
.card-hover span {
  display: block;
  margin-top: 10px;
  font-style: italic;
}


/* 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);
  }
}
