/* ══════════════════════════════
   TOKENS
══════════════════════════════ */
:root {
  --red: #bf1b2c;
  --red2: #961525;
  --blue: #0b2454;
  --blue2: #0d3070;
  --gold: #c8a84b;
  --white: #ffffff;
  --offwhite: #f7f5f2;
  --gray1: #f0eee9;
  --gray3: #8a8a8a;
  --dark: #0a0a0a;
  --text: #1e1e1e;
  --nav-h: 80px;
}
/* ══════════════════════════════
   BASE
══════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: "Outfit", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  cursor: none;
}
::selection {
  background: var(--red);
  color: #fff;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--offwhite);
}
::-webkit-scrollbar-thumb {
  background: var(--blue);
  border-radius: 3px;
}
img {
  max-width: 100%;
  display: block;
}
/* ══════════════════════════════
   CURSOR
══════════════════════════════ */
#c-dot {
  position: fixed;
  width: 7px;
  height: 7px;
  background: var(--red);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}
#c-ring {
  position: fixed;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(191, 27, 44, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, border-color .15s;
}
#c-ring.big {
  width: 54px;
  height: 54px;
  border-color: var(--red);
}
/* ══════════════════════════════
   TOP BAR
══════════════════════════════ */
#topbar {
  background: var(--blue);
  padding: 7px 0;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}
#topbar a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s;
}
#topbar a:hover {
  color: #fff;
}
#topbar .sep {
  margin: 0 10px;
  opacity: 0.3;
}
/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
#mainNav {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1040;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition:
    box-shadow 0.3s,
    padding 0.3s;
  padding: 0;
}
#mainNav.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.12);
}
.nav-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
}
/* =========================
   LOGO
========================= */
.logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  padding: 5px 0;
}

/* Logo container */
.logo-icon {
  width: 180px; 
  height: 65px;   
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

/* Logo image */
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain; 
  display: block;
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .logo-icon {
    width: 140px;
    height: 65px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .logo-icon {
    width: 120px;
    height: 55px;
  }
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 4px;
  transition:
    color 0.2s,
    background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--red);
  background: rgba(191, 27, 44, 0.06);
}
/* CTA in nav */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-phone-pill {
  display: flex;
  align-items: center;
  gap: 7px;
  background:var(--red);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 50px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition:
    background 0.25s,
    transform 0.2s;
  white-space: nowrap;
}
.nav-phone-pill:hover {
  background: var(--red);
  color: #fff;
  transform: scale(1.03);
}
.nav-phone-pill i {
  font-size: 0.9rem;
}
/* Mobile toggler */
.tog {
  display: none;
  background: none;
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  width: 42px;
  height: 42px;
  border-radius: 6px;
  cursor: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.tog span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}
.tog.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.tog.open span:nth-child(2) {
  opacity: 0;
}
.tog.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 20px 16px;
}
.mobile-menu.open {
  display: block;
}
.mobile-menu a {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 6px;
  transition:
    background 0.2s,
    color 0.2s;
}
.mobile-menu a:hover {
  background: rgba(191, 27, 44, 0.07);
  color: var(--red);
}
.mobile-menu .mob-phones {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.mob-cta-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff !important;
  padding: 12px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  transition: background 0.2s;
}
.mob-cta-quote:hover {
  background: var(--blue2);
}
.mob-cta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff !important;
  padding: 12px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.82rem;
  text-align: center;
  transition: background 0.2s;
}
.mob-cta-call:hover {
  background: var(--red2);
}

