/* ============================================================
   VibrantMinds Technologies — Colleges Website
   assets/css/college.css — Custom overrides & Page specific styles
   ============================================================ */

/* --- Logo Badge --- */
.logo-badge {
  background-color: var(--color-orange);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 6px;
  letter-spacing: 0.5px;
  vertical-align: middle;
  display: inline-block;
}

/* ============================================================
   HERO — CINEMATIC FULLSCREEN (Slider Revolution Inspired)
   ============================================================ */
#hero.hero-fullscreen {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #000c24;
}

/* ═══════════════════════════════════════════
   BACKGROUND IMAGE SLIDESHOW — Ken Burns
═══════════════════════════════════════════ */
.hbg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hbg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
  /* Each slide gets Ken Burns zoom+pan via named animation below */
}

/* Active slide = visible */
.hbg-slide.hbg-active {
  opacity: 1;
}

/* Ken Burns — 4 variants with different pan directions */
.hbg-slide-1.hbg-active { animation: kbSlide1 8s ease-in-out forwards; }
.hbg-slide-2.hbg-active { animation: kbSlide2 8s ease-in-out forwards; }
.hbg-slide-3.hbg-active { animation: kbSlide3 8s ease-in-out forwards; }
.hbg-slide-4.hbg-active { animation: kbSlide4 8s ease-in-out forwards; }

/* Zoom in + pan right */
@keyframes kbSlide1 {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.12) translate(-2%, -1%); }
}
/* Zoom in + pan left */
@keyframes kbSlide2 {
  0%   { transform: scale(1.0) translate(0, 0); }
  100% { transform: scale(1.14) translate(2%, -1.5%); }
}
/* Pan up + slow zoom */
@keyframes kbSlide3 {
  0%   { transform: scale(1.08) translate(0, 2%); }
  100% { transform: scale(1.16) translate(-1%, -1%); }
}
/* Pan down-right + zoom */
@keyframes kbSlide4 {
  0%   { transform: scale(1.05) translate(-1%, 0); }
  100% { transform: scale(1.13) translate(1%, -2%); }
}

/* Dark cinematic overlay = makes image moody, cinematic */
.hbg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 6, 20, 0.72);
  z-index: 1;
}

/* Left-right gradient to keep text crisp on left */
.hbg-gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,8,24,0.85) 0%, rgba(0,8,24,0.3) 55%, rgba(0,8,24,0.1) 100%),
    linear-gradient(to bottom, transparent 55%, rgba(0,0,0,0.6) 100%);
  z-index: 2;
}

/* Slide indicator dots */
.hbg-dots {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}
.hbg-dot {
  width: 24px;
  height: 3px;
  border-radius: 3px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hbg-dot.hbg-dot-active,
.hbg-dot:hover {
  background: var(--color-orange);
  width: 40px;
}

/* ── Background layer ──────────────────────────────── */
.hero-bg-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 55px 55px;
  z-index: 2;
}

/* Animated gradient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: orbPulse 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -150px; left: -100px;
  background: radial-gradient(circle, rgba(253,72,0,0.18) 0%, transparent 65%);
  animation-delay: 0s;
}
.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -50px;
  background: radial-gradient(circle, rgba(56,176,255,0.1) 0%, transparent 65%);
  animation-delay: 3s;
}
.hero-orb-3 {
  width: 400px; height: 400px;
  top: 40%; left: 45%;
  background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 65%);
  animation-delay: 6s;
}
@keyframes orbPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.15); opacity: 1; }
}

/* Particle field */
.hero-particle-field {
  position: absolute;
  inset: 0;
}
.hero-particle-dot {
  position: absolute;
  border-radius: 50%;
  animation: heroParticleFloat linear infinite;
}
@keyframes heroParticleFloat {
  0% { transform: translateY(0) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Diagonal split accent line */
.hero-split-line {
  position: absolute;
  top: 0; bottom: 0;
  right: 38%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(253,72,0,0.15) 30%, rgba(253,72,0,0.08) 70%, transparent);
  z-index: 5;
}

/* ── Main container & layout ───────────────────────── */
.hero-main-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 175px 50px 120px;
}

