/* ============================================================
   PFERED PTE LIMITED — Premium Corporate CSS
   Design System: White Luxury | Gold Accents | Glassmorphism
   Font Upgrade: DM Sans (opsz) + Syne
   ============================================================ */

/* ── Google Fonts ── */
@import url("https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap");

/* ── CSS Variables ── */
:root {
  --white: #ffffff;
  --black: #0d0d0d;
  --soft-black: #111111;
  --platinum: #f5f5f7;
  --silver: #e8e8ed;
  --mid-grey: #8e8e93;
  --gold: #d4af37;
  --gold-light: #edd97a;
  --gold-dark: #a8852a;
  --blue-1: #0a2463;
  --blue-2: #1b4fd8;
  --blue-3: #3a7bd5;
  --blue-grad: linear-gradient(135deg, #0a2463 0%, #1b4fd8 50%, #3a7bd5 100%);
  --gold-grad: linear-gradient(135deg, #a8852a 0%, #d4af37 50%, #edd97a 100%);

  /* ── IMPROVED FONTS ── */
  --font-head: "Outfit", sans-serif;
  --font-body: "Manrope", sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 24px 80px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.25);
  --shadow-blue: 0 8px 32px rgba(27, 79, 216, 0.2);

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;

  --nav-h: 80px;
  --section-pad: clamp(80px, 10vw, 140px);
}

/* ── Reset & Base ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-optical-sizing: auto;
  background: var(--white);
  color: var(--soft-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
  letter-spacing: -0.005em;
  cursor: none;
}

p {
  line-height: 1.78;
}

img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

/* ── Custom Cursor ── */
#cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    background 0.3s;
  mix-blend-mode: multiply;
}
#cursor-follower {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: all 0.12s ease-out;
  opacity: 0.6;
}

/* ── Preloader ── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--soft-black);
  z-index: 99997;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.preloader-logo {
  font-family: var(--font-head);
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.12em;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.preloader-logo span {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.preloader-bar-wrap {
  width: clamp(160px, 30vw, 300px);
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 99px;
  overflow: hidden;
}
.preloader-bar {
  height: 100%;
  width: 0%;
  background: var(--gold-grad);
  border-radius: 99px;
  transition: width 0.05s linear;
}
.preloader-pct {
  font-family: var(--font-head);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--mid-grey);
}

/* ── Navbar ── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 9000;
  transition: var(--transition);
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#navbar.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  box-shadow:
    0 1px 0 rgba(0, 0, 0, 0.06),
    var(--shadow-sm);
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color var(--transition);
}
.nav-logo span {
  color: var(--gold);
}
#navbar.scrolled .nav-logo {
  color: var(--soft-black);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  transition: color var(--transition-fast);
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 99px;
  transition: width var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}
.nav-links a:hover {
  color: var(--white);
}
#navbar.scrolled .nav-links a {
  color: var(--soft-black);
}
#navbar.scrolled .nav-links a:hover {
  color: var(--blue-2);
}

.nav-cta {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 12px 28px;
  background: var(--gold-grad);
  color: var(--soft-black) !important;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.35);
}
.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  z-index: 9001;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 99px;
  transition: var(--transition);
  transform-origin: left center;
}
#navbar.scrolled .hamburger span {
  background: var(--soft-black);
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(-1px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(1px);
}

/* Mobile overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--soft-black);
  z-index: 8999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-family: var(--font-head);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}
.mobile-menu a:hover {
  color: var(--gold);
}

/* ── Page Banner ── */
.page-banner {
  height: clamp(300px, 50vh, 500px);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 60px clamp(20px, 6vw, 80px);
  overflow: hidden;
}
.page-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 6s ease;
}
.page-banner:hover img {
  transform: scale(1);
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 36, 99, 0.88) 0%,
    rgba(10, 36, 99, 0.3) 60%,
    transparent 100%
  );
}
.page-banner-content {
  position: relative;
  z-index: 2;
}
.page-banner-content h1 {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
}
.breadcrumb {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.08em;
}
.breadcrumb a {
  color: var(--gold);
}
.breadcrumb span {
  margin: 0 8px;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--soft-black);
  padding-top: 40px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 36, 99, 0.92) 0%,
    rgba(13, 13, 13, 0.88) 60%,
    rgba(27, 79, 216, 0.4) 100%
  );
}

