/* ===== CSS VARIABLES ===== */
:root {
  --orange: #F47B20;
  --navy:   #1B2A4A;
  --white:  #ffffff;
  --light-bg: #f9f9f9;
  --font: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
}

/* ===========================
   TOP BAR
=========================== */
.top-bar {
  background: linear-gradient(90deg, var(--navy) 60%, var(--orange) 60%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 40px;
  flex-wrap: wrap;
  gap: 10px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
}

.top-icon {
  width: 38px;
  height: 38px;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* Last item sits on the orange half — flip icon bg to navy */
.top-item:last-child .top-icon {
  background-color: var(--navy);
}

.top-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.top-value {
  display: block;
  font-size: 13px;
  line-height: 1.4;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.follow-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.social-icons a:hover {
  background: var(--navy);
  color: var(--white);
}

/* ===========================
   MAIN NAVBAR
=========================== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6px 40px;   /* reduced vertical padding to give logo more visual space */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
  margin-top: -10px;
  margin-bottom: -10px;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-top {
  font-size: 22px;
  font-weight: 800;
  color: #0f1f5c;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.brand-bottom {
  font-size: 22px;
  font-weight: 800;
  color: #f47c20;
  letter-spacing: 1px;
  text-transform: uppercase;
}
/* 🔽 Mobile Responsive */
@media (max-width: 768px) {
  .logo {
    gap: 8px;
  }

  .logo img {
    height: 60px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .brand-top,
  .brand-bottom {
    font-size: 16px;
    letter-spacing: 0.5px;
  }
}

/* 🔽 Small Mobile */
@media (max-width: 480px) {
  .logo {
    gap: 6px;
  }

  .logo img {
    height: 50px;
  }

  .brand-top,
  .brand-bottom {
    font-size: 14px;
  }
}
/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link {
  text-decoration: none;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 4px;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-link.active,
.nav-link:hover {
  color: var(--orange);
}

/* CTA Button */
.btn-quote {
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.25s, transform 0.2s;
  flex-shrink: 0;
}

.btn-quote:hover {
  background: #d96a10;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy);
  border-radius: 3px;
  transition: background 0.2s;
}

.hamburger:hover span {
  background: var(--orange);
}

/* ===========================
   MOBILE DRAWER
=========================== */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1998;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-overlay.show {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 1999;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 32px;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.close-btn:hover {
  background: #d96a10;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.drawer-link {
  text-decoration: none;
  color: var(--navy);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.2s, padding-left 0.2s;
}

.drawer-link:hover,
.drawer-link.active {
  color: var(--orange);
  padding-left: 8px;
}

.drawer-contact {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.drawer-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
}

.d-icon {
  width: 36px;
  height: 36px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  flex-shrink: 0;
}

.drawer-social {
  margin-top: 22px;
  display: flex;
  gap: 10px;
}

.drawer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s;
}

.drawer-social a:hover {
  background: var(--navy);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .top-bar {
    padding: 8px 20px;
  }
  .nav-container {
    padding: 12px 20px;
  }
}

@media (max-width: 900px) {
  /* Hide top-bar contact items on smaller screens */
  .top-item:not(:first-child) {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Hide top bar entirely on mobile */
  .top-bar {
    display: none;
  }

  /* Hide desktop nav + CTA */
  .nav-links,
  .btn-quote {
    display: none;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 14px 16px;
  }
}

@media (max-width: 400px) {
  .logo img {
    height: 44px;
  }
}

/* ===========================
   HERO SLIDER — hero.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --teal   : #2D5059;
  --white  : #ffffff;
  --slide-h: 88vh;          /* desktop height */
  --slide-min: 500px;
  --trans  : 0.8s cubic-bezier(0.77, 0, 0.18, 1);
}

/* ── Wrapper ── */
.hero-slider {
  position: relative;
  width: 100%;
  height: var(--slide-h);
  min-height: var(--slide-min);
  overflow: hidden;
  background: var(--navy);
}

/* ── Slides container ── */
.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* ── Individual slide ── */
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity var(--trans), transform var(--trans);
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* ── Dark gradient overlay ── */
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(14, 26, 54, 0.82) 0%,
    rgba(14, 26, 54, 0.55) 55%,
    rgba(14, 26, 54, 0.20) 100%
  );
}

/* ── Content block ── */
.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 7vw;
  max-width: 760px;
}

/* Animate content IN when slide is active */
.slide.active .slide-content > * {
  animation: fadeUp 0.7s ease both;
}
.slide.active .hero-tag   { animation-delay: 0.15s; }
.slide.active .hero-title { animation-delay: 0.30s; }
.slide.active .hero-btns  { animation-delay: 0.50s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Tag line ── */
.hero-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 8px;
  width: fit-content;
}

/* ── Main heading ── */
.hero-title {
  color: var(--white);
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 36px;
}

.hero-title .highlight {
  color: var(--orange);
}

/* ── CTA Buttons ── */
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s, background 0.25s, color 0.25s;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
}

.btn-primary:hover {
  background: #d96a10;
  border-color: #d96a10;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
  border: 2px solid var(--teal);
}

.btn-secondary:hover {
  background: transparent;
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ── Arrows ── */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(27, 42, 74, 0.65);
  border: 2px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
  backdrop-filter: blur(4px);
}

.arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}

.arrow-prev { left: 18px; }
.arrow-next { right: 64px; }   /* clear of the FAB panel */

/* ── Dots ── */
.dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.35);
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
}

.dot.active {
  background: var(--orange);
  width: 48px;
}

/* ── Floating Action Buttons (WhatsApp / Call) ── */
.fab-group {
  position: fixed;          /* fixed so it stays on screen while scrolling */
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 9999;
}

.fab {
  width: 46px;
  height: 46px;
  border-radius: 8px 0 0 8px;   /* rounded on the left side only */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  text-decoration: none;
  box-shadow: -2px 2px 8px rgba(0,0,0,0.25);
  transition: width 0.2s, opacity 0.2s;
}

.fab:hover {
  width: 54px;
  opacity: 0.92;
}

.fab-whatsapp { background: #25D366; }
.fab-call     { background: #27ae60; }

/* ── Back-to-top pill ── */
.fab-top {
  position: absolute;
  bottom: 24px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  transition: background 0.25s, transform 0.2s;
}

.fab-top:hover {
  background: #d96a10;
  transform: scale(1.1);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  :root {
    --slide-h: 75vw;
    --slide-min: 380px;
  }

  .slide-content {
    padding: 0 20px;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(22px, 6.5vw, 36px);
    margin-bottom: 24px;
  }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 1.8px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 10px 18px;
    font-size: 13px;
  }

  .arrow {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .arrow-prev { left: 8px; }
  .arrow-next { right: 52px; } /* avoid overlap with FAB */

  .fab {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .fab-top {
    bottom: 16px;
    right: 10px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  :root {
    --slide-h: 85vw;
    --slide-min: 320px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .btn-primary,
  .btn-secondary {
    width: fit-content;
  }

  .dots {
    bottom: 14px;
  }
}
.features {
  padding: 50px 0;
}

.container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.card {
  position: relative;
  background: #f1f1f1;
  border-radius: 20px;
  padding: 30px 25px 50px;
  width: 320px;
  transition: 0.3s;
}

/* Hover effect */
.card:hover {
  transform: translateY(-5px);
}

/* Icon */
.icon {
  width: 70px;
  height: 70px;
  background: #ff8c00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.icon img {
  width: 35px;
}

/* Title */
.card h3 {
  color: #0b2c5f;
  margin-bottom: 10px;
}

/* Text */
.card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
}

/* Number */
.number {
  position: absolute;
  bottom: 10px;
  left: 20px;
  font-size: 40px;
  color: #cbd5e1;
  font-weight: bold;
}

/* Orange corner */
.card::after {
  content: "";
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 40px;
  height: 40px;
  border-right: 4px solid #ff8c00;
  border-bottom: 4px solid #ff8c00;
  border-radius: 0 0 15px 0;
}

/* ===========================
   FEATURES SECTION — features.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --white  : #ffffff;
  --light  : #f5f6fa;
  --gray   : #6b7280;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

/* ── Section wrapper ── */
.features-section {
  background: var(--light);
  padding: 60px 40px;
}

/* ── Grid container ── */
.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ── Card ── */
.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 28px 0 28px;
  box-shadow: var(--card-shadow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.11);
}

/* ── Top: icon + text ── */
.card-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

/* ── Orange icon circle ── */
.icon-circle {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--white);
  box-shadow: 0 4px 14px rgba(244, 123, 32, 0.35);
}

/* ── Title ── */
.card-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

/* ── Description ── */
.card-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin: 0;
}

/* ── Bottom: number + curl ── */
.card-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 10px;
}

