/* ==========================================================================
   PRIME MANPOWER SOLUTION (PMS) - ULTRA-PREMIUM CORPORATE DESIGN SYSTEM
   ========================================================================== */

:root {
  /* Brand Signature Colors */
  --prime-orange: #F58220;
  --prime-orange-hover: #D9680A;
  --prime-blue: #0072BC;
  --prime-blue-hover: #005691;
  --navy-deep: #1D3557;
  --navy-dark: #0F1D30;
  --bg-light: #F8FAFC;
  --bg-subtle: #F1F5F9;
  --corporate-grey: #64748B;
  --charcoal-dark: #0F172A;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --white: #FFFFFF;
  --border-light: #E2E8F0;
  
  /* Gradients */
  --grad-orange: linear-gradient(135deg, #F58220 0%, #D9680A 100%);
  --grad-blue: linear-gradient(135deg, #0072BC 0%, #005691 100%);
  --grad-navy: linear-gradient(135deg, #1D3557 0%, #0F1D30 100%);
  --grad-hero: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 60%, #EEF6FF 100%);
  
  /* Refined Shadows */
  --shadow-xs: 0 1px 3px rgba(15, 29, 48, 0.05);
  --shadow-sm: 0 4px 12px rgba(15, 29, 48, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 29, 48, 0.09);
  --shadow-lg: 0 18px 45px rgba(15, 29, 48, 0.12);
  --shadow-orange: 0 6px 20px rgba(245, 130, 32, 0.32);
  --shadow-blue: 0 6px 20px rgba(0, 114, 188, 0.28);
}

/* BASE RESETS & TYPOGRAPHY */
* { margin:0; padding:0; box-sizing:border-box; }
html { 
  scroll-behavior: smooth; 
  scroll-padding-top: 90px;
}
section, [id] {
  scroll-margin-top: 90px;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text-dark);
  background: #FFFFFF;
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-font {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--navy-deep);
  letter-spacing: -0.02em;
}

a {
  color: var(--prime-blue);
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
a:hover { color: var(--prime-orange); }

/* AOS SAFETY VISIBILITY FALLBACK */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

/* SCROLLBAR */
::-webkit-scrollbar { width:8px; }
::-webkit-scrollbar-track { background: #F1F5F9; }
::-webkit-scrollbar-thumb { background: var(--prime-blue); border-radius:4px; }
::-webkit-scrollbar-thumb:hover { background: var(--prime-orange); }

/* TOP BAR (PREMIUM CORPORATE STRIP) */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.top-bar a { color: rgba(255,255,255,0.9); text-decoration: none; font-weight: 600; }
.top-bar a:hover { color: var(--prime-orange); }
.top-bar-item { display: inline-flex; align-items: center; gap: 7px; }
.top-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.top-badge-orange {
  background: var(--grad-orange);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}

/* NAVBAR (SLEEK, UNWRAPPED, HIGH-END) */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
}
#navbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(15, 29, 48, 0.08);
  background: rgba(255, 255, 255, 0.98);
}

/* NAVBAR MOVABLE LIGHT TRACK & FLOWING LASER BEAM */
.nav-bottom-light-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: linear-gradient(90deg, rgba(0, 114, 188, 0.1) 0%, rgba(245, 130, 32, 0.15) 50%, rgba(0, 114, 188, 0.1) 100%);
  overflow: hidden;
  pointer-events: none;
  z-index: 10;
}
.nav-light-glow-runner {
  position: absolute;
  top: 0;
  left: -20%;
  width: 25%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, var(--prime-blue) 35%, #FFFFFF 50%, var(--prime-orange) 65%, transparent 100%);
  box-shadow: 0 0 12px var(--prime-blue), 0 0 22px var(--prime-orange);
  animation: navLightRun 3.8s infinite linear;
}
.nav-light-sparkle-trail {
  position: absolute;
  top: -3px;
  left: -10%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 10px #FFFFFF, 0 0 20px var(--prime-orange), 0 0 35px var(--prime-blue);
  animation: navSparkleRun 3.8s infinite linear;
}
@keyframes navLightRun {
  0% { left: -25%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 105%; opacity: 0; }
}
@keyframes navSparkleRun {
  0% { left: -15%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 115%; opacity: 0; }
}

.header-logo {
  height: 52px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.header-logo:hover { transform: scale(1.02); }

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: var(--navy-deep) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 10px 18px !important;
  white-space: nowrap !important;
  position: relative;
  transition: color 0.25s ease;
}
.nav-link::after {
  content: ''; position: absolute; bottom: 2px; left: 18px; right: 18px;
  height: 2.5px; background: var(--prime-orange);
  transform: scaleX(0); transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 2px;
}
.nav-link:hover, .nav-link.active { color: var(--prime-blue) !important; }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

/* HEADER CTA BUTTONS (SLIM, ELEGANT, UNWRAPPED) */
.header-cta-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.btn-nav-talent {
  background: var(--grad-blue);
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 9px 16px;
  border-radius: 7px;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  box-shadow: var(--shadow-blue);
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-nav-talent:hover {
  background: linear-gradient(135deg, #005FA0 0%, #004573 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 114, 188, 0.4);
  color: #FFFFFF !important;
}

.btn-nav-job {
  background: var(--grad-orange);
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 9px 16px;
  border-radius: 7px;
  white-space: nowrap !important;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  box-shadow: var(--shadow-orange);
  transition: all 0.25s ease;
  border: 1px solid transparent;
}
.btn-nav-job:hover {
  background: linear-gradient(135deg, #E06D0C 0%, #B85300 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(245, 130, 32, 0.45);
  color: #FFFFFF !important;
}

/* ==========================================================================
   UNIVERSAL NOTCH CORNER BUTTON ARCHITECTURE (EXACT REFERENCE DESIGN)
   ========================================================================== */
.btn-prime-orange,
.btn-prime-blue,
.btn-outline-navy,
.btn-hero-solid,
.btn-hero-outline,
.btn-notch-solid,
.btn-notch-outline,
button[type="submit"].btn-prime-orange {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 4px;
  padding: 13px 26px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: visible;
  white-space: nowrap;
  cursor: pointer;
}

/* Corner Notch Top-Left (Sapphire Blue) */
.btn-prime-orange::before,
.btn-prime-blue::before,
.btn-hero-solid::before,
.btn-notch-solid::before,
button[type="submit"].btn-prime-orange::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 14px;
  height: 14px;
  border-top: 2.5px solid var(--prime-blue);
  border-left: 2.5px solid var(--prime-blue);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: notchPulseTop 3s infinite ease-in-out;
  border-radius: 2px 0 0 0;
}

/* Corner Notch Bottom-Right (Sunrise Orange) */
.btn-prime-orange::after,
.btn-prime-blue::after,
.btn-hero-solid::after,
.btn-notch-solid::after,
button[type="submit"].btn-prime-orange::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-bottom: 2.5px solid var(--prime-orange);
  border-right: 2.5px solid var(--prime-orange);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: notchPulseBottom 3s infinite ease-in-out;
  border-radius: 0 0 2px 0;
}

/* Outline Buttons Variant (Top-Left Orange, Bottom-Right Blue) */
.btn-outline-navy::before,
.btn-hero-outline::before,
.btn-notch-outline::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 14px;
  height: 14px;
  border-top: 2.5px solid var(--prime-orange);
  border-left: 2.5px solid var(--prime-orange);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: notchPulseTop 3s infinite ease-in-out;
  border-radius: 2px 0 0 0;
}
.btn-outline-navy::after,
.btn-hero-outline::after,
.btn-notch-outline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-bottom: 2.5px solid var(--prime-blue);
  border-right: 2.5px solid var(--prime-blue);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: notchPulseBottom 3s infinite ease-in-out;
  border-radius: 0 0 2px 0;
}