/* Blobs */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.18;
  animation: blobFloat 8s ease-in-out infinite alternate;
}
.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--blue-2);
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}
.blob-2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -100px;
  left: -80px;
  animation-delay: 2s;
}
.blob-3 {
  width: 300px;
  height: 300px;
  background: var(--blue-3);
  bottom: 20%;
  right: 15%;
  animation-delay: 4s;
}
@keyframes blobFloat {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(30px, -40px) scale(1.08);
  }
}

#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  /* padding: 0 clamp(20px, 8vw, 120px); */
  padding: 0;
  max-width: 900px;
  /* padding-top: var(--nav-h); */
  /* padding-bottom: 60px; */
  flex: 0 1 560px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  margin-top: 35px;
}
.hero-eyebrow::before {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-grad);
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}
.hero-title .line {
  display: block;
  overflow: hidden;
}
.hero-title .line-inner {
  display: block;
  transform: translateY(110%);
}
.hero-title .accent {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 48px;
  font-weight: 400;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--gold-grad);
  color: var(--soft-black);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}
.btn-primary i {
  transition: transform var(--transition-fast);
}
.btn-primary:hover i {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ── Section Common ── */
.services-full {
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
}

.sector-expertise {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

.section {
  padding: var(--section-pad) clamp(20px, 6vw, 80px);
}
.section-inner {
  max-width: 1320px;
  margin: 0 auto;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}


.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold-grad);
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--soft-black);
  line-height: 1.06;
  letter-spacing: -0.03em;
}
.section-title .accent {
  background: var(--blue-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title .gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: var(--mid-grey);
  line-height: 1.82;
  max-width: 600px;
  margin-top: 16px;
  font-weight: 400;
}

/* ── Company Intro ── */
.intro {
  background: var(--platinum);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.intro-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.intro-image-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.intro-image-wrap:hover img {
  transform: scale(1.04);
}
.intro-image-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 20px 28px;
  box-shadow: var(--shadow-md);
}
.intro-image-badge .badge-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.intro-image-badge .badge-txt {
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: 4px;
  letter-spacing: 0.06em;
}

.intro-features {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.intro-feat {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.intro-feat:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.intro-feat-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-grad);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  flex-shrink: 0;
}
.intro-feat-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--soft-black);
}
.intro-feat-desc {
  font-size: 13px;
  color: var(--mid-grey);
  margin-top: 3px;
  line-height: 1.6;
}

/* ── Services Preview Cards ── */
.services-preview {
  background: var(--white);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.svc-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.svc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.svc-card:hover img {
  transform: scale(1.07);
}
.svc-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 36, 99, 0.92) 0%,
    rgba(10, 36, 99, 0.3) 50%,
    transparent 100%
  );
  transition: var(--transition);
}
.svc-card:hover .svc-card-overlay {
  background: linear-gradient(
    to top,
    rgba(10, 36, 99, 0.96) 0%,
    rgba(10, 36, 99, 0.6) 60%,
    rgba(10, 36, 99, 0.1) 100%
  );
}
.svc-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px;
}
.svc-card-icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 175, 55, 0.15);
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 20px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.svc-card:hover .svc-card-icon {
  background: var(--gold-grad);
  color: var(--soft-black);
  border-color: transparent;
}
.svc-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.svc-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.5s ease,
    opacity 0.4s ease;
  opacity: 0;
}
.svc-card:hover .svc-card-desc {
  max-height: 120px;
  opacity: 1;
}
.svc-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.svc-card:hover .svc-card-arrow {
  opacity: 1;
  transform: translateY(0);
}

