:root {
  --bg: #f4f7fb;
  --surface: #ffffff;
  --surface-alt: #eef3f9;
  --text: #1f2a37;
  --muted: #5b6878;
  --primary: #1f5fae;
  --primary-soft: #e9f1fb;
  --border: #dbe4ef;
  --success: #1f7a52;
  --shadow: 0 10px 30px rgba(20, 40, 80, 0.08);
  --radius: 14px;
  --radius-sm: 10px;
  --max: 1160px;
  --hover-lift: 0 16px 40px rgba(20, 40, 80, 0.13);
  --transition-smooth: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", "Inter", "Roboto", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.section {
  padding: 4.25rem 0;
}

.section-title {
  margin: 0 0 0.85rem;
  font-size: clamp(1.55rem, 2.8vw, 2.1rem);
  line-height: 1.25;
}

.section-lead {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  background: var(--primary-soft);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.4rem 0.75rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  cursor: default;
}

.badge:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 14px rgba(31, 95, 174, 0.15);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}

.skip-link:focus {
  left: 0.75rem;
  top: 0.75rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.header-inner {
  min-height: 64px;
  /* Slimmer header */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover {
  text-decoration: none;
}

.brand-text {
  font-size: 1.45rem;
  font-weight: 850;
  letter-spacing: -0.8px;
  background: linear-gradient(90deg,
      #fb2a71 0%,
      #ff0000 50%,
      #fb2a71 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #fb2a71;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand:hover .brand-text {
  letter-spacing: -0.8px;
}

.text-accent {
  background: linear-gradient(135deg, #111111 0%, #333333 100%);
  /* Solid Black from Logo */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #111111;
  /* Fallback */
  font-weight: 700;
  margin-left: 3px;
  transition: all 0.5s ease;
  display: inline-block;
  /* Ensure clip renders in Brave */
}

.brand:hover .text-accent {
  background: linear-gradient(135deg, #000000 0%, #111111 100%);
  /* Full Black on hover */
  -webkit-background-clip: text;
  background-clip: text;
}

.brand-logo {
  height: 38px;
  width: auto;
  object-fit: contain;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  /* Prevent wrapping which causes 'extremely high' headery */
  align-items: center;
  gap: 0.15rem;
  /* Tighter gap to help fit more links */
}

.main-nav a {
  display: inline-block;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  color: #334152;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color var(--transition-smooth), background var(--transition-smooth), transform 0.2s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: width 0.3s ease, left 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  width: 60%;
  left: 20%;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: var(--primary-soft);
  color: var(--primary);
  transform: translateY(-1px);
}

.main-nav a.active {
  background: var(--primary);
  color: #fff;
}

.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 0.45rem 0.55rem;
}

.hero {
  background:
    radial-gradient(circle at 0% 0%, #e6f0ff 0%, rgba(230, 240, 255, 0) 45%),
    radial-gradient(circle at 100% 100%, #e9f6ff 0%, rgba(233, 246, 255, 0) 42%),
    #ffffff;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  min-height: 76vh;
  display: grid;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  line-height: 1.16;
}

.hero p {
  margin: 1.1rem 0 0;
  color: var(--muted);
  max-width: 620px;
}

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.hero-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(20, 40, 80, 0.14);
}

.hero-panel h2 {
  margin-top: 0;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.hero-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.95rem;
  color: #334152;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex: 0 0 auto;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

.actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.68rem 1.15rem;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), background var(--transition-smooth);
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255, 255, 255, 0.3) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-3px) scale(1.03);
}

.btn:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 0.1s;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 18px rgba(31, 95, 174, 0.25);
}

.btn-primary:hover {
  background: #1b518f;
  box-shadow: 0 14px 32px rgba(31, 95, 174, 0.35);
}

.btn-outline {
  background: #fff;
  color: var(--primary);
  border-color: #b7cce7;
}

.btn-outline:hover {
  background: var(--primary-soft);
  border-color: var(--primary);
  box-shadow: 0 8px 24px rgba(31, 95, 174, 0.12);
}

.page-hero {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  padding: 3.1rem 0;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.page-hero p {
  margin: 0.9rem 0 0;
  max-width: 760px;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.1rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 4px 14px rgba(17, 48, 89, 0.05);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-lift);
  border-color: rgba(31, 95, 174, 0.25);
}

.card h3,
.card h4 {
  margin: 0;
  font-size: 1.04rem;
}

.card p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--primary-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
  transition: transform var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth);
}

