/* =========================================
   home.css – Styles for index.php (homepage)
   ========================================= */

/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(26, 84, 144, 0.8), rgba(44, 62, 80, 0.8)),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?ixlib=rb-4.0.3') center/cover;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero h2 {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.btn-custom {
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.btn-primary-custom {
  background: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  color: white;
}

.btn-primary-custom:hover {
  background: transparent;
  color: var(--secondary-color);
}

.btn-outline-custom {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.btn-outline-custom:hover {
  background: white;
  color: var(--primary-color);
}

/* Section Styling */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 3rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 3rem;
}

/* About Section */
.about-us {
  padding: 80px 0;
  background: var(--light-bg);
}

.highlight-box {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}

.highlight-box:hover {
  transform: translateY(-10px);
}

.highlight-box i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

.highlight-box h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

/* Product Categories */
.product-categories {
  padding: 80px 0;
}

.category-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.category-card i {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.category-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Services Section */
.services-overview {
  padding: 80px 0;
  background: var(--light-bg);
}

.service-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 2rem;
}

.service-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Why Choose Us */
.why-choose-us {
  padding: 80px 0;
}

.trust-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.3s ease;
}

.trust-card:hover {
  transform: translateY(-10px);
}

.trust-card i {
  font-size: 4rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.trust-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Featured Clients */
.featured-clients {
  padding: 80px 0;
  background: var(--light-bg);
}

.swiper-slide img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.swiper-slide:hover img {
  filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  background: var(--secondary-color);
  color: white;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: white;
  color: var(--primary-color);
  text-decoration: none;
}

/* Contact Section */
.contact-preview {
  padding: 80px 0;
}

.contact-item {
  text-align: center;
  padding: 2rem;
}

.contact-item i {
  font-size: 3rem;
  color: var(--secondary-color);
  margin-bottom: 1.5rem;
}

.contact-item h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-item a {
  color: var(--primary-color);
  text-decoration: none;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero h2 {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}