/* ── Stats ── */
.stats {
  background: var(--soft-black);
  position: relative;
  overflow: hidden;
}
.stats::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(27, 79, 216, 0.18) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(212, 175, 55, 0.1) 0%,
      transparent 60%
    );
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  position: relative;
}
.stat-item {
  padding: 60px 40px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition);
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(255, 255, 255, 0.03);
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  display: block;
}
.stat-suffix {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 800;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: 11px;
  color: var(--mid-grey);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 12px;
  display: block;
  font-weight: 500;
}

/* ── Testimonials ── */
.testimonials {
  background: var(--platinum);
}
.swiper-testimonial {
  margin-top: 60px;
  padding-bottom: 60px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 36px;
  font-family: Georgia, serif;
  font-size: 140px;
  color: var(--silver);
  line-height: 1;
}
.test-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 24px;
}
.test-quote {
  font-size: 15.5px;
  color: var(--soft-black);
  line-height: 1.82;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}
.test-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.test-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.test-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
  color: var(--soft-black);
}
.test-role {
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

.swiper-pagination-bullet {
  background: var(--silver);
  opacity: 1;
  width: 8px;
  height: 8px;
}
.swiper-pagination-bullet-active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ── CTA Banner ── */
.cta-banner {
  background: var(--blue-grad);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(50px, 6vw, 80px) clamp(20px, 6vw, 80px) 25px;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 70%
  );
}
.cta-banner-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  position: relative;
  letter-spacing: -0.02em;
}
.cta-banner-sub {
  font-size: clamp(14px, 1.5vw, 18px);
  color: rgba(255, 255, 255, 0.7);
  margin-top: 16px;
  position: relative;
  line-height: 1.7;
}
.cta-banner .hero-btns {
  justify-content: center;
  margin-top: 48px;
  position: relative;
}
.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--white);
  color: var(--blue-1);
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* ── Footer ── */
footer {
  background: #080808;
  padding: 80px clamp(20px, 6vw, 80px) 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-brand-logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.footer-brand-logo span {
  color: var(--gold);
}
.footer-brand-desc {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.82;
  max-width: 300px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.footer-social-btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid-grey);
  font-size: 15px;
  transition: var(--transition-fast);
}
.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-col-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a {
  font-size: 14px;
  color: var(--mid-grey);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links a:hover {
  color: var(--gold);
}
.footer-links a::before {
  content: "→";
  font-size: 12px;
  opacity: 0;
  transform: translateX(-6px);
  transition: var(--transition-fast);
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.newsletter-input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-input::placeholder {
  color: var(--mid-grey);
}
.newsletter-input:focus {
  border-color: var(--gold);
}
.newsletter-btn {
  padding: 14px 20px;
  background: var(--gold-grad);
  color: var(--soft-black);
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.newsletter-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1320px;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.25);
  transition: color var(--transition-fast);
}
.footer-legal a:hover {
  color: var(--gold);
}

/* Back to top */
.back-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 52px;
  height: 52px;
  background: var(--gold-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--soft-black);
  font-size: 18px;
  box-shadow: var(--shadow-gold);
  z-index: 8000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: var(--transition);
  cursor: pointer;
}
.back-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-top:hover {
  transform: translateY(-4px);
}

/* ── About Page ── */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 60px;
}
.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold-grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.mission-card:hover::before {
  transform: scaleX(1);
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.mission-card-icon {
  width: 60px;
  height: 60px;
  background: var(--platinum);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--blue-2);
  margin-bottom: 24px;
  transition: var(--transition);
}
.mission-card:hover .mission-card-icon {
  background: var(--blue-grad);
  color: var(--white);
}
.mission-card h3 {
  font-family: var(--font-head);
  font-size: 24px;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}