/* Hover Full-Perimeter Outer Frame Expansion on All Buttons */
.btn-prime-orange:hover::before,
.btn-prime-blue:hover::before,
.btn-outline-navy:hover::before,
.btn-hero-solid:hover::before,
.btn-hero-outline:hover::before,
.btn-notch-solid:hover::before,
.btn-notch-outline:hover::before,
button[type="submit"].btn-prime-orange:hover::before {
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 114, 188, 0.4);
}
.btn-prime-orange:hover::after,
.btn-prime-blue:hover::after,
.btn-outline-navy:hover::after,
.btn-hero-solid:hover::after,
.btn-hero-outline:hover::after,
.btn-notch-solid:hover::after,
.btn-notch-outline:hover::after,
button[type="submit"].btn-prime-orange:hover::after {
  bottom: -6px;
  right: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(245, 130, 32, 0.4);
}

/* SOLID DARK BUTTON (EXACT REFERENCE) */
.btn-prime-orange,
.btn-hero-solid,
.btn-notch-solid,
button[type="submit"].btn-prime-orange {
  background: #0F1D30;
  color: #FFFFFF !important;
  border: 1.5px solid #0F1D30;
  box-shadow: 0 6px 18px rgba(15, 29, 48, 0.2);
}
.btn-prime-orange:hover,
.btn-hero-solid:hover,
.btn-notch-solid:hover,
button[type="submit"].btn-prime-orange:hover {
  background: var(--prime-blue);
  border-color: var(--prime-blue);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 114, 188, 0.35);
}

/* SOLID BLUE BUTTON */
.btn-prime-blue {
  background: #0F1D30;
  color: #FFFFFF !important;
  border: 1.5px solid #0F1D30;
  box-shadow: 0 6px 18px rgba(15, 29, 48, 0.2);
}
.btn-prime-blue:hover {
  background: var(--prime-orange);
  border-color: var(--prime-orange);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 130, 32, 0.35);
}

/* OUTLINE BUTTON (EXACT REFERENCE) */
.btn-outline-navy,
.btn-hero-outline,
.btn-notch-outline {
  background: transparent;
  color: #0F1D30 !important;
  border: 2px solid #0F1D30;
}
.btn-outline-navy:hover,
.btn-hero-outline:hover,
.btn-notch-outline:hover {
  background: var(--prime-orange);
  border-color: var(--prime-orange);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 130, 32, 0.35);
}

/* HERO SECTION (ULTRA-PREMIUM LOOK) */
.hero-pms {
  background: var(--grad-hero);
  padding: 135px 0 65px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.hero-pms::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 114, 188, 0.07) 0%, rgba(245, 130, 32, 0.03) 50%, transparent 70%);
  pointer-events: none;
}
/* ULTRA-INNOVATIVE MULTI-LAYERED CURVED HERO SLIDER IN PMS BRAND COLORS */
.curved-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: transparent;
  border: none !important;
  border-bottom: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.curved-hero-section .swiper,
.curved-hero-section .mySwiper {
  width: 100%;
  height: 100%;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-bottom: none !important;
}

.hero-curved-slide {
  position: relative;
  width: 100%;
  min-height: 560px;
  height: 78vh;
  max-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border: none !important;
  border-bottom: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  z-index: 1;
  transform: scale(1.05);
  transition: transform 7s ease-out;
}
.swiper-slide-active .hero-bg-img {
  transform: scale(1);
}
.hero-backdrop-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 40%, rgba(15, 29, 48, 0.2) 100%);
  z-index: 1;
}

/* LAYER 1: SECONDARY FROSTED GLASS TRANSLUCENT ACCENT WING */
.hero-curve-wing {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 0;
  height: calc(100% + 8px);
  width: 61.5%;
  background: rgba(0, 114, 188, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 2;
  border-radius: 0 530px 530px 0 / 0 100% 100% 0;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  border-top: none;
  border-bottom: none;
  border-left: none;
}

/* LAYER 2: GLOWING GRADIENT NEON STROKE RIBBON WITH STREAMING LIGHT */
.hero-curve-gradient-rim {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: 0;
  height: calc(100% + 8px);
  width: 58.8%;
  background: linear-gradient(180deg, var(--prime-orange) 0%, #FFFFFF 25%, var(--prime-blue) 50%, var(--prime-orange) 75%, #FFFFFF 100%);
  background-size: 100% 300%;
  animation: streamGradientLight 4s linear infinite;
  z-index: 2;
  border-radius: 0 500px 500px 0 / 0 100% 100% 0;
  filter: drop-shadow(0 0 20px rgba(0, 114, 188, 0.6));
  border-top: none;
  border-bottom: none;
  border-left: none;
}
@keyframes streamGradientLight {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% 300%; }
}

/* MOVABLE GLOWING LIGHT FLARE TRAVELING ALONG THE CURVE CONTOUR */
.curve-light-runner-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 4;
  overflow: hidden;
}
.curve-light-flare {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0 0 15px #FFFFFF, 0 0 30px var(--prime-orange), 0 0 60px var(--prime-blue);
  animation: moveAlongCurve 5s infinite cubic-bezier(0.45, 0.05, 0.55, 0.95);
  opacity: 0.95;
  filter: blur(1px);
}
.curve-light-flare.secondary {
  width: 12px;
  height: 12px;
  animation-delay: 2.5s;
  box-shadow: 0 0 12px #FFFFFF, 0 0 25px var(--prime-blue), 0 0 50px var(--prime-orange);
}

@keyframes moveAlongCurve {
  0% {
    top: 2%;
    left: 36%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
  }
  15% {
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  35% {
    top: 32%;
    left: 57.5%;
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  50% {
    top: 50%;
    left: 58.6%;
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 1;
    box-shadow: 0 0 25px #FFFFFF, 0 0 45px var(--prime-orange), 0 0 85px var(--prime-blue);
  }
  65% {
    top: 68%;
    left: 57.2%;
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 1;
  }
  85% {
    top: 88%;
    left: 49%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    top: 98%;
    left: 36%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
  }
}

/* LAYER 3: MAIN WHITE CURVED CRESCENT PANEL */
.hero-curved-panel {
  position: absolute;
  top: -4px;
  bottom: -4px;
  left: -4px;
  height: calc(100% + 8px);
  width: 58.2%;
  background: #FFFFFF;
  z-index: 3;
  display: flex;
  align-items: center;
  border-radius: 0 490px 490px 0 / 0 100% 100% 0;
  box-shadow: 25px 0 60px rgba(15, 29, 48, 0.18);
  padding: 40px 100px 40px 60px;
  border: none !important;
}

.hero-curved-content {
  max-width: 550px;
  text-align: left;
}

.hero-tag-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 114, 188, 0.07);
  border: 1px solid rgba(0, 114, 188, 0.2);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 16px;
}
.hero-tag-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--prime-blue);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0;
}

.hero-curved-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 3.4vw, 48px);
  font-weight: 900;
  color: #0F1D30;
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-curved-title .text-orange {
  color: var(--prime-orange) !important;
}

.hero-curved-para {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 480px;
}

/* BUTTONS WITH CORNER NOTCHES */
.hero-buttons-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ANIMATED OUTER RECTANGLE NOTCH BRACKETS */
.notch-btn-wrap {
  position: relative;
  display: inline-block;
}

.notch-btn-wrap::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 14px;
  height: 14px;
  border-top: 2.5px solid var(--prime-blue);
  border-left: 2.5px solid var(--prime-blue);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: notchPulseTop 3s infinite ease-in-out;
}

.notch-btn-wrap::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  border-bottom: 2.5px solid var(--prime-orange);
  border-right: 2.5px solid var(--prime-orange);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: notchPulseBottom 3s infinite ease-in-out;
}

/* Orange Variant */
.notch-btn-wrap.notch-orange::before {
  border-color: var(--prime-orange);
}
.notch-btn-wrap.notch-orange::after {
  border-color: var(--prime-blue);
}

/* Hover Expansion Animation into Full Radiant Outer Rectangle Frame */
.notch-btn-wrap:hover::before {
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(0, 114, 188, 0.4);
}
.notch-btn-wrap:hover::after {
  bottom: -6px;
  right: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 6px;
  box-shadow: 0 0 15px rgba(245, 130, 32, 0.4);
}

@keyframes notchPulseTop {
  0%, 100% {
    top: -4px;
    left: -4px;
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    top: -7px;
    left: -7px;
    filter: drop-shadow(0 0 8px rgba(0, 114, 188, 0.8));
  }
}

