/* ══════════════════════════════════════
         DESIGN TOKENS
      ══════════════════════════════════════ */
:root {
  --blue: #1b5bff;
  --blue-dark: #1040d6;
  --blue-light: #eef3ff;
  --orange: #ff6b2c;
  --orange-light: #fff3ee;
  --dark: #0e1b35;
  --dark2: #1a2744;
  --grey: #6b7a99;
  --grey-light: #f5f7ff;
  --border: #e4e9f5;
  --white: #fff;
  --shadow: 0 8px 40px rgba(27, 91, 255, 0.08);
  --shadow-lg: 0 20px 60px rgba(27, 91, 255, 0.13);
  font-family: "Poppins", sans-serif;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* FIX 1: Prevent horizontal overflow caused by WhatsApp ripple animation */
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  background: #fff;
  color: var(--dark);
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 4px;
}

/* ══════════════════════════════════════
         TOPBAR
      ══════════════════════════════════════ */
.topbar {
  background: var(--dark2);
  padding: 0.55rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
}
.topbar a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.2s;
  text-decoration: none;
}
.topbar a:hover {
  color: #fff;
}
.tb-quote {
  background: var(--blue);
  color: #fff !important;
  padding: 0.28rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.76rem;
  transition: all 0.3s;
}
.tb-quote:hover {
  background: var(--blue-dark);
}

/* ══════════════════════════════════════
         NAVBAR
      ══════════════════════════════════════ */
.site-nav {
  background: #fff;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1.5px solid var(--border);
  transition: box-shadow 0.3s;
}
.site-nav.scrolled {
  box-shadow: 0 4px 30px rgba(27, 91, 255, 0.1);
}

.navbar {
  min-height: 64px;
}
.navbar-brand {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  height: 64px;
}
.navbar-collapse {
  flex-grow: 0;
}
.navbar-nav {
  align-items: center;
  gap: 0;
  flex-wrap: nowrap;
}
.navbar-nav .nav-item {
  display: flex;
  align-items: center;
  height: 64px;
}
.nav-link {
  font-weight: 600;
  font-size: 0.87rem;
  color: var(--dark) !important;
  padding: 0 1rem !important;
  line-height: 1;
  display: flex;
  align-items: center;
  height: 100%;
  position: relative;
  transition: color 0.3s;
  white-space: nowrap;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transition: 0.3s;
}
.nav-link:hover {
  color: var(--blue) !important;
}
.nav-link:hover::after {
  transform: scaleX(1);
}

/* Book Service button */
.nav-item.ms-lg-3 {
  display: flex;
  align-items: center;
  height: auto !important;
}
.btn-nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: 8px 20px !important;
  font-weight: 700 !important;
  font-size: 0.82rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  box-shadow: 0 4px 14px rgba(27, 91, 255, 0.25) !important;
  transition:
    opacity 0.2s,
    transform 0.2s !important;
  width: auto !important;
  height: auto !important;
}
.btn-nav-cta:hover {
  opacity: 0.9 !important;
  transform: translateY(-2px) !important;
  color: #fff !important;
}
.btn-nav-cta::after {
  display: none !important;
}
.navbar-toggler {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.3rem 0.55rem;
}

/* ══════════════════════════════════════
         HERO
      ══════════════════════════════════════ */
.hero {
  background: linear-gradient(135deg, #eef3ff 0%, #f8faff 55%, #ebf0ff 100%);
  padding: 90px 0 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-blob1 {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(27, 91, 255, 0.09), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-blob2 {
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 44, 0.07),
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}
.hero-dots {
  position: absolute;
  top: 100px;
  left: 5%;
  opacity: 0.45;
  pointer-events: none;
}
.hero-dots2 {
  position: absolute;
  bottom: 100px;
  right: 4%;
  opacity: 0.35;
  pointer-events: none;
}

.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(27, 91, 255, 0.09);
  border: 1.5px solid rgba(27, 91, 255, 0.2);
  border-radius: 50px;
  padding: 0.36rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.3rem;
}
.eyebrow-tag .eline {
  width: 20px;
  height: 2px;
  background: var(--blue);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--dark);
  margin-bottom: 1.2rem;
}
.hero h1 .hl {
  color: var(--blue);
  position: relative;
}
.hero h1 .hl::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(27, 91, 255, 0.14);
  border-radius: 4px;
  z-index: -1;
}
.hero h1 .org {
  color: var(--orange);
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.4rem;
  margin-bottom: 1.4rem;
}
.hchk {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--dark);
}
.hchk .ci {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hchk .ci i {
  font-size: 0.6rem;
  color: var(--blue);
}

.hero-desc {
  font-size: 0.97rem;
  color: var(--grey);
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 2rem;
}

.btn-hero-p {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 0.82rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 28px rgba(27, 91, 255, 0.35);
  transition: all 0.3s;
  border: none;
  text-decoration: none;
}
.btn-hero-p:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(27, 91, 255, 0.45);
  color: #fff;
}

