/* ================================
   GENERAL STYLES
================================ */
body { 
  margin: 0; 
  font-family: "Poppins", sans-serif; 
  background: #f7f9fb; 
  color: #2b2b2b; 
  line-height: 1.6;
}
.container { 
  width: 90%; 
  max-width: 1100px; 
  margin: auto; 
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* ================================
   HEADER
================================ */
header { 
  display: flex; 
  justify-content: space-between; 
  align-items: center; 
  background: #ffffff; 
  padding: 1rem 0; 
  position: sticky; 
  top: 0; 
  z-index: 1000; 
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.logo { 
  font-size: 1.8rem; 
  color: #102a43; 
  font-weight: 600; 
}
nav a { 
  margin-left: 1.2rem; 
  text-decoration: none; 
  color: #102a43; 
  font-weight: 500; 
  transition: color 0.3s;
}
nav a:hover,
nav a.active { 
  color: #0d8bf2; 
}

/* ================================
   HERO SECTION
================================ */
.hero { 
  background: linear-gradient(135deg, #5bbcff 0%, #0d8bf2 100%); 
  height: 55vh; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center;
  padding: 2rem;
  color: #1a1a1a;
}
.hero-overlay h2 { 
  font-size: 2.2rem; 
  margin-bottom: 1rem; 
  color: #111111; 
  text-shadow: 0 1px 3px rgba(255,255,255,0.6);
}
.hero-overlay p { 
  margin-bottom: 1.5rem; 
  max-width: 700px; 
  margin-left: auto; 
  margin-right: auto; 
  color: #2b2b2b;
  background: rgba(255,255,255,0.6);
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
}
.btn { 
  display: inline-block; 
  margin: 0.5rem; 
  padding: 0.8rem 1.5rem; 
  border-radius: 6px; 
  background: white; 
  color: #0d8bf2; 
  text-decoration: none; 
  font-weight: 500; 
  transition: all 0.3s ease;
}
.btn:hover { 
  background: #e6f4ff;
}
.btn.secondary { 
  background: transparent; 
  border: 2px solid white; 
  color: white;
}
.btn.secondary:hover { 
  background: rgba(255,255,255,0.2);
}

/* ================================
   SECTION TITLES
================================ */
h2 { 
  color: #0d8bf2; 
  margin-bottom: 1.5rem; 
  text-align: center;
  font-size: 1.8rem;
}

/* ================================
   INDUSTRY & SERVICE GRIDS
================================ */
.industry-grid, 
.services-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
  gap: 1.5rem; 
  justify-items: center;
}
.industry, 
.service { 
  background: #ffffff; 
  border-radius: 10px; 
  box-shadow: 0 4px 12px rgba(0,0,0,0.05); 
  padding: 1.8rem; 
  display: flex; 
  flex-direction: column; 
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.industry:hover, 
.service:hover { 
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}
.industry h3, 
.service h3 { 
  color: #0d8bf2; 
  margin-bottom: 0.5rem; 
  font-size: 1.25rem;
}
.industry p, 
.service p { 
  color: #2e2e2e; 
  line-height: 1.6; 
}

/* ================================
   REQUEST QUOTE BUTTON (Under Industries)
================================ */
.industries .btn {
  background-color: #0d8bf2;  
  color: #ffffff;
  padding: 0.9rem 2rem;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-top: 2rem;
}
.industries .btn:hover {
  background-color: #08335e; 
  transform: translateY(-3px); 
  box-shadow: 0 6px 15px rgba(0,0,0,0.15); 
}

/* ================================
   OUR GOAL (FULL WIDTH)
================================ */
.goal { 
  background: linear-gradient(180deg, #ffffff 0%, #f3f9ff 100%); 
  padding: 4rem 1rem; 
  text-align: center; 
  width: 100%; 
  border-top: 3px solid #0d8bf2;
  border-bottom: 3px solid #0d8bf2;
}
.goal h2 { 
  color: #08335e; 
  margin-bottom: 1.5rem; 
}
.goal p { 
  font-size: 1.1rem; 
  line-height: 1.7; 
  max-width: 900px; 
  margin: 0.5rem auto;
  color: #2b2b2b;
}

/* ================================
   TESTIMONIALS (FULL WIDTH)
================================ */
.testimonials { 
  background: #0d8bf2; 
  color: white; 
  padding: 4rem 1rem; 
  text-align: center; 
  width: 100%;
}
.testimonials h2 { 
  color: #ffffff; 
  margin-bottom: 2rem; 
}
.testimonial { 
  margin: 1.5rem auto; 
  max-width: 800px; 
  font-style: italic; 
  font-size: 1.1rem;
}
.testimonial p:last-child { 
  text-align: right; 
  font-weight: bold; 
  color: #eaf6ff; 
  font-style: normal;
}

/* ================================
   FOOTER
================================ */
footer { 
  background: #102a43; 
  text-align: center; 
  padding: 1.8rem 0; 
  color: white; 
  font-size: 0.95rem;
}
footer p { margin: 0.3rem 0; }

/* ================================
   RESPONSIVE DESIGN
================================ */
@media(max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 0.5rem;
  }

  .industry-grid, 
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .industries .btn {
    width: 70%;
    font-size: 1rem;
  }

  .hero {
    height: auto;
    padding: 3rem 1rem;
  }

  .hero-overlay h2 {
    font-size: 1.6rem;
  }

  .goal p {
    font-size: 1rem;
  }

  .testimonial {
    font-size: 1rem;
  }
}
