/* ===== 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);
}

/* ===== HeroCarousel  ===== */
#heroCarousel {
  position: relative;
}
#heroCarousel .carousel-item {
  height: 70vh; 
  background-color: #000;
}
#heroCarousel .carousel-item img {
  height: 100%;
  width: 100%;
  object-fit: cover;         
  object-position: center;  
}

/* Services */
.services-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}
.services-section h2 {
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
  font-size: 2rem;
  color: #333;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
  padding: 20px 15px;
  transition: all 0.3s ease;
  height: 100%;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}
.service-icon {
  font-size: 38px;
  color: #ff6600;
  border: 2px solid #ff6600;
  border-radius: 50%;
  padding: 15px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}
.service-card:hover .service-icon {
  background-color: #ff6600;
  color: #fff;
}
.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  font-size: 17px;
}
.service-card p {
  color: #555;
  font-size: 14px;
  margin-bottom: 15px;
  line-height: 1.4;
}
.btn-know {
  background-color: #333;
  color: #fff;
  font-weight: 600;
  padding: 6px 18px;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
}
.btn-know:hover {
  background-color: #ff6600;
  color: #fff;
}

/* Why choose us */
#why-choose-us .feature-box {
  border-radius: 6px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  min-height: 160px; 
  display: flex;
  flex-direction: column;
  justify-content: center; 
  align-items: center; 
  text-align: center;
}
#why-choose-us .feature-box:hover {
  border-color: #ff6600;
  background: #fff;
}
#why-choose-us .feature-box i {
  color: #ff6600;
  transition: transform 0.3s ease;
  margin-bottom: 10px;
}
#why-choose-us .feature-box:hover i {
  transform: scale(1.2);
  color: #ff6600;
}
#why-choose-us .feature-box p {
  font-size: 1rem;
  color: #333;
  transition: color 0.3s ease;
}
#why-choose-us .feature-box:hover p {
  color: #ff6600;
}

/* Products */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
}
.section-title .highlight {
  color: #ff6600;
}
.section-underline {
  width: 80px;
  height: 4px;
  background: #ff6600;
  margin: 12px auto 0;
  border-radius: 4px;
}
.product-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: contain;
  padding: 10px;
  transition: transform 0.3s ease;
}
.product-card:hover img {
  transform: scale(1.05);
}
.product-info {
  padding: 15px;
  border-top: 1px solid #eee;
}
.product-info h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  transition: color 0.3s ease;
}
.product-card:hover .product-info h5 {
  color: #ff6600;
}

/* Counters */
#counters {
  position: relative;
  background: url('../images/about.webp') no-repeat center center/cover;
  padding: 45px 0; 
  z-index: 1;
}
#counters::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(19, 19, 19, 0.5);
  z-index: 0;
}
#counters .card {
  position: relative;
  z-index: 1;
  border-radius: 8px;
  transition: transform 0.3s ease;
}
#counters .card:hover {
  transform: translateY(-6px); 
}
#counters .card-body {
  padding: 20px 10px; 
}
#counters h2 {
  font-size: 2rem; 
  margin-bottom: 8px;
  color: #000; 
}
#counters p {
  font-size: 1rem; 
  color: #333;
}
#counters .icon i {
  font-size: 1.8rem;
}

/* Testimonial */
#testimonial {
  background-color: #f06b12;
}
#testimonial p {
  font-size: 1.05rem;
  line-height: 1.6;
}
#testimonial h5 {
  font-weight: 600;
  margin-top: 0.5rem;
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 6px 16px rgba(35, 32, 32, 0.2);
  transition: transform 0.3s ease;
}
.testimonial-card:hover {
  transform: translateY(-8px);
}
.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 1rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}
.avatar.boy {
  background: linear-gradient(135deg, #38bdf8, #22c55e);
}
.avatar.girl {
  background: linear-gradient(135deg, #ff7ac6, #a855f7);
}

/* ===== About Us ===== */
#about h2 {
  font-weight: 700;
  color: #333;
}
#about p {
  color: #555;
  line-height: 1.7;
}
#about .btn {
  font-weight: 500;
  border-radius: 30px;
}

/* 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;
}