.btn-hero-s {
  background: #fff;
  color: var(--dark);
  padding: 0.82rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 2px solid var(--border);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-hero-s:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(27, 91, 255, 0.1);
}

.hero-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}
.proof-avatars {
  display: flex;
}
.pavatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.68rem;
  color: #fff;
  flex-shrink: 0;
}
.pavatar:not(:first-child) {
  margin-left: -9px;
}
.proof-text {
  font-size: 0.81rem;
  color: var(--grey);
}
.proof-text strong {
  color: var(--dark);
  display: block;
  font-size: 0.87rem;
}
.stars-row {
  color: #ffbc41;
  font-size: 0.73rem;
}
.proof-div {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* Hero card */
.hero-card-wrap {
  position: relative;
  max-width: 440px;
  width: 100%;
  animation: floatHero 5s ease-in-out infinite;
}
@keyframes floatHero {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}
.hero-main-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  padding: 1.8rem;
  border: 1.5px solid var(--border);
}
.htgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.htgitem {
  background: var(--grey-light);
  border: 1.5px solid var(--border);
  border-radius: 13px;
  padding: 1rem 0.7rem;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
}
.htgitem:hover {
  background: var(--blue-light);
  border-color: rgba(27, 91, 255, 0.28);
  transform: translateY(-4px);
}
.htgitem i {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 0.3rem;
}
.htgitem span {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.card-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1.5px solid var(--border);
}
.pill-avail {
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 50px;
  padding: 0.28rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.pill-live {
  background: #edfbf3;
  color: #1bae5c;
  border-radius: 50px;
  padding: 0.28rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.ldot {
  width: 6px;
  height: 6px;
  background: #1bae5c;
  border-radius: 50%;
  animation: ldotblink 1.2s infinite;
}
@keyframes ldotblink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.25;
  }
}

.fcard {
  position: absolute;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.11);
  padding: 0.65rem 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  white-space: nowrap;
  animation: floatHero 4s ease-in-out infinite;
}
.fcard.fc1 {
  top: -28px;
  left: -35px;
  animation-delay: 0s;
}
.fcard.fc2 {
  bottom: -45px;
  right: -45px;
  animation-delay: 1.8s;
}
.fcard-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.fcard-val {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}
.fcard-sub {
  font-size: 0.67rem;
  color: var(--grey);
}

/* ══════════════════════════════════════
         BRAND STRIP
      ══════════════════════════════════════ */
.brand-strip {
  background: var(--grey-light);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 1.2rem 0;
  overflow: hidden;
}
.btrack {
  display: flex;
  gap: 2.4rem;
  align-items: center;
  animation: bscroll 20s linear infinite;
  width: max-content;
}
@keyframes bscroll {
  to {
    transform: translateX(-50%);
  }
}
.bpill {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--grey);
  white-space: nowrap;
  transition: all 0.3s;
}
.bpill:hover {
  border-color: rgba(27, 91, 255, 0.3);
  color: var(--blue);
}

/* ══════════════════════════════════════
         SECTION COMMON
      ══════════════════════════════════════ */
section {
  padding: 88px 0;
}
.stag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.8rem;
}
.stag .sl {
  width: 26px;
  height: 2px;
  background: var(--blue);
}
h2.stitle {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.4px;
}
h2.stitle span {
  color: var(--blue);
}
.sdesc {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 550px;
}