.mission-card p {
  font-size: 15px;
  color: var(--mid-grey);
  line-height: 1.82;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.value-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--platinum);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--soft-black);
  transition: var(--transition);
}
.value-chip:hover {
  background: var(--blue-1);
  color: var(--white);
}
.value-chip i {
  color: var(--gold);
  font-size: 18px;
}
.value-chip:hover i {
  color: var(--gold-light);
}

/* Timeline */
.timeline {
  background: var(--platinum);
}
.timeline-wrap {
  position: relative;
  margin-top: 60px;
}
.timeline-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--silver);
  transform: translateX(-50%);
}
.timeline-progress {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 0%;
  background: var(--gold-grad);
  transform: translateX(-50%);
  transition: height 0.1s linear;
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  margin-bottom: 60px;
  align-items: start;
}
.timeline-item:nth-child(odd) .tl-card {
  grid-column: 1;
  text-align: right;
}
.timeline-item:nth-child(odd) .tl-dot {
  grid-column: 2;
}
.timeline-item:nth-child(odd) .tl-empty {
  grid-column: 3;
}
.timeline-item:nth-child(even) .tl-empty {
  grid-column: 1;
}
.timeline-item:nth-child(even) .tl-dot {
  grid-column: 2;
}
.timeline-item:nth-child(even) .tl-card {
  grid-column: 3;
}
.tl-dot {
  width: 20px;
  height: 20px;
  background: var(--gold);
  border: 4px solid var(--white);
  border-radius: 50%;
  margin: 0 auto;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}
.timeline-item.active .tl-dot {
  transform: scale(1.3);
}
.tl-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--silver);
}
.tl-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tl-year {
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.16em;
  margin-bottom: 8px;
}
.tl-title {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.tl-desc {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.78;
}

/* ── Services Full Page ── */
.services-full {
  background: var(--white);
}
.svc-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.svc-full-card {
  background: var(--platinum);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--silver);
}
.svc-full-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.svc-full-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.svc-full-card:hover .svc-full-card-img {
  transform: scale(1.05);
}
.svc-full-card-img-wrap {
  overflow: hidden;
}
.svc-full-card-body {
  padding: 36px;
}
.svc-full-card-icon {
  width: 56px;
  height: 56px;
  background: var(--blue-grad);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 24px;
  margin-bottom: 20px;
}
.svc-full-card-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.svc-full-card-desc {
  font-size: 14px;
  color: var(--mid-grey);
  line-height: 1.82;
  margin-bottom: 20px;
}

.svc-drawer-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-2);
  cursor: pointer;
  transition: color var(--transition-fast);
}
.svc-drawer-toggle:hover {
  color: var(--gold);
}
.svc-drawer-toggle i {
  transition: transform var(--transition-fast);
}
.svc-drawer-toggle.open i {
  transform: rotate(180deg);
}

.svc-drawer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.svc-drawer.open {
  max-height: 400px;
}
.svc-drawer-inner {
  padding-top: 20px;
  border-top: 1px solid var(--silver);
  margin-top: 20px;
}
.svc-drawer-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-drawer-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--soft-black);
}
.svc-drawer-list li i {
  color: var(--gold);
  font-size: 14px;
}

/* ── Testimonials Page Specifics ── */
.testi-masonry {
  columns: 3;
  column-gap: 24px;
  margin-top: 60px;
}
.testi-masonry-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 24px;
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver);
  transition: var(--transition);
}
.testi-masonry-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Testimonial category tag */
.testi-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 5px 14px;
  background: var(--platinum);
  border-radius: 99px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-2);
  border: 1px solid var(--silver);
}

