/* =========================
   🔥 HERO SECTION
========================= */
.service-hero {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  color: #fff;
  text-align: center;
}

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.hero-content p {
  max-width: 700px;
  margin: auto;
  opacity: 0.9;
  margin-bottom: 25px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* =========================
   🔥 INTRO
========================= */
.service-intro {
  padding: 80px 20px;
  text-align: center;
  background: #f8fbff;
}

.service-intro h2 {
  font-size: 32px;
  color: #1b4f9c;
  margin-bottom: 15px;
}

.service-intro p {
  max-width: 700px;
  margin: auto;
  color: #555;
}

/* =========================
   🔥 FEATURES
========================= */
.service-features {
  padding: 80px 20px;
  text-align: center;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 40px auto 0;
}

.feature-box {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.feature-box i {
  font-size: 28px;
  color: #00b894;
  margin-bottom: 10px;
}

.feature-box h3 {
  font-size: 16px;
  color: #1b4f9c;
}

/* HOVER */
.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* =========================
   🔥 HIGHLIGHT SECTION
========================= */
.service-highlight {
  padding: 80px 20px;
  background: #f5faff;
}

.highlight-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  gap: 40px;
}

.highlight-left h2 {
  font-size: 28px;
  color: #1b4f9c;
  margin-bottom: 20px;
}

.highlight-left ul {
  list-style: none;
}

.highlight-left li {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.highlight-right img {
  width: 100%;
  max-width: 400px;
}

/* =========================
   🔥 WHY US
========================= */
.why-us {
  padding: 80px 20px;
  text-align: center;
}

.why-us h2 {
  font-size: 30px;
  color: #1b4f9c;
  margin-bottom: 40px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: auto;
}

.why-grid div {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.why-grid div:hover {
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  color: #fff;
  transform: translateY(-5px);
}

/* =========================
   🔥 BUTTONS
========================= */
.btn-primary {
  background: #fff;
  color: #1b4f9c;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
}

.btn-outline:hover {
  background: #fff;
  color: #1b4f9c;
}

/* =========================
   📱 RESPONSIVE
========================= */
@media (max-width: 992px) {

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-container {
    flex-direction: column;
    text-align: center;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 600px) {

  .hero-content h1 {
    font-size: 26px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

}

/* 🔥 BUSINESS NEED SECTION */
.business-need {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f5faff, #ffffff);
  text-align: center;
}

.business-need h2 {
  font-size: 32px;
  color: #1b4f9c;
  margin-bottom: 50px;
}

/* GRID */
.need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */
.need-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  border: 1px solid #eee;
  transition: 0.4s;
  position: relative;
}

/* ICON */
.need-card i {
  font-size: 28px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #1b4f9c, #00b894);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* TITLE */
.need-card h3 {
  font-size: 18px;
  color: #1b4f9c;
  margin-bottom: 8px;
}

/* TEXT */
.need-card p {
  font-size: 14px;
  color: #666;
}

/* HOVER 🔥 */
.need-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* TOP GLOW LINE */
.need-card::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #1b4f9c, #00b894);
  top: 0;
  left: 20%;
  border-radius: 5px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .need-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .need-grid {
    grid-template-columns: 1fr;
  }
}

/* 🔥 NEW CTA DESIGN */
.cta-new {
  padding: 100px 20px;
  background: linear-gradient(135deg, #1b4f9c, #00b894, #22c55e);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* 🔥 GLOW BACKGROUND */
.cta-new::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #ffffff;
  opacity: 0.08;
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

.cta-new::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: #00b894;
  opacity: 0.2;
  filter: blur(120px);
  bottom: -100px;
  right: -100px;
}

/* BOX */
.cta-box {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: auto;
}

/* TITLE */
.cta-box h2 {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 10px;
}

/* TEXT */
.cta-box p {
  color: #e0f2fe;
  margin-bottom: 30px;
  font-size: 16px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* PRIMARY BUTTON */
.cta-btn.primary {
  background: #ffffff;
  color: #1b4f9c;
  padding: 14px 30px;
  border-radius: 35px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(255,255,255,0.3);
  transition: 0.3s;
}

.cta-btn.primary:hover {
  transform: translateY(-4px) scale(1.05);
}

/* SECONDARY BUTTON */
.cta-btn.secondary {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 35px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn.secondary:hover {
  background: #ffffff;
  color: #1b4f9c;
  transform: translateY(-4px);
}

/* 📱 MOBILE */
@media (max-width: 600px) {

  .cta-box h2 {
    font-size: 24px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }

}