/* ══════════════════════════════
   SECTION HELPER
══════════════════════════════ */
.s-eye {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  display: block;
  margin-bottom: 8px;
}
.s-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.1;
}
.s-title span {
  color: var(--red);
}
.s-rule {
  width: 44px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 14px 0 0;
}
.s-rule.cx {
  margin: 14px auto 0;
}
.s-sub {
  font-size: 1rem;
  color: rgb(22, 22, 22);
  line-height: 1.75;
  font-weight: 300;
  margin-top: 18px;
  max-width: 560px;
}
.section-pad {
  padding: 100px 0;
}
.section-pad-sm {
  padding: 72px 0;
}
/* Divider */
.wave-div {
  line-height: 0;
  overflow: hidden;
}
.wave-div svg {
  display: block;
  width: 100%;
}
/* ══════════════════════════════
   HERO
══════════════════════════════ */
#home {
  min-height: 80vh;
  background:
    linear-gradient(
      135deg,
      rgba(11, 36, 84, 0.92) 0%,
      rgba(11, 36, 84, 0.7) 55%,
      rgba(191, 27, 44, 0.6) 100%
    ),
    url("https://images.unsplash.com/photo-1572120360610-d971b9d7767c?w=1800&q=85")
      center/cover no-repeat;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.hero-body {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0 160px;
}
/* Floating diagonal accent */
.hero-diag {
  position: absolute;
  right: -80px;
  top: 0;
  bottom: 0;
  width: 42%;
  background: rgba(255, 255, 255, 0.03);
  transform: skewX(-8deg);
  pointer-events: none;
  overflow: hidden;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
}
.hero-tag i {
  color: var(--gold);
}
.hero-h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 22px;
}
.hero-h1 .accent {
  color: var(--gold);
  font-style: italic;
}
.hero-p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  line-height: 1.8;
  max-width: 500px;
  margin-bottom: 36px;
}
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 15px 34px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 8px 32px rgba(191, 27, 44, 0.4);
}
.btn-red:hover {
  background: var(--red2);
  color: #fff;
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 16px 44px rgba(191, 27, 44, 0.5);
}
.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    border-color 0.25s,
    background 0.25s,
    transform 0.25s;
}
.btn-outline-w:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: scale(1.04);
}
/* Hero stats bar */
.hero-stats {
  background: rgba(11,36,84,0.9);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
}
.hs-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hs-icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.hs-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}
.hs-sub {
  font-size: 0.68rem;
  color: rgb(214, 214, 214);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hs-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}
@media (max-width: 767px) {
  .hs-item { width: 45%; }
}
@media (max-width: 400px) {
  .hs-item { width: 100%; }
}
/* ══════════════════════════════
   SERVICES
══════════════════════════════ */
#services {
  background: var(--offwhite);
  padding: 100px 0;
}

/* ── New Image Cards ── */
.svc2-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.svc2-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 56px rgba(11,36,84,0.12);
}
.svc2-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}
.svc2-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}
.svc2-card:hover .svc2-img img {
  transform: scale(1.06);
}
.svc2-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,36,84,0.55) 100%);
}
.svc2-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 4px 14px rgba(191,27,44,0.4);
}
.svc2-body {
  padding: 24px 26px 28px;
}
.svc2-body h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.svc2-body p {
  font-size: 0.86rem;
  color: var(--gray3);
  line-height: 1.75;
  margin-bottom: 16px;
}
.learn-a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.learn-a:hover {
  gap: 11px;
  color: var(--red2);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  #services { padding: 72px 0; }
}
@media (max-width: 575px) {
  .svc2-img { height: 180px; }
  .svc2-body { padding: 18px 18px 22px; }
  .svc2-body h4 { font-size: 1rem; }
}
/* ══════════════════════════════
   WHY US
══════════════════════════════ */
#why {
  background: var(--white);
  padding: 100px 0;
}
.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: 10px;
  transition:
    background 0.3s,
    transform 0.3s;
}
.why-card:hover {
  background: var(--offwhite);
  transform: translateX(4px);
}
.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.why-card:hover .why-icon-wrap {
  background: var(--red);
}
.why-icon-wrap i {
  font-size: 1.3rem;
  color: #fff;
}
.why-card h5 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 6px;
}
.why-card p {
  font-size: 0.86rem;
  color: var(--gray3);
  line-height: 1.7;
}

/* ══════════════════════════════
   GALLERY
══════════════════════════════ */
#gallery {
  background: var(--blue);
  padding: 100px 0;
}
/* ══ GALLERY ══ */
#gallery {
  background: var(--blue);
  padding: 100px 0;
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 220px 220px;
  gap: 10px;
}

.gal-item:nth-child(1) {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

@media (max-width: 900px) {
  .gal-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 180px);
  }
  .gal-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
  }
}

@media (max-width: 600px) {
  .gal-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 160px;
  }
  .gal-item:nth-child(1) {
    grid-column: 1 / 3;
    grid-row: auto;
  }
}

@media (max-width: 400px) {
  .gal-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gal-item:nth-child(1) {
    grid-column: 1;
  }
}