/* Featured pull quote */
.featured-quote {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(40px, 6vw, 72px);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--silver);
  position: relative;
  overflow: hidden;
}
.featured-quote::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gold-grad);
}
.fq-icon {
  font-size: 44px;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0.75;
}
.fq-text {
  font-family: var(--font-head);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 600;
  color: var(--soft-black);
  line-height: 1.58;
  font-style: italic;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
.fq-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.fq-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
}
.fq-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  color: var(--soft-black);
  text-align: left;
}
.fq-role {
  font-size: 13px;
  color: var(--mid-grey);
  margin-top: 3px;
  text-align: left;
}

/* Trust metrics — dark variant */
.trust-metric--dark {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
.trust-metric--dark .trust-metric-num {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.trust-metric--dark .trust-metric-label {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Logo marquee */
.marquee-track {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}
.marquee-track::before,
.marquee-track::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}
.marquee-track::before {
  left: 0;
  background: linear-gradient(to right, var(--platinum), transparent);
}
.marquee-track::after {
  right: 0;
  background: linear-gradient(to left, var(--platinum), transparent);
}
.marquee-inner {
  display: flex;
  gap: 60px;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-inner:hover {
  animation-play-state: paused;
}
.marquee-logo {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid-grey);
  white-space: nowrap;
  padding: 0 20px;
  border-right: 1px solid var(--silver);
  transition: color var(--transition-fast);
}
.marquee-logo:hover {
  color: var(--blue-2);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Trust metrics base */
.trust-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-metric {
  text-align: center;
  padding: 40px 24px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver);
  transition: var(--transition);
}
.trust-metric:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.trust-metric-num {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  background: var(--blue-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.trust-metric-label {
  font-size: 12px;
  color: var(--mid-grey);
  margin-top: 8px;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

/* ── Contact Page ── */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--silver);
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
  border-color: var(--gold);
}
.contact-card-icon {
  width: 52px;
  height: 52px;
  background: var(--blue-grad);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  flex-shrink: 0;
}
.contact-card-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
}
.contact-card-val {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 600;
  color: var(--soft-black);
  margin-top: 4px;
  letter-spacing: -0.01em;
}

/* Glassmorphism form */
.contact-form-wrap {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: var(--radius-xl);
  padding: clamp(32px, 5vw, 52px);
  box-shadow: var(--shadow-lg);
}
.form-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-full {
  grid-column: 1/-1;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--soft-black);
}
.form-control {
  background: var(--platinum);
  border: 1.5px solid var(--silver);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--soft-black);
  outline: none;
  transition:
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
  line-height: 1.5;
}
.form-control:focus {
  border-color: var(--blue-2);
  box-shadow: 0 0 0 4px rgba(27, 79, 216, 0.08);
  background: var(--white);
}
.form-control::placeholder {
  color: var(--mid-grey);
}
textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Select styling */
select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238e8e93' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}

/* Consent checkbox */
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--mid-grey);
  cursor: pointer;
  line-height: 1.6;
}
.consent-checkbox {
  margin-top: 2px;
  width: 16px;
  height: 16px;
  accent-color: var(--blue-2);
  flex-shrink: 0;
  cursor: pointer;
}

.form-error {
  font-size: 12px;
  color: #e53e3e;
  margin-top: 2px;
  display: none;
  font-weight: 500;
}
.form-group.has-error .form-control {
  border-color: #e53e3e;
}
.form-group.has-error .form-error {
  display: block;
}
.form-group.has-success .form-control {
  border-color: #38a169;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--blue-grad);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  margin-top: 12px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.submit-btn:hover {
  opacity: 0.92;
  transform: translateY(-2px);
  box-shadow: var(--shadow-blue);
}

/* Office grid */
.office-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.office-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--silver);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.office-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.office-card-img {
  position: relative;
  overflow: hidden;
}
.office-card-img img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.office-card:hover .office-card-img img {
  transform: scale(1.06);
}
.office-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--blue-grad);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 99px;
}
.office-card-body {
  padding: 32px;
}
.office-flag {
  width: 48px;
  height: 48px;
  background: var(--platinum);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue-2);
  margin-bottom: 16px;
}
.office-city {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--soft-black);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.office-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  color: var(--mid-grey);
  line-height: 1.65;
  margin-bottom: 10px;
}
.office-detail i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

