/* ===== Topbar ===== */
.topbar {
  font-size: 16px;
}
.topbar a {
  transition: color 0.3s ease;
}
.topbar a:hover {
  color: #ff6600 !important; /* orange hover */
}

/* ===== Navbar ===== */
.navbar {
  padding-top: 0;
  padding-bottom: 0;
  font-size: 16px;
  font-weight: 200;
  min-height: auto;
  line-height: 1;
}
.navbar-brand .logo {
  height: 40px;
  width: auto;
  display: block;
}
.company-name {
  font-weight: bold;
  font-size: 18px;
  color: #ff6600;
  margin-left: 6px;
  white-space: nowrap;
  line-height: 1;
}
.navbar-nav .nav-link {
  padding: 6px 12px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #ff6600 !important;
}
.navbar-nav .nav-link.active {
  color: #ff6600 !important;
  font-weight: 600;
}
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  background-color: #fff;
}
.dropdown-item {
  padding: 8px 16px;
  transition: all 0.3s ease;
}
.dropdown-item:hover {
  background-color: #ff6600 !important;
  color: #fff !important;
}
.sticky-top {
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}


/* About us  */
.about-hero {
  position: relative;
  background: url('../images//about_banner.jpg') center/cover no-repeat;
  height: 40vh;
  color: white;
  overflow: hidden;
}
.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.about-hero .content {
  position: relative;
  z-index: 2;
}
.hero-title {
  font-size: 4rem;
  font-weight: bold;
  animation: fadeDown 1.5s ease;
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-top: 15px;
  animation: fadeUp 1.5s ease;
}
.hero-subtitle span {
  color: #ff6600;
  font-weight: bold;
}
/* Animations */
@keyframes fadeDown {
  from {opacity: 0; transform: translateY(-50px);}
  to {opacity: 1; transform: translateY(0);}
}
@keyframes fadeUp {
  from {opacity: 0; transform: translateY(50px);}
  to {opacity: 1; transform: translateY(0);}
}
.about-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.custom-card {
  transition: all 0.4s ease;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  min-height: 310px;
}
.custom-card:hover {
  background-color: #ff6600;
  color: white !important;
  transform: translateY(-10px);
}
.custom-card:hover h5,
.custom-card:hover p {
  color: white !important;
  font-style: italic;
}


/* Footer Section */
.footer {
  background: url('../images//about.webp') no-repeat center center/cover;
  position: relative;
  z-index: 1;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: -1;
}
.footer h5 {
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}
.footer h5::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff6600; 
  margin-top: 8px;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links li a:hover {
  color: #ff6600; 
}
.btn-orange {
  background: #ff6600;
  color: #fff;
  border: none;
  padding: 6px 15px;
  font-weight: 600;
}
.btn-orange:hover {
  background: #e65c00;
  color: #fff;
}
.text-orange {
  color: #ff6600;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer p i {
  color: #ff6600;
  margin-right: 8px;
}
