* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: url('servicebg.png') center/cover no-repeat fixed;
  color: #f0f0f0;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  z-index: -1;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 40px;
}
.logo {
  height: 45px;

}
.back-btn {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  background: #333; /* Brighter */
  padding: 10px 20px;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.06);
  transition: 0.3s ease;
}
.back-btn:hover {
  background: #444;
  transform: scale(1.03);
  color: #ffa64d;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 60px 40px;
  justify-content: space-between;
  gap: 40px;
}
.hero-left {
  flex: 1;
  max-width: 600px;
}
.hero-left h1 {
  font-size: 42px;
  margin-bottom: 20px;
}
.hero-left p {
  font-size: 18px;
  color: #e0e0e0;
  margin-bottom: 25px;
}
.hero-right img {
  max-width: 420px;
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.35);
}
.section {
  padding: 60px 40px;
  max-width: 1200px;
  margin: auto;
  text-align: left;
}
.section-box {
  background: #2f2f2f; /* Brighter box */
  border-radius: 14px;
  padding: 50px 30px;
  margin: 40px auto;
  max-width: 900px;
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.18);
  text-align: center;
}
.section-title.center {
  text-align: center;
  border-left: none;
  padding-left: 0;
  position: relative;
}
.section-title.center::after {
  content: '';
  display: block;
  height: 3px;
  width: 60px;
  background: #ff6600;
  margin: 10px auto 0;
  border-radius: 20px;
}
.power {
  max-width: 900px;
  margin: 20px auto 0;
  font-size: 18px;
  color: #e2e2e2;
  line-height: 1.8;
}
.cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}
.card {
  background: #3a3a3a; /* Lighter card */
  padding: 25px;
  border-radius: 14px;
  width: 260px;
  text-align: center;
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.12);
}
.card i {
  font-size: 30px;
  color: #ffcc00;
  margin-bottom: 12px;
}
.card p {
  font-size: 16px;
  color: #f0f0f0;
}
.zoom-btn:hover {
  transform: scale(1.05);
  transition: 0.3s ease;
}
.cta-btn {
  display: inline-block;
  background: #ff6600;
  color: #fff;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #cc4c00;
}
.cta-btn.big {
  font-size: 18px;
  padding: 16px 40px;
}
.faq-box {
  max-width: 900px;
  margin: auto;
}
.faq-item {
  background: transparent;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #555;
}
.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  background: #3a3a3a; /* Brighter than before */
}
.faq-question:hover {
  background: #444;
  color: #ffa64d;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #444;
  color: #e0e0e0;
  font-size: 16px;
  transition: all 0.3s ease;
}
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 18px 20px;
}
.final-cta {
  background: #2a2a2a; /* Brighter section */
  text-align: center;
  padding: 60px 20px;
}
.final-cta h2 {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }
  .hero-right img {
    max-width: 300px;
  }
  .cards {
    flex-direction: column;
    align-items: center;
  }
}