/* ══════════════════════════════════════
         SERVICES
      ══════════════════════════════════════ */
.services {
  background: var(--grey-light);
}
.svc {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.9rem 1.7rem;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: default;
}
.svc::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s;
}
.svc:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
  border-color: rgba(27, 91, 255, 0.18);
}
.svc:hover::before {
  transform: scaleX(1);
}
.svc-ic {
  width: 62px;
  height: 62px;
  border-radius: 15px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: all 0.4s;
}
.svc-ic i {
  font-size: 1.45rem;
  color: var(--blue);
  transition: all 0.4s;
}
.svc:hover .svc-ic {
  background: var(--blue);
  transform: scale(1.08) rotate(-5deg);
}
.svc:hover .svc-ic i {
  color: #fff;
}
.svc h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.55rem;
}
.svc p {
  font-size: 0.86rem;
  color: var(--grey);
  line-height: 1.72;
  margin-bottom: 1.1rem;
}
.svc-lnk {
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  transition: gap 0.3s;
}
.svc-lnk:hover {
  gap: 0.65rem;
}

/* ══════════════════════════════════════
         ABOUT
      ══════════════════════════════════════ */
.about {
  background: white;
}
.about-img-grid {
  background: linear-gradient(135deg, var(--blue-light), #dde8ff);
  border-radius: 20px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  position: relative;
}
.amic {
  background: #fff;
  border-radius: 13px;
  padding: 1.2rem 0.9rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
  box-shadow: 0 4px 14px rgba(27, 91, 255, 0.07);
  transition: all 0.3s;
}
.amic:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(27, 91, 255, 0.11);
}
.amic i {
  font-size: 1.7rem;
}
.amic span {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.exp-badge {
  position: absolute;
  bottom: -18px;
  right: -108px;
  background: var(--blue);
  color: #fff;
  border-radius: 14px;
  padding: 1rem 1.3rem;
  text-align: center;
  box-shadow: 0 8px 28px rgba(27, 91, 255, 0.4);
}
.exp-badge .en {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}
.exp-badge .el {
  font-size: 0.7rem;
  font-weight: 600;
  opacity: 0.85;
  line-height: 1.3;
}
.shape-ring {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 3px dashed rgba(27, 91, 255, 0.2);
  animation: ringsp 18s linear infinite;
}
@keyframes ringsp {
  to {
    transform: rotate(360deg);
  }
}

.afeat {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 1.4rem 0;
}
.afi {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 11px;
  padding: 0.9rem 1rem;
  transition: all 0.3s;
}
.afi:hover {
  border-color: rgba(27, 91, 255, 0.28);
  box-shadow: 0 5px 18px rgba(27, 91, 255, 0.07);
}
.afi-ic {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.afi-ic i {
  color: var(--blue);
  font-size: 0.9rem;
}
.afi strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
  display: block;
}
.afi span {
  font-size: 0.8rem;
  color: var(--grey);
}

/* ══════════════════════════════════════
         WHY US
      ══════════════════════════════════════ */
.why {
  background: #fff;
}
.wyc {
  background: var(--grey-light);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 1.9rem;
  text-align: center;
  transition: all 0.4s;
  height: 100%;
  cursor: default;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wyc:hover {
  background: #fff;
  border-color: rgba(27, 91, 255, 0.22);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.wy-ic {
  width: 68px;
  height: 68px;
  border-radius: 17px;
  background: #fff;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  flex-shrink: 0;
  transition: all 0.4s;
}
.wyc:hover .wy-ic {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  border-color: transparent;
  box-shadow: 0 10px 28px rgba(27, 91, 255, 0.3);
}
.wy-ic i {
  font-size: 1.55rem;
  color: var(--blue);
  transition: color 0.4s;
}
.wyc:hover .wy-ic i {
  color: #fff;
}
.wyc h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.45rem;
  width: 100%;
}
.wyc p {
  font-size: 0.84rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
  width: 100%;
}

/* ══════════════════════════════════════
         CTA BANNER
      ══════════════════════════════════════ */
.ctab {
  background: linear-gradient(
    135deg,
    var(--blue) 0%,
    #0d3acc 60%,
    var(--dark2) 100%
  );
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.ctab::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 380px;
  height: 380px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}
.ctab::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 280px;
  height: 280px;
  background: rgba(255, 107, 44, 0.1);
  border-radius: 50%;
}
.ctab .etag {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
}
.ctab .etag span {
  width: 26px;
  height: 2px;
  background: rgba(255, 255, 255, 0.45);
}
.ctab h2 {
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 0.9rem;
  line-height: 1.2;
}
.ctab p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.97rem;
  line-height: 1.75;
  max-width: 480px;
}
.btn-cw {
  background: #fff;
  color: var(--blue);
  padding: 0.87rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-cw:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.28);
  color: var(--blue-dark);
}
.btn-co {
  background: transparent;
  color: #fff;
  padding: 0.87rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 2px solid rgba(255, 255, 255, 0.38);
  transition: all 0.3s;
  text-decoration: none;
}
.btn-co:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
  transform: translateY(-3px);
}
.cta-btns {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.cta-phone {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  padding: 0.87rem 1.9rem;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.1rem;
  width: fit-content;
}
.cta-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta-ring {
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.cta-ring::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.14);
  animation: ringsp 16s linear infinite;
}
.cta-ring::after {
  content: "";
  position: absolute;
  inset: -38px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.07);
  animation: ringsp 26s linear infinite reverse;
}
.cta-inner {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 195px;
  height: 195px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}
