:root {
  --primary: #0f172a;
  --secondary: #059669;
  --accent: #2563eb;
  --white: #ffffff;
  --black: #000000;
  --text-dark: #1e293b;
  --text-light: #64748b;
  --bg-light: #f8fafc;
  --border: #e2e8f0;

  /* --font-heading:  'Inter', sans-serif;
  --font-body:     'Inter', sans-serif; */

  --fs-h1: clamp(2rem, 5vw, 2.8rem);
  --fs-h2: clamp(1.5rem, 4vw, 2rem);
  --fs-h3: clamp(1rem, 3vw, 2rem);
  --fs-body: 1rem;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --shadow-sm: 0 4px 15px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.12);

  --container: 1320px;
  --transition: 0.3s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  /* font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--text-dark);
  background-color: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased; */
}

img {
  max-width: 100%;
  display: block;
}

/* Section spacing */
.section-pad {
  padding: 80px 0;
}
.section-pad-sm {
  padding: 56px 0;
}

/* Section label (eyebrow text) */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 12px;
}

/* Section headings */
.section-heading {
  font-family: var(--font-heading);
  font-size: var(--fs-h2);
  font-weight: 500;
  /* line-height: 1.15; */
  color: var(--text-dark);
  /* margin-bottom: 16px; */
}

.section-heading--white {
  color: var(--white);
}

.section-subheading {
  font-size: 14px;
  color: var(--text-light);
  max-width: 620px;
  /* line-height: 1.75; */
}

/* Body paragraphs */
.body-para {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
}

/* Divider accent */
.heading-divider {
  width: 48px;
  height: 4px;
  background: var(--secondary);
  border-radius: 2px;
  margin-bottom: 20px;
}

/* ---- Buttons ---- */
.btn-primary-gmc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--secondary);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--secondary);
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
}
.btn-primary-gmc:hover {
  background: transparent;
  color: var(--secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-outline-gmc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-dark);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid var(--border);
  transition:
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
  cursor: pointer;
}
.btn-outline-gmc:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-2px);
}

.btn-white-gmc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.8rem;
  border: 2px solid var(--white);
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
  cursor: pointer;
}
.btn-white-gmc:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
}

/* ---- Cards ---- */
.gmc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px;
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
}
.gmc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: transparent;
}

/* Icon circle */
.icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.icon-circle--green {
  background: rgba(5, 150, 105, 0.1);
  color: var(--secondary);
}
.icon-circle--blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--accent);
}
.icon-circle--primary {
  background: rgba(15, 23, 42, 0.08);
  color: var(--primary);
}

/* ============================================================
   NAVBAR
   ============================================================ */
@media (min-width: 992px) {
  .navbar .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    pointer-events: none;
  }

  .navbar .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
}
.gmc-navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  z-index: 1000;
}

.gmc-navbar .navbar-brand-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-icon img {
  height: 60px;
}

.gmc-navbar .navbar-nav .nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  padding: 28px 16px;
  position: relative;
  transition: color var(--transition);
}
.gmc-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--secondary);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.gmc-navbar .navbar-nav .nav-link:hover,
.gmc-navbar .navbar-nav .nav-link.active {
  color: var(--secondary);
}
.gmc-navbar .navbar-nav .nav-link:hover::after,
.gmc-navbar .navbar-nav .nav-link.active::after {
  transform: scaleX(1);
}

.gmc-navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 8px;
  margin-top: 0;
}
.gmc-navbar .dropdown-item {
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  transition:
    background var(--transition),
    color var(--transition);
}
.gmc-navbar .dropdown-item:hover {
  background: rgba(5, 150, 105, 0.08);
  color: var(--secondary);
}

.gmc-navbar .navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
}
.gmc-navbar .navbar-toggler:focus {
  box-shadow: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: var(--bg-light);
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-heading {
  font-family: var(--font-body);
  font-size: var(--fs-h1);
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-heading .highlight {
  color: var(--secondary);
}

.hero-para {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 520px;
}

/* Hero image wrapper */
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* Floating service cards */
.hero-float-cards {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  width: max-content;
}
.hero-float-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-md);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
}
.hero-float-card i {
  color: var(--secondary);
  font-size: 1.125rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary);
  padding: 56px 0;
}
.trust-stat-item {
  text-align: center;
  padding: 16px;
}
.trust-stat-item .stat-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  /* background: rgba(255,255,255,.08); */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--secondary);
  margin: 0 auto 16px;
}
.trust-stat-item .stat-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.trust-stat-item .stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}