@keyframes notchPulseBottom {
  0%, 100% {
    bottom: -4px;
    right: -4px;
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    bottom: -7px;
    right: -7px;
    filter: drop-shadow(0 0 8px rgba(245, 130, 32, 0.8));
  }
}

.btn-hero-solid {
  display: inline-block;
  background: #0F1D30;
  color: #FFFFFF !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1.5px solid #0F1D30;
}
.btn-hero-solid:hover {
  background: var(--prime-blue);
  border-color: var(--prime-blue);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 114, 188, 0.35);
}

.btn-hero-outline {
  display: inline-block;
  background: transparent;
  color: #0F1D30 !important;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid #0F1D30;
}
.btn-hero-outline:hover {
  background: var(--prime-orange);
  border-color: var(--prime-orange);
  color: #FFFFFF !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(245, 130, 32, 0.35);
}

/* CURVE-ANCHORED FLOATING STAT BADGE */
.curve-floating-stat {
  position: absolute;
  right: 25px;
  bottom: 80px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  padding: 10px 18px;
  border-radius: 40px;
  border: 1.5px solid rgba(0, 114, 188, 0.25);
  box-shadow: 0 14px 35px rgba(15, 29, 48, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 6;
  animation: floatCard 4s infinite ease-in-out;
}
.stat-icon-glow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 114, 188, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.stat-val {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: #0F1D30;
  line-height: 1.1;
}
.stat-lbl {
  font-size: 10px;
  color: #64748B;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* SWIPER BULLETS PAGINATION (FLOATING GLASS PILL OVER SLIDE) */
.curved-hero-section .swiper-pagination {
  bottom: 24px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(15, 29, 48, 0.45);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.curved-hero-section .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background: rgba(255, 255, 255, 0.7);
  opacity: 0.85;
  margin: 0 !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.curved-hero-section .swiper-pagination-bullet-active {
  background: var(--prime-orange);
  width: 26px;
  border-radius: 8px;
  opacity: 1;
  box-shadow: 0 0 10px rgba(245, 130, 32, 0.6);
}

@media (max-width: 1199px) {
  .hero-curved-panel {
    width: 65%;
    padding: 30px 60px 30px 40px;
  }
  .hero-curve-wing { width: 68.5%; }
  .hero-curve-gradient-rim { width: 65.8%; }
  .curve-floating-stat { display: none; }
}
@media (max-width: 991px) {
  .hero-curved-slide {
    height: auto;
    min-height: 480px;
    padding: 60px 0;
  }
  .hero-curve-wing,
  .hero-curve-gradient-rim { display: none; }
  .hero-curved-panel {
    position: relative;
    width: 100%;
    border-radius: 18px;
    border-right: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    padding: 35px 25px;
    margin: 0 15px;
  }
  .hero-curved-title {
    font-size: 32px;
  }
}
/* LIONS-STYLE HERO BANNER SECTION (PMS COLOR THEME) */
.banner-section {
  position: relative;
  background: linear-gradient(180deg, #F8FAFC 0%, #FFFFFF 60%, #F1F6FC 100%);
  padding: 60px 0 40px;
  overflow: hidden;
}

.hero-mesh-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(90px);
  z-index: 1;
}
.hero-glow-blue {
  width: 650px;
  height: 650px;
  top: -150px;
  left: -150px;
  background: radial-gradient(circle, rgba(0, 114, 188, 0.12) 0%, transparent 70%);
}
.hero-glow-orange {
  width: 650px;
  height: 650px;
  top: 50px;
  right: -150px;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.1) 0%, transparent 70%);
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#CBD5E1 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.35;
  pointer-events: none;
  z-index: 1;
}

/* SWIPER BANNER SLIDER */
.mySwiper {
  position: relative;
  z-index: 2;
  padding-bottom: 0 !important;
}

.bannerTextContainer {
  padding-right: 15px;
}
.bannerTextContainer .subHeading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--prime-orange);
  background: rgba(245, 130, 32, 0.1);
  border: 1px solid rgba(245, 130, 32, 0.3);
  padding: 7px 18px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.slideHeading {
  font-size: clamp(30px, 3.6vw, 48px);
  font-weight: 900;
  color: var(--navy-deep);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.highlight-heading-part {
  background: linear-gradient(135deg, #0072BC 0%, #0099FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}
.slidePara {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 530px;
}
.btnContainer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

/* BANNER IMAGE CONTAINER */
.bannerImgContainer {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 29, 48, 0.16);
  border: 5px solid #FFFFFF;
  background: #FFFFFF;
  max-width: 520px;
  margin-left: auto;
}
.img-glow-backdrop {
  position: absolute;
  inset: -15px;
  border-radius: 35px;
  background: radial-gradient(circle, rgba(0, 114, 188, 0.2) 0%, rgba(245, 130, 32, 0.2) 60%, transparent 80%);
  filter: blur(40px);
  z-index: 1;
}
.bannerImgContainer img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.bannerImgContainer:hover img { transform: scale(1.03); }

.banner-floating-tag {
  position: absolute;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  padding: 10px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 12px 30px rgba(15, 29, 48, 0.12);
  animation: floatCard 4s infinite ease-in-out;
}
.banner-floating-tag.tag-left {
  top: 25px;
  left: 20px;
}
.banner-floating-tag.tag-right {
  bottom: 25px;
  right: 20px;
  animation-delay: 2s;
}
.tag-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(0, 114, 188, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.tag-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1.2;
}
.tag-sub {
  font-size: 10.5px;
  color: var(--text-muted);
  font-weight: 500;
}

/* SWIPER CONTROLS */
.mySwiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #CBD5E1;
  opacity: 1;
  transition: all 0.3s ease;
}
.mySwiper .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 6px;
  background: var(--prime-orange) !important;
}
.mySwiper .swiper-button-prev,
.mySwiper .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--navy-deep);
  box-shadow: 0 8px 24px rgba(15, 29, 48, 0.12);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}
.mySwiper .swiper-button-prev::after,
.mySwiper .swiper-button-next::after {
  font-size: 16px;
  font-weight: 900;
}
.mySwiper .swiper-button-prev:hover,
.mySwiper .swiper-button-next:hover {
  background: var(--prime-blue);
  color: #FFFFFF;
  border-color: var(--prime-blue);
}

/* LIONS-STYLE PROJECT FACTS / STATS STRIP */
.project-facts-section {
  padding: 10px 0 45px;
  background: #FFFFFF;
  position: relative;
  z-index: 5;
}
.project-facts-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px 20px;
  box-shadow: 0 15px 40px rgba(15, 29, 48, 0.07);
  border: 1px solid var(--border-light);
}
.fact-item {
  text-align: center;
  padding: 0 15px;
  border-right: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}
.fact-item:hover { transform: translateY(-3px); }
.fact-item:last-child { border-right: none; }
.fact-icon-box {
  font-size: 26px;
  margin-bottom: 8px;
}
.fact-num-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 900;
  color: var(--navy-deep);
  line-height: 1;
}
.fact-plus {
  font-size: 24px;
  font-weight: 800;
  color: var(--prime-orange);
  margin-left: 2px;
}
.fact-divider {
  width: 22px;
  height: 3px;
  background: var(--prime-orange);
  margin: 8px auto;
  border-radius: 2px;
}
.fact-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .project-facts-wrap { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .fact-item:nth-child(2) { border-right: none; }
  .fact-item:nth-child(1), .fact-item:nth-child(2) { border-bottom: 1px solid var(--border-light); padding-bottom: 20px; }
}
@media (max-width: 576px) {
  .project-facts-wrap { grid-template-columns: 1fr; }
  .fact-item { border-right: none !important; border-bottom: 1px solid var(--border-light); padding-bottom: 18px; margin-bottom: 10px; }
  .fact-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
  .bannerImgContainer { margin-top: 25px; }
}