/* ── Big ghost number ── */
.card-number {
  font-size: 52px;
  font-weight: 800;
  color: rgba(27, 42, 74, 0.10);
  line-height: 1;
  letter-spacing: -2px;
  user-select: none;
  padding-bottom: 10px;
}

/* ── Orange curl / wave shape ── */
.card-curl {
  width: 54px;
  height: 54px;
  border-radius: 50% 0 50% 0;
  background: var(--orange);
  opacity: 0.18;
  margin-right: -28px;   /* bleed to card edge */
  margin-bottom: -1px;
  position: relative;
}

/* Second inner circle to mimic the bracket/curl look */
.card-curl::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  border-radius: 50% 0 50% 0;
  background: var(--white);
  opacity: 1;
}

/* Solid visible curl on hover */
.feature-card:hover .card-curl {
  opacity: 0.85;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-section {
    padding: 40px 16px;
  }

  .features-container {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .card-title {
    font-size: 17px;
  }

  .icon-circle {
    width: 54px;
    height: 54px;
    min-width: 54px;
    font-size: 22px;
  }

  .card-number {
    font-size: 42px;
  }
}
/* ===========================
   ABOUT SECTION — about.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --white  : #ffffff;
  --light  : #f5f6fa;
  --gray   : #4b5563;
}

/* ── Section ── */
.about-section {
  background: var(--white);
  padding: 80px 40px;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ===========================
   LEFT — IMAGE BLOCK
=========================== */
.about-images {
  position: relative;
  min-height: 500px;
}

/* ── Main (background) image ── */
.img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 68%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

/* ── Secondary (foreground) image ── */
.img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 62%;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  border: 5px solid var(--white);
  z-index: 2;
}

.img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 14px;
}

/* ── Experience badge ── */
.exp-badge {
  position: absolute;
  top: 22%;
  right: 2%;
  z-index: 5;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  /* dashed border effect */
  outline: 3px dashed rgba(255, 255, 255, 0.65);
  outline-offset: 5px;
  box-shadow: 0 4px 20px rgba(244, 123, 32, 0.4);
  animation: spin-slow 12s linear infinite;
}

@keyframes spin-slow {
  from { outline-offset: 5px; }
  50%  { outline-offset: 9px; }
  to   { outline-offset: 5px; }
}

.exp-number {
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.exp-text {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  margin-top: 4px;
}

/* ===========================
   RIGHT — CONTENT BLOCK
=========================== */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ── Tag pill ── */
.about-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  width: fit-content;
}

.about-tag i {
  font-size: 15px;
}

/* ── Heading ── */
.about-heading {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0;
}

.about-heading .highlight {
  color: var(--orange);
}

/* ── Paragraphs ── */
.about-para {
  font-size: 15px;
  line-height: 1.8;
  color: black;
  margin: 0;
}

/* ── CTA Button ── */
.btn-discover {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 6px;
  width: fit-content;
  margin-top: 6px;
  transition: background 0.25s, transform 0.2s;
}

.btn-discover:hover {
  background: #d96a10;
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-images {
    min-height: 380px;
  }

  .exp-badge {
    width: 90px;
    height: 90px;
    top: 18%;
    right: 4%;
  }

  .exp-number { font-size: 22px; }
  .exp-text   { font-size: 10px; }
}

@media (max-width: 600px) {
  .about-section {
    padding: 50px 18px;
  }

  .about-images {
    min-height: 300px;
  }

  .img-main    { width: 65%; }
  .img-secondary { width: 65%; }

  .exp-badge {
    width: 80px;
    height: 80px;
    right: 0;
    top: 15%;
  }

  .exp-number { font-size: 20px; }

  .about-heading {
    font-size: 24px;
  }

  .about-para {
    font-size: 14px;
  }
}

/* ===========================
   SERVICES SECTION — services.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --white  : #ffffff;
  --gray   : #6b7280;
}

/* ── Section ── */
.services-section {
  background: var(--navy);
  /* subtle geometric pattern overlay */
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,255,255,0.03) 0%, transparent 50%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.015) 40px,
      rgba(255,255,255,0.015) 41px
    );
  padding: 80px 40px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   HEADER
=========================== */
.services-header {
  margin-bottom: 48px;
}

/* Tag pill */
.services-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.services-tag i { font-size: 15px; }

/* Heading */
.services-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.services-heading .highlight {
  color: var(--orange);
}

/* ===========================
   CARDS GRID
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

/* ── Individual Card ── */
.service-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* ── Image area ── */
.card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: visible;         /* allow icon to overflow bottom */
}

.card-img-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 16px 16px 0 0;
}

/* ── Orange icon circle (half-overlapping image bottom) ── */
.card-icon {
  position: absolute;
  bottom: -28px;
  right: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,123,32,0.45);
  z-index: 3;
  border: 3px solid var(--white);
}

/* ── Card body ── */
.card-body {
  padding: 48px 24px 28px 24px;   /* top padding leaves room for icon */
  flex: 1;
  position: relative;
}

.service-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 12px 0;
}

.service-desc {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray);
  margin: 0;
}

/* ── Ghost number ── */
.service-number {
  position: absolute;
  bottom: 12px;
  right: 18px;
  font-size: 52px;
  font-weight: 800;
  color: rgba(27, 42, 74, 0.08);
  line-height: 1;
  letter-spacing: -2px;
  user-select: none;
  pointer-events: none;
}

/* ── Orange bottom-right corner curl ── */
.card-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50% 0 0 0;     /* curved top-left corner */
  opacity: 0.85;
}

/* ===========================
   CTA BUTTON
=========================== */
.services-cta {
  display: flex;
  justify-content: center;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 8px;
  transition: background 0.25s, transform 0.2s;
}

.btn-more:hover {
  background: #d96a10;
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-section {
    padding: 50px 18px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .services-heading {
    font-size: 26px;
  }

  .card-img-wrap,
  .card-img-wrap img {
    height: 200px;
  }

  .service-number {
    font-size: 40px;
  }
}

/* ===========================
   WORKING PROCESS — process.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --white  : #ffffff;
  --light  : #f5f6fa;
  --gray   : #6b7280;
}

/* ── Section ── */
.process-section {
  background: var(--white);
  padding: 80px 40px;
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   HEADER — centered
=========================== */
.process-header {
  text-align: center;
  margin-bottom: 56px;
}

/* Tag pill */
.process-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.process-tag i { font-size: 15px; }

/* Heading */
.process-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 18px 0;
}

.process-heading .highlight {
  color: var(--orange);
}

/* Decorative underline — short dash + long dash */
.heading-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.line-short {
  display: inline-block;
  width: 14px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.line-long {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ===========================
   STEPS GRID — 4 columns
=========================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Card ── */
.process-card {
  background: var(--light);
  border-radius: 16px;
  padding: 28px 24px 32px 24px;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.09);
  background: var(--white);
}

/* ── Top row: number + icon ── */
.card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* Ghost step number */
.step-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.55;
  line-height: 1;
  letter-spacing: -1px;
  font-style: italic;
}

/* Orange icon circle */
.step-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  box-shadow: 0 4px 16px rgba(244,123,32,0.35);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.process-card:hover .step-icon {
  transform: rotate(8deg) scale(1.06);
}

/* ── Title ── */
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px 0;
}

