
/* ================= ABOUT SECTION ================= */
.about-section {
  background: linear-gradient(135deg, #f7d042); 
  padding: 75px 8px;
}

.about-section h2 {
  color: #2a1f1f;
  font-weight: 700;
}

.about-section p {
  color: #2a1f1f;
  font-size: 20px;
  line-height: 1.8;
}



/* =====================================================
   SERVICES SECTION
===================================================== */
.services-section {
  padding: 80px 0;
}

.service-card {
  background: #ffffff;
  padding: 40px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.service-card i {
  font-size: 36px;
  color: #f7d042;
  margin-bottom: 15px;
}

.service-card h5 {
  font-weight: 600;
}

.service-card:hover {
  background: linear-gradient(135deg, #22c55e, #ea580c);
  color: #ffffff;
  transform: translateY(-8px);
}

/* =====================================================
   BRANDS SECTION (TEXT CAROUSEL)
===================================================== */
.brands-section {
  background: #eef2f7;
  padding: 80px 0;
}

/* Brand text row */
.brands-text-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* Brand name style */
.brands-text-row span {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #374151;
  padding: 10px 22px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Hover effect */
.brands-text-row span:hover {
  background: linear-gradient(135deg, #22c55e, #ea580c);
  color: #ffffff;
  transform: scale(1.0);
}

/* =====================================================
   CAROUSEL CONTROLS (MANUAL)
===================================================== */
#brandCarousel .carousel-control-prev,
#brandCarousel .carousel-control-next {
  width: 45px;
}

#brandCarousel .carousel-control-prev-icon,
#brandCarousel .carousel-control-next-icon {
  background-color: #0e0f0e;
  border-radius: 50%;
  background-size: 55%;
  padding: 12px;
}

#brandCarousel .carousel-control-prev-icon:hover,
#brandCarousel .carousel-control-next-icon:hover {
  background-color: #000000;
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */
@media (max-width: 768px) {

  .services-section,
  .brands-section {
    padding: 50px 0;
  }

  .service-card {
    padding: 30px 15px;
  }

  .brands-text-row {
    gap: 20px;
  }

  .brands-text-row span {
    font-size: 18px;
    padding: 8px 14px;
  }

  #brandCarousel .carousel-control-prev,
  #brandCarousel .carousel-control-next {
    width: 35px;
  }

  #brandCarousel .carousel-control-prev-icon,
  #brandCarousel .carousel-control-next-icon {
    padding: 10px;
  }
}