.gal-item {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #0b2454;
}

.gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  will-change: transform;
}

.gal-item:hover img {
  transform: scale(1.05);
}

.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11,36,84,0.85) 100%);
  opacity: 0;
  transition: opacity 0.25s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gal-item:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay span {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══ LIGHTBOX ══ */
.gal-lb {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.96);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.gal-lb.open {
  display: flex;
}

.gal-lb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: min(90vw, 960px);
  padding: 0 60px;
}

.gal-lb-inner img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}

.gal-lb-caption {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 14px;
  text-align: center;
}

.gal-lb-counter {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

.gal-lb-dots {
  display: flex;
  gap: 7px;
  margin-top: 12px;
}

.gal-lb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.gal-lb-dot.active {
  background: var(--gold);
}

.gal-lb-close {
  position: fixed;
  top: 16px;
  right: 20px;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 100000;
}

.gal-lb-close:hover { opacity: 1; }

.gal-lb-prev,
.gal-lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 100000;
}

.gal-lb-prev { left: 14px; }
.gal-lb-next { right: 14px; }

.gal-lb-prev:hover,
.gal-lb-next:hover {
  background: rgba(201,168,76,0.3);
}
/* ══════════════════════════════
   OWNER
══════════════════════════════ */
/* ══════════════════════════════
   OWNER
══════════════════════════════ */
#about {
  background: var(--offwhite);
  padding: 100px 0;
}
.owner-name {
  font-size: clamp(2rem, 4vw, 3rem);
}
.owner-role {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}
.owner-bio {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.85;
  margin-bottom: 16px;
}
.owner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.owner-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 16px 16px 16px 16px;
}
.owner-img-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.18);
  display: block;
}
.owner-img-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  background: var(--blue);
  border-radius: 12px;
  z-index: 1;
}
.owner-img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 38%;
  background: var(--red);
  border-radius: 12px;
  z-index: 0;
  opacity: 0.22;
}
.owner-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.o-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--blue);
}
.o-badge i {
  color: var(--red);
}
.lic-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.8rem;
  padding: 9px 18px;
  border-radius: 6px;
  letter-spacing: 0.06em;
}

@media (max-width: 575px) {
  .owner-img-wrap {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
}

/* ══════════════════════════════
   TESTIMONIALS
══════════════════════════════ */
#testimonials {
  background: var(--white);
  padding: 100px 0;
}
.test-card {
  background: var(--offwhite);
  border-radius: 12px;
  padding: 36px 30px;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
}
.test-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(11, 36, 84, 0.1);
}

.stars {
  color: #ffb400; 
  margin-bottom: 10px;
  font-size: 18px;
}
.test-card p {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-av {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}
.test-name {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--blue);
}
.test-loc {
  font-size: 0.75rem;
  color: var(--gray3);
}
/* ══════════════════════════════
   FAQ
══════════════════════════════ */
#faq {
  background: var(--offwhite);
  padding: 100px 0;
}
.faq-item {
  background: var(--white);
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: "Outfit", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  cursor: none;
  text-align: left;
  transition: color 0.2s;
}
.faq-q:hover,
.faq-q[aria-expanded="true"] {
  color: var(--red);
}
.faq-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition:
    background 0.25s,
    transform 0.3s;
}
.faq-q[aria-expanded="true"] .faq-icon {
  background: var(--red);
  transform: rotate(45deg);
}
.faq-q[aria-expanded="true"] .faq-icon i {
  color: #fff;
}
.faq-icon i {
  font-size: 0.75rem;
  color: var(--gray3);
}
.faq-a {
  font-size: 0.88rem;
  color: var(--gray3);
  line-height: 1.8;
  padding: 0 24px 20px;
}

/* ── FAQ Side Cards ── */
.faq-side-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 16px 18px;
  margin-bottom: 12px;
}
.faq-side-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: #fff;
}
.faq-side-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray3);
  margin-bottom: 4px;
}
.faq-side-val {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--blue);
  text-decoration: none;
  line-height: 1.7;
  transition: color 0.2s;
}
a.faq-side-val:hover {
  color: var(--red);
}

/* ══════════════════════════════
   CTA STRIP
══════════════════════════════ */
#contact-cta {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
#contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 50px
  );
}
.cta-h {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.1;
}
.cta-p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  margin-bottom: 36px;
  font-weight: 300;
}
.btn-wh {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--red);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 5px;
  text-decoration: none;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}
