/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
  padding: 110px 0 140px;
}

.hero-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero h1 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 17px;
  color: #e5e7eb;
  margin-bottom: 35px;
  max-width: 520px;
}

.hero-features {
  display: grid;
  gap: 14px;
}

.hero-feature {
  background: rgba(255,255,255,0.15);
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 500;
}

/* HERO BUTTON */
.hero-btn {
  background: #ffffff !important;
  color: #4f46e5 !important;
  padding: 16px 44px;
  border-radius: 32px;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  border: 2px solid #ffffff;
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  display: inline-block;
}

.hero-btn:hover {
  background: transparent !important;
  color: #ffffff !important;
}
.hero {
  position: relative;
}



/* =========================
   TRUST STRIP
========================= */
.trust-strip {
  background: #f9fafb;
  padding: 45px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
  font-weight: 500;
}

/* =========================
   SERVICES SECTION
========================= */
.section {
  padding: 90px 0;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 12px;
}

.section .subtext {
  max-width: 700px;
  margin-bottom: 60px;
  color: #6b7280;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 18px;
}

.service-card h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #4f46e5;
  margin-top: 20px;
  margin-bottom: 8px;
}

.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 8px;
  font-size: 15px;
}

/* =========================
   SERVICES CTA BUTTON
========================= */
.services-cta {
  text-align: center;
  margin-top: 90px;
}

.services-cta a {
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  color: #ffffff;
  padding: 18px 46px;
  border-radius: 32px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(79,70,229,0.4);
}

.services-cta a:hover {
  transform: translateY(-2px);
}

/* =========================
   CONTACT FORM
========================= */
.form-box iframe {
  width: 100%;
  height: 650px;
  border-radius: 12px;
  border: none;
  margin-bottom: 35px;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 35px 0;
  font-size: 14px;
  color: #6b7280;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }
}
.site-footer {
  background: #0f172a; /* premium dark navy */
  padding: 40px 0;
  margin-top: 80px;
}

.footer-content {
  text-align: center;
}

.footer-mail {
  font-size: 16px;
  color: #e5e7eb;
  margin-bottom: 8px;
}

.footer-mail a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
}

.footer-mail a:hover {
  text-decoration: underline;
}

.footer-trust {
  font-size: 14px;
  color: #9ca3af;
}
.contact-trust {
  text-align: center;
  margin-top: 0;
  padding-top: 0;
  border-top: none; 
}
.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;

  /* NEW CHANGES */
  margin-left: 20px;      /* left boundary se andar */
  margin-bottom: 60px;    /* hero text se zyada gap */
}