/* FAQ split */
.faq-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--silver);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}
.faq-item:hover {
  border-color: var(--gold);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--soft-black);
  user-select: none;
  gap: 16px;
  letter-spacing: -0.01em;
}
.faq-q i {
  color: var(--gold);
  font-size: 14px;
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}
.faq-item.open .faq-q i {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.45s ease,
    padding 0.45s ease;
  font-size: 14.5px;
  color: var(--mid-grey);
  line-height: 1.82;
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding: 0 28px 24px;
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 360px;
  background: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}
.map-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 60%
  );
}
.map-placeholder i {
  font-size: 48px;
  color: var(--gold);
  position: relative;
}
.map-placeholder p {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  position: relative;
  letter-spacing: -0.01em;
}

/* Glassmorphism strip */
.glass-strip {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.glass-strip-item {
  text-align: center;
}
.glass-strip-item span {
  display: block;
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
}
.glass-strip-item p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* AOS Overrides */
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

/* Utility */
.text-center {
  text-align: center;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .testi-masonry {
    columns: 2;
  }
  .trust-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
  .office-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-split {
    grid-template-columns: 1fr;
  }
  .svc-full-grid {
    grid-template-columns: 1fr;
  }
  .faq-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .office-grid {
    grid-template-columns: 1fr !important;
  }
  .timeline-wrap::before {
    left: 20px;
  }
  .timeline-progress {
    left: 20px;
  }
  .timeline-item {
    grid-template-columns: 40px 1fr;
  }
  .timeline-item:nth-child(odd) .tl-card,
  .timeline-item:nth-child(even) .tl-card {
    grid-column: 2;
    text-align: left;
  }
  .timeline-item:nth-child(odd) .tl-dot,
  .timeline-item:nth-child(even) .tl-dot {
    grid-column: 1;
  }
  .timeline-item .tl-empty {
    display: none;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .testi-masonry {
    columns: 1;
  }
  .trust-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .contact-form-wrap {
    padding: 32px 24px;
  }
  .back-top {
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
  }
  :root {
    --nav-h: 68px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .glass-strip {
    padding: 20px 24px;
  }
}
@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
  }
  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .trust-metrics {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .featured-quote {
    padding: 32px 24px;
  }
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}


/* Intro Section spacing fix */
.intro-section {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}


/* About page spacing reduce */
.about-overview {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}


/* Mission & Vision section spacing reduce */
.mission-section {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}


/* Featured quote section padding reduce */
.quote-section {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

/* Testimonials section padding reduce */
.testimonial-section {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

/* home page (Smart Digital Solutions For) */
.about-section {
  padding-top: 20px !important;
  padding-bottom: 55px !important;
}










/* ══════════════════════════════════════
   HERO INNER FLEX LAYOUT
══════════════════════════════════════ */
.hero-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  min-height: 100vh;
  padding-top: var(--nav-h);
  padding-bottom: 80px;
  /* LEFT padding same as original hero-content tha */
  padding-left: clamp(20px, 8vw, 120px);
  padding-right: clamp(20px, 4vw, 60px);
}

/* Override existing hero-content padding (it was standalone before) */
.hero-content {
 padding: 0 !important;
  padding-top: 0 !important;
  max-width: 560px;
  flex: 0 1 560px;
  
}

/* ══════════════════════════════════════
   HERO VISUAL — RIGHT SIDE
══════════════════════════════════════ */
.hero-visual {
 flex: 0 0 500px;
  width: 500px;
  height: 540px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: clamp(0px, 2vw, 40px); /* extra right push */
}

/* ── Orbit Sphere ── */
.hv-orbit-wrap {
  position: relative;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Rings */
.hv-orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.25);
  animation: orbitSpin linear infinite;
}
.hv-ring-1 {
  width: 260px; height: 260px;
  animation-duration: 14s;
  border-color: rgba(212, 175, 55, 0.3);
}
.hv-ring-2 {
  width: 190px; height: 190px;
  animation-duration: 10s;
  animation-direction: reverse;
  border-color: rgba(27, 79, 216, 0.4);
}
.hv-ring-3 {
  width: 330px; height: 330px;
  animation-duration: 20s;
  border-color: rgba(255, 255, 255, 0.08);
  border-style: dashed;
}
@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Core */
.hv-core {
  width: 100px;
  height: 100px;
  background: var(--blue-grad);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: var(--gold);
  position: relative;
  z-index: 5;
  box-shadow:
    0 0 0 12px rgba(27, 79, 216, 0.12),
    0 0 0 28px rgba(27, 79, 216, 0.06),
    0 0 60px rgba(27, 79, 216, 0.5);
  animation: corePulse 3s ease-in-out infinite;
}
@keyframes corePulse {
  0%, 100% { box-shadow: 0 0 0 12px rgba(27,79,216,0.12), 0 0 0 28px rgba(27,79,216,0.06), 0 0 60px rgba(27,79,216,0.5); }
  50%       { box-shadow: 0 0 0 18px rgba(212,175,55,0.12), 0 0 0 36px rgba(212,175,55,0.05), 0 0 80px rgba(212,175,55,0.4); }
}

/* Orbiting Planets */
.hv-planet {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gold);
  z-index: 6;
  transition: transform 0.3s;
}
.hv-planet:hover {
  background: var(--gold-grad);
  color: var(--soft-black);
  transform: scale(1.2);
}

/* Planet positions — all on ring-1 circumference (radius 130px) */
.hv-p1 { top: calc(50% - 130px - 21px); left: calc(50% - 21px); animation: floatY 3.0s ease-in-out infinite; }
.hv-p2 { top: calc(50% - 21px); right: calc(50% - 130px - 21px); left: auto; animation: floatY 3.5s ease-in-out infinite 0.5s; }
.hv-p3 { bottom: calc(50% - 130px - 21px); top: auto; left: calc(50% - 21px); animation: floatY 4.0s ease-in-out infinite 1s; }
.hv-p4 { top: calc(50% - 21px); left: calc(50% - 130px - 21px); animation: floatY 3.2s ease-in-out infinite 0.3s; }
.hv-p5 { top: calc(50% - 100px - 21px); left: calc(50% + 80px - 21px); animation: floatY 3.8s ease-in-out infinite 0.8s; }
.hv-p6 { top: calc(50% + 80px - 21px); left: calc(50% + 100px - 21px); animation: floatY 2.8s ease-in-out infinite 1.2s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

/* ── Glassmorphism Floating Cards ── */
.hv-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  white-space: nowrap;
}

.hv-card-icon {
  width: 40px; height: 40px;
  background: var(--gold-grad);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--soft-black);
  font-size: 16px;
  flex-shrink: 0;
}
.hv-card-num {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hv-card-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* Card positions + individual float animations */
.hv-card-1 {
  top: 30px; left: -30px;
  animation: hvcFloat1 4s ease-in-out infinite;
}
.hv-card-2 {
  top: 50px; right: -20px;
  animation: hvcFloat2 4.5s ease-in-out infinite 0.6s;
}
.hv-card-3 {
  bottom: 60px; left: -40px;
  flex-direction: column;
  align-items: flex-start;
  animation: hvcFloat3 5s ease-in-out infinite 1s;
}
.hv-card-4 {
  bottom: 30px; right: -10px;
  animation: hvcFloat4 3.8s ease-in-out infinite 0.4s;
}

@keyframes hvcFloat1 {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(-8px, -12px); }
}
@keyframes hvcFloat2 {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(8px, -10px); }
}
@keyframes hvcFloat3 {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(-6px, 12px); }
}
@keyframes hvcFloat4 {
  0%,100% { transform: translate(0, 0); }
  50%      { transform: translate(6px, 10px); }
}

