/* Simple Tailwind-like minimal styles for quick use */
:root {
  --emerald: #4682B4;
  --emerald-dark: #00008B;
  --muted: #6b7280;
}

* { box-sizing: border-box }

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial;
  line-height: 1.5;
  margin: 0;
  color: #111;
  background: #c7c7c7;  /* 👈 soft light gray background */
}


.container { max-width: 1100px; margin: 0 auto; padding: 20px }

.header {
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 10px 15px rgba(0,0,0,0.35); /* 👈 subtle shadow */
}


.header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 44px;
  width: auto;
  border-radius: 8px; /* optional: rounded corners */
}

.nav a {
  margin: 0 8px;
  color: #374151;
  text-decoration: none;
  font-weight: 600;
}

/* ===== FIX: Force hero gradient + preserve spacing/contrast ===== */
.hero {
  position: relative;
  z-index: 0;
  padding: 80px 100px; /* increased padding for desktop like older version */
  border-radius: 12px;
  overflow: visible;
  background: linear-gradient(135deg, #4682B4 0%, #6CA6CD 100%) !important;
  color: #fff !important;
}

/* Put the actual visual gradient into a background layer */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, #4682B4 0%, #6CA6CD 100%);
}

/* Ensure inner containers do not have opaque backgrounds */
.hero .hero-inner,
.hero .hero-text,
.hero .hero-img,
.hero .container {
  background: transparent !important;
  box-shadow: none !important;
}

/* Make sure text stays readable */
.hero .hero-text h1,
.hero .hero-text p,
.hero .btn,
.hero .hero-text a,
.hero .hero-text .btn {
  color: #fff !important;
}

/* Image sizing and spacing */
.hero .hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 24px;  /* slightly more spacing from text */
  padding-right: 24px;
}
.hero .hero-img img {
  width: 100%;
  max-width: 480px;     /* larger desktop image */
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
  margin-top: 20px;
}

/* Inner content flex for desktop */
.hero .hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px; /* spacing between text and image */
}

/* Tighter spacing for mobile and stack behavior */
@media (max-width: 768px) {
  .hero {
    padding: 36px 20px;
    text-align: center;
  }
  .hero .hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero .hero-img img {
    max-width: 280px;
    margin-top: 10px;
    height: auto;
    object-fit: contain;
  }
  .hero .btn { /* center button on mobile */
    margin: 10px auto 0;
    display: inline-block;
    min-width: 220px;
  }
}  

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  color: var(--emerald-dark);
}

/* Highlight Section */
.highlight {
  background: #f9fbfd;
  padding: 50px 20px;
  margin-top: 40px;
}
.highlight-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}
.highlight-card:hover {
  transform: translateY(-6px);
}

@keyframes gradientMove {
  0% { background-position: left top; }
  50% { background-position: right bottom; }
  100% { background-position: left top; }
}

.card {
  background: linear-gradient(135deg, #ffffff, #a7d7ff, #ffffff);
  background-size: 200% 200%;
  animation: gradientMove 6s ease-in-out infinite; /* looping gradient */
  
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #eaeaea;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
  border-color: var(--emerald);
  background: linear-gradient(135deg, #ffffff, #e0f3ff, #ffffff);
  background-size: 200% 200%;
}



.grid { display: grid; gap: 20px }
.grid-3 { grid-template-columns: repeat(3, 1fr) }


.flowchart {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px; /* less top margin */
}

.step {
  text-align: center;
  max-width: 400px;
  margin: 12px 0; /* reduced vertical spacing */
}

.circle {
  width: 44px;
  height: 44px;
  background: var(--emerald);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 16px; /* slightly smaller */
  margin: 0 auto 6px; /* less bottom spacing */
  box-shadow: 0 2px 5px rgba(0,0,0,0.12);
}

.arrow {
  font-size: 18px;  /* smaller arrow */
  color: var(--emerald);
  margin: 4px 0;    /* tighter spacing */
}


.footer {
  background: #111827; /* dark footer */
  color: #f3f4f6;
  border-top: none;
  padding: 32px;
  text-align: center;
}
.footer a {
  color: #9ca3af;
}
.footer a:hover {
  color: #fff;
}


.center { display: flex; align-items: center; justify-content: center }

.form-field { display: flex; flex-direction: column; margin-bottom: 12px }

input, textarea, select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.btn, .cta, button {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 16px;
  background: var(--emerald);       /* main theme color */
  color: #fff !important;           /* 👈 always white text */
  border-radius: 10px;              /* consistent rounded corners */
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15); /* 👈 soft shadow */
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn:hover, .cta:hover, button:hover {
  background: var(--emerald-dark);  /* darker theme on hover */
  color: #fff !important;           /* stays white */
  transform: translateY(-2px);      /* subtle lift */
}


.success {
  background: #ecfdf5;
  color: #065f46;
  padding: 10px;
  border-radius: 8px;
  margin-top: 12px;
}

.error {
  background: #fef2f2;
  color: #991b1b;
  padding: 10px;
  border-radius: 8px;
  margin-top: 12px;
}

/* Mobile styles */
.menu-toggle {
  display: none;
}

@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr }

  /* show hamburger button on mobile */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
  }

    /* hide nav by default on mobile */
  .nav {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 100%;   /* 👈 ensures it opens below header */
    right: 0;
    width: 100%;
    padding: 16px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  /* show nav when toggled */
  .nav.show {
    display: flex;
  }

  .nav a {
    padding: 10px 0;
    margin: 0;
  }
}


a { text-decoration: none }
small { color: var(--muted) }

.hamburger{
    width: 35px;
  height: 5px;
  background-color: black;
  margin: 6px 0;
}

@media (max-width: 880px) {
  .nav a.cta {
    display: block;
    width: 100%;
    text-align: center;   /* centers the text */
    margin-top: 10px;
  }
}

.services-hero {
  width: 100%;
  margin-bottom: 20px;
}

.services-hero img {
  width: 100%;
  height: 220px;       /* adjust: 200–300px looks best */
  object-fit: cover;   /* crops edges, keeps banner feel */
  display: block;
}

/* FAQ Accordion (theme-aligned) */
/* ===== FAQ Section ===== */
.faq {
  background: linear-gradient(135deg, #4682B4 0%, #6CA6CD 100%);
  color: #fff;
  padding: 40px 20px;
  border-radius: 12px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 2rem;
}

.faq-item {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  padding: 12px;
  cursor: pointer;
  transition: background 0.3s;
  border-radius: 8px;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 12px;
}

.faq-answer p {
  margin: 10px 0;
}

/* Open state */
.faq-item.active .faq-answer {
  max-height: 200px; /* adjust for content */
  padding: 12px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 1.6rem;
  }
  .faq-question {
    font-size: 1rem;
    padding: 10px;
  }
  .faq-answer p {
    font-size: 0.95rem;
  }
}