.btn-wh:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.28);
  color: var(--red);
}

.btn-outline-b {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.btn-outline-b:hover {
  background: var(--blue);
  color: #fff;
  transform: scale(1.04);
}
/* ══════════════════════════════
   CONTACT / QUOTE FORM
══════════════════════════════ */
#contact {
  background: var(--blue);
  padding: 100px 0;
}
.quote-form-wrap {
  background: var(--white);
  border: none;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.2);
}
.qf-header {
  border-bottom: none;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.qf-icon {
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.4rem;
  color: #fff;
}
.qf-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #111111;
  margin: 0 0 4px;
}
.qf-sub {
  font-size: 0.78rem;
  color: rgb(0 0 0 / 50%);
  margin: 0;
}
.qf-body {
  padding: 32px;
  background: var(--white);
}
.qf-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.qf-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: black;
}
.qf-label i {
  color: var(--red);
  margin-right: 4px;
}
.qf-input {
  background: var(--offwhite);
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--text);
  font-family: "Outfit", sans-serif;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  outline: none;
}
.qf-input::placeholder {
  color: rgba(0,0,0,0.85);
}
.qf-input:focus {
  border-color: var(--red);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(191,27,44,0.08);
}
.qf-select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='rgba(0,0,0,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}
.qf-select option {
  background: #fff;
  color: var(--text);
}
.qf-textarea {
  resize: vertical;
  min-height: 110px;
}
.qf-submit {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 8px 28px rgba(191,27,44,0.3);
  animation: pulse-ring 2s ease-out infinite;
}
.qf-submit:hover {
  background: var(--red2);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(191,27,44,0.4);
  animation: none;
}
.qf-disclaimer {
  text-align: center;
  font-size: 0.72rem;
  color: black;
  margin: 12px 0 0;
}
.qf-disclaimer i {
  color: var(--gold);
  margin-right: 4px;
}

/* ── Responsive ── */
@media (max-width: 575px) {
  #contact {
    padding: 60px 0;
  }
  #contact .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .quote-form-wrap {
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  }
  .qf-header {
    padding: 20px 18px;
    gap: 12px;
  }
  .qf-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    border-radius: 8px;
  }
  .qf-title {
    font-size: 1.05rem;
  }
  .qf-sub {
    font-size: 0.7rem;
  }
  .qf-body {
    padding: 18px 16px 24px;
  }
  .qf-field {
    gap: 5px;
  }
  .qf-label {
    font-size: 0.68rem;
  }
  .qf-input {
    padding: 11px 13px;
    font-size: 0.88rem;
    border-radius: 7px;
  }
  .qf-submit {
    padding: 14px 20px;
    font-size: 0.92rem;
    border-radius: 7px;
  }
  .qf-disclaimer {
    font-size: 0.68rem;
  }
}


/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: #0b2352;
  padding: 64px 0 0;
}
/* =========================
   FOOTER LOGO
========================= */

.ft-footer-logo {
  display: inline-block;
  text-decoration: none;
}

.ft-footer-logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: 0.3s ease;
}

/* Hover Effect */
.ft-footer-logo:hover img {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 768px) {
  .ft-footer-logo img {
    max-width: 190px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 480px) {
  .ft-footer-logo img {
    max-width: 160px;
  }
}
.ft-logo em {
  color: var(--red);
  font-style: normal;
}
.ft-tag {
  font-size: 0.8rem;
  color: white;
  margin-top: 8px;
  line-height: 1.7;
  max-width: 80%;
}
.ft-h {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 18px;
}
.ft-link {
  display: block;
  font-size: 0.86rem;
  color: rgb(214, 214, 214);
  text-decoration: none;
  margin-bottom: 9px;
  transition:
    color 0.2s,
    padding-left 0.2s;
}
.ft-link:hover {
  color: #fff;
  padding-left: 5px;
}
.ft-ci {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: rgb(214, 214, 214);
  margin-bottom: 10px;
}
.ft-ci i {
  color: var(--red);
  margin-top: 2px;
  flex-shrink: 0;
}
.ft-ci a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
.ft-ci a:hover {
  color: #fff;
}
.soc {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 0.85rem;
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.2s;
}
.soc:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  transform: translateY(-3px);
}
.ft-lic {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 7px 14px;
  border-radius: 5px;
  letter-spacing: 0.06em;
  margin-top: 14px;
}
.ft-bottom {
  margin-top: 44px;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.74rem;
  color: rgb(214, 214, 214);
  text-align: center;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 991px) {
  .nav-links,
  .nav-cta {
    display: none !important;
  }
  .tog {
    display: flex;
  }
  .hero-body {
    padding: 60px 0 100px;
  }
  .owner-img-wrap {
    max-width: 380px;
    margin: 0 auto 60px;
  }
   #c-dot, #c-ring {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 72px 0;
  }
  .gal-item:nth-child(1) {
    grid-row: auto;
  }
  .hero-h1 {
    font-size: 2.8rem;
  }
}