/* Progress bar (card 3) */
.hv-bar-wrap {
  width: 180px; height: 4px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  overflow: hidden;
}
.hv-bar {
  height: 100%;
  background: var(--gold-grad);
  border-radius: 99px;
  animation: barGrow 2s ease-out forwards;
}
@keyframes barGrow {
  from { width: 0% !important; }
}

/* Live badge (card 4) */
.hv-live-dot {
  width: 10px; height: 10px;
  background: #48bb78;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(72,187,120,0.5);
  animation: livePing 1.5s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes livePing {
  0%    { box-shadow: 0 0 0 0 rgba(72,187,120,0.6); }
  70%   { box-shadow: 0 0 0 10px rgba(72,187,120,0); }
  100%  { box-shadow: 0 0 0 0 rgba(72,187,120,0); }
}

/* ── Responsive: hide visual on small screens ── */
@media (max-width: 1024px) {
  .hero-inner {
    flex-direction: column;
    justify-content: center;
    padding-bottom: 100px;
  }
  .hero-content {
    max-width: 100% !important;
    flex: unset !important;
    text-align: center;
  }
  .hero-visual {
    display: none;
  }
}



/* HERO LAYOUT FIX */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 35px;
  padding-right: 60px;
}

/* Left text same first screenshot position */
.hero-content {
  max-width: 620px;
  padding-left: 55px !important;
  margin-left: 0 !important;
  flex: 0 0 48%;
}