.hero-two-col {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

/* ── LEFT COLUMN ──────────────────────────────────── */
.hero-left-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Staggered entrance layers */
.hero-layer {
  opacity: 0;
  animation: heroLayerIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-layer-a { animation-delay: 0.1s;  transform: translateX(-60px); }
.hero-layer-b { animation-delay: 0.25s; transform: translateX(-80px); }
.hero-layer-c { animation-delay: 0.42s; transform: translateY(40px); }
.hero-layer-d { animation-delay: 0.58s; transform: translateY(30px); }
.hero-layer-e { animation-delay: 0.72s; transform: translateY(20px); }
.hero-layer-f { animation-delay: 0.3s;  transform: translateY(50px) scale(0.95); }
.hero-layer-g { animation-delay: 0.65s; transform: translateX(50px); }
.hero-layer-h { animation-delay: 0.8s;  transform: translateX(60px); }
.hero-layer-i { animation-delay: 0.9s;  transform: translateY(-15px); }

@keyframes heroLayerIn {
  to { opacity: 1; transform: none; }
}

/* Eyebrow tag */
.hero-eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(253,72,0,0.12);
  border: 1px solid rgba(253,72,0,0.3);
  color: #ff9960;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 30px;
  backdrop-filter: blur(8px);
}

/* Big headline */
.hero-big-title {
  font-family: var(--font-title);
  font-weight: 800;
  letter-spacing: -1px;
  color: #ffffff;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hbt-line {
  display: block;
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  color: rgba(255,255,255,0.92);
}
.hbt-line-1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0;
}
.hbt-line-2 { font-size: clamp(2.5rem, 4.5vw, 4rem); font-weight: 800; }
.hbt-line-3 { font-size: clamp(2.2rem, 4vw, 3.5rem); color: rgba(255,255,255,0.85); }

.hbt-typed-wrap { font-style: normal; position: relative; display: inline-block; }

.hbt-typed {
  color: var(--color-orange);
  background: linear-gradient(135deg, #fd4800, #ff8c42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hbt-typed::after {
  content: '|';
  -webkit-text-fill-color: #fd4800;
  animation: blink 0.8s step-end infinite;
  margin-left: 2px;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hbt-accent {
  font-weight: 900;
  color: #fd4800;
  -webkit-text-fill-color: #fd4800;
  background: none;
  text-decoration: underline;
  text-decoration-color: rgba(253,72,0,0.35);
  text-underline-offset: 6px;
}

/* Lead text */
.hero-lead-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  max-width: 520px;
}
.hero-lead-text strong { color: rgba(255,255,255,0.9); font-weight: 700; }

/* CTA row */
.hero-cta-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #fd4800 0%, #ff6b30 100%);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(253,72,0,0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.hero-btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(253,72,0,0.55); color: #fff; }

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}
.hero-btn-ghost:hover { background: rgba(255,255,255,0.13); border-color: rgba(255,255,255,0.35); color: #fff; transform: translateY(-2px); }

/* Trust bar */
.hero-trust-bar {
  display: flex; align-items: center; gap: 16px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  max-width: fit-content;
}
.htb-avatars { display: flex; align-items: center; }
.htb-avatars img { width: 34px; height: 34px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.3); object-fit: cover; margin-left: -8px; }
.htb-avatars img:first-child { margin-left: 0; }
.htb-count { width: 34px; height: 34px; border-radius: 50%; background: var(--color-orange); color: #fff; font-size: 0.62rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin-left: -8px; border: 2px solid rgba(255,255,255,0.2); }
.htb-divider { width: 1px; height: 34px; background: rgba(255,255,255,0.12); }
.htb-text { display: flex; flex-direction: column; gap: 3px; }
.htb-stars { color: #fbbf24; font-size: 0.72rem; letter-spacing: 2px; }
.htb-text span { font-size: 0.76rem; color: rgba(255,255,255,0.55); font-weight: 500; }

/* ═══════════════════════════════════════════
   RIGHT COLUMN — MOSAIC IMAGE COLLAGE
═══════════════════════════════════════════ */
.hero-right-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-mosaic {
  position: relative;
  width: 400px;
  height: 440px;
}

/* Rotating decorative rings around the whole mosaic */
.hvf-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.hvf-ring-outer {
  width: 480px; height: 480px;
  border: 1px dashed rgba(253,72,0,0.12);
  animation: hvfRingRotate 30s linear infinite;
}
.hvf-ring-mid {
  width: 400px; height: 400px;
  border: 1px dashed rgba(56,176,255,0.1);
  animation: hvfRingRotate 20s linear infinite reverse;
}
@keyframes hvfRingRotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Individual mosaic image tiles */
.hm-img {
  position: absolute;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55);
  border: 2px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.4s ease, border-color 0.4s ease, transform 0.4s ease;
}
.hm-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-in-out;
}
.hm-img:hover img { transform: scale(1.08); }