/* ── Description ── */
.step-desc {
  font-size: 16px;
  line-height: 1.75;
  color: black;
  margin: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .process-section {
    padding: 50px 18px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .process-heading {
    font-size: 26px;
  }

  .step-number {
    font-size: 28px;
  }

  .step-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }
}
/* ===========================
   PORTFOLIO SECTION — portfolio.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --white  : #ffffff;
}

/* ── Section wrapper ── */
.portfolio-section {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
}

/* ── Background image + overlay ── */
.portfolio-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.portfolio-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 54, 0.78);
}

/* ── Container ── */
.portfolio-container {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===========================
   HEADER — centered
=========================== */
.portfolio-header {
  text-align: center;
  margin-bottom: 48px;
}

.portfolio-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.portfolio-tag i { font-size: 15px; }

.portfolio-heading {
  font-size: clamp(28px, 3.8vw, 50px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.portfolio-heading .highlight {
  color: var(--orange);
}

/* ===========================
   SLIDER
=========================== */
.portfolio-slider-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Clipping window */
.portfolio-track-outer {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

/* Scrolling track */
.portfolio-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* ── Each slide ── */
.port-slide {
  flex: 0 0 calc((100% - 40px) / 3);   /* show 3 cards */
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.port-slide:hover {
  transform: scale(1.02);
}

.port-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s;
}

.port-slide:hover img {
  transform: scale(1.05);
}

/* ── Arrows ── */
.port-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(244,123,32,0.4);
  transition: background 0.25s, transform 0.2s;
  z-index: 5;
}

.port-arrow:hover {
  background: #d96a10;
  transform: scale(1.08);
}

/* ── Dots ── */
.port-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.port-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s, width 0.3s;
  padding: 0;
}

.port-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* ===========================
   RESPONSIVE
=========================== */

/* Tablet — show 2 slides */
@media (max-width: 900px) {
  .port-slide {
    flex: 0 0 calc((100% - 20px) / 2);
  }
}

/* Mobile — show 1 slide */
@media (max-width: 580px) {
  .portfolio-section {
    padding: 50px 0 60px;
  }

  .portfolio-container {
    padding: 0 12px;
  }

  .port-slide {
    flex: 0 0 100%;
  }

  .port-arrow {
    width: 38px;
    height: 38px;
    font-size: 13px;
  }

  .portfolio-heading {
    font-size: 26px;
  }

  .portfolio-track {
    gap: 12px;
  }
}

/* ===========================
   PRICING SECTION — pricing.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --white  : #ffffff;
  --light  : #f5f6fa;
  --gray   : #6b7280;
  --border : #e5e7eb;
}

/* ── Section ── */
.pricing-section {
  background: var(--white);
  padding: 80px 40px;
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
}

/* ===========================
   HEADER
=========================== */
.pricing-header {
  text-align: center;
  margin-bottom: 52px;
}

.pricing-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.pricing-heading {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 16px;
}

.pricing-heading .highlight { color: var(--orange); }

.heading-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.line-short {
  display: inline-block;
  width: 14px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.line-long {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ===========================
   GRID — 4 columns
=========================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  align-items: start;
}

/* ===========================
   CARD
=========================== */
.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 0 0 0 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}

.price-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,0.09);
  transform: translateY(-4px);
}

/* Featured card — orange border */
.price-card.featured {
  border: 2px solid var(--orange);
}

/* ── Card label (pill at top) ── */
.card-label {
  background: var(--orange);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding: 12px 20px;
  border-radius: 30px;
  margin: 20px 20px 0;
}

/* ── Price ── */
.card-price {
  font-size: 38px;
  font-weight: 800;
  color: var(--navy);
  padding: 16px 24px 14px;
  line-height: 1;
}

.card-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
}

/* ===========================
   ACCORDION
=========================== */
.accordion-list {
  flex: 1;
  padding: 0 20px;
}

.acc-item {
  border-bottom: 1px solid var(--border);
}

.acc-item:last-child {
  border-bottom: none;
}

.acc-head {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  gap: 10px;
  transition: color 0.2s;
}

.acc-head:hover { color: var(--orange); }

.acc-head i {
  font-size: 14px;
  color: var(--navy);
  transition: transform 0.3s, color 0.2s;
  flex-shrink: 0;
}

/* Minus icon when open */
.acc-item.open .acc-head i {
  transform: rotate(45deg);
  color: var(--orange);
}

.acc-item.open .acc-head {
  color: var(--orange);
}

/* Accordion body */
.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
}

.acc-item.open .acc-body {
  max-height: 500px;
}

.acc-body ul {
  list-style: none;
  padding: 4px 0 14px 0;
  margin: 0;
  background: var(--light);
  border-radius: 8px;
  padding: 10px 14px 12px;
}

.acc-body ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 6px;
}

.acc-body ul li:last-child { margin-bottom: 0; }

.acc-body ul li i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 13px;
}

/* ===========================
   PURCHASE BUTTON
=========================== */
.btn-purchase {
  margin: 20px 20px 24px;
  padding: 13px 20px;
  border: none;
  border-radius: 30px;
  background: var(--navy);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  letter-spacing: 0.3px;
}

.btn-purchase:hover {
  background: #0f1e38;
  transform: translateY(-1px);
}

.featured-btn {
  background: var(--orange) !important;
}

.featured-btn:hover {
  background: #d96a10 !important;
}

/* ===========================
   MODAL
=========================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.52);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 36px 30px;
  width: 100%;
  max-width: 680px;
  position: relative;
  transform: translateY(30px);
  transition: transform 0.3s;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.show .modal-box {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.modal-close:hover { background: #d96a10; }

.modal-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
}

.modal-plan {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  margin: 0 0 24px;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  background: var(--white);
  transition: border-color 0.2s;
}

.form-field:focus-within {
  border-color: var(--orange);
}

.form-field i {
  color: var(--orange);
  font-size: 16px;
  flex-shrink: 0;
}

.form-field input,
.form-field textarea {
  border: none;
  outline: none;
  width: 100%;
  font-size: 14px;
  color: var(--navy);
  background: transparent;
  resize: none;
  font-family: inherit;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9ca3af;
}

.form-field.full { align-items: flex-start; }
.form-field.full i { margin-top: 3px; }

.btn-quote-submit {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  width: fit-content;
  transition: background 0.25s, transform 0.2s;
}

.btn-quote-submit:hover {
  background: #d96a10;
  transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1100px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .pricing-section {
    padding: 50px 16px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .modal-box {
    padding: 28px 20px 24px;
  }
}
/* ===========================
   STATS SECTION — stats.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --white  : #ffffff;
}

/* ── Section ── */
.stats-section {
  background: var(--navy);
  /* subtle diagonal line overlay like screenshot */
  background-image:
    repeating-linear-gradient(
      120deg,
      transparent,
      transparent 60px,
      rgba(255,255,255,0.025) 60px,
      rgba(255,255,255,0.025) 61px
    ),
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
  padding: 48px 40px;
}

/* ── Container ── */
.stats-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

/* ── Divider line between items ── */
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Stat item ── */
.stat-item {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
  min-width: 180px;
}

/* ── Icon circle ── */
.stat-icon {
  width: 72px;
  height: 72px;
  min-width: 72px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--orange);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform 0.3s;
}

.stat-item:hover .stat-icon {
  transform: scale(1.08) rotate(5deg);
}

/* ── Number ── */
.stat-number {
  display: flex;
  align-items: baseline;
  gap: 1px;
  line-height: 1;
}

.count {
  font-size: 42px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.plus {
  font-size: 28px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

/* ── Label ── */
.stat-label {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin: 6px 0 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .stat-divider { display: none; }

  .stats-container {
    justify-content: center;
    gap: 32px;
  }

  .stat-item {
    min-width: 160px;
    flex: 0 0 calc(50% - 32px);
  }
}

@media (max-width: 500px) {
  .stats-section { padding: 40px 20px; }

  .stat-item {
    flex: 0 0 100%;
    justify-content: center;
  }

  .count { font-size: 36px; }
  .plus  { font-size: 24px; }

  .stat-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 24px;
  }
}

/* ===========================
   WHY CHOOSE US — whychoose.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --white  : #ffffff;
  --light  : #f5f6fa;
  --gray   : #6b7280;
}

/* ── Section ── */
.why-section {
  background: var(--white);
  padding: 80px 40px;
  overflow: hidden;
}

.why-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* ===========================
   LEFT — CONTENT
=========================== */

/* Tag pill */
.why-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}

