:root {
  --teal: #00004d;
  --teal-lt: #00004d;
  --gold: #c9a84c;
  --dark: #0f1e1d;
  --text: #2d3a39;
  --muted: #355c3a;
  --bg-soft: #f5f8f7;
  --white: #ffffff;
  --talk: #579760;
  --talk-lt: #355c3a;
}

* {
  font-family: "Outfit", sans-serif;
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}
body {
  color: var(--text);
}

/* ---------- NAV ---------- */
.navbar {
  background: var(--white);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.07);
}
.navbar-toggler {
  font-size: 2rem;
  color: #00004d;
}

@media (max-width: 991px) {
  .navbar-collapse {
    padding: 20px;
    margin-top: 15px;
  }

  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
  }

  .navbar-brand img {
    width: 140px !important;
  }
}
.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark) !important;
  letter-spacing: -0.5px;
}

.navbar-brand span {
  color: var(--gold);
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--muted);
  display: block;
  letter-spacing: 0.5px;
}

/* ---------- HERO ---------- */
.hero-section {
  min-height: 92vh;
  background: url("images/hero_banner.png") center/cover no-repeat;
  display: flex;
  align-items: center;

  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-label {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
  color: #000000;
}

.hero-title .accent {
  color: var(--teal);
}

.hero-desc {
  color: #000000;
  font-size: 1.05rem;
  max-width: 480px;
}

.hero-feat {
  color: rgba(0, 0, 0, 0.9);
  font-size: 0.82rem;
}

.hero-feat i {
  color: var(--teal);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.35rem;
}

.btn-teal {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #00004d, #001a80);
  border: none;
  color: #fff;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 77, 0.25);
}

.btn-teal::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -120%;
  }
  100% {
    left: 150%;
  }
}

.btn-teal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 77, 0.35);
  color: #ffffff;
}
.btn-talk {
  background: var(--talk);
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
}

.btn-talk:hover {
  background: var(--talk-lt);
  color: #fff;
}

.btn-outline-w {
  border: 2px solid var(--talk-lt);
  color: var(--talk);
  border-radius: 4px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  background: transparent;
}

.btn-outline-w:hover {
  background: var(--talk-lt);
  color: #fff;
}
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
    background-position: 80% center;
    position: relative;
  }

  /* Strong overlay */
  .hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.88);
    z-index: 1;
  }

  .hero-section .container {
    position: relative;
    z-index: 2;
  }

  /* Center all content */
  .hero-label,
  .hero-title,
  .hero-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-title {
    line-height: 1.15;
    max-width: 340px;
    font-weight: 800;
  }

  .hero-desc {
    max-width: 320px;
    font-size: 1rem;
    line-height: 1.7;
  }

  /* Features */
  .hero-feat {
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
  }

  .hero-feat i {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  /* Buttons */
  .hero-section .d-flex {
    justify-content: center;
  }

  .hero-section .btn {
    width: 100%;
    max-width: 350px;
  }
}
/* audit card */
.audit-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
}

.audit-card .gold-line {
  width: 40px;
  height: 3px;
  background: var(--gold);
  margin: 0.4rem auto 0.9rem;
  border-radius: 2px;
}

.audit-card .form-control {
  border-radius: 4px;
  font-size: 0.85rem;
  border-color: #d8e2e1;
}

.audit-card .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 0.2rem rgba(26, 92, 85, 0.15);
}

.audit-card .no-spam {
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

.audit-card .no-spam i {
  color: var(--teal);
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--white);
  padding: 2.5rem 0;
}

.trust-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.trust-logo {
  font-weight: 700;
  color: #555;
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  opacity: 0.75;
  transition: opacity 0.2s;
  cursor: default;
}

.trust-logo:hover {
  opacity: 1;
}

.trust-logo .dot {
  color: var(--gold);
}

