/* ========= GLOBAL STYLES ========= */

/* Importing Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  min-height: 100vh;
  background: var(--color-bg-primary);
}

:root {
  --primary: #0d63d6;
  --primary-dark: #084eab;
  --accent: #ff7a1a;
  /* orange from services poster */
  --bg: #f3f6fb;
  --text: #0f172a;
  --muted: #6b7280;
  --card-bg: #ffffff;
  --radius-lg: 18px;
  --radius-md: 12px;
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.15);
  --shadow-card: 0 10px 30px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Utility */

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

h1,
h2,
h3,
h4 {
  color: var(--text);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-subtitle {
  color: var(--muted);
  margin-bottom: 32px;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ========= NAVBAR ========= */

.top-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: linear-gradient(90deg, #0b5bc5, #1176e6);
  color: #fff;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.35);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo-area {
  display: flex;
  position: relative;
  align-items: center;
  gap: 8px;
}

.logo-img {
  width: 46px;
  height: 46px;
  display: block;
  object-fit: contain;
  border-radius:22%;
  box-shadow: 10px 4px 12px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  background-color: #e5e7eb;
}

.logo-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
}

.logo-text {
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.logo-text:hover {
  transform: scale(1.05);
  transition: transform 0.3s;
  pointer-events: auto;
}

.logo-text span {
  color: var(--accent);
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.main-nav a {
  position: relative;
  padding-bottom: 3px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.2s;
}

.main-nav a:hover::after {
  width: 100%;
}

.btn-small {
  padding: 8px 16px;
  border-radius: 999px;
  border: none;
  font-size: 0.9rem;
  cursor: pointer;
  background: #fff;
  color: var(--primary-dark);
  font-weight: 500;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.25);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ========= HERO ========= */

.hero {
  background: linear-gradient(145deg, #0d63d6, #16a1ff);
  color: #fff;
  padding: 90px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-left h1 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 0.98rem;
  max-width: 520px;
  margin-bottom: 24px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  opacity: 0.9;
  margin-bottom: 10px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 18px;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn:hover {
  transform: scale(1.05);
  transition: transform 0.2s;

}

.primary {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-soft);
}
/* WhatsApp hero button - matches existing btn style but with WhatsApp green */
.btn-whatsapp {
  background: linear-gradient(90deg,#25D366,#16B84A); /* whatsapp-like green */
  color: #fff;
  border-radius: 999px;     /* keep pill shape */
  padding: 10px 18px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(37,211,102,0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

/* Keep hover subtle */
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(37,211,102,0.16);
}

/* Floating WhatsApp button (fixed on bottom-left) */
#floating-whatsapp {
  position: fixed;
  left: 22px;                 /* adjust distance from left edge */
  bottom: 22px;               /* distance from bottom edge */
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg,#25D366,#16B84A);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  z-index: 9999;
  box-shadow: 0 16px 40px rgba(8,40,24,0.28);
  transition: transform .18s ease, box-shadow .18s ease;
  will-change: transform;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* small inner light (active pulse) */
#floating-whatsapp::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  box-shadow: 0 0 18px rgba(255,255,255,0.12), 0 0 32px rgba(37,211,102,0.18);
  opacity: 0.95;
}

/* soft pulse ring */
#floating-whatsapp::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, rgba(37,211,102,0.02) 30%, transparent 60%);
  pointer-events: none;
}

/* hover effect */
#floating-whatsapp:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(8,40,24,0.32);
}

/* small screen adjustments */
@media (max-width:600px){
  #floating-whatsapp { left: 14px; bottom: 14px; width:52px; height:52px;}
  .btn-whatsapp { padding:9px 14px; }
}

.ghost {
  background: transparent;
  border: 1px solid #e5edff;
  color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.95;
}

.hero-right .hero-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 50px rgba(15, 23, 42, 0.35);
  backdrop-filter: blur(4px);
}

.hero-card h3 {
  margin-bottom: 10px;
}

.hero-card p {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.hero-highlights {
  font-size: 0.85rem;
  list-style: none;
}

.hero-highlights li::before {
  content: "• ";
}

/* ========= ABOUT ========= */

.about {
  background: var(--bg);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr);
  gap: 40px;
  align-items: flex-start;
}

.about-points {
  margin-top: 20%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-end;
}

.about-pill {
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  box-shadow: var(--shadow-card);
}

/* ========= SERVICES ========= */

.services {
  background: #f9fbff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.btn-secondary {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
}

/* ========= WHY US ========= */

.why-us {
  background: #eef3ff;
}

.why-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 18px;
  font-size: 0.9rem;
}

.why-list li::before {
  content: "✔ ";
  color: var(--primary-dark);
}

/* ========= PROCESS ========= */

.process {
  background: #f9fbff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.process-step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 18px 20px;
  box-shadow: var(--shadow-card);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

/* ========= TESTIMONIALS ========= */

.testimonials {
  background: #fff;
}

.testimonial-card {
  background: #f3f7ff;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-top: 14px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
  font-size: 0.88rem;
}

.testimonial-name {
  margin-top: 6px;
  display: block;
  font-weight: 500;
}

/* ========= FAQ ========= */

.faqs {
  background: #f9fbff;
}

.faq-list details {
  background: #fff;
  margin-bottom: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.04);
  font-size: 0.9rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 500;
}

.faq-list p {
  margin-top: 6px;
  color: var(--muted);
}

/* ========= CTA ========= */

.cta {
  background: linear-gradient(135deg, #0d63d6, #16a1ff);
  color: #fff;
}

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-box h2 {
  color: #fff;
}

/* ========= FOOTER ========= */

.footer {
  background: #0e1532;
  color: #e5e7eb;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 30px;
  padding-bottom: 20px;
}

.footer-logo .logo-text span {
  color: var(--accent);
}

.footer h4 {
  margin-bottom: 10px;
  color: #0d63d6;
}

.footer a {
  color: #e5e7eb;
}

.footer-bottom {
  border-top: 1px solid rgb(4, 4, 11);
  text-align: center;
  padding: 12px 0 16px;
  font-size: 0.8rem;
}


/* ===== Enhanced WhatsApp pill (premium look) ===== */
.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  border-radius: 999px;
  text-decoration: none;
  position: fixed;
  left: 18px;
  bottom: calc(env(safe-area-inset-bottom, 0px) + 20px);
  z-index: 99999;
  white-space: nowrap;
  cursor: pointer;

  /* layered background for a richer green */
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.08), transparent 18%),
    linear-gradient(180deg, #3cd86a 0%, #25D366 45%, #16b84a 100%);

  /* soft multi-layer shadow for "floating" look */
  box-shadow:
    0 8px 18px rgba(29,130,76,0.14),
    0 18px 38px rgba(8,66,40,0.12),
    inset 0 -3px 8px rgba(0,0,0,0.06);
  transition: transform .20s cubic-bezier(.2,.9,.3,1), box-shadow .18s ease, bottom .18s ease;
  transform-origin: center;
  will-change: transform, box-shadow;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* gentle floating (y-axis bob) animation */
@keyframes wa-bob {
  0% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0); }
}
.whatsapp-pill {
  animation: wa-bob 4.5s ease-in-out infinite;
}