.why-tag i { font-size: 15px; }

/* Heading */
.why-heading {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 20px;
}

.why-heading .highlight { color: var(--orange); }

/* Paragraph */
.why-para {
  font-size: 17px;
  line-height: 1.8;
  color: black;
  margin: 0 0 36px;
}

/* ── Feature items ── */
.why-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

/* Dashed orange circle icon */
.feat-icon {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--white);
  /* dashed ring */
  outline: 2.5px dashed var(--orange);
  outline-offset: 6px;
  box-shadow: 0 4px 16px rgba(244,123,32,0.25);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.why-feature:hover .feat-icon {
  transform: scale(1.08) rotate(8deg);
}

.feat-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}

.feat-text p {
  font-size: 16px;
  line-height: 1.7;
  color: black;
  margin: 0;
}

/* ===========================
   RIGHT — IMAGES
=========================== */
.why-images {
  position: relative;
  min-height: 500px;
}

/* Orange rounded-rectangle frame behind building image */
.img-frame {
  position: absolute;
  top: 0;
  right: 0;
  width: 88%;
  height: 92%;
  border: 3px solid var(--orange);
  border-radius: 24px;
  /* offset so image sits inside but frame peeks */
  padding: 0;
}

.img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 22px;
  background: var(--light);
  z-index: 0;
}

/* Building image inside the frame */
.img-building {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: calc(100% - 32px);
  height: calc(100% - 32px);
  object-fit: cover;
  border-radius: 16px;
  display: block;
  z-index: 1;
}

/* Circular client photo — overlapping bottom-left */
.img-circle {
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  z-index: 10;
}

.img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 960px) {
  .why-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-images {
    min-height: 380px;
  }

  .img-circle {
    width: 180px;
    height: 180px;
    left: 0;
  }
}

@media (max-width: 580px) {
  .why-section {
    padding: 50px 18px;
  }

  .why-heading {
    font-size: 24px;
  }

  .why-images {
    min-height: 300px;
  }

  .img-frame {
    width: 85%;
    height: 90%;
  }

  .img-circle {
    width: 140px;
    height: 140px;
  }

  .feat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    font-size: 20px;
  }
}


/* ===========================
   OUR TEAM — team.css
=========================== */

:root {
  --orange : #F47B20;
  --navy   : #1B2A4A;
  --white  : #ffffff;
  --light  : #f5f6fa;
  --gray   : #6b7280;
}

/* ── Section ── */
.team-section {
  background: var(--white);
  padding: 80px 40px;
}

.team-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ===========================
   HEADER — centered
=========================== */
.team-header {
  text-align: center;
  margin-bottom: 56px;
}

.team-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.team-tag i { font-size: 15px; }

.team-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 16px;
  line-height: 1.15;
}

.team-heading .highlight { color: var(--orange); }

/* Underline: long dash + short dash (reversed from others) */
.heading-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.line-long {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

.line-short {
  display: inline-block;
  width: 14px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* ===========================
   TEAM GRID — 4 columns
=========================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ===========================
   TEAM CARD
=========================== */
.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-5px);
}

/* ── Image wrapper ── */
.card-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--light);
  box-shadow: 0 6px 24px rgba(0,0,0,0.1);
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.4s;
}

.team-card:hover .card-img-wrap img {
  transform: scale(1.04);
}

/* ── Share button (bottom-right corner) ── */
.share-btn {
  position: absolute;
  bottom: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 4px 12px rgba(244,123,32,0.4);
  transition: background 0.2s, transform 0.2s;
}

.share-btn:hover {
  background: #d96a10;
  transform: scale(1.1);
}

/* ── Social popup (hidden by default, shown when share-btn clicked) ── */
.social-popup {
  position: absolute;
  bottom: 14px;
  right: 64px;
  display: flex;
  gap: 8px;
  z-index: 6;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: opacity 0.25s, transform 0.25s;
}

.social-popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.social-popup a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-popup a:hover {
  background: var(--orange);
  transform: scale(1.1);
}

/* ── Name & Role ── */
.card-info {
  margin-top: 16px;
}

.member-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 5px;
}

