/* ===== Hero Section Styles ===== */
.about-hero {
  position: relative;
  height: 95vh;
  background: linear-gradient(135deg, #0a0f1f, #142850);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 0 20px;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url('/assets/img/industry.webp') center/cover no-repeat;
  opacity: 0.2;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.hero-content h1 span {
  color: var(--button-color);
}

.hero-content h2 {
  font-size: 4.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.hero-content p {
  font-size: 1.3rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #ffffff;
}

.company{
    color: var(--button-color);
}

.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  color: #0a0f1f;
  background: var(--button-color);
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: var(--button-hover-color);
  color: #000000;
}

@media (max-width: 1024px) {
  .about-hero {
    height: auto;
    padding: 80px 20px;
  }

  .hero-content h2 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

/* Mobile (landscape) */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
    margin-top: 40px;
  }

  .hero-content h2 {
    font-size: 2.4rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}

/* Mobile (portrait, very small screens) */
@media (max-width: 480px) {
  .about-hero {
    padding: 60px 15px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    margin-top: 60px;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
  }
}

/* ================= Services Section ================= */
.services-section {
  background-color: #fff;
  padding: 60px 20px;
  font-family: 'Arial', sans-serif;
  text-align: center;
}

.services-section .container {
  max-width: 1400px;
  margin: 0 auto;
}

.services-section h2 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.services-section p {
  color: #555;
  letter-spacing: 0.5px;
  margin-bottom: 40px;
}

.service-category {
  margin-bottom: 60px;
  text-align: left;
}

.service-category h3 {
  font-size: 2.2rem;
  color: #1d3557;
  margin-bottom: 25px;
  border-left: 5px solid var(--button-color);
  padding-left: 12px;
}

/* Grid Layout */
.services-grid {
  display: grid;
  gap: 20px;
  justify-items: center;
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Service Card */
.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  max-width: 320px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}
.service-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}
.btn-service {
  display: inline-block;
  padding: 8px 18px;
  font-size: 0.9rem;
  color: #003;
  background: #ffecbf;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}
.btn-service:hover {
  color: #000;
  background: var(--button-hover-color);
}

/* Responsive */
@media (max-width: 1200px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .services-section h2 {
    font-size: 2rem;
  }
  .services-section p {
    font-size: 1rem;
  }
  .service-card img {
    height: 150px;
  }
}