/* Right content thoda aur right */
.hero-visual {
  position: relative;
  right: -25px; /* pehle -70 tha */
  flex: 0 0 48%;
}



/* MOBILE HERO FIX */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
    min-height: auto;
    overflow: hidden;
  }

  /* Left content */
  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0 auto;
    z-index: 5;
  }

  /* Top small text */
  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    margin: 10px auto 20px;
    justify-content: center;
     white-space: nowrap;
  }

  /* Main heading */
  .hero-title {
    font-size: clamp(46px, 12vw, 72px);
    line-height: 0.95;
    margin-bottom: 20px;
    text-align: center;
  }

  /* Paragraph */
  .hero-sub {
    font-size: 16px;
    line-height: 1.8;
    text-align: center;
    max-width: 95%;
    margin: 0 auto;
  }

  /* Buttons */
  .hero-actions {
    flex-direction: column;
    gap: 14px;
    align-items: center;
    margin-top: 28px;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    max-width: 260px;
    justify-content: center;
  }

  /* Right animation / orbit */
  .hero-visual {
    width: 100%;
    margin-top: 40px;
    right: 0 !important;
    transform: scale(0.75);
    display: flex;
    justify-content: center;
  }

  /* Floating cards */
  .stat-card,
  .floating-card {
    transform: scale(0.8);
  }
}














@media (max-width: 768px) {

  /* Why PFERED heading */
  .section-title {
    font-size: 38px !important;
    line-height: 1.1;
  }

  /* Why Choose Us cards wrapper */
  .section div[style*="grid-template-columns: repeat(3, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 35px !important;
  }

  /* Card padding */
  .mission-card,
  .section div[style*="padding: 40px"] {
    padding: 28px !important;
    border-radius: 22px !important;
  }

  /* Card text */
  .mission-card h3 {
    font-size: 24px !important;
  }

  .mission-card p {
    font-size: 14px !important;
    line-height: 1.8 !important;
  }
}


contact page
.map-placeholder span{
    display: block;
    text-align: center;
    width: 100%;
    max-width: 260px;
    margin: 10px auto 0;
    line-height: 1.6;
}


@media (max-width:768px){
  .map-placeholder span{
    font-size: 14px !important;
    padding: 0 10px;
  }
}