/* ===== 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);
}


/* Hero Section */
.service-hero-small {
  position: relative;
  height: 220px;
  background: url('../images/electrical_banner.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.service-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #ff6600;
  animation: fadeDown 1s ease;
}
.service-subtitle {
  font-size: 1.2rem;
  animation: fadeUp 1.2s ease;
    color: white;
}
/* Service Details */
.text-orange { color: #ff6600; }
.custom-list { list-style: none; padding: 0; }
.custom-list li {
  margin: 8px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
}
.custom-list i {
  color: #ff6600;
  margin-right: 8px;
  font-size: 1.2rem;
}
/* Features Section */
.features-small { background: transparent; }
.features-small h3 { color: #222; }
.feature-box {
  background: #ff6600;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  cursor: pointer;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-box:hover {
  transform: translateY(-8px) scale(1.05);
  background: #ff6600;
  color: #fff;
}
.feature-box i {
  margin-bottom: 10px;
}
/* Animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


/* 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;
}