/* LIVE WORKFORCE METRIC TICKER */
.innovative-ticker-wrap {
  width: 100%;
  overflow: hidden;
  background: #08111E;
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 10;
}
.innovative-ticker {
  display: flex;
  width: max-content;
  animation: tickerSlide 35s linear infinite;
  gap: 36px;
  align-items: center;
}
.innovative-ticker-wrap:hover .innovative-ticker {
  animation-play-state: paused;
}
@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E2E8F0;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.ticker-item strong { color: #FFFFFF; font-weight: 700; }
.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ticker-dot.green { background: #10B981; box-shadow: 0 0 8px #10B981; }
.ticker-dot.orange { background: #F58220; box-shadow: 0 0 8px #F58220; }
.ticker-dot.blue { background: #0072BC; box-shadow: 0 0 8px #0099FF; }

/* QUICK SERVICES ICONS ROW */
.quick-services-strip {
  background: #FFFFFF;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
}
.quick-service-col {
  text-align: center;
  padding: 16px 10px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.quick-service-col:hover {
  background: var(--bg-light);
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

/* INNOVATIVE WORKFORCE ESTIMATOR & CALCULATOR */
.innovative-estimator-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #FFFFFF 100%);
  position: relative;
}
.estimator-glass-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px 36px;
  box-shadow: 0 20px 50px rgba(15, 29, 48, 0.08);
  border: 1px solid rgba(0, 114, 188, 0.15);
  position: relative;
  overflow: hidden;
}
.estimator-glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0072BC 0%, #F58220 100%);
}
.estimator-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 114, 188, 0.08);
  color: var(--prime-blue);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.estimator-title {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-deep);
  margin-bottom: 12px;
  line-height: 1.25;
}
.estimator-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.estimator-feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.estimator-feature-pills .pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy-deep);
}

.estimator-calculator-box {
  background: var(--bg-light);
  border-radius: 18px;
  padding: 26px 24px;
  border: 1px solid var(--border-light);
}
.calc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.calc-select {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  border: 1.5px solid #CBD5E1;
  color: var(--navy-deep);
  background-color: #FFFFFF;
}
.calc-select:focus {
  border-color: var(--prime-blue);
  box-shadow: 0 0 0 3px rgba(0, 114, 188, 0.15);
}

.calc-result-display {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 16px 14px;
  border: 1px solid rgba(0, 114, 188, 0.2);
  box-shadow: 0 4px 15px rgba(15, 29, 48, 0.04);
  margin-top: 6px;
}
.border-end-custom {
  border-right: 1px solid var(--border-light);
}
@media (max-width: 576px) {
  .border-end-custom { border-right: none; border-bottom: 1px solid var(--border-light); padding-bottom: 10px; }
}
.res-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.res-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: var(--navy-deep);
}
.quick-service-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 12px;
  border-radius: 16px;
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  color: var(--prime-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}
.quick-service-col:hover .quick-service-icon {
  background: var(--grad-blue);
  color: #FFFFFF;
  border-color: var(--prime-blue);
  box-shadow: var(--shadow-blue);
}
.quick-service-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy-deep);
  line-height: 1.35;
}

/* SECTION HEADERS */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--prime-orange);
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag::before {
  content: ''; width: 22px; height: 3px; background: var(--prime-orange); border-radius: 2px;
}
.section-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy-deep);
  margin-bottom: 14px;
}
.section-title span { color: var(--prime-blue); }
.section-subtitle {
  font-size: 15.5px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 620px;
}

/* ABOUT SECTION (EXACT REFERENCE DESIGN - CREATIVE STYLIZED CUTOUT & TYPOGRAPHY) */
.about-section {
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* LEFT CREATIVE GEOMETRIC FRAME & CUTOUT */
.about-creative-frame {
  position: relative;
  max-width: 460px;
  min-height: 470px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creative-border-line {
  position: absolute;
  width: 82%;
  height: 86%;
  top: 30px;
  left: 5px;
  border: 3.5px solid #003054;
  border-radius: 4px;
  z-index: 1;
  pointer-events: none;
}

.creative-navy-backdrop {
  position: absolute;
  right: 5px;
  top: 45px;
  width: 58%;
  height: 80%;
  background: #003054;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 45% 0);
  z-index: 1;
  border-radius: 4px;
}

/* DECORATIVE SQUARE CLUSTERS */
.decor-squares-cluster {
  position: absolute;
  width: 80px;
  height: 80px;
  pointer-events: none;
}
.cluster-tr {
  top: 15px;
  right: 5px;
  z-index: 2;
}
.cluster-bl {
  bottom: 25px;
  left: -15px;
  z-index: 2;
}

.decor-sq {
  display: block;
  position: absolute;
}
.sq-gold-1 {
  width: 52px;
  height: 52px;
  border: 2px solid #F58220;
  background: rgba(245, 130, 32, 0.35);
  top: 0;
  left: 0;
}
.sq-gold-2 {
  width: 32px;
  height: 32px;
  background: #F58220;
  top: 28px;
  left: 28px;
}
.sq-blue-1 {
  width: 44px;
  height: 44px;
  background: rgba(0, 114, 188, 0.45);
  top: -15px;
  left: 18px;
}
.sq-blue-2 {
  width: 28px;
  height: 28px;
  border: 2px solid #0072BC;
  top: 40px;
  left: -12px;
}

.creative-image-box {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 410px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 48, 84, 0.18);
  border: 4px solid #FFFFFF;
  margin: 0 auto;
}
.about-character-img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.creative-image-box:hover .about-character-img {
  transform: scale(1.03);
}
.about-img-trust-pill {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 29, 48, 0.92);
  backdrop-filter: blur(10px);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  display: inline-flex;
  align-items: center;
  z-index: 4;
}

/* RIGHT ABOUT TYPOGRAPHY & KEY POINT MATRIX */
.aboutUsInfo {
  padding-left: 10px;
}
.about-subtag {
  font-size: 13.5px;
  color: var(--prime-blue);
  font-weight: 700;
  margin-bottom: 8px;
  display: inline-block;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.services-h3 {
  font-size: clamp(28px, 3.2vw, 38px) !important;
  color: #003054 !important;
  font-weight: 800 !important;
  font-family: 'Montserrat', sans-serif !important;
  line-height: 1.22;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.about-para {
  font-size: 14.5px;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 20px;
}

/* EQUALIZED KEY POINT QUADRANT CARDS */
.key-point-quadrant {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.key-point-quadrant:hover {
  background: #FFFFFF;
  border-color: var(--prime-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 114, 188, 0.08);
}
.key-point-quadrant .trophy-icon-box {
  font-size: 28px;
}
.key-point-quadrant .year {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #003054;
  line-height: 1.1;
  display: block;
}
.key-point-quadrant .key-point-lbl {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748B;
  line-height: 1.2;
}

/* SOLID SLIDING BUTTON */
.slider-btn.solid {
  display: inline-block;
  font-size: 12.5px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0.05em;
  overflow: hidden;
  position: relative;
  padding: 14px 30px;
  background: #003054;
  border: 1.5px solid #003054;
  border-radius: 4px;
  cursor: pointer;
  color: #FFFFFF !important;
  text-decoration: none;
  margin-top: 10px;
  transition: all 0.3s ease;
}
.slider-btn.solid a {
  color: #FFFFFF !important;
  text-decoration: none;
  position: relative;
  left: 0;
  transition: all 0.4s ease;
  display: inline-block;
}
.slider-btn.solid .dub-arrow {
  width: 100%;
  height: 100%;
  left: -100%;
  position: absolute;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F58220;
  color: #FFFFFF;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-btn.solid:hover {
  border-color: #F58220;
  box-shadow: var(--shadow-orange);
}
.slider-btn.solid:hover .dub-arrow {
  left: 0;
}
.slider-btn.solid:hover a {
  transform: translateX(160px);
  opacity: 0;
}

@media (max-width: 991px) {
  .about-floating-badge.badge-top-left { left: 0; top: 10px; }
  .about-floating-card { right: 0; bottom: 10px; }
}
@media (max-width: 576px) {
  .about-floating-badge.badge-top-left { position: static; margin-bottom: 12px; width: fit-content; }
  .about-floating-card { position: static; margin-top: 12px; }
}

/* SERVICES & EXPERTISE CARDS (LDS-STYLE SHUTTER WIPE & HOVER DYNAMICS) */
.services-section { background: var(--bg-light); padding: 100px 0; position: relative; overflow: hidden; }
.service-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 34px 28px;
  height: 100%;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

/* LDS Guarding Iconic Shutter Wipe Animation */
.service-card::after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 114, 188, 0.96) 0%, rgba(15, 29, 48, 0.98) 100%);
  position: absolute;
  left: 0;
  top: -100%;
  z-index: -1;
  transition: 0.45s cubic-bezier(.77, -.04, 0, .99);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 114, 188, 0.2);
  border-color: transparent;
}
.service-card:hover::after {
  top: 0;
}
.service-card:hover h5,
.service-card:hover h5 a,
.service-card:hover p {
  color: #FFFFFF !important;
}
.service-card:hover .service-tag {
  background: rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.3);
}