.member-role {
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  margin: 0;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 520px) {
  .team-section {
    padding: 50px 16px;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .member-name {
    font-size: 15px;
  }

  .team-heading {
    font-size: 26px;
  }
}

@media (max-width: 360px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

  /* =====================================================
       REQUEST A QUOTE SECTION
    ===================================================== */
    .quote-section {
      display: flex;
      min-height: 580px;
      border-top: 3px solid #F47B20;
      border-bottom: 3px solid #F47B20;
      overflow: hidden;
      position: relative;
    }
 
    /* ── LEFT: Image ── */
    .quote-img-side {
      flex: 1;
      min-height: 400px;
      overflow: hidden;
    }
 
    .quote-img-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
 
    /* ── RIGHT: Form ── */
    .quote-form-side {
      flex: 0 0 52%;
      background: #ffffff;
      display: flex;
      align-items: center;
      padding: 60px 56px;
      border-left: 3px solid #F47B20;
    }
 
    .quote-form-wrap {
      width: 100%;
      max-width: 680px;
    }
 
    .quote-title {
      font-size: clamp(24px, 2.8vw, 34px);
      font-weight: 800;
      color: #1B2A4A;
      margin: 0 0 12px;
      line-height: 1.2;
    }
 
    .quote-desc {
      font-size: 15px;
      line-height: 1.75;
      color: #6b7280;
      margin: 0 0 30px;
    }
 
    /* ── Form layout ── */
    .q-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
 
    .q-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
 
    /* ── Field ── */
    .q-field {
      display: flex;
      align-items: center;
      gap: 12px;
      border: 1.5px solid #e5e7eb;
      border-radius: 10px;
      padding: 13px 16px;
      background: #ffffff;
      transition: border-color 0.25s, box-shadow 0.25s;
    }
 
    .q-field:focus-within {
      border-color: #F47B20;
      box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.12);
    }
 
    .q-field i {
      color: #F47B20;
      font-size: 16px;
      flex-shrink: 0;
    }
 
    .q-field input,
    .q-field textarea {
      border: none;
      outline: none;
      width: 100%;
      font-size: 14px;
      color: #1B2A4A;
      background: transparent;
      resize: none;
      font-family: inherit;
      line-height: 1.6;
    }
 
    .q-field input::placeholder,
    .q-field textarea::placeholder {
      color: #9ca3af;
    }
 
    .q-field.full { align-items: flex-start; }
    .q-field.full i { margin-top: 3px; }
 
    /* ── Submit Button ── */
    .btn-request {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #F47B20;
      color: #ffffff;
      border: none;
      border-radius: 30px;
      padding: 14px 32px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      width: fit-content;
      margin-top: 4px;
      font-family: inherit;
      transition: background 0.25s, transform 0.2s;
    }
 
    .btn-request:hover {
      background: #d96a10;
      transform: translateY(-2px);
    }
 
    .btn-request i {
      font-size: 16px;
      color: #ffffff;
    }
 
    .btn-request.success {
      background: #27ae60;
    }
 
    /* ===========================
   FAQ SECTION — faq.css
=========================== */

.faq-section {
  background: #ffffff;
  padding: 80px 40px;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}

/* ===========================
   LEFT — Content
=========================== */

/* Tag */
.faq-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F47B20;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-tag i { font-size: 15px; }

/* Heading */
.faq-heading {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  color: #1B2A4A;
  line-height: 1.2;
  margin: 0 0 22px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-heading .highlight { color: #F47B20; }

/* Paragraphs */
.faq-para {
  font-size: 17px;
  line-height: 1.8;
  color: black;
  margin: 0 0 16px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Button */
.btn-question {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F47B20;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: 6px;
  text-decoration: none;
  margin-top: 10px;
  transition: background 0.25s, transform 0.2s;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.btn-question:hover {
  background: #d96a10;
  transform: translateY(-2px);
}

/* ===========================
   RIGHT — Accordion
=========================== */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── FAQ Item ── */
.faq-item {
  border-bottom: 1.5px solid #e5e7eb;
}

.faq-item:first-child {
  border-top: 1.5px solid #e5e7eb;
}

/* ── Question button ── */
.faq-head {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  cursor: pointer;
  text-align: left;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Orange circle with ? */
.faq-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: #F47B20;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
  transition: background 0.2s;
}

/* Question text */
.faq-q {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #1B2A4A;
  transition: color 0.2s;
  line-height: 1.4;
}

/* Chevron arrow */
.faq-arrow {
  font-size: 16px;
  color: #F47B20;
  transition: transform 0.35s;
  flex-shrink: 0;
}

/* Open state styles */
.faq-item.open .faq-q {
  color: #F47B20;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

/* Active item top border orange */
.faq-item.open {
  border-bottom-color: #F47B20;
}

/* ── Answer body ── */
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 0 0 54px;  /* indent to align with question text */
}

.faq-item.open .faq-body {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-body p {
  font-size: 14px;
  line-height: 1.8;
  color: #6b7280;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-heading {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .faq-section {
    padding: 50px 18px;
  }

  .faq-head {
    gap: 10px;
    padding: 16px 0;
  }

  .faq-q {
    font-size: 14px;
  }

  .faq-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    font-size: 14px;
  }

  .faq-body {
    padding-left: 44px;
  }
}


/* ===========================
   TESTIMONIALS — testimonials.css
=========================== */

.testi-section {
  position: relative;
  padding: 80px 40px 100px;
  overflow: hidden;
  background: #1B2A4A;
  background-image:
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 50px,
      rgba(255,255,255,0.02) 50px,
      rgba(255,255,255,0.02) 51px
    );
    margin-bottom: 50px;
}

.testi-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

/* ===========================
   HEADER
=========================== */
.testi-header {
  text-align: center;
  margin-bottom: 56px;
}

.testi-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #F47B20;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 18px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testi-heading {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 18px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.testi-heading .highlight { color: #F47B20; }

.testi-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.ul-short {
  display: inline-block;
  width: 14px;
  height: 3px;
  background: #F47B20;
  border-radius: 2px;
}

.ul-long {
  display: inline-block;
  width: 50px;
  height: 3px;
  background: #F47B20;
  border-radius: 2px;
}

/* ===========================
   SLIDER
=========================== */
.testi-slider-wrap {
  overflow: hidden;
  border-radius: 16px;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  will-change: transform;
}

/* ===========================
   CARD
=========================== */
.testi-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 28px 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
}

/* Orange "99" badge — top right corner */
.quote-badge {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  background: #F47B20;
  border-radius: 0 16px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Stars */
.stars {
  display: flex;
  gap: 4px;
}

.stars i {
  color: #F47B20;
  font-size: 16px;
}

/* Review text */
.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: #374151;
  font-style: italic;
  flex: 1;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Watermark Google icon */
.quote-watermark {
  position: absolute;
  bottom: 50px;
  right: 20px;
  font-size: 70px;
  color: rgba(244, 123, 32, 0.1);
  pointer-events: none;
  line-height: 1;
}

/* Reviewer name */
.reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: #F47B20;
  margin: 4px 0 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Role */
.reviewer-role {
  font-size: 13px;
  font-weight: 600;
  color: #1B2A4A;
  font-style: italic;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ===========================
   ARROWS
=========================== */
.testi-arrow {
  position: absolute;
  bottom: -62px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #F47B20;
  border: none;
  color: #ffffff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 4px 14px rgba(244,123,32,0.4);
}

.testi-arrow:hover {
  background: #d96a10;
  transform: scale(1.08);
}

.testi-prev { left: calc(50% - 56px); }
.testi-next { left: calc(50% + 10px); }

/* ===========================
   DOTS
=========================== */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s, width 0.3s;
  padding: 0;
}

.testi-dot.active {
  background: #F47B20;
  width: 28px;
  border-radius: 5px;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .testi-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 580px) {
  .testi-section {
    padding: 50px 16px 80px;
  }

  .testi-card {
    flex: 0 0 100%;
  }

  .testi-track {
    gap: 16px;
  }

  .testi-heading {
    font-size: 26px;
  }

  .testi-prev { left: calc(50% - 52px); }
  .testi-next { left: calc(50% + 6px); }
}


/* =====================================================
   FOOTER
===================================================== */
.footer {
  position: relative;
  background: #1B2A4A;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
/* Background wave image */
.footer-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
 
.footer-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  display: block;
}
 
/* ── Main content ── */
.footer-main {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 70px 40px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1.4fr;
  gap: 48px;
}
 
/* =====================================================
   COL 1 — Brand
===================================================== */
.footer-brand {}
 
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}
 
.footer-logo img {
  height: 200px;
  width: 200px;
}
 
.footer-desc {
  font-size: 17px;
  line-height: 1.8;
  color: white;
  margin: 0 0 26px;
}
 
.footer-newsletter-label {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}
 
/* Email subscribe row */
.newsletter-row {
  display: flex;
  align-items: center;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,0.06);
  padding: 4px 4px 4px 16px;
}
 
.newsletter-row i {
  color: #F47B20;
  font-size: 16px;
  margin-right: 10px;
  flex-shrink: 0;
}
 
.newsletter-row input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: #ffffff;
  font-family: inherit;
  min-width: 0;
}
 
.newsletter-row input::placeholder { color: rgba(255,255,255,0.45); }
 
.btn-subscribe {
  background: #F47B20;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.25s;
  font-family: inherit;
  flex-shrink: 0;
}
 
.btn-subscribe:hover { background: #d96a10; }
.btn-subscribe i { font-size: 14px; }
 
/* =====================================================
   COL 2 — Company links
===================================================== */
.footer-col h4 {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 18px;
}
 
/* Orange underline under heading */
.footer-col h4::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: #F47B20;
  border-radius: 2px;
  margin-top: 8px;
}
 
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
 
.footer-links a {
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  display: inline-block;
}
 
.footer-links a:hover {
  color: #F47B20;
  padding-left: 6px;
}
 
/* =====================================================
   COL 3 — Get In Touch
===================================================== */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
 
.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: #F47B20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #ffffff;
  flex-shrink: 0;
}
 
.contact-info h5 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}
 
.contact-info a,
.contact-info p {
  font-size: 16px;
  color: white;
  text-decoration: none;
  transition: color 0.2s;
  margin: 0;
}
 
.contact-info a:hover { color: #F47B20; }
 
/* =====================================================
   COL 4 — Locations
===================================================== */
.location-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
 
.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
 
.location-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: #F47B20;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
  flex-shrink: 0;
  margin-top: 2px;
}
 
.location-info h5 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 4px;
}
 
.location-info p {
  font-size: 16px;
  color: white;
  margin: 0;
  line-height: 1.6;
}
 
/* =====================================================
   FOOTER BOTTOM
===================================================== */
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
}
 
.footer-copy {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
 
.footer-copy a {
  color: #F47B20;
  text-decoration: none;
  font-weight: 600;
}
 
.footer-copy a:hover { text-decoration: underline; }
 
/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
}
 
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
 
.footer-socials a:hover {
  background: #F47B20;
  border-color: #F47B20;
  transform: translateY(-2px);
}
 
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}
 
@media (max-width: 640px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding: 50px 20px 30px;
    gap: 36px;
  }
 
  .footer-bottom {
    padding: 18px 20px;
    flex-direction: column;
    text-align: center;
  }
 
  .newsletter-row {
    flex-wrap: wrap;
    padding: 10px 14px;
    gap: 10px;
    border-radius: 12px;
  }
 
  .btn-subscribe {
    width: 100%;
    justify-content: center;
  }
}

/* =====================================================
   TAGLINE BANNER
===================================================== */
.tagline-section {
  position: relative;
  width: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
 
/* Background image */
.tagline-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
 
.tagline-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
 
/* Dark navy overlay */
.tagline-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 30, 72, 0.78);
  z-index: 1;
}
 