.cta-inner i {
  font-size: 2.8rem;
  color: rgba(255, 255, 255, 0.75);
}
.cta-inner span {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 600;
  text-align: center;
}

/* ══════════════════════════════════════
         CONTACT
      ══════════════════════════════════════ */
.contact {
  background: var(--grey-light);
}
.ccard {
  background: #fff;
  border-radius: 18px;
  border: 1.5px solid var(--border);
  padding: 2.3rem;
  height: 100%;
}
.cirow {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1.5px solid var(--border);
}
.cirow:last-child {
  border-bottom: none;
}
.ciico {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ciico i {
  color: var(--blue);
  font-size: 0.95rem;
}
.ciico.or {
  background: var(--orange-light);
}
.ciico.or i {
  color: var(--orange);
}
.ciico.gr {
  background: #edfbf3;
}
.ciico.gr i {
  color: #1bae5c;
}
.cilbl {
  font-size: 0.71rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--grey);
  margin-bottom: 0.18rem;
}
.cival {
  font-size: 0.91rem;
  font-weight: 700;
  color: var(--dark);
}
.cival a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s;
}
.cival a:hover {
  color: var(--blue);
}
.cisub {
  font-size: 0.76rem;
  color: var(--grey);
}

.form-control,
.form-select {
  border: 1.5px solid var(--border) !important;
  border-radius: 10px !important;
  padding: 0.72rem 0.95rem !important;
  font-size: 0.89rem !important;
  color: var(--dark) !important;
  background: #fff !important;
  transition: all 0.3s !important;
  font-family: "Poppins", sans-serif;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--blue) !important;
  box-shadow: 0 0 0 3px rgba(27, 91, 255, 0.1) !important;
}
.form-control::placeholder {
  color: var(--grey) !important;
}
.flbl {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.38rem;
  display: block;
}
.btn-sub {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: #fff;
  padding: 0.88rem 1.9rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.93rem;
  width: 100%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  transition: all 0.3s;
  box-shadow: 0 6px 22px rgba(27, 91, 255, 0.3);
}
.btn-sub:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(27, 91, 255, 0.4);
}

/* ══════════════════════════════════════
         FOOTER
      ══════════════════════════════════════ */
footer {
  background: var(--dark2);
  color: rgba(255, 255, 255, 0.72);
}
.footer-bottom {
  background: rgba(0, 0, 0, 0.22);
  padding: 1.4rem 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #fff;
}

/* ══════════════════════════════════════
         WHATSAPP FLOAT
         FIX: isolation:isolate + clip-path keeps ripple rings
         contained so they cannot push the viewport width
      ══════════════════════════════════════ */
