/* =========================
   Google Fonts + Animations
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

@keyframes rollIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================
   Reset + Global
   ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'figtree', sans-serif;
}

body {
  font-family: 'Figtree', sans-serif;
  line-height: 1.6;
  animation: fadeIn 1.5s ease-in-out;
  font-family: Cambria;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
  font-size: 25px;
  /* font size of heade of list */
}

/* -------------------
   Header (smaller, cleaner)
   ------------------- */
header {
  background: rgba(3,18,34,0.92); /* slight transparency keeps the top feeling lighter */
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;             /* smaller header */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;          /* tightened padding */
  box-shadow: 0 4px 18px rgba(2,6,23,0.25);
  backdrop-filter: saturate(120%) blur(4px);
}

/* logo sizing */
header .logo img {
  height: 56px;            /* reduced from 100px */
  width: auto;
  display: block;
}

/* nav link sizing (smaller, elegant) */
.nav-links a {
  font-size: 1.05rem;      /* reduced for balance */
  padding: 8px 12px;
}

/* WhatsApp icon alignment (optional) */
.whatsapp-btn { margin-left: 16px; }

/* ===== Simple stacked hero1 block — safe to paste into styles.css ===== */
/* Keeps your current HTML (h1, h2, button) and forces tidy vertical layout */

.hero1 {
  position: relative;
  z-index: 5; /* keep hero above other page content */
  background: url("image_bg.jpg") no-repeat center center/cover;
  min-height: 480px;
  padding: 64px 20px;        /* breathing room */
  display: flex;
  flex-direction: column;    /* stack children vertically */
  align-items: center;       /* center horizontally */
  justify-content: center;   /* center vertically */
  text-align: center;
  overflow: hidden;
}

/* softened background so text reads clearly */
.hero1::before{
  content:"";
  position:absolute;
  inset:0;
  background: inherit;
  filter: blur(8px) brightness(0.68) saturate(1.05);
  transform: scale(1.03);
  z-index: 0;
  pointer-events: none;
}

/* ensure text lives above the overlay */
.hero1 > * { position: relative; z-index: 2; }