/* Content */
.tagline-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 60px 30px;
}
 
.tagline-content h2 {
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.5px;
}
 
.tagline-content h2 .highlight {
  color: #F47B20;
}
 
/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 600px) {
  .tagline-section {
    min-height: 180px;
  }
 
  .tagline-content {
    padding: 40px 20px;
  }
 
  .tagline-content h2 {
    font-size: 22px;
  }
}


 /* =====================================================
       TESTIMONIALS SECTION
    ===================================================== */
    .tv2-section {
      position: relative;
      background: #1B2A4A;
      background-image:
        radial-gradient(ellipse at 10% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
        repeating-linear-gradient(
          135deg,
          transparent,
          transparent 60px,
          rgba(255,255,255,0.018) 60px,
          rgba(255,255,255,0.018) 61px
        );
      padding: 80px 40px;
      overflow: hidden;
    }
 
    .tv2-inner {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 340px 1fr;
      gap: 50px;
      align-items: center;
    }
 
    /* ── LEFT: heading ── */
    .tv2-left {}
 
    .tv2-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #F47B20;
      color: #ffffff;
      font-size: 14px;
      font-weight: 700;
      padding: 8px 18px;
      border-radius: 30px;
      margin-bottom: 22px;
    }
 
    .tv2-heading {
      font-size: clamp(28px, 3.5vw, 50px);
      font-weight: 800;
      color: #ffffff;
      line-height: 1.2;
    }
 
    .tv2-heading .highlight { color: #F47B20; }
 
    /* ── RIGHT: Slider ── */
    .tv2-slider-outer {
      overflow: hidden;
      position: relative;
    }
 
    .tv2-track {
      display: flex;
      gap: 24px;
      transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
      will-change: transform;
    }
 
    /* ── Card ── */
    .tv2-card {
      flex: 0 0 calc((100% - 24px) / 2);
      background: #ffffff;
      border-radius: 20px;
      padding: 28px 28px 36px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 14px;
      transition: transform 0.3s, box-shadow 0.3s;
    }
 
    .tv2-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.2);
    }
 
    /* Orange left border accent */
    .tv2-card::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20px;
      bottom: 20px;
      width: 4px;
      background: #F47B20;
      border-radius: 0 4px 4px 0;
    }
 
    /* Card top: name + role + stars */
    .card-top {
      padding-left: 12px;
    }
 
    .reviewer-name {
      font-size: 17px;
      font-weight: 700;
      color: #1B2A4A;
      margin-bottom: 2px;
    }
 
    .reviewer-role {
      font-size: 13px;
      font-weight: 600;
      color: #F47B20;
      margin-bottom: 10px;
    }
 
    .stars {
      display: flex;
      gap: 3px;
    }
 
    .stars i {
      color: #F47B20;
      font-size: 15px;
    }
 
    /* Review text */
    .review-text {
      font-size: 14px;
      line-height: 1.8;
      color: #374151;
      font-style: italic;
      padding-left: 12px;
      flex: 1;
    }
 
    /* Watermark quote mark */
    .quote-watermark {
      position: absolute;
      bottom: 12px;
      right: 20px;
      font-size: 80px;
      color: rgba(244, 123, 32, 0.1);
      font-weight: 900;
      line-height: 1;
      pointer-events: none;
      font-family: Georgia, serif;
      user-select: none;
    }
 
    /* ── Dots ── */
    .tv2-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }
 
    .tv2-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      border: none;
      cursor: pointer;
      padding: 0;
      transition: background 0.3s, width 0.3s;
    }
 
    .tv2-dot.active {
      background: #F47B20;
      width: 28px;
      border-radius: 5px;
    }
 
    /* ── Arrows ── */
    .tv2-arrows {
      display: flex;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }
 
    .tv2-arrow {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #F47B20;
      border: none;
      color: #ffffff;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(244,123,32,0.4);
      transition: background 0.25s, transform 0.2s;
    }
 
    .tv2-arrow:hover {
      background: #d96a10;
      transform: scale(1.08);
    }
 
    /* =====================================================
       RESPONSIVE
    ===================================================== */
    @media (max-width: 960px) {
      .tv2-inner {
        grid-template-columns: 1fr;
        gap: 36px;
      }
 
      .tv2-heading {
        font-size: 32px;
      }
    }
 
    @media (max-width: 640px) {
      .tv2-section {
        padding: 50px 16px;
      }
 
      .tv2-card {
        flex: 0 0 100%;
      }
 
      .tv2-track {
        gap: 16px;
      }
    }


    
    /* ── Section Header ── */
    .sec-heading {
      text-align: center;
      margin-bottom: 48px;
    }
 
    .sec-heading .sub-label {
      display: inline-block;
    color: #f47c20;
    font-size: 30px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 50px;
    }
 
    .sec-heading h2 {
      font-size: 36px;
      font-weight: 800;
      color: #1a1a2e;
      line-height: 1.2;
    }
 
    /* ── Grid Wrapper ── */
    .srv-wrapper {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1200px;
      margin: 0 auto;
    }
 
    @media (max-width: 900px) {
      .srv-wrapper { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 580px) {
      .srv-wrapper { grid-template-columns: 1fr; }
    }
 
    /* ── Individual Item ── */
    .srv-item {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      position: relative;
      box-shadow: 0 4px 24px rgba(0,0,0,0.07);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      display: flex;
      flex-direction: column;
      margin-bottom: 50px;
    }
 
    .srv-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 40px rgba(0,0,0,0.13);
    }
 
    /* ── Thumbnail ── */
    .srv-thumb {
      position: relative;
      width: 100%;
      height: 230px;
      overflow: hidden;
    }
 
    .srv-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
      display: block;
    }
 
    .srv-item:hover .srv-thumb img {
      transform: scale(1.06);
    }
 
    /* ── Icon Circle ── */
    .srv-icon {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 56px;
      height: 56px;
      background: #f47c20;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(244,124,32,0.45);
      z-index: 2;
    }
 
    .srv-icon svg {
      width: 26px;
      height: 26px;
      fill: #fff;
    }
 
    /* ── Text Content ── */
    .srv-content {
      padding: 24px 24px 52px;
      flex: 1;
      position: relative;
    }
 
    .srv-content h3 {
      font-size: 19px;
      font-weight: 800;
      color: #1a1a2e;
      margin-bottom: 12px;
      line-height: 1.3;
    }
 
    .srv-content p {
      font-size: 16px;
      color: black;
      line-height: 1.75;
    }
 
    /* ── Count + Bracket ── */
    .srv-count {
      position: absolute;
      bottom: 12px;
      right: 20px;
      display: flex;
      align-items: flex-end;
      gap: 2px;
    }
 
    .srv-count span {
      font-size: 42px;
      font-weight: 800;
      color: rgba(0,0,0,0.07);
      line-height: 1;
      letter-spacing: -2px;
    }
 
    .srv-bracket {
      width: 28px;
      height: 34px;
      margin-bottom: 2px;
    }


/* ── Responsive: Tablet (max 900px) ── */
@media (max-width: 900px) {
  .srv-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .srv-thumb {
    height: 200px;
  }

  .srv-content h3 {
    font-size: 17px;
  }

  .srv-content p {
    font-size: 13px;
  }

  .srv-count span {
    font-size: 36px;
  }
}

/* ── Responsive: Mobile (max 580px) ── */
@media (max-width: 580px) {
  .srv-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 4px;
  }

  .srv-item {
    margin-bottom: 0;
    border-radius: 16px;
  }

  .srv-thumb {
    height: 210px;
  }

  .srv-icon {
    width: 46px;
    height: 46px;
    top: 12px;
    right: 12px;
  }

  .srv-icon svg {
    width: 22px;
    height: 22px;
  }

  .srv-content {
    padding: 18px 18px 48px;
  }

  .srv-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .srv-content p {
    font-size: 13px;
    line-height: 1.65;
  }

  .srv-count span {
    font-size: 32px;
  }

  .srv-bracket {
    width: 22px;
    height: 28px;
  }
}