.service-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  background: rgba(0, 114, 188, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 26px;
  color: var(--prime-blue);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.service-card:hover .service-icon {
  background: #FFFFFF;
  color: var(--prime-orange);
  transform: scale(1.1) rotate(6deg);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}
.service-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy-deep);
  transition: color 0.3s;
}
.service-card h5 a {
  color: var(--navy-deep);
  text-decoration: none;
  transition: color 0.3s;
}
.service-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  transition: color 0.3s;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px; }
.service-tag {
  background: var(--bg-light);
  color: var(--navy-deep);
  border: 1px solid var(--border-light);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  transition: all 0.3s;
}

.service-card-footer {
  border-color: #E2E8F0 !important;
  transition: border-color 0.3s;
}
.service-learn-more {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--prime-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}
.service-learn-more i {
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-footer {
  border-color: rgba(255, 255, 255, 0.2) !important;
}
.service-card:hover .service-learn-more {
  color: #FFFFFF !important;
}
.service-card:hover .service-learn-more i {
  transform: translateX(5px);
}

/* RPO SPOTLIGHT CARD */
.rpo-spotlight-card {
  background: linear-gradient(135deg, #0F1D30 0%, #172B45 60%, #0072BC 100%);
  border-radius: 22px;
  color: #FFFFFF;
  box-shadow: 0 20px 50px rgba(15, 29, 48, 0.25);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.rpo-badge {
  display: inline-block;
  background: rgba(245, 130, 32, 0.2);
  border: 1px solid rgba(245, 130, 32, 0.4);
  color: var(--prime-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 4px 12px;
  border-radius: 20px;
}
.rpo-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 800;
  color: #FFFFFF;
}
.rpo-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.rpo-icon-box {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--prime-orange);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* LDS-STYLE FLOATING CIRCLES PARTICLES */
.circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.circles li {
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  background: rgba(0, 114, 188, 0.08);
  animation: floatCircle 22s linear infinite;
  bottom: -150px;
  border-radius: 20%;
}
.circles li:nth-child(1) { left: 15%; width: 60px; height: 60px; animation-delay: 0s; }
.circles li:nth-child(2) { left: 35%; width: 25px; height: 25px; animation-delay: 2s; animation-duration: 14s; }
.circles li:nth-child(3) { left: 65%; width: 45px; height: 45px; animation-delay: 4s; }
.circles li:nth-child(4) { left: 85%; width: 70px; height: 70px; animation-delay: 1s; animation-duration: 18s; }
.circles li:nth-child(5) { left: 50%; width: 35px; height: 35px; animation-delay: 6s; }
@keyframes floatCircle {
  0% { transform: translateY(0) rotate(0); opacity: 0.8; border-radius: 20%; }
  100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
}

/* LDS-STYLE FLYING DUB-ARROW BUTTONS */
.slider-btn {
  display: inline-block;
  font-size: 13px;
  font-family: 'Montserrat', sans-serif;
  line-height: normal;
  position: relative;
  text-transform: uppercase;
  font-weight: 700;
  overflow: hidden;
  z-index: 1;
  transition: .45s ease;
  padding: 13px 26px;
  background-color: transparent;
  border: 1.5px solid var(--prime-blue);
  border-radius: 12px;
  cursor: pointer;
  color: var(--prime-blue) !important;
  text-decoration: none;
}
.dub-arrow {
  width: 100%;
  height: 100%;
  left: -100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  background: var(--grad-blue);
  color: #FFFFFF;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.slider-btn:hover {
  border-color: var(--prime-blue);
  box-shadow: var(--shadow-blue);
}
.slider-btn:hover .dub-arrow {
  left: 0;
}
.slider-btn span {
  display: inline-block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}
.slider-btn:hover span {
  transform: translateX(120px);
  opacity: 0;
}

/* LDS-STYLE PULSE ANIMATIONS */
.pulse-ring-anim {
  animation: 2s infinite pulseCustom;
}
@keyframes pulseCustom {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 130, 32, 0.6); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 14px rgba(245, 130, 32, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(245, 130, 32, 0); }
}

/* BRAND MESSAGE SECTION */
.brand-message-section {
  background: var(--grad-navy);
  color: #FFFFFF;
  padding: 85px 0;
  position: relative;
  overflow: hidden;
}
.brand-message-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 130, 32, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.bm-tag {
  color: var(--prime-orange);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.bm-title {
  font-size: clamp(28px, 3.8vw, 48px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 14px;
}
.bm-title span { color: var(--prime-orange); }
.bm-pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 26px 0;
}
.bm-pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}
.bm-pillar-item i { color: var(--prime-orange); font-size: 16px; }
.bm-pillar-item span { font-weight: 700; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }

/* INDUSTRIES WE SERVE */
.industries-section { background: #FFFFFF; padding: 100px 0; }
.industry-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}
.industry-card:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.industry-card i {
  font-size: 32px;
  color: var(--prime-blue);
  margin-bottom: 14px;
  transition: color 0.3s;
}
.industry-card:hover i { color: var(--prime-orange); }
.industry-card h6 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 5px;
  transition: color 0.3s;
}
.industry-card:hover h6 { color: #FFFFFF; }
.industry-card p {
  font-size: 12.5px;
  color: var(--text-muted);
  margin: 0;
  transition: color 0.3s;
}
.industry-card:hover p { color: rgba(255,255,255,0.75); }

/* COUNTERS */
.counters-section {
  background: var(--grad-blue);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.counter-box { text-align: center; position: relative; z-index: 1; }
.counter-num { font-size: 52px; font-weight: 900; color: #FFFFFF; line-height: 1; letter-spacing: -0.02em; }
.counter-label { font-size: 14px; color: rgba(255,255,255,0.85); margin-top: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
.counter-divider {
  width: 40px; height: 3.5px; background: var(--prime-orange);
  margin: 14px auto 0; border-radius: 2px;
}

/* WHY CHOOSE US (REFERENCE 2-COLUMN & 4-QUADRANT METRIC CARD) */
.why-section {
  background: #FFFFFF;
  padding: 90px 0;
}
.why-main-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(30px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--navy-deep);
  display: inline-block;
  position: relative;
  letter-spacing: -0.02em;
}
.why-underline {
  position: relative;
  display: inline-block;
}
.why-underline::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #0072BC;
  border-radius: 2px;
}

.why-content-left {
  padding-right: 20px;
}
.why-hero-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 900;
  color: var(--navy-deep);
  line-height: 1.25;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.text-highlight-gold {
  color: #F58220;
}
.why-hero-subheading {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: #1E293B;
  line-height: 1.4;
  margin-bottom: 18px;
}
.why-hero-desc {
  font-size: 14.5px;
  color: #64748B;
  line-height: 1.85;
  text-align: justify;
  margin-bottom: 24px;
}

/* 2x2 QUADRANT METRIC CARD BOX */
.why-stats-quadrant-box {
  background: #F8FAFC;
  border: 1.5px solid #E2E8F0;
  border-radius: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(15, 29, 48, 0.05);
}
.quadrant-item {
  padding: 44px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #F8FAFC;
  transition: all 0.3s ease;
}
.quadrant-item:hover {
  background: #FFFFFF;
  transform: scale(1.02);
  z-index: 2;
  box-shadow: 0 8px 25px rgba(15, 29, 48, 0.06);
}
.border-end-q {
  border-right: 1.5px solid #E2E8F0;
}
.border-bottom-q {
  border-bottom: 1.5px solid #E2E8F0;
}
.quadrant-icon {
  font-size: 38px;
  color: #0072BC;
  margin-bottom: 14px;
}
.quadrant-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--navy-deep);
  line-height: 1;
}
.quadrant-number .plus {
  color: #0072BC;
  font-weight: 800;
}
.quadrant-bar {
  width: 36px;
  height: 3px;
  background: #0072BC;
  margin: 12px auto;
  border-radius: 2px;
}
.quadrant-label {
  font-size: 14px;
  font-weight: 600;
  color: #0072BC;
  letter-spacing: 0.01em;
}

@media (max-width: 576px) {
  .why-stats-quadrant-box { grid-template-columns: 1fr; }
  .border-end-q { border-right: none; }
  .quadrant-item { border-bottom: 1.5px solid #E2E8F0; padding: 30px 20px; }
  .quadrant-item:last-child { border-bottom: none; }
  .why-content-left { padding-right: 0; }
}

/* CONTACT & FORMS */
.contact-section { background: var(--bg-light); padding: 100px 0; }
.contact-info-card {
  background: var(--navy-dark);
  border-radius: 22px;
  padding: 44px 36px;
  height: 100%;
  color: #FFFFFF;
  box-shadow: var(--shadow-lg);
}
.contact-info-item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(245, 130, 32, 0.15); color: var(--prime-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.contact-info-text h6 { color: #FFFFFF; font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { color: rgba(255,255,255,0.75); font-size: 13.5px; line-height: 1.6; text-decoration: none; }
.contact-info-text a:hover { color: var(--prime-orange); }

.contact-form-card {
  background: #FFFFFF;
  border-radius: 22px;
  padding: 44px 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}
.form-control, .form-select {
  border: 1.5px solid var(--border-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14.5px;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--prime-blue);
  box-shadow: 0 0 0 4px rgba(0, 114, 188, 0.12);
  outline: none;
}
.form-label { font-size: 13.5px; font-weight: 600; color: var(--navy-deep); margin-bottom: 6px; }

/* FOOTER (HIGH-END CORPORATE FINISH) */
footer {
  background: var(--navy-dark);
  color: #FFFFFF;
  padding: 80px 0 28px;
  border-top: 4px solid var(--prime-orange);
}
.footer-logo img { height: 56px; width: auto; margin-bottom: 18px; }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.75; max-width: 320px; }
.footer-title {
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer-title::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 32px; height: 3px; background: var(--prime-orange);
  border-radius: 2px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-links a i { font-size: 11px; color: var(--prime-orange); }
.footer-links a:hover { color: #FFFFFF; transform: translateX(4px); }

.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: all 0.25s; text-decoration: none;
}
.social-btn:hover { background: var(--grad-orange); color: #FFFFFF; transform: translateY(-3px); }

.footer-divider { border-color: rgba(255,255,255,0.1); margin: 40px 0 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px; }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.6); }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-legal a:hover { color: var(--prime-orange); }

/* FLOATING ACTION BUTTONS */
.icon-bar {
  position: fixed;
  bottom: 25px;
  right: 22px;
  z-index: 99999;
}
.icon-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: #25D366;
  border-radius: 50%;
  color: white;
  font-size: 26px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}
.icon-bar a:hover { transform: scale(1.1); color: white; }

.icon-bar1 {
  position: fixed;
  bottom: 88px;
  right: 22px;
  z-index: 99999;
}
.icon-bar1 a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--grad-orange);
  border-radius: 50%;
  color: white;
  font-size: 22px;
  box-shadow: var(--shadow-orange);
  transition: all 0.3s ease;
}
.icon-bar1 a:hover { transform: scale(1.1); color: white; }

