:root {
  --primary: #00a5b5;
  --navy: #02172c;
  --light-bg: #e7f8f9;
  --font: 'Poppins', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
}

.navbar {
  background: var(--navy);
  color: white;
  padding: 1rem 2rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  /* or 1280px depending on your design */
  margin-inline: auto;
  /* centers horizontally */
  padding-inline: 1rem;
  /* gap on sides (mobile-safe) */
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}


.logo img {
  max-height: 40px;
}

.nav-links ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;

}

.nav-links a:hover {
  color: #08acad;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
}

.get-quote {
  background: var(--primary);
  color: white;
  min-width: 100px;
  padding: 0.5rem 1rem;
  align-content: center;
  border-radius: 5px;
  text-decoration: none;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-links.active {
    display: block;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  .get-quote {
    display: none;
  }
}


.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 2rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: #0000001A;
  z-index: 1;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(122.01deg, rgba(242, 253, 250, 0.59) 0%, rgba(241, 245, 249, 0.8) 100%);
  ;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
}

.hero-content h1 {
  color: #000;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-content .highlight {
  color: var(--primary);
}

.hero-content p {
  color: #000;
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;

}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {

  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  text-align: center;
}

.btn-outline {
  background: var(--primary);
  padding: 0.75rem 1.5rem;
  color: white;
  transition: color 0.3s ease;
}

.btn-outline:hover {
  background: #00a5b5;
  border: 2px solid white;
  color: white;
}

.btn-filled {
  background: var(--primary);
  padding: 0.75rem 1.5rem;
  color: white;
  transition: color 0.3s ease;
}

.btn-filled:hover {

  background-color: #018d9f;

}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}

.material-symbols-outlined {
  font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 48;
}


.feature-icons {
  padding: 3rem 1rem;
  background: #f5faff;
  position: relative;
  overflow: hidden;
}

@keyframes slide-in {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
  /*animation: 3s linear 1s infinite running slide-in;*/
  align-items: start;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.icon-box {
  width: 64px;
  height: 64px;
  background-color: #08acad2b;
  /* 17% opacity teal */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-box .material-symbols-outlined {
  font-size: 32px;
  color: #08acad;
}

.icon-item p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Tablet */
@media (max-width: 1024px) {
  .icon-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.who-we-serve {
  padding: 4rem 1rem;
  background-color: #08ACAD2B;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-description {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: #555;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.serve-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.serve-item .icon-box {
  width: 64px;
  height: 64px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.serve-item .material-symbols-outlined {
  font-size: 32px;
  color: #08acad;
}

.serve-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.serve-item p {
  font-size: 0.7rem;
  color: #666;
  max-width: 250px;
}

/* Tablet */
@media (max-width: 1024px) {
  .serve-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.time-saving {
  padding: 4rem 1rem;
  background: #ffffff;
  text-align: center;
}

.time-saving .section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.time-saving .section-description {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.time-box {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  max-width: 800px;
  margin: 0 auto;
}

.calc-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.calc-form label {
  display: flex;
  flex-direction: column;
  text-align: left;
  font-weight: 500;
  color: #333;
}

.calc-form input {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-top: 0.3rem;
  font-size: 1rem;
}

.calc-result {
  flex: 1;
  display: flex;
  flex-direction: column;

  align-items: stretch;
  gap: 1.5rem;
}

.savings-box {
  border: 2px solid #08acad;
  padding: 1.5rem;
  border-radius: 12px;
  background: #f9fdfd;
  text-align: left;
}

.savings-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #02172c;
}

.savings-box p {
  font-size: 1rem;
  color: #333;
}

.savings-box strong {
  font-size: 2rem;
  color: #08acad;
}

.calc-result .cta {
  margin-top: 1rem;
  padding: 0.8rem 1.5rem;
  background: #08acad;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .time-box {
    flex-direction: column;
    text-align: center;
  }

  .calc-form,
  .calc-result {
    width: 100%;
  }
}

.why-nextgen {
  background: #08ACAD2B;
  padding: 4rem 1rem;
  text-align: center;
}

.why-nextgen .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #02172c;
}

.why-nextgen .section-description {
  font-size: 1rem;
  color: #444;
  margin: 0.5rem auto 2rem;
  max-width: 700px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: #08acad2b;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon .material-symbols-outlined {
  font-size: 32px;
  color: #08acad;
}

.feature-card h3 {
  font-size: 1.25rem;
  color: #02172c;
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
}

.feature-card:hover .feature-icon {
  background-color: #088f9c;
  /* darker than #08acad2b */
}

.feature-card:hover {
  background-color: #00a5b5;
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.feature-card:hover h3,
.feature-card:hover p {
  color: #ffffff;
}

.feature-card:hover .material-symbols-outlined {
  color: #ffffff;
}


/* Tablet */
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.testimonials {
  background: #ffffff;
  padding: 4rem 1rem;
  text-align: center;
}

.testimonials .section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #02172c;
  margin-bottom: 0.5rem;
}

.testimonials .section-subtitle {
  color: #555;
  font-size: 1rem;
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #f5faff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-style: italic;
  font-size: 1rem;
  color: #333;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.testimonial-author strong {
  color: #02172c;
  font-size: 1rem;
}

.testimonial-author span {
  color: #777;
  font-size: 0.9rem;
}

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* ───────── FAQ ───────── */
.faq {
  background-color: #08ACAD2B;
  padding: 4rem 0;
  text-align: center
}

.accordion {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;

  max-width: 680px;
  margin-inline: auto
}

.acc-btn {
  width: 100%;
  background: #fff;
  border: 1px solid #dde4eb;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  font-size: .95rem;
  font-family: inherit;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer
}

.acc-btn i {
  transition: transform .25s
}

.acc-content {
  max-height: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #dde4eb;
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 0 1.2rem;
  transition: max-height .25s ease;
  padding-block: .0rem
}

.acc-content p {
  margin: 1rem 0;
  font-size: .9rem;
  text-align: left;
}

.accordion-item.open .acc-content {
  padding-block: 1rem
}

.accordion-item.open .acc-btn i {
  transform: rotate(180deg)
}

.quote-section {
  padding: 4rem 1rem;
  background-color: #ffffff;

  text-align: center;
  position: relative;
  /* Optional but helps layout stacking */
}

.quote-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: #F8FAFC;
  border: 1px solid #E5E7EB;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  /* Add this */
}

input::placeholder,
textarea::placeholder {
  color: #9CA3AF;
}

.quote-wrapper h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.quote-wrapper p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.full-width {
  width: 100%;
}

input,
select,
textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  margin-top: 0.5rem;
  background-color: #f9fafb;
  transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #00a5b5;
  outline: none;
  background-color: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-btn {
  background-color: #08acad;
  color: white;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s;
}

.quote-btn:hover {
  background-color: #06969b;
}

.quote-note {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 1rem;
}

.footer {
  background-color: #0b1424;
  color: #d3d9e0;
  padding: 3rem 1.5rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid #1e2a3d;
  padding-bottom: 2rem;
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 1rem;
}

.footer-heading {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-text {
  color: #d3d9e0;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #d3d9e0;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #08acad;
}

.footer-contact {
  margin-top: 1rem;
  color: #d3d9e0;
  font-size: 0.95rem;
}

.footer-email {
  color: #08acad;
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  color: #a0a7b3;
  padding-top: 1.5rem;
  font-size: 0.85rem;
}