/* ── Responsive: Small Mobile (max 380px) ── */
@media (max-width: 380px) {
  .srv-thumb {
    height: 180px;
  }

  .srv-content h3 {
    font-size: 15px;
  }

  .srv-content p {
    font-size: 12.5px;
  }
}



      /* ── Section Header ── */
    .pf-header {
      text-align: center;
      margin-bottom: 50px;
    }
 
    .pf-badge {
     display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f47c20;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 50px;
    margin-top: 50px;
}
 
    .pf-badge svg {
      width: 18px;
      height: 18px;
      fill: #fff;
    }
 
    .pf-header h2 {
      font-size: 40px;
      font-weight: 800;
      color: #0f1f5c;
      line-height: 1.25;
    }
 
    /* ── Grid ── */
    .pf-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
 
    @media (max-width: 900px) {
      .pf-grid { grid-template-columns: repeat(2, 1fr); }
      .pf-header h2 { font-size: 30px; }
    }
    @media (max-width: 560px) {
      .pf-grid { grid-template-columns: 1fr; }
    }
 
    /* ── Project Card ── */
    .pf-card {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(0,0,0,0.10);
      margin-bottom: 50px;
    }
 
    .pf-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
 
    .pf-card:hover img {
      transform: scale(1.08);
    }
 
    /* Overlay on hover */
    .pf-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(15,31,92,0.82) 0%, rgba(15,31,92,0.1) 60%, transparent 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
      display: flex;
      align-items: flex-end;
      padding: 24px;
    }
 
    .pf-card:hover .pf-overlay {
      opacity: 1;
    }
 
    .pf-overlay-text h4 {
      color: #fff;
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 4px;
    }
 
    .pf-overlay-text span {
      color: #f47c20;
      font-size: 13px;
      font-weight: 600;
    }
 
    /* Small label top-left */
    .pf-tag {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(255,255,255,0.92);
      color: #0f1f5c;
      font-size: 12px;
      font-weight: 700;
      padding: 4px 12px;
      border-radius: 50px;
      backdrop-filter: blur(4px);
      z-index: 2;
    }

    /* ── Responsive: Tablet (max 900px) ── */
@media (max-width: 900px) {
  .pf-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .pf-header h2 {
    font-size: 30px;
  }

  .pf-badge {
    font-size: 20px;
    padding: 7px 16px;
    margin-bottom: 30px;
    margin-top: 30px;
  }

  .pf-overlay-text h4 {
    font-size: 15px;
  }

  .pf-overlay-text span {
    font-size: 12px;
  }
}

/* ── Responsive: Mobile (max 560px) ── */
@media (max-width: 560px) {
  .pf-header {
    margin-bottom: 30px;
  }

  .pf-badge {
    font-size: 16px;
    padding: 6px 14px;
    margin-bottom: 20px;
    margin-top: 20px;
    gap: 6px;
  }

  .pf-badge svg {
    width: 15px;
    height: 15px;
  }

  .pf-header h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .pf-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 4px;
  }

  .pf-card {
    border-radius: 14px;
    margin-bottom: 0;
    aspect-ratio: 4 / 3;
  }

  .pf-overlay {
    padding: 16px;
  }

  .pf-overlay-text h4 {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .pf-overlay-text span {
    font-size: 12px;
  }

  .pf-tag {
    font-size: 11px;
    padding: 3px 10px;
    top: 10px;
    left: 10px;
  }
}