.wafloat {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 5px 22px rgba(37, 211, 102, 0.48);
  transition: all 0.3s;
  /* FIX: create stacking context so pseudo-elements don't
           bleed outside the fixed element's paint layer */
  isolation: isolate;
}
.wafloat:hover {
  transform: scale(1.12);
  color: #fff;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.62);
}
.wafloat::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.32);
  animation: waRipple 2s ease-out infinite;
}
.wafloat::after {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.16);
  animation: waRipple 2s ease-out infinite 0.6s;
}
@keyframes waRipple {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* ══════════════════════════════════════
         RESPONSIVE — TABLET (max 991px)
      ══════════════════════════════════════ */
@media (max-width: 991px) {
  .hero {
    padding: 75px 0 50px;
    min-height: auto;
  }
  .hero-card-wrap {
    margin: 3rem auto 0;
    max-width: 380px;
  }
  .fcard.fc1,
  .fcard.fc2 {
    display: none;
  }
  .about-img-grid {
    max-width: 380px;
    margin: 0 auto 3rem;
  }
  .exp-badge {
    right: -10px;
    bottom: -10px;
  }
  .cta-visual {
    margin-top: 3rem;
  }

  /* Mobile nav dropdown */
  .navbar-collapse {
    background: #fff;
    border-top: 1.5px solid var(--border);
    padding: 0.5rem 0 1rem;
    box-shadow: 0 8px 24px rgba(27, 91, 255, 0.08);
  }
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 0 !important;
    width: 100%;
  }
  .navbar-nav .nav-item {
    width: 100%;
    height: auto !important;
    border-bottom: 1px solid var(--border);
  }
  .navbar-nav .nav-item:last-child {
    border-bottom: none;
  }
  .nav-link {
    width: 100%;
    padding: 0.85rem 1.2rem !important;
    height: auto !important;
  }
  .nav-link::after {
    display: none;
  }
  .nav-item.ms-lg-3 {
    width: 100%;
    height: auto !important;
    padding: 0.75rem 1rem;
    margin: 0 !important;
  }
  .btn-nav-cta {
    width: 100% !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    justify-content: center !important;
  }
}

/* ══════════════════════════════════════
         RESPONSIVE — MOBILE (max 767px)
      ══════════════════════════════════════ */