.hm-img-a:hover { box-shadow: 0 25px 60px rgba(56, 176, 255, 0.45) !important; border-color: rgba(56, 176, 255, 0.6) !important; }
.hm-img-b:hover { box-shadow: 0 25px 60px rgba(253, 72, 0, 0.45) !important; border-color: rgba(253, 72, 0, 0.6) !important; }
.hm-img-c:hover { box-shadow: 0 25px 60px rgba(0, 191, 166, 0.45) !important; border-color: rgba(0, 191, 166, 0.6) !important; }
.hm-img-d:hover { box-shadow: 0 25px 60px rgba(56, 176, 255, 0.45) !important; border-color: rgba(56, 176, 255, 0.6) !important; }

/* Image label pill */
.hm-img-label {
  position: absolute;
  bottom: 10px; left: 10px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

/* IMAGE A — Large top-left (main feature image) */
.hm-img-a {
  width: 235px; height: 180px;
  top: 0; left: 0;
  animation: hmBobA 5s ease-in-out infinite;
  z-index: 3;
}
@keyframes hmBobA {
  0%, 100% { transform: translateY(0) rotate(-1.5deg); }
  50%       { transform: translateY(-10px) rotate(-1.5deg); }
}

/* IMAGE B — Tall right portrait (students) */
.hm-img-b {
  width: 160px; height: 270px;
  top: 0; right: 0;
  animation: hmBobB 6s ease-in-out infinite;
  animation-delay: 0.8s;
  z-index: 2;
}
@keyframes hmBobB {
  0%, 100% { transform: translateY(0) rotate(1.5deg); }
  50%       { transform: translateY(-8px) rotate(1.5deg); }
}

/* IMAGE C — Small bottom-left (graduation) */
.hm-img-c {
  width: 155px; height: 135px;
  bottom: 0; left: 15px;
  animation: hmBobC 4.5s ease-in-out infinite;
  animation-delay: 1.2s;
  z-index: 4;
}
@keyframes hmBobC {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50%       { transform: translateY(-12px) rotate(1deg); }
}

/* IMAGE D — Small bottom-right / center (assessment) */
.hm-img-d {
  width: 155px; height: 130px;
  bottom: 15px; right: 10px;
  animation: hmBobD 5.5s ease-in-out infinite;
  animation-delay: 0.4s;
  z-index: 3;
}
@keyframes hmBobD {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-9px) rotate(-1deg); }
}

/* Floating stat cards on mosaic */
.hvf-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.6);
  white-space: nowrap;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.hvf-card:hover {
  transform: translateY(-5px) scale(1.05) !important;
  box-shadow: 0 25px 50px rgba(0, 22, 72, 0.15) !important;
  z-index: 15 !important;
}
.hvf-card-tl  { top: -14px; left: 155px; animation: cardBob1 4s ease-in-out infinite; }
.hvf-card-br  { bottom: -14px; right: 145px; animation: cardBob1 4s ease-in-out 2s infinite; }

@keyframes cardBob1 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

.hvfc-icon-wrap { width: 38px; height: 38px; border-radius: 8px; background: rgba(253,72,0,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hvfc-green { background: rgba(0,191,166,0.08); }
.hvfc-blue  { background: rgba(56,176,255,0.08); }
.hvfc-body  { display: flex; flex-direction: column; gap: 2px; }
.hvfc-num   { font-family: var(--font-title); font-size: 1.1rem; font-weight: 800; color: var(--color-navy); line-height: 1; }
.hvfc-lbl   { font-size: 0.68rem; color: var(--color-text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }

/* Live pulse badge on mosaic */
.hvf-live-badge {
  position: absolute;
  bottom: 155px; left: -10px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.8);
  color: #fff;
  font-size: 0.72rem; font-weight: 700;
  padding: 7px 14px;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  z-index: 10;
  animation: cardBob1 3.5s ease-in-out infinite;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%  { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

/* ── Bottom wave ──────────────────────────────────── */
.hero-bottom-wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  line-height: 0;
  z-index: 12;
}
.hero-bottom-wave svg { display: block; width: 100%; height: 100px; }

/* ── Scroll hint ──────────────────────────────────── */
.hero-scroll-hint {
  position: absolute;
  bottom: 120px; left: 50px;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  z-index: 13;
}
.hsh-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.35));
  animation: scrollHintPulse 2s ease-in-out infinite;
}
.hero-scroll-hint span { font-size: 0.62rem; color: rgba(255,255,255,0.3); font-weight: 600; letter-spacing: 3px; text-transform: uppercase; writing-mode: vertical-rl; }
@keyframes scrollHintPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.1); }
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-main-container { padding: 175px 30px 120px; }
  .hero-two-col { gap: 40px; }
  .hero-mosaic { width: 350px; height: 390px; }
  .hm-img-a { width: 200px; height: 150px; }
  .hm-img-b { width: 140px; height: 235px; }
  .hm-img-c { width: 130px; height: 115px; }
  .hm-img-d { width: 130px; height: 110px; }
  .hvf-ring-outer { width: 440px; height: 440px; }
  .hvf-ring-mid   { width: 360px; height: 360px; }
}