/* ── Responsive: Small Mobile (max 380px) ── */
@media (max-width: 380px) {
  .pf-header h2 {
    font-size: 20px;
  }

  .pf-badge {
    font-size: 14px;
    padding: 5px 12px;
  }

  .pf-card {
    border-radius: 12px;
  }

  .pf-overlay-text h4 {
    font-size: 13px;
  }
}


   /* ── Wrapper ── */
    .ci-wrapper {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
 
    /* ── Card ── */
    .ci-card {
      background: #f5f6fa;
      border-radius: 20px;
      padding: 36px 20px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      margin-top: 50px;
    }
 
    .ci-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 32px rgba(0,0,0,0.09);
    }
 
    /* ── Icon Circle with dashed border ── */
    .ci-icon-wrap {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      border: 2.5px dashed #f47c20;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      padding: 6px;
    }
 
    .ci-icon {
      width: 62px;
      height: 62px;
      background: #f47c20;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(244,124,32,0.35);
    }
 
    .ci-icon svg {
      width: 28px;
      height: 28px;
      fill: #fff;
    }
 
    /* ── Text ── */
    .ci-card h4 {
      font-size: 17px;
      font-weight: 800;
      color: #0f1f5c;
      margin-bottom: 10px;
    }
 
    .ci-card p {
      font-size: 14px;
      color: #555e7d;
      font-weight: 600;
      line-height: 1.65;
    }
 
    /* ── Responsive ── */
    @media (max-width: 900px) {
      .ci-wrapper {
        grid-template-columns: repeat(2, 1fr);
      }
    }
 
    @media (max-width: 500px) {
      .ci-wrapper {
        grid-template-columns: 1fr;
      }
 
      .ci-card {
        padding: 28px 16px 24px;
      }
    }



    /* ── Section Wrapper ── */
    .git-section {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: stretch;
      gap: 40px;
      background: #f5f6fa;
      border-radius: 24px;
      overflow: hidden;
      padding: 40px;
      margin-top: 50px;
      margin-bottom: 50px;
    }
 
    /* ── Left Image ── */
    .git-img-wrap {
      flex: 0 0 380px;
      border-radius: 18px;
      overflow: hidden;
    }
 
    .git-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 18px;
    }
 
    /* ── Right Form Side ── */
    .git-form-side {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
 
    .git-form-side h2 {
      font-size: 36px;
      font-weight: 800;
      color: #0f1f5c;
      margin-bottom: 14px;
      line-height: 1.2;
    }
 
    .git-form-side p {
      font-size: 14px;
      color: #6b7280;
      line-height: 1.75;
      margin-bottom: 30px;
      max-width: 520px;
    }
 
    /* ── Form ── */
    .git-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
 
    .git-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
 
    /* ── Input Group ── */
    .git-field {
      position: relative;
    }
 
    .git-field svg {
      position: absolute;
      left: 16px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      fill: #f47c20;
      pointer-events: none;
    }
 
    .git-field textarea ~ svg,
    .git-field.txt-area svg {
      top: 18px;
      transform: none;
    }
 
    .git-field input,
    .git-field textarea {
      width: 100%;
      background: #fff;
      border: 1.5px solid #e5e7eb;
      border-radius: 12px;
      padding: 14px 16px 14px 46px;
      font-family: 'Manrope', sans-serif;
      font-size: 14px;
      color: #1a1a2e;
      outline: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
 
    .git-field input::placeholder,
    .git-field textarea::placeholder {
      color: #9ca3af;
      font-weight: 500;
    }
 
    .git-field input:focus,
    .git-field textarea:focus {
      border-color: #f47c20;
      box-shadow: 0 0 0 3px rgba(244,124,32,0.12);
    }
 
    .git-field textarea {
      resize: vertical;
      min-height: 130px;
      padding-top: 14px;
    }
 
    /* ── Submit Button ── */
    .git-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #f47c20;
      color: #fff;
      font-family: 'Manrope', sans-serif;
      font-size: 15px;
      font-weight: 700;
      padding: 14px 28px;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      align-self: flex-start;
      transition: background 0.3s ease, transform 0.2s ease;
    }
 
    .git-btn:hover {
      background: #d96a10;
      transform: translateY(-2px);
    }
 
    .git-btn svg {
      width: 18px;
      height: 18px;
      fill: #fff;
    }
 
    /* ── Responsive ── */
    @media (max-width: 900px) {
      .git-section {
        flex-direction: column;
        padding: 30px 24px;
        gap: 28px;
      }
 
      .git-img-wrap {
        flex: none;
        height: 320px;
        width: 100%;
      }
 
      .git-form-side h2 {
        font-size: 28px;
      }
    }
 
    @media (max-width: 560px) {
      .git-row {
        grid-template-columns: 1fr;
      }
 
      .git-section {
        padding: 24px 16px;
        border-radius: 18px;
      }
 
      .git-img-wrap {
        height: 260px;
      }
 
      .git-form-side h2 {
        font-size: 24px;
      }
 
      .git-btn {
        width: 100%;
        justify-content: center;
      }
    }


    /* ── Section Header ── */
    .aw-header {
      text-align: center;
      margin-bottom: 50px;
    }
 
    .aw-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f47c20;
      color: #fff;
      font-size: 17px;
      font-weight: 700;
      padding: 8px 20px;
      border-radius: 50px;
      margin-bottom: 18px;
      margin-top: 50px;
    }
 
    .aw-badge svg {
      width: 18px;
      height: 18px;
      fill: #fff;
    }
 
    .aw-header h2 {
      font-size: 38px;
      font-weight: 800;
      color: #0f1f5c;
      line-height: 1.25;
    }
 
    .aw-header p {
      font-size: 14px;
      color: #6b7280;
      margin-top: 12px;
      max-width: 500px;
      margin-inline: auto;
      line-height: 1.75;
    }
 
    /* ── Grid ── */
    .aw-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      max-width: 1100px;
      margin: 0 auto;
    }
 
    /* ── Award Card ── */
    .aw-card {
      background: #f5f6fa;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
      position: relative;
      margin-bottom: 50px;
    }
 
    .aw-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 14px 40px rgba(0,0,0,0.11);
    }
 
    /* ── Photo ── */
    .aw-photo {
      width: 100%;
      height: 450px;
      overflow: hidden;
      position: relative;
    }
 
    .aw-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
 
    .aw-card:hover .aw-photo img {
      transform: scale(1.06);
    }
 
    /* Orange overlay ribbon on hover */
    .aw-photo::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(244,124,32,0.55) 0%, transparent 60%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }
 
    .aw-card:hover .aw-photo::after {
      opacity: 1;
    }
 
    /* ── Trophy Icon Badge ── */
    .aw-trophy {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 50px;
      height: 50px;
      background: #f47c20;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(244,124,32,0.45);
      z-index: 2;
    }
 
    .aw-trophy svg {
      width: 24px;
      height: 24px;
      fill: #fff;
    }
 
    /* ── Bottom Info ── */
    .aw-info {
      width: 100%;
      padding: 22px 24px 26px;
      text-align: center;
      position: relative;
    }
 
    /* Thin orange top line accent */
    .aw-info::before {
      content: '';
      display: block;
      width: 48px;
      height: 3px;
      background: #f47c20;
      border-radius: 10px;
      margin: 0 auto 14px;
    }
 
    .aw-info h4 {
      font-size: 17px;
      font-weight: 800;
      color: #0f1f5c;
      margin-bottom: 6px;
    }
 
    .aw-info span {
      font-size: 13px;
      color: #f47c20;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
 
    /* ── Responsive ── */
    @media (max-width: 900px) {
      .aw-grid {
        grid-template-columns: repeat(2, 1fr);
      }
 
      .aw-header h2 {
        font-size: 30px;
      }
    }
 
    @media (max-width: 560px) {
      .aw-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
 
      .aw-header h2 {
        font-size: 24px;
      }
 
      .aw-badge {
        font-size: 13px;
      }
 
      .aw-photo {
        height: 220px;
      }
 
      .aw-info h4 {
        font-size: 15px;
      }
    }
   /* ══════════════════════════════
       SECTION
    ══════════════════════════════ */
    .ts-section {
      background: #0e2044;
      background-image:
        radial-gradient(ellipse at 10% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 90% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
      padding: 80px 40px;
      position: relative;
      overflow: hidden;
    }
 
    /* Diagonal shape lines in background */
    .ts-section::before,
    .ts-section::after {
      content: '';
      position: absolute;
      background: rgba(255,255,255,0.03);
      border-radius: 4px;
      transform: rotate(-35deg);
    }
    .ts-section::before {
      width: 300px; height: 600px;
      top: -100px; left: -60px;
    }
    .ts-section::after {
      width: 200px; height: 500px;
      bottom: -80px; left: 120px;
    }
 
    .ts-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 60px;
    }
 
    /* ══════════════════════════════
       LEFT SIDE
    ══════════════════════════════ */
    .ts-left {
      flex: 0 0 300px;
      position: relative;
      z-index: 2;
    }
 
    .ts-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #f47c20;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      padding: 7px 18px;
      border-radius: 50px;
      margin-bottom: 24px;
    }
 
    .ts-badge i { font-size: 14px; }
 
    .ts-left h2 {
      font-size: 40px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
    }
 
    .ts-left h2 span {
      color: #f47c20;
    }
 
    /* Arrow buttons */
    .ts-arrows {
      display: flex;
      gap: 12px;
      margin-top: 40px;
    }
 
    .ts-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.25);
      background: transparent;
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s, border-color 0.3s;
    }
 
    .ts-btn:hover {
      background: #f47c20;
      border-color: #f47c20;
    }
 
    /* Dots */
    .ts-dots {
      display: flex;
      gap: 8px;
      margin-top: 24px;
    }
 
    .ts-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: background 0.3s, width 0.3s;
      border: none;
    }
 
    .ts-dot.active {
      background: #f47c20;
      width: 24px;
      border-radius: 4px;
    }
 
    /* ══════════════════════════════
       RIGHT SLIDER
    ══════════════════════════════ */
   .ts-right {
  flex: 1;
  overflow: hidden;
  position: relative;
  z-index: 2;
  min-width: 0; /* ← ADD THIS — stops flexbox overflow */
}

.ts-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  flex-wrap: nowrap;
}

.ts-card {
  flex: 0 0 auto; /* ← JS controls width, not CSS */
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  flex-direction: column;
}
 
    /* Orange left border accent on name row */
    .ts-reviewer {
      border-left: 3px solid #f47c20;
      padding-left: 14px;
      margin-bottom: 16px;
    }
 
    .ts-reviewer h4 {
      font-size: 17px;
      font-weight: 800;
      color: #0f1f5c;
      margin-bottom: 4px;
    }
 
    .ts-reviewer span {
      font-size: 13px;
      font-weight: 700;
      color: #f47c20;
    }
 
    /* Stars */
    .ts-stars {
      display: flex;
      gap: 3px;
      margin-bottom: 18px;
      padding-left: 17px;
    }
 
    .ts-stars i {
      color: #f47c20;
      font-size: 16px;
    }
 
    /* Review text */
    .ts-text {
      font-size: 14px;
      color: #4b5563;
      line-height: 1.8;
      font-style: italic;
      flex: 1;
      position: relative;
      z-index: 2;
    }
 
    /* 66 Watermark */
    .ts-watermark {
      position: absolute;
      bottom: 10px;
      right: 18px;
      font-size: 90px;
      font-weight: 900;
      color: rgba(244,124,32,0.08);
      line-height: 1;
      font-family: Georgia, serif;
      pointer-events: none;
      user-select: none;
    }
 
    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 960px) {
      .ts-inner {
        flex-direction: column;
        gap: 40px;
      }
      .ts-left {
        flex: none;
        width: 100%;
        text-align: center;
      }
      .ts-badge { display: inline-flex; }
      .ts-arrows { justify-content: center; }
      .ts-dots { justify-content: center; }
      .ts-left h2 { font-size: 32px; }
    }
 
    @media (max-width: 640px) {
      .ts-section { padding: 60px 20px; }
      .ts-card { flex: 0 0 100%; }
      .ts-left h2 { font-size: 26px; }
    }

    .floating-buttons {
  position: fixed;
  right: 0;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
  z-index: 9999;
}

.fab {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px 0 0 8px;
  transition: transform 0.2s ease;
}

.fab svg {
  width: 28px;
  height: 28px;
}

.fab.whatsapp {
  background-color: #25D366 !important;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.fab.phone {
  background-color: #2DB742 !important;
}

.fab:hover {
  transform: translateX(-4px);
}