#backTop {
  position: fixed; bottom: 152px; right: 22px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--navy-dark); color: #fff;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer; font-size: 16px;
  display: none; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); z-index: 999;
  transition: all 0.25s ease;
}
#backTop:hover { transform: translateY(-3px); background: var(--prime-blue); }
#backTop.show { display: flex; }

/* PAGE HERO / BREADCRUMB */
.page-hero {
  background: var(--grad-navy);
  padding: 140px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(245, 130, 32, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.breadcrumb-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245, 130, 32, 0.15); border: 1px solid rgba(245, 130, 32, 0.4);
  color: #FFA858; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 30px; margin-bottom: 16px;
}
.page-title {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 900; color: #FFFFFF; line-height: 1.15; margin-bottom: 14px;
}
.page-title span { color: var(--prime-orange); }
.page-subtitle { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 580px; }
.breadcrumb-nav { margin-top: 24px; }
.breadcrumb-nav a, .breadcrumb-nav span { font-size: 13.5px; color: rgba(255,255,255,0.65); text-decoration: none; }
.breadcrumb-nav a:hover { color: var(--prime-orange); }
.breadcrumb-nav .sep { margin: 0 10px; color: rgba(255,255,255,0.3); }
.breadcrumb-nav .current { color: var(--prime-orange); font-weight: 600; }

/* SIDEBAR & SERVICE DETAILS */
.service-detail-section { padding: 100px 0 120px; background: #FFFFFF; }
.service-detail-img { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-md); }
.service-detail-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.service-detail-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0, 114, 188, 0.08); color: var(--prime-blue);
  padding: 7px 18px; border-radius: 30px; font-size: 13px; font-weight: 700;
  margin-bottom: 18px; border: 1px solid rgba(0, 114, 188, 0.2);
}
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 14.5px; color: #334155; margin-bottom: 14px; line-height: 1.65;
}
.check-list li i { color: var(--prime-orange); font-size: 16px; margin-top: 4px; flex-shrink: 0; }

.sidebar-card {
  background: var(--bg-light); border-radius: 18px; padding: 28px;
  margin-bottom: 26px; border: 1px solid var(--border-light);
  box-shadow: var(--shadow-xs);
}
.sidebar-card h6 { font-size: 16.5px; font-weight: 700; margin-bottom: 18px; color: var(--navy-deep); }
.sidebar-service-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: 10px; background: #FFFFFF;
  color: var(--navy-deep); text-decoration: none; font-size: 14px; font-weight: 600;
  margin-bottom: 8px; transition: all 0.25s; border: 1px solid var(--border-light);
}
.sidebar-service-link i { color: var(--prime-blue); font-size: 14px; width: 20px; }
.sidebar-service-link:hover, .sidebar-service-link.active {
  background: var(--grad-blue); color: #fff !important; transform: translateX(6px); box-shadow: var(--shadow-sm);
}
.sidebar-service-link:hover i, .sidebar-service-link.active i { color: #fff; }

.contact-sidebar-card {
  background: var(--grad-navy);
  border-radius: 18px; padding: 32px 24px; color: #fff; text-align: center;
  box-shadow: var(--shadow-md);
}
.contact-sidebar-card h6 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.contact-sidebar-card p { font-size: 13.5px; color: rgba(255,255,255,0.75); margin-bottom: 18px; line-height: 1.6; }
.contact-sidebar-card .phone {
  display: inline-block; font-size: 17px; font-weight: 700; color: var(--prime-orange);
  text-decoration: none; margin-bottom: 18px;
}
.contact-sidebar-card .phone:hover { color: #FFA858; }

/* GALLERY GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: 16px; overflow: hidden;
  position: relative; cursor: pointer;
  box-shadow: var(--shadow-xs);
}
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15, 29, 48, 0.9) 0%, transparent 60%);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end; padding: 22px;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ABOUT US ENHANCED BENTO & MILESTONE STYLES */
.bento-vm-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-color: #E2E8F0 !important;
}
.bento-vm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(15, 29, 48, 0.12) !important;
  border-color: rgba(0, 114, 188, 0.3) !important;
}
.vm-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: rgba(245, 130, 32, 0.1);
  color: var(--prime-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  transition: all 0.35s ease;
}
.vm-icon-wrap.blue {
  background: rgba(0, 114, 188, 0.1);
  color: var(--prime-blue);
}
.vm-icon-wrap.gold {
  background: rgba(245, 130, 32, 0.15);
  color: #D97706;
}
.bento-vm-card:hover .vm-icon-wrap {
  transform: scale(1.1) rotate(5deg);
}
.vm-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  color: var(--navy-deep);
  font-size: 22px;
}
.vm-accent-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--prime-orange);
}
.vm-accent-bar.blue {
  background: var(--prime-blue);
}