@media (max-width: 900px) {
  .hero-two-col { grid-template-columns: 1fr; gap: 50px; }
  .hero-right-col { order: -1; }
  .hero-mosaic { width: 320px; height: 360px; margin: 0 auto; }
  .hm-img-a { width: 185px; height: 140px; }
  .hm-img-b { width: 130px; height: 215px; }
  .hm-img-c { width: 120px; height: 105px; left: 10px; }
  .hm-img-d { width: 120px; height: 100px; right: 5px; }
  .hvf-ring-outer, .hvf-ring-mid { display: none; }
  .hero-split-line { display: none; }
  .hero-scroll-hint { display: none; }
  .hero-main-container { padding: 110px 20px 140px; }
}

@media (max-width: 576px) {
  .hbt-line    { font-size: 2.1rem; }
  .hbt-line-1  { font-size: 1.8rem; }
  .hbt-line-3  { font-size: 1.9rem; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .hero-btn-primary, .hero-btn-ghost { width: 100%; justify-content: center; }
  .hero-mosaic { width: 280px; height: 310px; }
  .hm-img-a    { width: 160px; height: 120px; }
  .hm-img-b    { width: 115px; height: 190px; }
  .hm-img-c    { width: 105px; height: 90px; }
  .hm-img-d    { width: 105px; height: 85px; }
  .hvf-card-tl, .hvf-card-br { display: none; }
  .hvf-live-badge { bottom: 135px; }
}




.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px auto;
}

.section-header.left-aligned {
  text-align: left;
  margin-left: 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.section-title span {
  color: var(--color-orange);
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
  display: block;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--color-text-dim);
}

/* --- Stats Grid Section --- */
.stats-grid-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

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

.stat-card {
  background: var(--color-bg-card);
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: var(--transition-smooth);
}
.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-family: var(--font-title);
  font-size: 3rem;
  font-weight: 800;
  color: var(--color-navy);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

/* --- Service Cards & Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media(max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-orange);
}

.sc-icon {
  width: 60px;
  height: 60px;
  background: rgba(253, 72, 0, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-orange);
  margin-bottom: 24px;
  transition: var(--transition-fast);
}
.service-card:hover .sc-icon {
  background: var(--color-orange);
  color: #ffffff;
}

.sc-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.sc-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.sc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-navy);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition-fast);
}
.sc-link:hover {
  color: var(--color-orange);
}

/* --- Logo Marquee (Hiring partners strip) --- */
.logo-marquee-wrap {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  background: var(--color-bg-light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.logo-marquee-inner {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.logo-marquee-inner img {
  height: 40px;
  width: auto;
  margin: 0 40px;
  filter: grayscale(1) opacity(0.6);
  transition: var(--transition-fast);
}
.logo-marquee-inner img:hover {
  filter: grayscale(0) opacity(1);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Banner CTA section --- */
.banner-cta {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0c2b6f 100%);
  border-radius: 20px;
  padding: 60px;
  color: #ffffff;
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.banner-cta::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(253, 72, 0, 0.15) 0%, rgba(253, 72, 0, 0) 75%);
  top: -150px;
  right: -50px;
}

@media(max-width: 991px) {
  .banner-cta {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px;
  }
}

.bc-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.bc-desc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 650px;
}

.bc-action {
  display: flex;
  justify-content: flex-end;
}
@media(max-width: 991px) {
  .bc-action {
    justify-content: center;
  }
}

/* --- Page Hero Headers --- */
.inner-page-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #0d285a 100%);
  padding: 160px 0 100px 0;
  color: #ffffff;
  text-align: center;
}