.card:hover .icon-wrap {
  transform: scale(1.15) rotate(-6deg);
  background: var(--primary);
  color: #fff;
}

.kpi-row {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.kpi {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 0.8rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.kpi:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(31, 95, 174, 0.1);
  border-color: rgba(31, 95, 174, 0.2);
}

.kpi strong {
  display: block;
  font-size: 1.2rem;
  color: var(--primary);
}

.kpi span {
  font-size: 0.85rem;
  color: #49576a;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.list {
  margin: 0.85rem 0 0;
  padding: 0 0 0 1rem;
}

.list li {
  margin-bottom: 0.35rem;
  color: #3b495c;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.8rem;
}

.logo-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 11px;
  min-height: 74px;
  display: grid;
  place-items: center;
  font-weight: 600;
  color: #324051;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth), background var(--transition-smooth);
}

.logo-item:hover {
  transform: translateY(-4px) scale(1.06);
  box-shadow: 0 10px 28px rgba(31, 95, 174, 0.14);
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

.logo-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.tag {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.3rem 0.72rem;
  font-size: 0.8rem;
  color: #3c4a5e;
  transition: transform var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
  cursor: default;
}

.tag:hover {
  transform: translateY(-3px) scale(1.08);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.cta {
  background: #ffffff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-box {
  background: linear-gradient(180deg, #ffffff, #f6faff);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 1.3rem;
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr auto;
  align-items: center;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.cta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(20, 40, 80, 0.12);
}

.cta-box h3 {
  margin: 0;
  font-size: 1.3rem;
}

.cta-box p {
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}

.contact-list li {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.75rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.contact-list li:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 18px rgba(31, 95, 174, 0.1);
  border-color: rgba(31, 95, 174, 0.25);
}

.contact-list strong {
  display: block;
  font-size: 0.9rem;
  color: #3f4d60;
}

.contact-list span,
.contact-list a {
  font-size: 0.95rem;
}

.form {
  display: grid;
  gap: 0.8rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

label {
  font-size: 0.88rem;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #c9d7ea;
  border-radius: 10px;
  padding: 0.65rem 0.7rem;
  font: inherit;
  background: #fff;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 95, 174, 0.12), 0 4px 14px rgba(31, 95, 174, 0.08);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.map-wrap iframe {
  width: 100%;
  height: 330px;
  border: 0;
  border-radius: var(--radius-sm);
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--border);
  margin-top: 2rem;
}

.footer-grid {
  padding: 2.8rem 0 2.3rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 1rem;
}

.footer-title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}

.footer-list a,
.footer-list span {
  color: #4a586b;
  font-size: 0.92rem;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer-list a:hover {
  color: var(--primary);
  transform: translateX(4px);
  text-decoration: none;
}

.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.social {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: #4d5b6e;
  transition: transform var(--transition-smooth), background var(--transition-smooth), color var(--transition-smooth), border-color var(--transition-smooth);
  cursor: pointer;
}

.social:hover {
  transform: translateY(-4px) scale(1.15);
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.social.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
}

.social.email:hover {
  background: #EA4335;
  border-color: #EA4335;
}

.social.call:hover {
  background: #34A853;
  border-color: #34A853;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 54px;
  height: 54px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  z-index: 2000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  color: #FFF;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 0.9rem 0 1.4rem;
  color: #5e6b7d;
  font-size: 0.88rem;
}

/* ── Footer Business Info Section ── */

.footer-business-strip {
  border-top: 1px solid var(--border);
  padding: 2rem 0 1.5rem;
  margin-top: 0.5rem;
}

.footer-business-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 1.5rem;
  align-items: start;
}

.footer-info-card {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.25rem 1.4rem;
  position: relative;
  overflow: hidden;
}

.footer-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary);
  border-radius: 4px 0 0 4px;
}