/* MILESTONES ROADMAP CARDS */
.milestone-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-color: #E2E8F0 !important;
}
.milestone-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(15, 29, 48, 0.1) !important;
  border-color: var(--prime-blue) !important;
}
.milestone-badge {
  display: inline-block;
  background: rgba(0, 114, 188, 0.08);
  border: 1px solid rgba(0, 114, 188, 0.2);
  color: var(--prime-blue);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  padding: 4px 14px;
  border-radius: 20px;
}
.milestone-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(245, 130, 32, 0.1);
  color: var(--prime-orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.3s ease;
}
.milestone-icon-wrap.blue {
  background: rgba(0, 114, 188, 0.1);
  color: var(--prime-blue);
}
.milestone-icon-wrap.gold {
  background: rgba(245, 130, 32, 0.15);
  color: #D97706;
}
.milestone-card:hover .milestone-icon-wrap {
  transform: scale(1.1);
}
.milestone-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--navy-deep);
  margin-bottom: 8px;
}

/* RESPONSIVE DESIGN POLISH */
@media (max-width: 1199px) {
  .navbar-collapse {
    background: #FFFFFF;
    padding: 20px 24px;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 29, 48, 0.14);
    margin-top: 14px;
    border: 1px solid var(--border-light);
  }
  .nav-links-wrap {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0;
    width: 100%;
  }
  .nav-link {
    width: 100%;
    padding: 12px 14px !important;
    font-size: 15px;
    border-bottom: 1px solid #F1F5F9;
  }
  .nav-item { width: 100%; }
  .nav-link:last-child { border-bottom: none; }
}