.inner-page-hero h1 {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 16px;
}
.inner-page-hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin-top: 24px;
  font-size: 0.85rem;
  font-weight: 500;
}
.breadcrumbs a {
  color: var(--color-sky-blue);
  text-decoration: none;
}
.breadcrumbs li::after {
  content: '/';
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.4);
}
.breadcrumbs li:last-child::after {
  content: '';
}
.breadcrumbs li:last-child {
  color: rgba(255, 255, 255, 0.6);
}

/* --- Grid Lists --- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media(max-width: 768px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-light);
  display: flex;
  gap: 20px;
  transition: var(--transition-smooth);
}
.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-orange);
}

.bc-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(253, 72, 0, 0.08);
  color: var(--color-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.bc-body h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.bc-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* --- Timeline Workflow --- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}
@media(max-width: 768px) {
  .timeline::before {
    left: 30px;
  }
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 20px 40px;
  box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}
.timeline-item:nth-child(even) {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 25px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-orange);
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(253, 72, 0, 0.15);
  z-index: 10;
}
.timeline-item:nth-child(odd) .timeline-dot {
  right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
  left: -10px;
}

.timeline-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

@media(max-width: 768px) {
  .timeline-item {
    width: 100% !important;
    left: 0 !important;
    text-align: left !important;
    padding: 20px 20px 20px 60px;
  }
  .timeline-dot {
    left: 20px !important;
  }
}

/* --- Form Fields & Lead Capture UI --- */
.enquiry-form-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media(max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border-radius: 6px;
  border: 1px solid var(--border-navy);
  transition: var(--transition-fast);
  background: var(--color-bg-light);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-orange);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(253, 72, 0, 0.1);
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  display: none;
}
.form-message.success {
  background: #def7ec;
  color: #03543f;
  display: block;
}
.form-message.error {
  background: #fde8e8;
  color: #9b1c1c;
  display: block;
}