.footer-info-card h4 {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-info-card h4 .info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  flex-shrink: 0;
}

.reg-detail-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
}

.reg-detail-row+.reg-detail-row {
  border-top: 1px dashed #dbe4ef;
}

.reg-detail-row .reg-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-width: 70px;
  flex-shrink: 0;
}

.reg-detail-row .reg-value {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
  font-family: 'Courier New', Courier, monospace;
  letter-spacing: 0.5px;
}

.bank-details-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.bank-details-table tr td {
  padding: 0.5rem 0.75rem;
  font-size: 0.85rem;
  border-bottom: 1px solid #eef2f7;
  vertical-align: middle;
}

.bank-details-table tr:last-child td {
  border-bottom: none;
}

.bank-details-table .bank-label {
  color: #64748b;
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
  width: 130px;
}

.bank-details-table .bank-value {
  color: var(--text);
  font-weight: 500;
}

.bank-details-table .bank-value.mono {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.bank-details-table tr:hover td {
  background: rgba(31, 95, 174, 0.03);
}

@media (max-width: 768px) {
  .footer-business-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-info-card {
    padding: 1rem 1.1rem;
  }

  .bank-details-table .bank-label {
    width: auto;
  }
}

/* ── Responsive Overrides ── */

@media (max-width: 991px) {
  .header-inner {
    min-height: 64px;
  }

  .brand-logo {
    height: 40px;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 3rem 0;
  }

  .hero p {
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .brand-logo {
    height: 34px;
  }
}

/* ── Scroll-triggered reveal ── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* Slide from left / right variants */
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Scale-up reveal */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

/* ── Infinite brand marquee scroller ── */

.marquee {
  overflow: hidden;
  position: relative;
  padding: 1rem 0;
}

.marquee::before,
.marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.marquee-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-track .logo-item {
  min-width: 150px;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Gradient text shimmer for hero h1 ── */

.text-shimmer {
  background: linear-gradient(90deg, var(--text) 40%, var(--primary) 50%, var(--text) 60%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {

  0%,
  100% {
    background-position: 100% 0;
  }

  50% {
    background-position: 0 0;
  }
}

/* ── Typing cursor for hero tagline ── */

.typing-cursor::after {
  content: '|';
  color: var(--primary);
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

/* ── Floating subtle background element ── */

.float-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(31, 95, 174, 0.06);
  pointer-events: none;
  animation: floatBob 6s ease-in-out infinite;
}

.float-shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -60px;
}

.float-shape-2 {
  width: 200px;
  height: 200px;
  bottom: 5%;
  left: -40px;
  animation-delay: -3s;
}

@keyframes floatBob {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* ── Staggered card entrance ── */

.grid .card:nth-child(1) {
  transition-delay: 0.05s;
}

.grid .card:nth-child(2) {
  transition-delay: 0.1s;
}

.grid .card:nth-child(3) {
  transition-delay: 0.15s;
}

.grid .card:nth-child(4) {
  transition-delay: 0.2s;
}

.grid .card:nth-child(5) {
  transition-delay: 0.25s;
}

.grid .card:nth-child(6) {
  transition-delay: 0.3s;
}

.grid .card:nth-child(7) {
  transition-delay: 0.35s;
}

.grid .card:nth-child(8) {
  transition-delay: 0.4s;
}

.grid .card:nth-child(9) {
  transition-delay: 0.45s;
}

.grid .card:nth-child(10) {
  transition-delay: 0.5s;
}

/* ── Smooth focus ring for interactive elements ── */

.btn:focus-visible,
.main-nav a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ── Hover tilt for hero list items ── */

.hero-list li {
  transition: transform 0.25s ease;
}

.hero-list li:hover {
  transform: translateX(6px);
}

/* ── List item interactive slide ── */

.list li {
  transition: transform 0.25s ease, color 0.25s ease;
}

.list li:hover {
  transform: translateX(5px);
  color: var(--primary);
}

/* ── Form input focus glow ── */

/* ── Refined Responsiveness ── */

@media (max-width: 1200px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero p {
    margin-inline: auto;
  }

  .actions {
    justify-content: center;
  }
}

@media (max-width: 1060px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    inset: 64px 0 auto 0;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    background: #fff;
    border-bottom: 2px solid var(--primary);
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-smooth), opacity var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  .main-nav.open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem;
  }

  .main-nav a {
    padding: 1rem;
    border-radius: 12px;
    font-size: 1.05rem;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .grid-3,
  .grid-2,
  .split,
  .contact-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .page-hero-inner {
    padding: 2.5rem 0;
  }
}

@media (max-width: 480px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-list {
    justify-content: center;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .badge {
    font-size: 0.75rem;
  }

  .actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .socials {
    justify-content: center;
  }
}

/* ── Responsive reCAPTCHA wrapper ── */
.recaptcha-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-bottom: 25px;
}

@media (max-width: 400px) {
  .recaptcha-wrapper {
    transform: scale(0.85);
    transform-origin: center center;
  }
}

@media (max-width: 320px) {
  .recaptcha-wrapper {
    transform: scale(0.75);
    transform-origin: center center;
  }
}

.submit-btn:disabled,
.btn:disabled {
  background: #cbd5e1 !important;
  color: #64748b !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
  border: 1px solid #e2e8f0 !important;
  opacity: 0.7;
}

/* Review Component Styling */
:root {
  --star-color: #fbbc04;
}

.review-section {
  background: #fcfcfc;
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.review-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e8eaed;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.reviewer-avatar {
  width: 45px;
  height: 45px;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.reviewer-info h4 {
  font-size: 1rem;
  margin: 0;
  color: #212529;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: #70757a;
}

.review-content {
  font-size: 0.95rem;
  color: #3c4043;
  font-style: italic;
  line-height: 1.6;
}

.stars-small {
  color: var(--star-color);
  font-size: 0.9rem;
  margin: 0;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d93025;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.live-indicator span {
  width: 8px;
  height: 8px;
  background: #d93025;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.5;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ── Our Clients Section ── */

.clients-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.clients-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.clients-header .badge {
  background: linear-gradient(135deg, #e0f2fe, #e9f1fb);
}

.clients-header .section-title {
  margin-bottom: 0.5rem;
}

.clients-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 0.95rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.client-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.client-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), #3b82f6, var(--primary));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--hover-lift);
  border-color: rgba(31, 95, 174, 0.25);
}

.client-card:hover::before {
  opacity: 1;
}

.client-logo-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  padding: 10px;
  transition: transform var(--transition-smooth), background var(--transition-smooth);
}

.client-card:hover .client-logo-wrap {
  transform: scale(1.08);
  background: #eef3fb;
}

.client-logo-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.client-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.client-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: var(--primary-soft);
  color: var(--primary);
}

.client-category.energy {
  background: #fef3c7;
  color: #92400e;
}

.client-category.conglomerate {
  background: #ede9fe;
  color: #5b21b6;
}

.client-category.multinational {
  background: #dbeafe;
  color: #1e40af;
}

.client-category.tech {
  background: #d1fae5;
  color: #065f46;
}

.client-category.industrial {
  background: #fee2e2;
  color: #991b1b;
}

.client-category.telecom {
  background: #fce7f3;
  color: #9d174d;
}

.client-category.other {
  background: #f0fdf4;
  color: #166534;
}

.client-category.healthcare {
  background: #eff6ff;
  color: #1e3a8a;
}

.clients-footer-note {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #f0f7ff 0%, #eef3fb 100%);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.clients-footer-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.clients-footer-note strong {
  color: var(--primary);
}

@media (max-width: 991px) {
  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .clients-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
  }

  .client-logo-wrap {
    width: 60px;
    height: 60px;
    padding: 8px;
  }

  .client-name {
    font-size: 0.8rem;
  }
}

.global-presence {
  text-align: center;
  padding: 10px 0;
  font-size: 12px;
  font-weight: 700;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}