@media (max-width: 991px) {
  .hero-pillars-bar { max-width: 100%; }
  .hero-visual-card { max-width: 100%; margin-top: 30px; }
  .hero-visual-card img { height: 380px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge-float { display: none; }
}

@media (max-width: 768px) {
  .hero-pms { padding: 50px 0 60px; }
  .about-section, .services-section, .why-section, .industries-section, .counters-section, .cta-banner-pms { padding: 60px 0; }
  .hero-pms-title { font-size: 32px; }
  .section-title { font-size: 26px; }
  .about-feature-box { padding: 14px 16px; }
  .feature-box-icon { width: 38px; height: 38px; font-size: 17px; }
}

@media (max-width: 576px) {
  .hero-pillars-bar { grid-template-columns: 1fr; }
  .hero-pms-actions { flex-direction: column; width: 100%; }
  .hero-pms-actions a { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   ULTRA-LUXURY 3D RIBBON CUTTING & CURTAIN UNVEILING SYSTEM
   ========================================================================== */
.luxury-ribbon-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  overflow: hidden;
  perspective: 1200px;
  background: radial-gradient(ellipse at center, #0B1728 0%, #060D18 60%, #03060B 100%);
  cursor: pointer;
  user-select: none;
}

.luxury-ribbon-overlay.completed {
  display: none !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

/* OBSIDIAN & COSMIC INDIGO CURTAIN SHUTTERS */
.luxury-curtain {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 50.5%;
  z-index: 1;
  background: radial-gradient(ellipse at 50% 100%, #10223B 0%, #08111E 55%, #03060B 100%);
  transition: transform 1.1s cubic-bezier(0.8, 0, 0.15, 1);
  will-change: transform;
}
.luxury-curtain.curtain-top {
  top: 0;
  background: radial-gradient(ellipse at 50% 100%, #12243F 0%, #08111E 60%, #03060B 100%);
  box-shadow: inset 0 -30px 60px rgba(0,0,0,0.9);
}
.luxury-curtain.curtain-bottom {
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, #12243F 0%, #08111E 60%, #03060B 100%);
  box-shadow: inset 0 30px 60px rgba(0,0,0,0.9);
}

.curtain-ambient-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(0, 114, 188, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(245, 130, 32, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.curtain-gold-edge {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #E6CA65 20%, #FFF2B2 50%, #E6CA65 80%, transparent 100%);
  box-shadow: 0 0 16px rgba(230, 202, 101, 0.9), 0 0 30px rgba(0, 114, 188, 0.5);
  z-index: 3;
}
.curtain-top .curtain-gold-edge { bottom: 0; }
.curtain-bottom .curtain-gold-edge { top: 0; }

.luxury-ribbon-overlay.reveal .luxury-curtain.curtain-top {
  transform: translateY(-100%);
}
.luxury-ribbon-overlay.reveal .luxury-curtain.curtain-bottom {
  transform: translateY(100%);
}

/* AMBIENT LIGHT HALOS */
.ambient-light-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  mix-blend-mode: screen;
  z-index: 2;
}
.ambient-light-glow.blue-glow {
  width: 400px; height: 400px;
  top: calc(50% - 200px); left: calc(50% - 280px);
  background: radial-gradient(circle, rgba(0, 114, 188, 0.25) 0%, transparent 70%);
}
.ambient-light-glow.amber-glow {
  width: 400px; height: 400px;
  top: calc(50% - 200px); right: calc(50% - 280px);
  background: radial-gradient(circle, rgba(245, 130, 32, 0.22) 0%, transparent 70%);
}

/* VERTICAL GOLDEN LASER CUTTING BEAM */
.golden-cut-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2.5px;
  transform: translateX(-50%) scaleY(0);
  background: linear-gradient(to bottom, transparent 0%, #FFFFFF 25%, #FFF2B2 50%, #E6CA65 75%, transparent 100%);
  box-shadow: 0 0 30px #FFF2B2, 0 0 60px rgba(245, 130, 32, 0.9);
  z-index: 15;
  pointer-events: none;
  transition: transform 0.25s ease-out, opacity 0.3s ease;
  opacity: 0;
}
.luxury-ribbon-overlay.cut-active .golden-cut-line {
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
  animation: laserPulse 0.4s ease-out forwards;
}
@keyframes laserPulse {
  0% { transform: translateX(-50%) scaleY(0); opacity: 1; filter: brightness(2); }
  50% { transform: translateX(-50%) scaleY(1); opacity: 1; filter: brightness(2.5); }
  100% { transform: translateX(-50%) scaleY(1); opacity: 0; filter: brightness(1); }
}

/* DUAL-TONE SATIN RIBBON (SAPPHIRE & SUNSET AMBER) */
.ribbon-3d-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 4;
  pointer-events: none;
}

.satin-ribbon {
  position: absolute;
  top: calc(50% - 26px);
  height: 52px;
  width: 50.5%;
  overflow: hidden;
  box-shadow: 
    0 16px 45px rgba(0,0,0,0.85),
    inset 0 2px 4px rgba(255,255,255,0.4),
    inset 0 -2px 4px rgba(0,0,0,0.5);
  transition: transform 0.95s cubic-bezier(0.7, 0, 0.15, 1), opacity 0.8s ease;
  will-change: transform, opacity;
}

/* INNOVATIVE DUAL-TONE WEAVE */
.satin-dual-tone-top {
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(90deg, #004D80 0%, #0072BC 35%, #0094F7 65%, #0072BC 100%);
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.satin-dual-tone-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(90deg, #A84900 0%, #E06D0C 35%, #FFA34D 65%, #F58220 100%);
}

.satin-champagne-border {
  position: absolute;
  left: 0;
  right: 0;
  height: 2.5px;
  background: linear-gradient(90deg, #C5A059 0%, #FFF2B2 30%, #E6CA65 70%, #9B7833 100%);
  box-shadow: 0 0 10px rgba(230, 202, 101, 0.7);
  z-index: 3;
}
.satin-champagne-border.top { top: 0; }
.satin-champagne-border.bottom { bottom: 0; }

.satin-light-shimmer {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.4) 45%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0.4) 55%, transparent 100%);
  animation: satinGleam 2.2s infinite ease-in-out;
}
@keyframes satinGleam {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.ribbon-left-sash {
  left: 0;
  transform-origin: left center;
}
.ribbon-right-sash {
  right: 0;
  transform-origin: right center;
}

/* 3D CURL & UNTYING PHYSICS ON UNVEIL */
.luxury-ribbon-overlay.reveal .ribbon-left-sash {
  transform: perspective(900px) rotateY(-45deg) rotateZ(-8deg) translateX(-115%) scaleY(0.4) skewX(20deg);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.7s ease;
}
.luxury-ribbon-overlay.reveal .ribbon-right-sash {
  transform: perspective(900px) rotateY(45deg) rotateZ(8deg) translateX(115%) scaleY(0.4) skewX(-20deg);
  opacity: 0;
  transition: transform 0.9s cubic-bezier(0.7, 0, 0.2, 1), opacity 0.7s ease;
}

/* REALISTIC SILK BOW KNOT, LOOPS & TAILS */
.silk-bow-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 120px;
  pointer-events: none;
  z-index: 1;
}

/* BOW LOOPS (LEFT & RIGHT WINGS) */
.bow-loop {
  position: absolute;
  top: calc(50% - 28px);
  width: 78px;
  height: 56px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.7), inset 0 2px 4px rgba(255,255,255,0.4);
  transition: transform 0.45s cubic-bezier(0.6, 0, 0.3, 1), opacity 0.4s ease;
  will-change: transform, opacity;
}
.bow-loop-left {
  left: 0;
  border-radius: 50% 20% 50% 70%;
  background: linear-gradient(135deg, #FFB370 0%, #F58220 50%, #C75900 100%);
  border: 2.5px solid #E6CA65;
  transform: rotate(-18deg);
  transform-origin: right center;
}
.bow-loop-right {
  right: 0;
  border-radius: 20% 50% 70% 50%;
  background: linear-gradient(135deg, #0094F7 0%, #0072BC 50%, #004D80 100%);
  border: 2.5px solid #E6CA65;
  transform: rotate(18deg);
  transform-origin: left center;
}

/* SILK RIBBON HANGING TAILS */
.bow-tail-sash {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 110px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: transform 0.5s cubic-bezier(0.5, 0, 0.2, 1), opacity 0.45s ease;
  will-change: transform, opacity;
}
.bow-tail-left {
  left: 45px;
  background: linear-gradient(180deg, #F58220 0%, #A84900 100%);
  border-left: 2px solid #E6CA65;
  border-right: 2px solid #E6CA65;
  transform: rotate(16deg);
  transform-origin: top center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}
.bow-tail-right {
  right: 45px;
  background: linear-gradient(180deg, #0072BC 0%, #003F69 100%);
  border-left: 2px solid #E6CA65;
  border-right: 2px solid #E6CA65;
  transform: rotate(-16deg);
  transform-origin: top center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}

/* UNTYING ANIMATION TRIGGER (TAILS PULL & LOOPS COLLAPSE) */
.luxury-ribbon-overlay.untying .bow-tail-left {
  transform: rotate(32deg) translateY(50px) scaleY(1.2);
  opacity: 0;
}
.luxury-ribbon-overlay.untying .bow-tail-right {
  transform: rotate(-32deg) translateY(50px) scaleY(1.2);
  opacity: 0;
}
.luxury-ribbon-overlay.untying .bow-loop-left {
  transform: scale(0) rotate(-55deg) translateX(30px);
  opacity: 0;
}
.luxury-ribbon-overlay.untying .bow-loop-right {
  transform: scale(0) rotate(55deg) translateX(-30px);
  opacity: 0;
}

/* ROYAL GOLD MEDALLION & SEALS (CENTERED WITH ZERO RIBBON OVERLAP) */
.royal-seal-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.15, 1), opacity 0.55s ease, filter 0.55s ease;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.seal-halo-outer {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -38px;
  left: calc(50% - 90px);
  border-radius: 50%;
  border: 1.5px dashed rgba(230, 202, 101, 0.55);
  animation: rotateOrbit 14s infinite linear;
  pointer-events: none;
}
.seal-halo-inner {
  position: absolute;
  width: 148px;
  height: 148px;
  top: -22px;
  left: calc(50% - 74px);
  border-radius: 50%;
  border: 1.5px solid rgba(0, 114, 188, 0.5);
  background: radial-gradient(circle, rgba(0, 114, 188, 0.3) 0%, rgba(245, 130, 32, 0.18) 50%, transparent 75%);
  animation: rotateOrbitCounter 9s infinite linear;
  pointer-events: none;
}
@keyframes rotateOrbit {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes rotateOrbitCounter {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

.seal-gold-medallion {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #FFFFFF 0%, #F5F9FF 35%, #E2ECF8 70%, #CBDCF0 100%);
  border: 4.5px solid #E6CA65;
  box-shadow: 
    0 18px 50px rgba(0,0,0,0.85),
    0 0 35px rgba(0, 114, 188, 0.6),
    0 0 25px rgba(230, 202, 101, 0.85),
    inset 0 4px 8px rgba(255,255,255,0.9),
    inset 0 -4px 8px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.seal-gold-medallion:hover {
  transform: scale(1.06);
}

.medallion-emblem {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25));
}

/* PROMINENT TOP BRAND BANNER (INSIDE TOP CURTAIN - FULLY UNOBSTRUCTED) */
.intro-top-brand {
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 90%;
  max-width: 680px;
  z-index: 5;
  pointer-events: none;
}

.intro-brand-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 114, 188, 0.35);
  border: 1px solid rgba(230, 202, 101, 0.65);
  color: #FFFFFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}

.intro-brand-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.14em;
  color: #FFFFFF;
  text-shadow: 0 3px 12px rgba(0,0,0,0.9), 0 0 25px rgba(0, 114, 188, 0.6);
  margin-bottom: 5px;
}

.intro-brand-subtitle {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.24em;
  color: #FFB370;
  text-shadow: 0 2px 8px rgba(0,0,0,0.9);
}

/* BOTTOM HINT (INSIDE BOTTOM CURTAIN) */
.intro-bottom-hint {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  pointer-events: none;
}

.intro-bottom-hint span {
  display: inline-flex;
  align-items: center;
  background: rgba(6, 13, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Montserrat', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 20px;
  border-radius: 20px;
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

/* GOLDEN BURST SPARKLES */
.gold-sparkle-burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  top: 40px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: #FFF2B2;
  border-radius: 50%;
  box-shadow: 0 0 12px #FFF, 0 0 20px #E6CA65;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
.luxury-ribbon-overlay.untying .sparkle.s1 { animation: burstSparkle 0.7s 0.05s ease-out forwards; --tx: -90px; --ty: -80px; }
.luxury-ribbon-overlay.untying .sparkle.s2 { animation: burstSparkle 0.7s 0.08s ease-out forwards; --tx: 95px; --ty: -75px; }
.luxury-ribbon-overlay.untying .sparkle.s3 { animation: burstSparkle 0.7s 0.03s ease-out forwards; --tx: -110px; --ty: 10px; }
.luxury-ribbon-overlay.untying .sparkle.s4 { animation: burstSparkle 0.7s 0.07s ease-out forwards; --tx: 105px; --ty: 20px; }
.luxury-ribbon-overlay.untying .sparkle.s5 { animation: burstSparkle 0.7s 0.04s ease-out forwards; --tx: -70px; --ty: 90px; }
.luxury-ribbon-overlay.untying .sparkle.s6 { animation: burstSparkle 0.7s 0.09s ease-out forwards; --tx: 70px; --ty: 95px; }

@keyframes burstSparkle {
  0% { transform: translate(-50%, -50%) scale(0); opacity: 1; }
  60% { transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1.4); opacity: 1; }
  100% { transform: translate(calc(-50% + var(--tx) * 1.3), calc(-50% + var(--ty) * 1.3)) scale(0); opacity: 0; }
}

.luxury-ribbon-overlay.reveal .royal-seal-container {
  transform: translate(-50%, -50%) scale(1.45);
  opacity: 0;
  filter: blur(14px);
}