@media (max-width: 575px) {
  #topbar .d-flex.gap-3 {
    display: none !important;
  }
}
/* ══════════════════════════════
   SCROLL REVEAL UTILITY
══════════════════════════════ */
[data-aos] {
  will-change: auto;
}

/* ══ AOS FIX ══ */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(30px);
  transition-property: opacity, transform;
}
[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-30px);
  transition-property: opacity, transform;
}
[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}
[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(30px);
  transition-property: opacity, transform;
}
[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}
[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.9);
  transition-property: opacity, transform;
}
[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* ══ NAVBAR MOBILE FIX ══ */
@media (max-width: 991px) {
  .nav-inner {
    gap: 8px !important;
    padding: 0 4px;
  }
  .tog {
    flex-shrink: 0;
    margin-left: auto;
  }
}

/* ══ PULSE BUTTON ══ */
@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(191,27,44,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(191,27,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(191,27,44,0); }
}
.pulse-btn {
  animation: pulse-ring 2s ease-out infinite;
  border-radius: 50px;
}
.pulse-btn:hover {
  animation: none;
}

/* ══ SCROLL TO TOP ══ */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 46px;
  height: 46px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;  /* ← add this */
  z-index: 9999;               /* ← higher z-index */
  opacity: 0;
  pointer-events: none;        /* ← add this */
  transform: translateY(16px);
  transition: opacity 0.3s, transform 0.3s, background 0.25s;
  box-shadow: 0 6px 24px rgba(11,36,84,0.3);
}
#scrollTop.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;        /* ← show hone pe click enable */
}
#scrollTop:hover {
  background: var(--red);
}

/* ══ STICKY CALL ══ */
.sticky-call {
  position: fixed;
  bottom: 32px;
  left: 24px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: #fff !important;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: 50px;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 6px 24px rgba(191,27,44,0.4);
  transition: transform 0.25s, box-shadow 0.25s;
}
.sticky-call:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(191,27,44,0.5);
  animation: none;
}
.sticky-call i {
  font-size: 1rem;
}

@media (max-width: 480px) {
  .sticky-call span {
    display: none;
  }
  .sticky-call {
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* ══ HOVER LIFT — universal cards ══ */
.svc2-card,
.test-card,
.faq-side-card {
  will-change: transform;
}

/* ══ GAL ITEM cursor fix ══ */
.gal-item {
  cursor: pointer;
}

/* ══ WHY CARD left border accent on hover ══ */
.why-card {
  border-left: 3px solid transparent;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}
.why-card:hover {
  border-left-color: var(--red);
}

/* ══ STATS BAR item hover ══ */
.hs-item {
  transition: transform 0.3s ease;
}
.hs-item:hover {
  transform: translateY(-3px);
}

/* ══ BADGE POP on about section ══ */
.o-badge {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.o-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(11,36,84,0.12);
}

/* ══ NAV LINK underline slide ══ */
.nav-links a {
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 13px;
  right: 13px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 2px;
}
.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ══ FOOTER LINK hover ══ */
.ft-link {
  transition: color 0.2s, padding-left 0.2s, transform 0.2s;
}

/* ══ SECTION TITLE underline reveal ══ */
.s-rule {
  transform-origin: left;
  transition: transform 0.6s ease 0.2s, opacity 0.6s ease 0.2s;
  transform: scaleX(0);
  opacity: 0;
}
.s-rule.in-view {
  transform: scaleX(1);
  opacity: 1;
}
.s-rule.cx {
  transform-origin: center;
}