@media (max-width: 767px) {
  section {
    padding: 55px 0;
  }

  /* Topbar */
  .topbar {
    font-size: 0.74rem;
    padding: 0.5rem 0;
    text-align: center;
  }
  .topbar .container {
    flex-direction: column !important;
    gap: 0.4rem !important;
    align-items: center !important;
  }
  .topbar .d-flex.gap-3 {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem !important;
  }

  /* Hero */
  .hero {
    padding: 60px 0 40px;
  }
  .hero h1 {
    font-size: 2rem;
    letter-spacing: -0.5px;
  }
  .hero-desc {
    font-size: 0.9rem;
  }
  .hero-btns {
    flex-direction: column;
    gap: 0.7rem;
  }
  .btn-hero-p,
  .btn-hero-s {
    justify-content: center;
    width: 100%;
    padding: 0.85rem 1.5rem;
  }
  .hero-checks {
    gap: 0.4rem 0.8rem;
  }
  .hchk {
    font-size: 0.8rem;
  }
  .proof-div {
    display: none;
  }
  .hero-card-wrap {
    max-width: 100%;
  }
  .htgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .htgitem {
    padding: 0.8rem 0.5rem;
  }
  .htgitem i {
    font-size: 1.2rem;
  }
  .hero-main-card {
    padding: 1.2rem;
  }

  /* Brand strip */
  .brand-strip {
    padding: 0.9rem 0;
  }

  /* Section headings */
  h2.stitle {
    font-size: 1.7rem;
  }
  .sdesc {
    font-size: 0.88rem;
  }

  /* Services */
  .svc {
    padding: 1.5rem 1.2rem;
  }
  .svc h3 {
    font-size: 0.97rem;
  }
  .svc p {
    font-size: 0.83rem;
  }

  /* About */
  .about-img-grid {
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    padding: 1rem;
    margin-bottom: 2.5rem;
  }
  .amic {
    padding: 0.9rem 0.6rem;
  }
  .amic i {
    font-size: 1.4rem;
  }
  .amic span {
    font-size: 0.62rem;
  }
  .exp-badge {
    right: 0;
    bottom: -42px;
    padding: 0.7rem 1rem;
  }
  .exp-badge .en {
    font-size: 1.5rem;
  }
  .exp-badge .el {
    font-size: 0.62rem;
  }
  .shape-ring {
    display: none;
  }

  /* Why Us */
  .wyc {
    padding: 1.3rem 1rem;
  }
  .wyc h4 {
    font-size: 0.88rem;
  }
  .wyc p {
    font-size: 0.78rem;
  }
  .wy-ic {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    margin-bottom: 0.8rem;
  }
  .wy-ic i {
    font-size: 1.25rem;
  }

  /* CTA */
  .ctab {
    padding: 55px 0;
  }
  .ctab h2 {
    font-size: 1.6rem;
  }
  .ctab p {
    font-size: 0.88rem;
  }
  .cta-btns {
    flex-direction: column;
    gap: 0.7rem;
  }
  .btn-cw,
  .btn-co {
    justify-content: center;
    width: 100%;
  }
  .cta-phone {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 0.7rem 1rem;
    flex-wrap: wrap;
    gap: 0.4rem;
    text-align: center;
  }
  .cta-ring {
    width: 200px;
    height: 200px;
  }
  .cta-inner {
    width: 145px;
    height: 145px;
  }
  .cta-inner i {
    font-size: 2rem;
  }

  /* Contact */
  .ccard {
    padding: 1.5rem 1.2rem;
  }
  .cirow {
    gap: 0.7rem;
    padding: 0.85rem 0;
  }
  .ciico {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
  }
  .cival {
    font-size: 0.85rem;
  }
  .cilbl {
    font-size: 0.67rem;
  }
  .form-control,
  .form-select {
    font-size: 0.85rem !important;
    padding: 0.65rem 0.85rem !important;
  }
  .btn-sub {
    font-size: 0.88rem;
    padding: 0.8rem;
  }

  /* Footer */
  .footer-bottom {
    padding: 1rem 0;
    font-size: 0.75rem;
    text-align: center;
  }
  .footer-bottom .container {
    flex-direction: column !important;
    gap: 0.4rem !important;
  }

  /* FIX: WhatsApp button on mobile — hide ripple rings that
           expand beyond viewport right edge and cause white space */
  .wafloat {
    bottom: 18px;
    right: 18px;
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }
  .wafloat::before,
  .wafloat::after {
    display: none;
  }
}

/* ══════════════════════════════════════
         RESPONSIVE — SMALL MOBILE (max 480px)
      ══════════════════════════════════════ */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }
  .eyebrow-tag {
    font-size: 0.66rem;
    padding: 0.3rem 0.75rem;
  }
  h2.stitle {
    font-size: 1.5rem;
  }
  .wyc {
    padding: 1.1rem 0.8rem;
  }
  .wyc h4 {
    font-size: 0.82rem;
  }
  .wyc p {
    font-size: 0.74rem;
    line-height: 1.55;
  }
  .wy-ic {
    width: 46px;
    height: 46px;
  }
  .wy-ic i {
    font-size: 1.1rem;
  }
  .htgrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .htgitem span {
    font-size: 0.55rem;
  }
  .svc {
    padding: 1.2rem 1rem;
  }
  .ccard {
    padding: 1.2rem 1rem;
  }
  .ctab h2 {
    font-size: 1.4rem;
  }
  .btn-hero-p,
  .btn-hero-s {
    font-size: 0.86rem;
    padding: 0.75rem 1.2rem;
  }
}
/* carousel */
.testimonial-card {
  background: linear-gradient(145deg, #f3f4f6, #ffffff);
  border-radius: 20px;
  box-shadow:
    8px 8px 16px #d1d9e6,
    -8px -8px 16px #ffffff;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.quote-icon {
  font-size: 4rem;
  color: #6366f1;
  opacity: 0.2;
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: #6366f1;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -20px;
}

.carousel-control-next {
  right: -20px;
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #6366f1;
  opacity: 0.5;
}

.carousel-indicators .active {
  opacity: 1;
}