/* hover & focus: lift + brighter shadow */
.whatsapp-pill:hover,
.whatsapp-pill:focus {
  transform: translateY(-8px) scale(1.01);
  box-shadow:
    0 20px 46px rgba(29,130,76,0.22),
    0 36px 80px rgba(8,66,40,0.18),
    inset 0 -4px 12px rgba(0,0,0,0.08);
  outline: none;
}

/* focus visible for keyboard users */
.whatsapp-pill:focus-visible {
  box-shadow:
    0 20px 46px rgba(29,130,76,0.20),
    0 0 0 6px rgba(37,211,102,0.12);
  transform: translateY(-6px) scale(1.01);
}

/* subtle glass halo behind the button (pseudo-element) */
.whatsapp-pill::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160%;
  height: 160%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37,211,102,0.06) 0%, rgba(37,211,102,0.02) 35%, transparent 60%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.95;
}

/* small inner highlight on left (subtle) */
.whatsapp-pill::after {
  content: "";
  position: absolute;
  left: 10%;
  top: 18%;
  width: 14px;
  height: 8px;
  border-radius: 6px;
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.3));
  filter: blur(.2px);
  opacity: 0.9;
  pointer-events: none;
}

/* responsive tweak */
@media (max-width:480px){
  .whatsapp-pill { left: 12px; bottom: calc(env(safe-area-inset-bottom, 0px) + 14px); padding:10px 22px; font-size:15px; }
  .whatsapp-pill::before { width:200%; height:200%; filter: blur(8px); }
}


/* ========= RESPONSIVE ========= */

@media (max-width: 900px) {

  .hero-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 100px;
  }

  .main-nav {
    position: absolute;
    inset: 56px 0 auto 0;
    padding: 12px 16px 16px;
    background: #0b5bc5;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }

  .main-nav.open {
    display: flex;
  }

  .btn-small {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-points {
    margin-top: auto;

  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .hero-left h1 {
    font-size: 1.9rem;
  }

  .about-points {
    margin-top: auto;
  }
}