.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  height: 100%;
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    border-color var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card .service-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: rgba(5, 150, 105, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--secondary);
  margin-bottom: 28px;
  transition: background var(--transition);
}
.service-card:hover .service-icon {
  background: var(--secondary);
  color: var(--white);
}
.service-card .service-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.service-card .service-para {
  font-size: 0.9375rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 28px;
}

/* ============================================================
   ABOUT PREVIEW
   ============================================================ */
.about-section {
  background: var(--bg-light);
}

.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.about-features-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 36px;
}
.about-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.9375rem;
  color: var(--text-dark);
  font-weight: 500;
}
.about-features-list li i {
  color: var(--secondary);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.why-section {
  background: var(--white);
}

.why-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  height: 100%;
  transition:
    box-shadow var(--transition),
    transform var(--transition),
    background var(--transition);
}
.why-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.why-card .why-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(5, 150, 105, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--secondary);
  margin-bottom: 20px;
}
.why-card .why-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.why-card .why-para {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.products-section {
  background: var(--white);
}

.product-column-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}
.product-col-header {
  background: var(--primary);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.product-col-header .col-icon {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--secondary);
}
.product-col-header h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.product-list {
  list-style: none;
  padding: 20px 0;
  margin: 0;
}
.product-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  transition:
    background var(--transition),
    color var(--transition);
  cursor: default;
}
.product-list li:last-child {
  border-bottom: none;
}
.product-list li:hover {
  background: rgba(5, 150, 105, 0.06);
  color: var(--secondary);
}
.product-list li i {
  font-size: 0.875rem;
  color: var(--secondary);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: var(--primary);
  padding: 40px 0;
  text-align: center;
}
.cta-section .cta-heading {
  font-size: var(--fs-h2);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-section .cta-para {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #080e1a;
  padding: 72px 0 0;
}
.footer-brand-text {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-brand-text span {
  color: var(--secondary);
}
.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--secondary);
}
.footer-links a i {
  font-size: 0.875rem;
  color: var(--secondary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-contact-item .fi-icon {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--secondary);
  flex-shrink: 0;
}
.footer-contact-item .fi-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 56px;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

@media (max-width: 991.98px) {
  .gmc-navbar .navbar-nav .nav-link {
    padding: 12px 0;
  }
  .gmc-navbar .navbar-nav .nav-link::after {
    display: none;
  }
  .hero-float-cards {
    position: static;
    transform: none;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 20px;
  }
  .hero-image-wrap img {
    height: 340px;
  }
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
  }
  .process-timeline::before {
    display: none;
  }
  .process-step {
    flex-direction: row;
    text-align: left;
    width: 100%;
    padding: 0 0 24px 0;
    gap: 20px;
  }
  .step-bubble {
    margin-bottom: 0;
  }
  .trust-bar-divider {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-pad {
    padding: 56px 0;
  }
  .hero-section {
    padding: 72px 0 60px;
  }
  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }
  .hero-float-card {
    padding: 10px 14px;
    font-size: 0.8125rem;
  }
  .about-image-wrap img {
    height: 280px;
  }
  .vision-card {
    padding: 32px 28px;
  }
  .brand-icon img {
    height: 40px;
  }
}

.cs-policy-section {
  padding: 120px 0;
}

.cs-policy-content {
  max-width: 900px;
  margin: auto;
}

.cs-policy-content h1 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: 3rem;
}

.cs-policy-content h3 {
  color: var(--primary);
  margin-top: 40px;
  margin-bottom: 15px;
}

.cs-policy-content p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 20px;
}

.cs-policy-content ul {
  padding-left: 20px;
}

.cs-policy-content li {
  color: var(--text-light);
  margin-bottom: 10px;
}
