/* Sticky navbar shadow */
.sticky-top {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  background-color: #ffffff;
  z-index: 1020;
}

/* Dropdown animation */
.dropdown-menu {
  animation: fadeIn 0.3s ease-in-out;
  transform-origin: top;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Offcanvas animation */
.offcanvas-end {
  transition: transform 0.4s ease-in-out;
}

/* Nav link hover underline */
.nav-link {
  position: relative;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #0d6efd;
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* for about us css */
body {
  font-family: "Segoe UI", sans-serif;
  background-color: #fff;
  color: #000;
}

.about-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.about-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.about-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
}

.about-text {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
}

.highlight {
  color: #000;
  font-weight: 600;
}

.btn-black {
  background-color: #000;
  color: #fff;
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.btn-black:hover {
  background-color: #333;
  transform: translateY(-3px);
}

/* bread crums  */
.breadcrumb-section {
  background-image: url("../images/baner_1.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 100px 0;
  color: white;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6); /* Darkness overlay */
  z-index: 1;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: #ffffffb3;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .breadcrumb-section {
    padding: 60px 0;
  }
}