/* --- Testimonials Card Slider --- */
.testimonials-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media(max-width: 991px) {
  .testimonials-row {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 30px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.t-quote {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.t-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.t-meta h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.t-meta p {
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

.t-outcome {
  margin-top: 15px;
  background: rgba(0, 191, 166, 0.08);
  color: var(--color-teal);
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 700;
}

/* --- Drive Calendar Layout --- */
.calendar-filters {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
  flex-wrap: wrap;
}

.filter-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid var(--border-navy);
  background: #ffffff;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-btn.active, .filter-btn:hover {
  background: var(--color-navy);
  color: #ffffff;
  border-color: var(--color-navy);
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  text-align: left;
}

.calendar-table th {
  background: var(--color-bg-light);
  padding: 16px 20px;
  font-family: var(--font-title);
  font-weight: 700;
  color: var(--color-navy);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
}

.calendar-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

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

.badge-mode {
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge-online { background: #e0f2fe; color: #0369a1; }
.badge-offline { background: #fee2e2; color: #b91c1c; }
.badge-hybrid { background: #fef3c7; color: #d97706; }

/* --- Resources / Blog Library --- */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media(max-width: 991px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px) {
  .resources-grid {
    grid-template-columns: 1fr;
  }
}

.resource-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.resource-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-orange);
}

.rc-thumb {
  position: relative;
  height: 180px;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-family: var(--font-title);
  font-weight: 800;
  font-size: 1.5rem;
  text-align: center;
  padding: 20px;
}

.rc-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--color-orange);
  color: #ffffff;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}

.rc-body {
  padding: 24px;
}

.rc-category {
  font-size: 0.8rem;
  color: var(--color-sky-blue);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.rc-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.rc-desc {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.rc-action {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.rc-read-time {
  font-size: 0.75rem;
  color: var(--color-text-dim);
}

.rc-link {
  font-weight: 700;
  color: var(--color-navy);
  text-decoration: none;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rc-link:hover {
  color: var(--color-orange);
}

/* --- Assessment Platform Grid --- */
.assessment-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media(max-width: 991px) {
  .assessment-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 576px) {
  .assessment-features-grid {
    grid-template-columns: 1fr;
  }
}

.af-card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  transition: var(--transition-smooth);
}
.af-card:hover {
  border-color: var(--border-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.af-card-icon {
  font-size: 2rem;
  color: var(--color-orange);
  margin-bottom: 16px;
}

.af-card h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.af-card p {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* --- WHATSAPP FLOATING BUTTON --- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
  color: #ffffff;
}

.whatsapp-float-tooltip {
  position: absolute;
  right: 75px;
  background: #ffffff;
  color: var(--color-navy);
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(10px);
  transition: var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ── FOOTER & CTA ALIGNMENT FIXES ────────────────────── */

/* CTA Banner Alignment */
.bc-action {
  display: flex;
  justify-content: flex-end;
}

@media(max-width: 991px) {
  .bc-action {
    justify-content: center;
  }
  .bc-desc {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* Footer Grid columns override */
.footer-grid {
  display: grid !important;
  grid-template-columns: 1.5fr repeat(3, 1fr) !important;
  gap: 40px !important;
  margin-bottom: 48px !important;
}

@media(max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 40px !important;
  }
}

@media(max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* Brand column tagline custom constraints */
.footer-brand p {
  max-width: 290px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 0.85rem !important;
  line-height: 1.6 !important;
}

/* Mini Stats panel within brand column */
.footer-stats-mini {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px !important;
  margin-top: 24px !important;
  padding-top: 20px !important;
  border-top: 1px dashed rgba(255, 255, 255, 0.1) !important;
}

.footer-stat-item {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.footer-stat-num {
  font-family: var(--font-title) !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  color: var(--color-orange) !important;
  line-height: 1.1 !important;
}

.footer-stat-lbl {
  font-size: 0.65rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
}

/* Contact office details alignment styling */
.footer-contact-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
}

.footer-contact-list li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.82rem !important;
  line-height: 1.5 !important;
}

.footer-contact-list li svg {
  flex-shrink: 0 !important;
  margin-top: 3px !important;
  color: var(--color-orange) !important;
  width: 16px !important;
  height: 16px !important;
  transition: color 0.2s ease !important;
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 0.82rem !important;
  transition: color 0.2s ease !important;
}

.footer-contact-list li a:hover {
  color: var(--color-orange) !important;
  padding-left: 0 !important;
}

/* WhatsApp CTA Button in Contact Info */
.footer-whatsapp-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background-color: rgba(34, 197, 94, 0.15) !important;
  color: #22c55e !important;
  border: 1px solid rgba(34, 197, 94, 0.25) !important;
  padding: 10px 16px !important;
  border-radius: 6px !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  margin-top: 10px !important;
  transition: all 0.3s ease !important;
  width: fit-content !important;
}

.footer-whatsapp-btn:hover {
  background-color: #22c55e !important;
  color: #ffffff !important;
  border-color: #22c55e !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2) !important;
}

/* Homepage specific overlapping CTA banner and footer padding adjustments */
.home-page footer {
  padding-top: 170px !important; /* Extra padding to offset the overlapping CTA card and give breathing room */
  position: relative !important;
  z-index: 1 !important;
}

.home-page .banner-cta {
  margin-bottom: -90px !important; /* Pull the CTA card down over the footer */
  z-index: 5 !important;
  position: relative !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important; /* Premium border to separate from dark footer background */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45), 0 0 30px rgba(253, 72, 0, 0.12) !important; /* Dark drop shadow + orange glow */
}

@media(max-width: 991px) {
  .home-page footer {
    padding-top: 140px !important;
  }
  .home-page .banner-cta {
    margin-bottom: -70px !important;
  }
}


/* ============================================================
   PREMIUM STATS SECTION — Dark animated strip
   ============================================================ */
.pm-stats-section {
  position: relative;
  background: linear-gradient(135deg, #000c24 0%, #001648 50%, #051330 100%);
  padding: 80px 0;
  overflow: hidden;
}

/* Background orbs */
.pm-stats-bg-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.pm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: pmOrbPulse 8s ease-in-out infinite;
}
.pm-orb-1 { width: 500px; height: 500px; top: -200px; left: -100px; background: radial-gradient(circle, rgba(253,72,0,0.22) 0%, transparent 70%); }
.pm-orb-2 { width: 400px; height: 400px; bottom: -150px; right: -80px; background: radial-gradient(circle, rgba(56,176,255,0.15) 0%, transparent 70%); animation-delay: 3s; }
.pm-orb-3 { width: 300px; height: 300px; top: 30%; left: 50%; background: radial-gradient(circle, rgba(0,191,166,0.1) 0%, transparent 70%); animation-delay: 5s; }
@keyframes pmOrbPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.2); opacity: 1; }
}

/* Stats grid */
.pm-stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media(max-width: 991px) { .pm-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width: 480px) { .pm-stats-grid { grid-template-columns: 1fr; } }

/* Individual stat card */
.pm-stat-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}
.pm-stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.16);
}
.pm-stat-card[data-glow="orange"]:hover { box-shadow: 0 20px 50px rgba(253,72,0,0.25), 0 0 0 1px rgba(253,72,0,0.2); }
.pm-stat-card[data-glow="blue"]:hover   { box-shadow: 0 20px 50px rgba(56,176,255,0.25), 0 0 0 1px rgba(56,176,255,0.2); }
.pm-stat-card[data-glow="teal"]:hover   { box-shadow: 0 20px 50px rgba(0,191,166,0.25), 0 0 0 1px rgba(0,191,166,0.2); }
.pm-stat-card[data-glow="green"]:hover  { box-shadow: 0 20px 50px rgba(34,197,94,0.25), 0 0 0 1px rgba(34,197,94,0.2); }

/* Animated shine sweep */
.pm-stat-shine {
  position: absolute;
  top: 0; left: -120%;
  width: 80px; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left 0.6s ease;
}
.pm-stat-card:hover .pm-stat-shine { left: 140%; }

/* Icon bucket */
.pm-stat-icon {
  width: 58px; height: 58px; flex-shrink: 0;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(253,72,0,0.15);
  color: #fd4800;
  border: 1px solid rgba(253,72,0,0.2);
  transition: all 0.3s ease;
}
.pm-stat-card:hover .pm-stat-icon { background: rgba(253,72,0,0.25); transform: scale(1.08); }

.pm-icon-blue { background: rgba(56,176,255,0.12) !important; color: #38B0FF !important; border-color: rgba(56,176,255,0.2) !important; }
.pm-icon-teal { background: rgba(0,191,166,0.12) !important; color: #00BFA6 !important; border-color: rgba(0,191,166,0.2) !important; }
.pm-icon-green { background: rgba(34,197,94,0.12) !important; color: #22c55e !important; border-color: rgba(34,197,94,0.2) !important; }

.pm-stat-body { display: flex; flex-direction: column; gap: 4px; }
.pm-stat-number {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  letter-spacing: -1px;
}
.pm-stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* ============================================================
   PREMIUM SERVICES SECTION — Glass cards with glow
   ============================================================ */
.pm-services-section {
  background: #f7fafc;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.pm-services-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #fd4800, #38B0FF, #00BFA6, transparent);
}

/* Section header */
.pm-section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 70px;
}
.pm-section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #fd4800;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.pm-eyebrow-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fd4800;
  animation: pmDotPulse 2s ease-in-out infinite;
}
@keyframes pmDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.6); }
}
.pm-section-title {
  font-family: var(--font-title);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.pm-section-title span { color: #fd4800; }
.pm-section-desc {
  font-size: 1.05rem;
  color: var(--color-text-dim);
  line-height: 1.7;
}

/* Services grid */
.pm-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
@media(max-width: 991px) { .pm-services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }

/* Service card */
.pm-svc-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid rgba(0,22,72,0.06);
  box-shadow: 0 4px 24px rgba(0,22,72,0.04);
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}
.pm-svc-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(0,22,72,0.10);
}

/* Card inner decorative background sweep */
.pm-svc-card-bg {
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(253,72,0,0.03);
  transition: all 0.5s ease;
}
.pm-svc-card:hover .pm-svc-card-bg { transform: scale(2); }

/* Large background number */
.pm-svc-number {
  font-family: var(--font-title);
  font-size: 5rem;
  font-weight: 900;
  color: rgba(0,22,72,0.04);
  line-height: 1;
  position: absolute;
  top: 20px; right: 24px;
  letter-spacing: -3px;
  transition: color 0.3s ease;
}
.pm-svc-card:hover .pm-svc-number { color: rgba(253,72,0,0.06); }

/* Icon wrap */
.pm-svc-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.pm-svc-card:hover .pm-svc-icon-wrap { transform: scale(1.1) rotate(-4deg); }

.pm-svc-orange { background: rgba(253,72,0,0.08); color: #fd4800; border: 1px solid rgba(253,72,0,0.15); }
.pm-svc-card[data-card-accent="orange"]:hover .pm-svc-orange { background: #fd4800; color: #fff; border-color: #fd4800; }

.pm-svc-blue { background: rgba(56,176,255,0.08); color: #38B0FF; border: 1px solid rgba(56,176,255,0.15); }
.pm-svc-card[data-card-accent="blue"]:hover .pm-svc-blue { background: #38B0FF; color: #fff; border-color: #38B0FF; }

.pm-svc-teal { background: rgba(0,191,166,0.08); color: #00BFA6; border: 1px solid rgba(0,191,166,0.15); }
.pm-svc-card[data-card-accent="teal"]:hover .pm-svc-teal { background: #00BFA6; color: #fff; border-color: #00BFA6; }

/* Title & desc */
.pm-svc-title {
  font-family: var(--font-title);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.pm-svc-desc {
  font-size: 0.93rem;
  color: var(--color-text-dim);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}

/* Feature bullet list */
.pm-svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.pm-svc-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
}
.pm-tick {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 20px; height: 20px; flex-shrink: 0;
  border-radius: 6px;
  background: rgba(253,72,0,0.1);
  color: #fd4800;
  font-size: 0.7rem;
  font-weight: 800;
}
.pm-tick-blue  { background: rgba(56,176,255,0.1); color: #38B0FF; }
.pm-tick-teal  { background: rgba(0,191,166,0.1); color: #00BFA6; }

/* CTA link */
.pm-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 10px;
  border: 2px solid;
  transition: all 0.3s ease;
  position: relative; z-index: 1;
  align-self: flex-start;
  margin-top: auto;
}
.pm-svc-link-orange { color: #fd4800; border-color: rgba(253,72,0,0.2); background: rgba(253,72,0,0.04); }
.pm-svc-link-orange:hover { background: #fd4800; color: #fff; border-color: #fd4800; transform: translateX(4px); }
.pm-svc-link-blue   { color: #38B0FF; border-color: rgba(56,176,255,0.2); background: rgba(56,176,255,0.04); }
.pm-svc-link-blue:hover { background: #38B0FF; color: #fff; border-color: #38B0FF; transform: translateX(4px); }
.pm-svc-link-teal   { color: #00BFA6; border-color: rgba(0,191,166,0.2); background: rgba(0,191,166,0.04); }
.pm-svc-link-teal:hover { background: #00BFA6; color: #fff; border-color: #00BFA6; transform: translateX(4px); }

/* Bottom glow overlays */
.pm-svc-glow {
  position: absolute;
  bottom: -60px; left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 120px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0;
  transition: opacity 0.5s ease, bottom 0.5s ease;
  pointer-events: none;
}
.pm-svc-card:hover .pm-svc-glow { opacity: 0.7; bottom: -20px; }
.pm-svc-glow-orange { background: rgba(253,72,0,0.25); }
.pm-svc-glow-blue   { background: rgba(56,176,255,0.25); }
.pm-svc-glow-teal   { background: rgba(0,191,166,0.25); }

/* Featured card — center elevated */
.pm-svc-card-featured {
  background: linear-gradient(160deg, #001648 0%, #0c2b6f 100%);
  border-color: rgba(56,176,255,0.2);
  transform: scale(1.04);
  box-shadow: 0 20px 60px rgba(0,22,72,0.25);
}
.pm-svc-card-featured:hover {
  transform: scale(1.04) translateY(-10px);
  box-shadow: 0 30px 80px rgba(56,176,255,0.3);
}
.pm-svc-card-featured .pm-svc-number { color: rgba(255,255,255,0.06); }
.pm-svc-card-featured .pm-svc-title  { color: #ffffff; }
.pm-svc-card-featured .pm-svc-desc   { color: rgba(255,255,255,0.65); }
.pm-svc-card-featured .pm-svc-features li { color: rgba(255,255,255,0.7); }
.pm-svc-card-featured .pm-svc-card-bg { background: rgba(56,176,255,0.08); }

/* Featured badge */
.pm-svc-featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(56,176,255,0.15);
  color: #38B0FF;
  border: 1px solid rgba(56,176,255,0.25);
  border-radius: 30px;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 12px;
  margin-bottom: 20px;
  width: fit-content;
  position: relative; z-index: 1;
  letter-spacing: 0.5px;
}

@media(max-width: 991px) {
  .pm-svc-card-featured { transform: scale(1); }
  .pm-svc-card-featured:hover { transform: translateY(-10px); }
  .pm-section-title { font-size: 2rem; }
}
@media(max-width: 576px) {
  .pm-stats-section { padding: 60px 0; }
  .pm-stat-card { padding: 24px 20px; gap: 14px; }
  .pm-stat-number { font-size: 2rem; }
  .pm-services-section { padding: 70px 0; }
  .pm-svc-card { padding: 32px 26px; }
  .pm-section-title { font-size: 1.75rem; }
}