/* Headline stacked and readable */
.hero1 h1 {
  display: block;
  margin: 0 0 12px 0;
  margin-top: 15px;
  color: #fff;
  font-weight: 800;
  font-size: clamp(1.6rem, 4.2vw, 3.2rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 1100px;
}

/* Subheading immediately under headline */
.hero1 h2 {
  display: block;
  margin: 0 0 18px 0;
  margin-top: 45px !important;
  color: #dbefff;
  font-weight: 700;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  line-height: 1.45;
  max-width: 980px;
}

/* CTA sits under the texts */
.hero1 .know-more-btn {
  display: inline-block;
  margin-top: 35px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 800;
  background: linear-gradient(90deg,#11d1df,#13faee);
  color: #031222;
  box-shadow: 0 12px 28px rgba(3,18,34,0.12);
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* small screens: tighter spacing */
@media (max-width: 768px) {
  .hero1 { padding: 36px 16px; min-height: 380px; }
  .hero1 h1 { font-size: clamp(1.3rem, 7.5vw, 2.1rem); }
  .hero1 h2 { font-size: 0.98rem; }
  .hero1 .know-more-btn { padding: 10px 14px; }
}



/* Nav */
nav {
  display: flex;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  margin: 0;
  align-items: center;
}

.nav-links li {
  margin-left: 20px;
  white-space: nowrap;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  padding: 10px;
  font-weight: 500;
  font-size: 20px;
}

.nav-links li:hover a {
  color: #ff9933;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* ===== Know-more button + modal ===== */
.know-more-btn {
  background: linear-gradient(90deg,#11d1df,#13faee);
  color: #031222;
  border: none;
  margin-top: 25px;
  padding: 10px 18px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(3,18,34,0.08);
  transition: transform 150ms ease, box-shadow 200ms ease;
}
.know-more-btn:hover { transform: translateY(-3px); }

/* Modal overlay */
.info-modal {
  display: none; /* toggled by JS */
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(2,6,23,0.6);
  backdrop-filter: blur(4px) saturate(120%);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* card */
.info-modal-card {
  width: 720px;
  max-width: 96%;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 18px 50px rgba(2,6,23,0.45);
  transform: translateY(10px) scale(0.99);
  transition: transform 220ms cubic-bezier(.2,.9,.25,1), opacity 220ms;
  opacity: 0;
  position: relative;
}

/* when opened (JS will add .open on container) */
.info-modal.open { display:flex; }
.info-modal.open .info-modal-card { transform: translateY(0) scale(1); opacity: 1; }

/* close button */
.info-close {
  position: absolute;
  right: 14px;
  top: 12px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: rgba(3,18,34,0.7);
}

/* body text */
.info-modal-body {
  font-size: 1.05rem;
  color: #17224a;
  line-height: 1.6;
  margin-top: 10px;
  max-height: 55vh;
  overflow: auto;
  padding-right: 6px;
}

/* actions */
.info-modal-actions {
  display:flex;
  justify-content:flex-end;
  gap:10px;
  margin-top: 18px;
}

.info-modal h3 {
  font-size: 1.8rem !important;
  font-family: 'helvetica', sans-serif;
  color: #0b267e;
  font-weight: 700;
  margin-bottom: 12px;
}

/* reuse your .btn style but ensure size */
.info-modal .btn { padding: 10px 16px; font-size: 1rem; border-radius: 8px; }

/* small-screen tweaks */
@media (max-width: 600px) {
  .info-modal-card { padding: 16px; }
  .info-modal-body { font-size: 1rem; max-height: 65vh; }
  .know-more-btn { padding: 8px 14px; }
}


/* =========================
   Hero
   ========================= */
.hero {
  background: #f7f7f8;
  padding: 100px 0;
  text-align: center;
  position: relative;
}


.hero img {
  max-width: 250px;
  height: auto;
  margin-bottom: 30px;
  position: absolute;
  right: 2%;
  z-index: 0;
  top: 65%;
  transform: translateY(-50%);
  opacity: 0.7;
  pointer-events: none;
}

.hero .hero-img-2 {
  max-width: 250px;
  right: auto;
  left: 2%;
  top: 40%;
  opacity: 0.6;
  transform: translateY(-50%) scaleX(-1);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #06117a;
  z-index: 1;
  position: relative;
}

.hero p {
  font-size: 2rem;
  margin-bottom: 90px;
  z-index: 1;
  position: relative;
}

.btn {
  background: #11d1df;
  color: #fff;
  padding: 20px 30px;
  text-decoration: none;
  font-size: 1.8rem;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #2113e4;
}

/* =========================
   Process Block 
   ========================= */

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  background: #bee4eb;
  /* light background */
  padding: 60px 80px;
  text-align: center;
}

.feature {
  position: relative;
  padding: 20px;
}

.feature:not(:last-child) {
  border-right: 2px solid #93a0a0;
  /* divider lines */
}

.feature .icon {
  font-size: 50px;
  color: #72727c;
  /* purple-blue icon */
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
  font-style: bold;
}

.feature p {
  color: #6f6f74;
  font-size: 20px;
  font-style: bold;
}


/* =========================
   Products
   ========================= */
.products {
  background: white;
  border-radius: 10px;
  padding: 100px 10px;
  margin: 0 auto;
  max-width: 1100px;
  padding-left: 20px;
  padding-right: 20px;
}

.products h2,
.team h2,
.faq h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #16047a;
  font-size: 3.7rem;
  font-style: bold;
}

.team h2 {
  color: #0d59aa;
}

.products p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 1.5rem;
  color: #0b267e;
}

.team h3 {
  color: #0d59aa;
  text-align: center;
  margin-bottom: 10px;
  color: #0b267e;
  font-style: bold;
}



.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 35px;
}

.card {
  padding: 40px 25px;
  /* more space inside */
  margin: 10px;
  width: 280px;
  border: 1px solid #120a86;
  border-radius: 20px;
  background: white;
  transition: all 0.3s ease;
  text-align: center;
}

.card:nth-child(2) {
  background: white;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.products .more-products {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 10px;
  color: rgb(8, 10, 104);
  text-decoration: underline;
  font-size: 2rem;
  font-weight: bold;
}


/* =========================
   how Process Work
   ========================= */

/* How It Works Section */
.how-it-works {
  background: #afd6ff;
  text-align: center;
  padding: 100px 20px;
}

.how-it-works h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.how-it-works .subtitle {
  font-size: 1rem;
  color: #080741;
  margin-bottom: 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
  gap: 30px;
  padding: 10px 20px;
  max-width: 1300px;
  margin: 0 auto;
}

.step {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.step-number {
  width: 40px;
  height: 40px;
  background: #2563eb;
  /* blue circle */
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1rem;
}

.step-icon {
  font-size: 36px;
  color: #2835f1;
  margin-bottom: 15px;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.step p {
  font-size: 0.95rem;
  color: #555;
}

/* Expand/collapse team bio */
.more-text {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s ease, opacity 0.3s ease;
}

.more-text.open {
  max-height: 1000px;
  opacity: 1;
}

.read-more-btn {
  margin-top: 10px;
  background: #f3701a;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.read-more-btn:hover {
  background: #d85c0a;
}

.read-more-btn:focus {
  outline: none;
}

/* =========================
   Why us Section Start
   ========================= */
/* Why Us Section */
.whyus-section {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}

.whyus-header {
  text-align: center;
  margin-bottom: 40px;
}

.whyus-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #0a1258;
  margin-bottom: 10px;
}

.whyus-header p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Container layout */
.whyus-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Left Image */
.whyus-img img {
  width: 100%;
  max-width: 450px;
  height: auto;
}

/* Right Content */
.whyus-content {
  flex: 1;
  align-items: left;
}

.whyus-item {
  margin-bottom: 30px;
}

.whyus-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 600;
  color: #0a1258;
  margin-bottom: 5px;
}

.whyus-item h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c2c8a;
  /* purple like your design */
  margin-bottom: 10px;
}

.whyus-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333;
}

/* Responsive */
@media (max-width: 900px) {
  .whyus-container {
    flex-direction: column;
    text-align: center;
  }

  .whyus-img img {
    max-width: 350px;
    margin: 0 auto 30px;
  }

  .whyus-content {
    text-align: center;
  }
}


/* =========================
   FAQ
   ========================= */
.faq {
  background: white;
  padding: 100px 20px;
  font-size: 2rem;
  font-family: 'figtree', sans-serif;
}

.faq-item {
  margin-bottom: 10px;
}

.faq-question {
  width: 100%;
  background: #33b1fa;
  border: navy;
  padding: 10px;
  text-align: left;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 10px;
  font-family: 'figtree', sans-serif;
  box-shadow: #000000 0 0 3px 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  margin-top: 5px;
  margin-bottom: 5px;
  background: white;
  transition: max-height .3s ease, padding .3s ease;
  font-size: 1rem;
  font-family: 'helvetica', sans-serif;
  border-radius: 5px;
}


.faq-answer::before {
  content: "►";
  /* you can change to ►, ➤, or any bullet */
  color: rgb(8, 134, 217);
  font-weight: bold;
  margin-right: 10px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 12px;
}

/* =========================
   Contact Form
   ========================= */
.contact-form {
  background: #2c4560;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.contact-form form {
  max-width: 700px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 20px;
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ececec;
  border-radius: 4px;
}

.contact-form button.btn {
  background-color: #015cc4;
  color: white;
  border: none;
  padding: 14px;
  cursor: pointer;
  font-size: 1.1rem;
}

.contact-form button.btn:hover {
  background: #2288fc;
}

/* Thank you popup */
.thankyou-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.thankyou-popup .popup-content {
  background: #fff;
  color: #333;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  max-width: 300px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.thankyou-popup button {
  margin-top: 15px;
  padding: 8px 14px;
  border: none;
  background: #f3701a;
  color: #000;
  border-radius: 6px;
  cursor: pointer;
}

/* =========================
   Footer
   ========================= */
footer {
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 40px 0;
  margin-top: 40px;
}

footer a {
  color: #fff;
  text-decoration: none;
  font-size: 15px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 768px) {
  header {
    height: 70px;
    padding: 0 15px;
  }

  header .logo img {
    height: 50px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0;
    background: #183049;
    width: 100%;
    text-align: center;
    padding: 10px 0;
  }

  .nav-links.nav-active {
    display: flex;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

}

/* ===== WhatsApp button styles (ADDED only) ===== */
/* Keep these small and non-intrusive */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 100px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.wp-icon {
  width: 33px;
  height: 33px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
}

/* small screen tweak */
@media (max-width: 768px) {
  .wp-icon {
    width: 32px;
    height: 32px;
  }
}

/* =========================
   MOBILE FIXES: HERO1
   ========================= */
/* @media (max-width: 768px) {

  .hero1 {
    padding: 40px 20px;
    text-align: center;
    min-height: auto;
  }

  .hero1 h1 {
    font-size: 2rem;
    text-align: center;
    padding-right: 0;
  }

  .hero1 h2 {
    font-size: 1.3rem;
    padding-right: 0;
    padding-top: 20px;
    text-align: center;
  }

  .hero1 h3 {
    font-size: 1rem;
    padding-right: 0;
    padding-top: 20px;
    margin-bottom: 20px;
    text-align: center;
  }
} */

 
/* =========================
   MOBILE FIXES: HOW IT WORKS
   ========================= */
@media (max-width: 768px) {

  .products {
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .products .container {
    margin: 0 auto;
    padding: 0;
  }

  .product-cards {
    justify-items: center;
  }
  .how-it-works {
    padding: 60px 15px;
  }

  .how-it-works h2 {
    font-size: 1.7rem;
  }

  .how-it-works .subtitle {
    font-size: 0.9rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0;
  }
}


/* =========================
   MOBILE FIXES: STEP CARDS
   ========================= */
@media (max-width: 768px) {

  .step {
    padding: 25px 15px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .step-icon {
    font-size: 28px;
  }

  .step h3 {
    font-size: 1rem;
  }

  .step p {
    font-size: 0.85rem;
  }
}


/* =========================
   MOBILE FIXES: FEATURES SECTION
   ========================= */
@media (max-width: 768px) {

  .features {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 40px 20px;
  }

  .feature {
    border-right: none;  
    border-bottom: 1px solid #93a0a0;
    padding-bottom: 25px;
  }

  .feature:last-child {
    border-bottom: none;
  }

  .feature .icon {
    font-size: 40px;
    margin-bottom: 10px;
  }

  .feature h3 {
    font-size: 1.2rem;
  }

  .feature p {
    font-size: 1rem;
  }
}


/* ===== Smooth page flow / section base styles ===== */
html { scroll-behavior: smooth; }

/* Basic section spacing & visual flow */
section {
  position: relative;
  padding: 64px 20px;
  transition: padding 300ms ease, background 300ms ease;
}

/* Soft rounded 'merge' effect when sections meet */
.section-merge {
  border-radius: 24px 24px 0 0; /* rounded top corners */
  box-shadow: 0 -10px 30px rgba(2,6,23,0.08);
  overflow: visible;
  transform-origin: top center;
}

/* helper to create a subtle overlap with previous section */
.section-overlap {
  margin-top: -40px; /* overlap previous section by 40px */
  z-index: 2;        /* be above previous section */
}

/* subtle inner container so content stays tidy */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px;
  background: transparent;
}

/* small device adjustments */
@media (max-width: 768px) {
  .section-overlap { margin-top: -18px; }
  section { padding: 36px 12px; }
}

.section-sep { line-height: 0; }
.section-sep svg path { opacity: 0.98; transition: fill 300ms ease; }

/* If next section has dark bg, invert color quickly */
.section-dark + .section-sep svg path { fill: #0d1b2a; }