/* ---------- SOLUTIONS ---------- */
.solutions-section {
  background: var(--bg-soft);
  padding: 5rem 0;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

.divider-gold {
  width: 50px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 0.6rem auto 0;
}

.sol-card {
  background: #fff;
  border-radius: 10px;
  padding: 2rem 1.75rem;
  height: 100%;
  border: 1px solid #e2eceb;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}

.sol-card:hover {
  box-shadow: 0 8px 28px rgba(26, 92, 85, 0.12);
  transform: translateY(-4px);
}

.sol-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.sol-icon-wrap i {
  font-size: 1.4rem;
}

.icon-teal {
  background: #e8f3f1;
}

.icon-teal i {
  color: var(--teal);
}

.icon-gold {
  background: #faf3e3;
}

.icon-gold i {
  color: var(--gold);
}

.icon-blue {
  background: #e8edf8;
}

.icon-blue i {
  color: #3b62b8;
}

.icon-purple {
  background: #f0eaf8;
}

.icon-purple i {
  color: #7b52b8;
}
.clients-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
    overflow: hidden;
}

.clients-section h2 {
    margin-bottom: 50px;
}

.logos-slider {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logos-track img {
    height: 90px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    transition: 0.3s;
}

.logos-track img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.why-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  text-align: center;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card i {
  font-size: 28px;
  color: #00004d;
  margin-bottom: 10px;
}

.why-card h6 {
  font-weight: 700;
  margin-bottom: 6px;
}

.why-card p {
  margin: 0;
  color: #666;
  font-size: 14px;
}
.sol-card h5 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.sol-check {
  font-size: 0.82rem;
  color: var(--text);
}

.sol-check i {
  color: var(--teal);
}

.link-teal {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
}

.link-teal:hover {
  color: var(--teal-lt);
  text-decoration: underline;
}

/* ---------- STATS ---------- */
.stats-section {
  background: var(--white);
  padding: 4rem 0;
}

.stat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon i {
  font-size: 1.4rem;
  color: var(--teal);
}

.stat-number {
  font-weight: 500;
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
}
/* .stat-number {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: #00004d;
} */

.stat-symbol {
  font-size: 1.2rem;
  vertical-align: super;
  margin-left: 2px;
  font-weight: 700;
}
.stat-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ---------- PARTNER ---------- */
.partner-section {
  background: var(--bg-soft);
  padding: 5rem 0;
}

.partner-img {
  border-radius: 12px;
  height: 320px;
  object-fit: cover;
  width: 100%;
}

.partner-label {
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.partner-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

/* ---------- CHALLENGES ---------- */
.challenges-section {
  background: var(--white);
  padding: 5rem 0;
}

.chal-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.chal-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.9rem;
}

.chal-icon i {
  font-size: 1.35rem;
}

.chal-gold .chal-icon {
  background: #faf3e3;
}

.chal-gold .chal-icon i {
  color: var(--gold);
}

.chal-teal .chal-icon {
  background: #e8f3f1;
}

.chal-teal .chal-icon i {
  color: var(--teal);
}

.chal-card h6 {
  font-weight: 700;
  font-size: 0.92rem;
}

.chal-card p {
  font-size: 0.78rem;
  color: var(--muted);
}

/* ---------- CTA FORM ---------- */
.cta-section {
  padding: 5rem 0;
}

.cta-left-card {
  padding: 2.5rem;
  height: 100%;
}

.cta-form-side .form-control {
  border-radius: 4px;
  border-color: #d8e2e1;
  font-size: 0.88rem;
}

.cta-form-side .form-control:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 0.2rem rgba(26, 92, 85, 0.15);
}

/* ---------- FOOTER BAR ---------- */
.footer-strip {
  background: var(--talk);
  color: #fff;
  padding: 1.2rem 0;
}

.footer-strip .strip-item {
  font-size: 18px;
}

.footer-strip .strip-item i {
  color: var(--gold);
  margin-right: 0.35rem;
}

.footer-bottom {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  padding: 0.9rem 0;
}

/* ---------- UTILS ---------- */
.rounded-btn {
  border-radius: 4px !important;
}
/* Enquiry Button */
.floating-enquiry {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9999;

  background: #00004d;
  color: #fff;
  text-decoration: none;

  padding: 14px 24px;
  border-radius: 50px;

  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);

  animation: pulseBtn 2s infinite;
}

.floating-enquiry:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* Call + WhatsApp */
.floating-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-call,
.float-whatsapp {
  width: 58px;
  height: 58px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}

.float-call {
  background: #00004d;
}

.float-whatsapp {
  background: #25d366;
}

.float-call i,
.float-whatsapp i {
  font-size: 24px;
}

/* Pulse Effect */
@keyframes pulseBtn {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 77, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 0, 77, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 77, 0);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-strip .strip-item {
    font-size: 14px;
  }
  .floating-enquiry {
    left: 15px;
    bottom: 15px;
    padding: 12px 18px;
    font-size: 14px;
  }

  .floating-contact {
    right: 15px;
    bottom: 15px;
  }

  .float-call,
  .float-whatsapp {
    width: 52px;
    height: 52px;
  }
}
.enquiry-modal {
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.enquiry-modal .modal-body {
  padding: 30px;
}

.enquiry-modal .gold-line {
  width: 50px;
  height: 3px;
  background: #c9a84c;
  margin: 10px auto 20px;
}

.enquiry-modal .form-control {
  border-radius: 8px;
  min-height: 48px;
}

.enquiry-modal textarea {
  min-height: 120px;
}

.modal-backdrop.show {
  opacity: 0.7;
}
