@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ==========================================================================
   RANJHULA FACILITIES PVT. LTD. - MASTER STYLESHEET
   Design: Modern Corporate Facility Management & Security Landing Page
   Aesthetic: Ultra-Clean, High Precision, Vibrant Accents, Responsive
   ========================================================================== */

/* --- CSS VARIABLES & TOKENS --- */
:root {
  /* Colors */
  --color-primary-dark: #081c3b;
  /* Deep Midnight Navy */
  --color-primary-navy: #0b2341;
  /* Core Brand Navy */
  --color-primary-blue: #0284c7;
  /* Sky / Vibrant Blue */
  --color-primary-light-blue: #e0f2fe;
  /* Subtle Blue Tint */
  --color-accent-red: #ef4444;
  /* Primary CTA Red */
  --color-accent-red-hover: #dc2626;
  /* CTA Red Hover */
  --color-accent-cyan: #0ea5e9;
  /* Cyan Glow */
  --color-dark-surface: #06152b;
  /* Deep Dark Footer */

  /* Neutrals */
  --color-bg-light: #f8fafc;
  --color-bg-white: #ffffff;
  --color-bg-card: #ffffff;
  --color-text-main: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-border: #e2e8f0;
  --color-border-light: #f1f5f9;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-heading-sans: 'Outfit', sans-serif;
  --font-script: 'Caveat', 'Dancing Script', cursive;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px -5px rgba(11, 35, 65, 0.08), 0 8px 10px -6px rgba(11, 35, 65, 0.04);
  --shadow-xl: 0 20px 35px -10px rgba(11, 35, 65, 0.12), 0 10px 10px -5px rgba(11, 35, 65, 0.04);
  --shadow-glow: 0 0 25px rgba(2, 132, 199, 0.25);
  --shadow-red-glow: 0 4px 15px rgba(239, 68, 68, 0.35);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max-width: 1240px;
}

/* --- CUSTOM MODERN NAVY BLUE SCROLLBAR --- */
/* Standard CSS */
* {
  scrollbar-width: thin;
  scrollbar-color: #00376d #f1f5f9;
}

/* WebKit & Chromium Browsers (Chrome, Edge, Safari, Opera) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-left: 1px solid #e2e8f0;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #001f3f 0%, #00376d 50%, #0284c7 100%);
  border-radius: 9999px;
  border: 2px solid #f1f5f9;
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00376d 0%, #0284c7 50%, #38bdf8 100%);
}

::-webkit-scrollbar-thumb:active {
  background: #001f3f;
}

/* --- RESET & GLOBAL STYLES --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-light);
  color: var(--color-text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

/* Typography Helpers */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary-navy);
  font-weight: 700;
  line-height: 1.25;
}

.text-navy {
  color: var(--color-primary-navy);
}

.text-blue {
  color: var(--color-primary-blue);
}

.text-red {
  color: var(--color-accent-red);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-white {
  color: #ffffff;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-primary-blue);
  margin-bottom: 0.75rem;
}

.section-tag.center {
  justify-content: center;
}

.section-tag.center::before,
.section-tag.center::after {
  content: "";
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-primary-blue);
  opacity: 0.6;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--color-primary-navy);
  margin-bottom: 1rem;
}

.section-title.center {
  text-align: center;
}

.section-title span {
  display: block;
}

.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Script Signature Text */
.script-font {
  font-family: var(--font-script);
  font-weight: 700;
  color: #0284c7;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: #ffffff;
  box-shadow: var(--shadow-red-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(239, 68, 68, 0.45);
}

.btn-outline-white {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.btn-video {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  padding: 0.4rem 0.6rem;
  transition: transform var(--transition-fast);
}

.btn-video:hover {
  transform: translateX(3px);
}

.btn-video .play-icon {
  width: 44px;
  height: 44px;
  background: #0284c7;
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  position: relative;
  transition: transform var(--transition-normal);
}

.btn-video:hover .play-icon {
  transform: scale(1.08);
}

.btn-video .play-icon::after {
  content: "";
  position: absolute;
  inset: -4px;
  border: 2px solid rgba(2, 132, 199, 0.4);
  border-radius: var(--radius-full);
  animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.2;
  }

  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.btn-video .video-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.btn-video .video-title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-primary-navy);
}

.btn-video .video-sub {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary-blue);
  font-size: 0.95rem;
  transition: gap var(--transition-fast);
}

.btn-link:hover {
  gap: 10px;
  color: #0369a1;
}

/* ==========================================================================
   HEADER & NAVIGATION (WITH FLOATING CAPSULE ON SCROLL)
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* 1. TOP UTILITY BAR (Navy Blue) */
.top-bar {
  background: #00376d;
  color: #ffffff;
  padding: 5px 0;
  font-size: 0.80rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
  position: relative;
  z-index: 100;
}

/* Top bar smoothly hides on scroll */
.site-header.scrolled .top-bar {
  max-height: 0;
  opacity: 0;
  padding: 0;
  border-bottom: none;
  transform: translateY(-100%);
  pointer-events: none;
  overflow: hidden;
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
  min-width: 0;
  flex: 1;
}

.top-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  text-decoration: none;
  font-size: 0.80rem;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity var(--transition-fast);
}

.top-contact-link i {
  font-size: 0.85rem;
  opacity: 0.9;
  flex-shrink: 0;
}

.top-contact-link:hover {
  opacity: 0.85;
  color: #ffffff;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin-left: auto;
}

.top-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  color: #ffffff;
  font-size: 0.72rem;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  animation: socialJump 2.2s cubic-bezier(0.28, 0.84, 0.42, 1) infinite;
  flex-shrink: 0;
}

.top-social-btn.social-fb {
  background: #1877f2;
  animation-delay: 0s;
}

.top-social-btn.social-x {
  background: #000000;
  animation-delay: 0.25s;
}

.top-social-btn.social-insta {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  animation-delay: 0.5s;
}

.top-social-btn.social-yt {
  background: #ff0000;
  animation-delay: 0.75s;
}

.top-social-btn:hover {
  animation-play-state: paused;
  transform: translateY(-4px) scale(1.15);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.35);
  filter: brightness(1.15);
}

@keyframes socialJump {

  0%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-4px) scale(1.08);
  }

  35% {
    transform: translateY(0) scale(1);
  }

  45% {
    transform: translateY(-2px) scale(1.03);
  }

  55% {
    transform: translateY(0) scale(1);
  }
}

/* Mobile & Tablet Specific Layout for Top Bar */
@media (max-width: 991px) {
  .top-bar-left a[href^="tel"],
  .top-bar-left .top-phone-link {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .top-bar {
    padding: 4px 0;
  }
  .top-bar-container {
    gap: 6px;
  }
  .top-bar-left {
    gap: 0;
  }
  .top-contact-link {
    font-size: 0.75rem;
    max-width: 100%;
  }
  .top-contact-link span {
    max-width: 175px;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
  }
  .top-bar-right {
    gap: 5px;
  }
  .top-social-btn {
    width: 22px;
    height: 22px;
    font-size: 0.68rem;
  }
}

@media (max-width: 380px) {
  .top-contact-link span {
    max-width: 130px;
  }
  .top-bar-right {
    gap: 4px;
  }
  .top-social-btn {
    width: 20px;
    height: 20px;
    font-size: 0.62rem;
  }
}

/* 2. MAIN NAVIGATION BAR (RIBBON BANNER ON SCROLL - IMAGE 1 DESIGN) */
.main-nav-bar {
  background: #ffffff;
  pointer-events: auto;
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
  border: 1.5px solid transparent;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              max-width 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              margin 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              background 0.4s ease, 
              box-shadow 0.4s ease, 
              border-color 0.4s ease;
}

/* Ribbon 3D Wings & Underfolds (Hidden initially, visible on scroll) */
.ribbon-wing,
.ribbon-fold {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}

/* Left Ribbon Wing: Swallowtail Notched Tail in Royal Brand Blue */
.ribbon-wing-left {
  left: -32px;
  top: 6px;
  width: 40px;
  height: 52px;
  background: linear-gradient(135deg, #002b57 0%, #00376d 60%, #0284c7 100%);
  clip-path: polygon(100% 0, 0 0, 15px 50%, 0 100%, 100% 100%);
  filter: drop-shadow(-2px 0 0 #001f3f) drop-shadow(0 -2px 0 #001f3f) drop-shadow(0 2px 0 #001f3f);
  z-index: -2;
  transform: translateX(14px) scaleX(0.7);
}

/* Left Ribbon 3D Underfold Triangle (Deep Navy Shadow Fold) */
.ribbon-fold-left {
  left: 0;
  bottom: -9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 11px 0 0;
  border-color: #001833 transparent transparent transparent;
  z-index: -1;
  transform: scale(0.6);
}

/* Right Ribbon Wing: Swallowtail Notched Tail in Royal Brand Blue */
.ribbon-wing-right {
  right: -32px;
  top: 6px;
  width: 40px;
  height: 52px;
  background: linear-gradient(135deg, #0284c7 0%, #00376d 40%, #002b57 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 15px) 50%, 100% 100%, 0 100%);
  filter: drop-shadow(2px 0 0 #001f3f) drop-shadow(0 -2px 0 #001f3f) drop-shadow(0 2px 0 #001f3f);
  z-index: -2;
  transform: translateX(-14px) scaleX(0.7);
}

/* Right Ribbon 3D Underfold Triangle (Deep Navy Shadow Fold) */
.ribbon-fold-right {
  right: 0;
  bottom: -9px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 0 11px;
  border-color: #001833 transparent transparent transparent;
  z-index: -1;
  transform: scale(0.6);
}

/* Dynamic 3D Ribbon Banner on Scroll (Brand Blue Outline & 3D Shadow) */
.site-header.scrolled .main-nav-bar {
  width: calc(100% - 90px);
  max-width: 1200px;
  margin: 12px auto 0;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0 14px 35px rgba(0, 55, 109, 0.22), 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid #00376d;
}

/* Show and extend ribbon wings & folds on scroll */
.site-header.scrolled .ribbon-wing,
.site-header.scrolled .ribbon-fold {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.4s ease;
}

.site-header.scrolled .nav-container {
  height: 64px;
  padding: 0 24px;
}

.brand-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 3px 0;
}

.brand-logo img {
  height: 68px;
  width: auto;
  max-width: 105px;
  object-fit: contain;
  transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1), max-width 0.4s ease, transform var(--transition-fast);
}

.site-header.scrolled .brand-logo img {
  height: 50px;
  max-width: 82px;
}

.brand-logo:hover img {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .site-header.scrolled .main-nav-bar {
    width: calc(100% - 24px);
    margin: 8px auto 0;
    border-radius: 4px;
    border: 2px solid #00376d;
  }
  .site-header.scrolled .ribbon-wing-left {
    left: -14px;
    width: 20px;
    height: 44px;
    clip-path: polygon(100% 0, 0 0, 8px 50%, 0 100%, 100% 100%);
    background: #00376d;
    filter: drop-shadow(-1.5px 0 0 #001f3f) drop-shadow(0 -1.5px 0 #001f3f) drop-shadow(0 1.5px 0 #001f3f);
  }
  .site-header.scrolled .ribbon-wing-right {
    right: -14px;
    width: 20px;
    height: 44px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 8px) 50%, 100% 100%, 0 100%);
    background: #00376d;
    filter: drop-shadow(1.5px 0 0 #001f3f) drop-shadow(0 -1.5px 0 #001f3f) drop-shadow(0 1.5px 0 #001f3f);
  }
  .site-header.scrolled .nav-container {
    height: 58px;
    padding: 0 12px;
  }
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 700;
  color: #00376d;
  padding: 8px 14px;
  border-radius: 12px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  z-index: 1;
  transition: color 0.28s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Background Soft Shadow Capsule (Smooth Reveal & Fade Out) */
.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: rgba(0, 55, 109, 0.05);
  box-shadow: 
    0 6px 18px rgba(0, 55, 109, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.04),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  opacity: 0;
  transform: scale(0.90);
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease;
  z-index: -1;
  pointer-events: none;
}

/* Hover State: Soft Glow & Shadow Capsule Emerge */
.nav-link:hover::before,
.nav-item-dropdown:hover > .nav-link::before {
  opacity: 1;
  transform: scale(1);
  background: rgba(0, 55, 109, 0.07);
  box-shadow: 
    0 8px 24px rgba(0, 55, 109, 0.16),
    0 2px 8px rgba(0, 0, 0, 0.06),
    inset 0 1px 2px rgba(255, 255, 255, 0.95);
}

.nav-link:hover {
  color: #e53935 !important;
  transform: translateY(-1.5px);
}

/* Active Nav Link */
.nav-link.active::before {
  opacity: 1;
  transform: scale(1);
  background: rgba(2, 132, 199, 0.08);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.14);
}

.nav-dropdown-icon {
  color: #0284c7;
  font-size: 0.72rem;
  margin-left: 3px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  display: inline-block;
  vertical-align: middle;
}

.nav-link:hover .nav-dropdown-icon,
.nav-item-dropdown:hover .nav-dropdown-icon {
  transform: rotate(180deg);
  color: #e53935;
}

/* Dropdown Menu - Perfectly Centered Under Services */
.nav-item-dropdown {
  position: relative !important;
  display: inline-flex;
  align-items: center;
}

.dropdown-menu {
  position: absolute !important;
  top: calc(100% + 8px);
  left: 50% !important;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0, 55, 109, 0.18), 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--color-border);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
  z-index: 1000;
}

/* Hover Bridge: prevents dropdown from closing when cursor moves between link and menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  height: 14px;
}

.nav-item-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.6rem 1.15rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #00376d;
  transition: all var(--transition-fast);
}

.dropdown-item i {
  color: #e53935;
  font-size: 0.95rem;
}

.dropdown-item:hover {
  background: #f0f7ff;
  color: #00376d;
  padding-left: 1.4rem;
}

/* Nav Actions Right */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Premium Capsule Call Contact Badge */
.header-contact-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 14px 4px 6px;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-contact-badge:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: #38bdf8;
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.15);
}

.green-call-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #008744 0%, #006030 100%);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.92rem;
  box-shadow: 0 3px 10px rgba(0, 135, 68, 0.35);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.header-contact-badge:hover .green-call-icon {
  transform: scale(1.08);
}

.header-contact-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.contact-label {
  font-family: var(--font-heading);
  font-size: 0.70rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 4px;
}

.online-indicator {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 6px #22c55e;
  animation: onlinePulse 2s infinite ease-in-out;
}

@keyframes onlinePulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }
}

.contact-val {
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 800;
  color: #002b5c;
  line-height: 1.2;
  letter-spacing: 0.2px;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: #00376d;
  padding: 0.4rem;
}

/* ==========================================================================
   HERO SECTION (FULL COVER 4K CINEMATIC VIDEO BACKGROUND)
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 65px;
  overflow: hidden;
  background: #000c1e;
}

.hero-video-bg-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Crystal Clean Ultra-Light Overlay: Keeps 4K video crisp, sharp & vibrant without heavy blue haze */
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 15, 33, 0.55) 0%,
    rgba(3, 15, 33, 0.30) 40%,
    rgba(0, 0, 0, 0.08) 70%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.hero-content-container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content-full {
  max-width: 670px;
}

.hero-badge-tag-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(3, 15, 33, 0.65);
  border: 1px solid rgba(56, 189, 248, 0.6);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #38bdf8;
  padding: 6px 15px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
}

.hero-title-light {
  font-size: 3.45rem;
  font-weight: 900;
  letter-spacing: -1.3px;
  line-height: 1.15;
  margin-bottom: 1.15rem;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.9), 0 8px 24px rgba(0, 0, 0, 0.7);
}

.hero-title-light .title-line-1 {
  display: block;
  color: #ffffff;
}

.hero-title-light .title-line-2 {
  display: block;
  background: linear-gradient(90deg, #38bdf8 0%, #60a5fa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.hero-desc-light {
  font-size: 1.08rem;
  color: #f1f5f9;
  line-height: 1.65;
  margin-bottom: 1.9rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.95), 0 4px 16px rgba(0, 0, 0, 0.8);
  font-weight: 450;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}



/* ==========================================================================
   STATS / TRUST RIBBON (3D FLOATING CAPSULE CARD)
   ========================================================================== */
.stats-bar-wrapper {
  position: relative;
  z-index: 20;
  margin-top: -38px;
  padding: 0 15px;
  background: transparent;
}

.stats-3d-card {
  background: linear-gradient(135deg, #092348 0%, #031731 100%);
  border-radius: 20px;
  padding: 1.6rem 2.2rem;
  box-shadow: 0 20px 45px rgba(0, 20, 50, 0.35), 
              0 4px 12px rgba(0, 0, 0, 0.15), 
              inset 0 1px 0 rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(56, 189, 248, 0.28);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.stats-3d-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 52px rgba(0, 20, 50, 0.45), 
              0 6px 16px rgba(0, 0, 0, 0.2), 
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(56, 189, 248, 0.45);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: #ffffff;
  position: relative;
}

/* Subtle vertical dividers between items */
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -0.75rem;
  top: 15%;
  height: 70%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.22) 20%, rgba(255, 255, 255, 0.22) 80%, transparent);
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #38bdf8;
  flex-shrink: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.stat-icon svg {
  width: 24px;
  height: 24px;
  color: #38bdf8;
  transition: color 0.25s ease;
}

.stat-item:hover .stat-icon {
  transform: scale(1.08);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.25) 0%, rgba(56, 189, 248, 0.08) 100%);
  border-color: rgba(56, 189, 248, 0.5);
}

.stat-item:hover .stat-icon svg {
  color: #ffffff;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.stat-label {
  font-size: 0.84rem;
  color: #cbd5e1;
  font-weight: 500;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 580px) {
  .stats-bar-wrapper {
    margin-top: -25px;
  }
  .stats-3d-card {
    padding: 1.25rem 1.25rem;
    border-radius: 16px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ==========================================================================
   ABOUT US SECTION (CUSTOM CLEAN & ATTRACTIVE DESIGN)
   ========================================================================== */
.about-section {
  padding: 3.2rem 0 4.2rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Centered Header with Sky Blue Arrows */
.about-header-wrap {
  text-align: center;
  margin-bottom: 2rem;
}

.about-subtag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0.75rem;
}

.about-subtag .subtag-arrow {
  color: #0284c7;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
}

.about-subtag .subtag-bar {
  width: 28px;
  height: 2px;
  background: #0284c7;
  border-radius: 2px;
}

.about-subtag .subtag-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
  text-transform: uppercase;
}

.about-main-heading {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b2341;
  line-height: 1.25;
  margin: 0;
}

/* 2-Column Grid */
.about-grid-custom {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-content-left {
  display: flex;
  flex-direction: column;
}

.about-lead-text {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.about-lead-text strong {
  color: #0b2341;
  font-weight: 700;
}

.about-sub-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* Feature checklist cards */
.about-feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.about-feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.25s ease;
}

.about-feat-item:hover {
  background: #ffffff;
  border-color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(2, 132, 199, 0.1);
}

.about-feat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.25);
}

.about-feat-text {
  display: flex;
  flex-direction: column;
}

.about-feat-text strong {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  color: #0b2341;
}

.about-feat-text span {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.3;
}

.about-cta-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.btn-outline-navy {
  background: transparent;
  color: #0b2341;
  border: 1.5px solid #cbd5e1;
}

.btn-outline-navy:hover {
  background: #f1f5f9;
  border-color: #0284c7;
  color: #0284c7;
  transform: translateY(-2px);
}

/* Right Side 3D Visual Card */
.about-visual-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1200px;
}

.about-visual-right::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, rgba(2, 132, 199, 0.1) 50%, transparent 75%);
  border-radius: 50%;
  filter: blur(45px);
  z-index: 0;
  pointer-events: none;
}

.about-image-card-3d {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 550px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 
    0 30px 70px -10px rgba(0, 34, 68, 0.32),
    0 15px 35px -5px rgba(2, 132, 199, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 2px solid rgba(56, 189, 248, 0.45);
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
  transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform-style: preserve-3d;
}

.about-image-card-3d:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 45px 90px -10px rgba(0, 34, 68, 0.42),
    0 20px 45px -5px rgba(2, 132, 199, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.12);
  border-color: rgba(56, 189, 248, 0.8);
}

.about-expert-wrapper {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Smooth Upward Entrance and Floating Animation */
.about-expert-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  animation: floatUpExpert 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards, gentleHoverFloat 4.5s ease-in-out infinite 1.2s;
  transform-origin: bottom center;
}

@keyframes floatUpExpert {
  0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@media (max-width: 991px) {
  .about-grid-custom {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-card-3d {
    max-width: 500px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   OUR SERVICES SECTION (CARDS WITH WHITE MARBLE TEXTURE)
   ========================================================================== */
.services-section {
  padding: 3.2rem 0 4.2rem;
  background: #f8fafd;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(2, 132, 199, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.services-section > .container,
.services-section > div {
  position: relative;
  z-index: 2;
}

.services-header-wrap {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.services-subtag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0.6rem;
}

.subtag-bar {
  width: 32px;
  height: 2px;
  background: #0284c7;
  border-radius: 2px;
}

.subtag-text {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #0284c7;
  text-transform: uppercase;
}

.services-main-heading {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: #0b2341;
  line-height: 1.2;
  margin: 0;
}

/* Cards Layout: 5 on Row 1, 4 on Row 2 */
.services-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  perspective: 1200px;
}

.services-cards-container .svc-card {
  flex: 0 0 calc(20% - 18px);
  max-width: calc(20% - 18px);
  min-width: 215px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 
    0 10px 25px -5px rgba(11, 35, 65, 0.07),
    0 0 0 1px rgba(226, 232, 240, 0.85);
  border: 1.5px solid rgba(226, 232, 240, 0.9);
  display: flex;
  flex-direction: column;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
  transform: translateZ(0);
}

/* Staggered Floating Micro-Animations Across 9 Cards */
.services-cards-container .svc-card:nth-child(1) { animation: svcCardFloat 5s ease-in-out infinite alternate 0s; }
.services-cards-container .svc-card:nth-child(2) { animation: svcCardFloat 5s ease-in-out infinite alternate 0.5s; }
.services-cards-container .svc-card:nth-child(3) { animation: svcCardFloat 5s ease-in-out infinite alternate 1.0s; }
.services-cards-container .svc-card:nth-child(4) { animation: svcCardFloat 5s ease-in-out infinite alternate 1.5s; }
.services-cards-container .svc-card:nth-child(5) { animation: svcCardFloat 5s ease-in-out infinite alternate 2.0s; }
.services-cards-container .svc-card:nth-child(6) { animation: svcCardFloat 5s ease-in-out infinite alternate 0.7s; }
.services-cards-container .svc-card:nth-child(7) { animation: svcCardFloat 5s ease-in-out infinite alternate 1.2s; }
.services-cards-container .svc-card:nth-child(8) { animation: svcCardFloat 5s ease-in-out infinite alternate 1.7s; }
.services-cards-container .svc-card:nth-child(9) { animation: svcCardFloat 5s ease-in-out infinite alternate 2.2s; }

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

/* Row 2 items (6, 7, 8, 9) */
.services-cards-container .svc-card:nth-child(n+6) {
  flex: 0 0 calc(25% - 18px);
  max-width: calc(25% - 18px);
  min-width: 235px;
}

@media (max-width: 1200px) {
  .services-cards-container .svc-card,
  .services-cards-container .svc-card:nth-child(n+6) {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

@media (max-width: 820px) {
  .services-cards-container .svc-card,
  .services-cards-container .svc-card:nth-child(n+6) {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media (max-width: 540px) {
  .services-cards-container .svc-card,
  .services-cards-container .svc-card:nth-child(n+6) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* 3D Hover Pop & Aura Glow */
.svc-card:hover {
  transform: perspective(1000px) translateY(-14px) scale(1.025) translateZ(20px) !important;
  box-shadow: 
    0 26px 55px -10px rgba(2, 132, 199, 0.28),
    0 12px 24px -5px rgba(0, 55, 109, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 1) !important;
  border-color: #38bdf8 !important;
}

/* Top Image Holder */
.svc-img-holder {
  width: 100%;
  height: 165px;
  position: relative;
  overflow: hidden;
  background: #0f172a;
}

.svc-img-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.svc-card:hover .svc-img-holder img {
  transform: scale(1.1) rotate(0.5deg);
  filter: brightness(1.05);
}

/* Sweeping Light Sheen Effect */
.svc-img-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.65s ease;
  pointer-events: none;
  z-index: 3;
}

.svc-card:hover .svc-img-shine {
  transform: translateX(100%);
}

/* Category Badge Tag on Image */
.svc-card-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  background: rgba(7, 21, 43, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover .svc-card-tag {
  background: #0284c7;
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.5);
  transform: translateY(-2px);
}

/* Card Body */
.svc-card-body {
  position: relative;
  background: #ffffff;
  padding: 30px 14px 14px 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex: 1;
  min-height: 96px;
  transition: background 0.3s ease;
}

.svc-card:hover .svc-card-body {
  background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
}

/* Smooth Inverted White Arch Tab Rising into Image */
.svc-tab-arch {
  position: absolute;
  top: -26px;
  left: 14px;
  background: #ffffff;
  padding: 4px 5px 0 5px;
  border-radius: 30px 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background 0.3s ease;
}

.svc-tab-arch::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 10px;
  height: 10px;
  background: transparent;
  border-bottom-right-radius: 10px;
  box-shadow: 4px 4px 0 4px #ffffff;
}

.svc-tab-arch::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10px;
  width: 10px;
  height: 10px;
  background: transparent;
  border-bottom-left-radius: 10px;
  box-shadow: -4px 4px 0 4px #ffffff;
}

/* 3D Glowing Spherical Icon Circle */
.svc-icon-circle {
  width: 48px;
  height: 48px;
  background: radial-gradient(circle at 35% 35%, #38bdf8 0%, #0284c7 60%, #00376d 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.18rem;
  box-shadow: 
    0 6px 16px rgba(2, 132, 199, 0.4),
    inset 0 2px 4px rgba(255, 255, 255, 0.6),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover .svc-icon-circle {
  transform: scale(1.15) rotate(12deg);
  box-shadow: 
    0 8px 24px rgba(2, 132, 199, 0.65),
    inset 0 2px 6px #ffffff,
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  background: radial-gradient(circle at 35% 35%, #7dd3fc 0%, #0284c7 50%, #002b55 100%);
}

/* Title & Text */
.svc-text-group {
  flex: 1;
  padding-right: 8px;
}

.svc-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.96rem;
  font-weight: 800;
  color: #00376d;
  line-height: 1.25;
  margin: 0;
  transition: color 0.25s ease;
}

.svc-card:hover .svc-title {
  color: #0284c7;
}

.svc-sub-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 3px;
  display: block;
  line-height: 1.35;
  transition: color 0.25s ease;
}

.svc-card:hover .svc-sub-desc {
  color: #334155;
}

/* Animated Interactive Circular Arrow Button */
.svc-arrow-indicator {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f9ff;
  color: #0284c7;
  border: 1px solid #bae6fd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-bottom: 2px;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover .svc-arrow-indicator {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateX(4px) scale(1.12);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.45);
}

/* ==========================================================================
   WHY CHOOSE US SECTION
   ========================================================================== */
.why-us-section {
  padding: 3.2rem 0 3.2rem;
  background: #ffffff;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 3.5rem;
  align-items: center;
}

.why-banner-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.why-banner-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.why-banner-script {
  position: absolute;
  top: 25px;
  left: 25px;
  font-family: var(--font-script);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  z-index: 2;
}

.why-banner-script span {
  display: block;
}

.why-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  position: relative;
}

.why-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.why-feature-icon {
  width: 62px;
  height: 62px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
}

.why-feature-item:hover .why-feature-icon {
  transform: translateY(-4px);
  border-color: #0284c7;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.2);
}

.why-feature-icon.icon-blue {
  color: #0284c7;
}

.why-feature-icon.icon-red {
  color: #ef4444;
}

.why-feature-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  line-height: 1.3;
}

.why-feature-arrow {
  position: absolute;
  top: 26px;
  right: -18px;
  color: #cbd5e1;
  font-size: 0.9rem;
}

/* Why Us Bottom Metrics Counter Card */
.metrics-counter-card {
  margin-top: 2.5rem;
  background: #eef7ff;
  border: 1px solid #dbeafe;
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  align-items: center;
}

.metric-counter-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.metric-counter-icon {
  font-size: 2.2rem;
  color: #0284c7;
}

.metric-counter-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-primary-navy);
  line-height: 1.1;
}

.metric-counter-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
}

/* ==========================================================================
   HOW WE WORK SECTION (3D Isometric Depth & Dynamic Flow Pipeline)
   ========================================================================== */
.how-we-work-section {
  padding: 3.2rem 0 4.2rem;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Ambient Background Lights & Grid */
.hww-bg-decor {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(80px);
  opacity: 0.5;
}

.hww-glow-top {
  top: -150px;
  left: 10%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.18), transparent 70%);
}

.hww-glow-bottom {
  bottom: -150px;
  right: 10%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.15), transparent 70%);
}

.hww-grid-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(2, 132, 199, 0.12) 1px, transparent 1px),
    radial-gradient(rgba(11, 35, 65, 0.05) 1px, transparent 1px);
  background-size: 32px 32px, 16px 16px;
  background-position: 0 0, 16px 16px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

/* Subtitle & Pipeline Live Indicator */
.hww-subtitle {
  color: #64748b;
  max-width: 620px;
  margin: 0.75rem auto 1.5rem auto;
  font-size: 0.98rem;
  line-height: 1.6;
}

.hww-pipeline-tracker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 6px 18px 6px 8px;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.08), 0 1px 3px rgba(0,0,0,0.04);
  border: 1px solid rgba(2, 132, 199, 0.2);
  font-size: 0.85rem;
  color: #334155;
  transition: all 0.3s ease;
}

.tracker-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #0284c7, #0ea5e9);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.tracker-desc strong {
  color: #0284c7;
  font-weight: 700;
  transition: color 0.3s ease;
}

.live-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #10b981;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: statusPulse 2s infinite;
  margin-right: 4px;
}

@keyframes statusPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

/* 3D Wrapper & Laser Pipeline Flow */
.steps-grid-3d-wrapper {
  position: relative;
  margin-top: 2rem;
}

.hww-laser-track {
  position: absolute;
  top: 48px;
  left: 6%;
  right: 6%;
  height: 4px;
  background: rgba(2, 132, 199, 0.15);
  border-radius: 4px;
  z-index: 1;
  overflow: hidden;
}

.hww-laser-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, 
    rgba(2, 132, 199, 0.2) 0%, 
    rgba(14, 165, 233, 0.8) 50%, 
    rgba(2, 132, 199, 0.2) 100%
  );
}

.hww-laser-pulse {
  position: absolute;
  top: -2px;
  bottom: -2px;
  width: 140px;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.8), 
    #38bdf8, 
    #0284c7, 
    transparent
  );
  filter: blur(1px);
  box-shadow: 0 0 16px #38bdf8, 0 0 30px #0284c7;
  animation: laserStream 3s ease-in-out infinite;
}

@keyframes laserStream {
  0% {
    left: -150px;
  }
  100% {
    left: 100%;
  }
}

/* 3D Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  perspective: 1200px;
}

/* 3D Card Base */
.step-card-3d {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.2rem 1.6rem 1.8rem 1.6rem;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 
    0 10px 30px -10px rgba(11, 35, 65, 0.06),
    0 4px 6px -2px rgba(11, 35, 65, 0.02);
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 310px;
}

/* Card Glow Layer */
.step-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.45), rgba(14, 165, 233, 0.1), transparent 75%);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

/* Glare & Sheen Effect */
.step-card-glare {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
}

.step-card-inner {
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

/* 3D Header Elements */
.step-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  transform: translateZ(28px);
}

.step-num-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  padding: 3px 10px 3px 4px;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.step-num {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  color: #0b2341;
  background: #ffffff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.06);
}

.step-phase-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* 3D Floating Icon Badge */
.step-icon-badge-3d {
  position: relative;
  width: 52px;
  height: 52px;
  transform-style: preserve-3d;
  transform: translateZ(35px);
}

.icon-sphere {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 
    0 12px 20px -6px rgba(2, 132, 199, 0.45),
    inset 0 2px 4px rgba(255, 255, 255, 0.4),
    inset 0 -2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 2;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  animation: iconLevitate 4s ease-in-out infinite alternate;
}

@keyframes iconLevitate {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-4px) rotate(2deg);
  }
}

/* Icon Pulse Aura Rings */
.icon-pulse-aura,
.icon-pulse-aura-2 {
  position: absolute;
  inset: -6px;
  border-radius: 22px;
  border: 2px solid rgba(2, 132, 199, 0.4);
  opacity: 0;
  pointer-events: none;
}

.step-card.is-active-step .icon-pulse-aura {
  animation: pulseAura 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.step-card.is-active-step .icon-pulse-aura-2 {
  animation: pulseAura 2.2s cubic-bezier(0.25, 1, 0.5, 1) infinite 1.1s;
}

@keyframes pulseAura {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* 3D Body & Typography */
.step-body-3d {
  transform: translateZ(24px);
  margin-bottom: 1.25rem;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-primary-navy);
  margin-bottom: 0.65rem;
  letter-spacing: -0.2px;
  transition: color 0.3s ease;
}

.step-desc {
  font-size: 0.87rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1rem;
}

/* Feature / SLA Highlight Tag */
.step-highlight-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.18);
  padding: 4px 10px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step-highlight-tag i {
  font-size: 0.8rem;
  color: #0284c7;
}

/* Step Footer Progress Meter */
.step-footer-meter {
  transform: translateZ(18px);
  width: 100%;
  height: 4px;
  background: #f1f5f9;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.step-meter-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0284c7, #38bdf8);
  border-radius: 4px;
  transition: width 0.4s ease;
}

.step-card.is-active-step .step-meter-bar {
  width: 100%;
  animation: meterProgress 2.5s ease-in-out;
}

@keyframes meterProgress {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* 3D Flow Connector Chevron Capsules */
.step-arrow-connector-3d {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%) translateZ(35px);
  z-index: 10;
  pointer-events: none;
}

.connector-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid rgba(2, 132, 199, 0.25);
  box-shadow: 0 6px 15px rgba(2, 132, 199, 0.15), 0 2px 4px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  font-size: 0.85rem;
  position: relative;
  transition: all 0.3s ease;
}

.connector-energy-wave {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid #0284c7;
  opacity: 0;
  animation: wavePulse 2s cubic-bezier(0.2, 0.8, 0.2, 1) infinite;
}

@keyframes wavePulse {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

/* Active & Hover 3D States */
.step-card-3d:hover,
.step-card-3d.is-active-step {
  border-color: rgba(2, 132, 199, 0.4);
  box-shadow: 
    0 25px 45px -12px rgba(2, 132, 199, 0.2),
    0 8px 16px -4px rgba(11, 35, 65, 0.08),
    0 0 0 1px rgba(2, 132, 199, 0.15);
}

.step-card-3d.is-active-step {
  transform: translateY(-10px) translateZ(20px);
}

.step-card-3d:hover {
  transform: translateY(-12px) translateZ(25px);
}

.step-card-3d:hover .step-card-glow,
.step-card-3d.is-active-step .step-card-glow {
  opacity: 1;
}

.step-card-3d:hover .step-card-glare {
  opacity: 1;
}

.step-card-3d.is-active-step .step-num-pill,
.step-card-3d:hover .step-num-pill {
  background: rgba(2, 132, 199, 0.1);
  border-color: rgba(2, 132, 199, 0.3);
}

.step-card-3d.is-active-step .step-phase-badge,
.step-card-3d:hover .step-phase-badge {
  color: #0284c7;
}

.step-card-3d.is-active-step .icon-sphere,
.step-card-3d:hover .icon-sphere {
  transform: translateY(-6px) scale(1.08) rotate(4deg);
  box-shadow: 0 16px 25px -5px rgba(2, 132, 199, 0.55);
}

.step-card-3d.is-active-step .step-title,
.step-card-3d:hover .step-title {
  color: #0284c7;
}

.step-card-3d.is-active-step .step-highlight-tag,
.step-card-3d:hover .step-highlight-tag {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

.step-card-3d.is-active-step .step-highlight-tag i,
.step-card-3d:hover .step-highlight-tag i {
  color: #ffffff;
}

.step-card-3d.is-active-step .connector-circle,
.step-card-3d:hover .connector-circle {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: scale(1.15);
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.35);
}

/* Responsive Styles for 3D Steps */
@media (max-width: 1199px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  .hww-laser-track {
    display: none;
  }
  .step-arrow-connector-3d {
    display: none;
  }
}

@media (max-width: 767px) {
  .how-we-work-section {
    padding: 4.5rem 0;
  }
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .step-card-3d {
    min-height: auto;
    padding: 1.8rem 1.4rem;
  }
  .hww-pipeline-tracker {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    border-radius: 14px;
    padding: 10px 14px;
  }
}

/* ==========================================================================
   BLOGS & INSIGHTS SECTION (3D Modern Cards & Interactive Filters)
   ========================================================================== */
.blogs-section {
  padding: 3.2rem 0 4.2rem;
  background: #f8fafc;
  position: relative;
  overflow: hidden;
}

/* Ambient Background Lights */
.blog-ambient-orb {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.45;
  z-index: 1;
}

.blog-orb-1 {
  top: -100px;
  right: 5%;
  background: radial-gradient(circle, rgba(2, 132, 199, 0.2), transparent 70%);
}

.blog-orb-2 {
  bottom: -100px;
  left: 5%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.12), transparent 70%);
}

.blog-grid-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(2, 132, 199, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.blog-section-subtitle {
  color: #64748b;
  max-width: 620px;
  margin: 0.75rem auto 1.75rem auto;
  font-size: 0.96rem;
  line-height: 1.6;
}

/* Category Filter Pills */
.blog-filter-pills {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 6px;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0,0,0,0.03);
  border: 1px solid rgba(226, 232, 240, 0.9);
  flex-wrap: wrap;
  justify-content: center;
}

.blog-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  padding: 8px 18px;
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-filter-btn:hover {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.06);
}

.blog-filter-btn.active {
  background: linear-gradient(135deg, #0b2341 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.28);
}

/* 3D Blogs Grid */
.blogs-grid-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  perspective: 1200px;
  margin-top: 1rem;
}

/* 3D Blog Card */
.blog-card-3d {
  background: #ffffff;
  border-radius: 20px;
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 
    0 10px 25px -5px rgba(11, 35, 65, 0.05),
    0 4px 6px -2px rgba(11, 35, 65, 0.02);
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease,
              opacity 0.35s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.blog-card-3d.is-hidden {
  display: none !important;
}

/* Glow Aura Layer */
.blog-card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 22px;
  opacity: 0;
  filter: blur(12px);
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
}

.blog-card-glow.glow-blue {
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.4), transparent 70%);
}

.blog-card-glow.glow-red {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.35), transparent 70%);
}

.blog-card-glow.glow-cyan {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.4), transparent 70%);
}

/* Glare Overlay */
.blog-card-glare {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
}

.blog-card-inner {
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 20px;
  overflow: hidden;
}

/* Image Container */
.blog-img-container {
  position: relative;
  height: 205px;
  overflow: hidden;
  background: #0b2341;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.blog-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 35, 65, 0.05) 0%, rgba(11, 35, 65, 0.45) 100%);
  pointer-events: none;
}

/* Floating Badges over Image */
.blog-floating-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transform: translateZ(25px);
  transition: transform 0.3s ease;
}

.badge-blue {
  background: rgba(255, 255, 255, 0.92);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.3);
}

.badge-red {
  background: rgba(255, 255, 255, 0.92);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.badge-cyan {
  background: rgba(255, 255, 255, 0.92);
  color: #0369a1;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.blog-read-time {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(11, 35, 65, 0.7);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  gap: 5px;
  transform: translateZ(20px);
}

/* Card Content Area */
.blog-content-3d {
  padding: 1.75rem 1.6rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
  transform: translateZ(20px);
  background: #ffffff;
}

.blog-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 0.6rem;
}

.blog-meta-top span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.65rem;
}

.blog-title-link {
  color: var(--color-primary-navy);
  text-decoration: none;
  transition: color 0.25s ease;
}

.blog-title-link:hover {
  color: #0284c7;
}

.blog-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 1.5rem;
  flex: 1;
}

/* Card Footer with Animated Button & Impact Pill */
.blog-footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.1rem;
  margin-top: auto;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0284c7;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}

.blog-btn-arrow {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-stat-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: #64748b;
  background: #f8fafc;
  padding: 3px 8px;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 3D Numbering Watermark */
.blog-3d-num {
  position: absolute;
  top: 10px;
  right: 14px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.2rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
  transition: all 0.35s ease;
  letter-spacing: -1px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.blog-card-3d:hover .blog-3d-num {
  color: #38bdf8;
  transform: translateY(-3px) scale(1.1);
  text-shadow: 0 4px 15px rgba(2, 132, 199, 0.7);
}

/* Staggered Floating Micro-Animation Across 9 Blog Cards */
.blogs-grid-3d .blog-card-3d:nth-child(1) { animation: blogCardFloat 5s ease-in-out infinite alternate 0s; }
.blogs-grid-3d .blog-card-3d:nth-child(2) { animation: blogCardFloat 5s ease-in-out infinite alternate 0.4s; }
.blogs-grid-3d .blog-card-3d:nth-child(3) { animation: blogCardFloat 5s ease-in-out infinite alternate 0.8s; }
.blogs-grid-3d .blog-card-3d:nth-child(4) { animation: blogCardFloat 5s ease-in-out infinite alternate 1.2s; }
.blogs-grid-3d .blog-card-3d:nth-child(5) { animation: blogCardFloat 5s ease-in-out infinite alternate 1.6s; }
.blogs-grid-3d .blog-card-3d:nth-child(6) { animation: blogCardFloat 5s ease-in-out infinite alternate 2.0s; }
.blogs-grid-3d .blog-card-3d:nth-child(7) { animation: blogCardFloat 5s ease-in-out infinite alternate 0.6s; }
.blogs-grid-3d .blog-card-3d:nth-child(8) { animation: blogCardFloat 5s ease-in-out infinite alternate 1.0s; }
.blogs-grid-3d .blog-card-3d:nth-child(9) { animation: blogCardFloat 5s ease-in-out infinite alternate 1.4s; }

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

/* Category Filter Tabs */
.blog-filter-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.blog-filter-btn {
  padding: 8px 22px;
  border-radius: 9999px;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #64748b;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.blog-filter-btn:hover {
  color: #00376d;
  background: #f0f9ff;
  border-color: #bae6fd;
}

.blog-filter-btn.active {
  background: linear-gradient(135deg, #00376d 0%, #0284c7 100%);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
}

/* Hover States & 3D Interactive Elevation */
.blog-card-3d:hover {
  animation-play-state: paused !important;
  transform: perspective(1000px) translateY(-14px) scale(1.025) translateZ(20px) !important;
  border-color: rgba(2, 132, 199, 0.45);
  box-shadow: 
    0 24px 50px -10px rgba(2, 132, 199, 0.25),
    0 10px 20px -5px rgba(11, 35, 65, 0.08),
    0 0 0 1px rgba(2, 132, 199, 0.2);
}

.blog-card-3d:hover .blog-card-glow {
  opacity: 1;
}

.blog-card-3d:hover .blog-card-glare {
  opacity: 1;
}

.blog-card-3d:hover .blog-img {
  transform: scale(1.08);
}

.blog-card-3d:hover .blog-title-link {
  color: #0284c7;
}

.blog-card-3d:hover .blog-read-btn {
  color: #0369a1;
  gap: 12px;
}

.blog-card-3d:hover .blog-btn-arrow {
  transform: translateX(4px) scale(1.15);
}

.blog-card-3d:hover .blog-floating-badge {
  transform: translateZ(32px) scale(1.04);
}

/* Responsive Styles for Blog */
@media (max-width: 1024px) {
  .blogs-grid-3d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 767px) {
  .blogs-section {
    padding: 4.5rem 0;
  }
  .blogs-grid-3d {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .blog-img-container {
    height: 180px;
  }
  .blog-content-3d {
    padding: 1.4rem 1.25rem 1.25rem 1.25rem;
  }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
  padding: 3.5rem 0 4rem;
  background: var(--color-primary-navy);
  color: #ffffff;
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3.5rem;
  align-items: center;
}

.testimonials-content .section-title {
  color: #ffffff;
}

.testimonials-sub {
  color: #94a3b8;
  font-size: 0.98rem;
  margin-bottom: 2rem;
}

.testimonials-cards-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.testimonial-card {
  background: #ffffff;
  color: var(--color-text-main);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 0.88rem;
  color: #334155;
  line-height: 1.55;
  margin-bottom: 1.25rem;
  font-style: italic;
  position: relative;
}

.testimonial-author-box {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-primary-navy);
}

.author-role {
  font-size: 0.78rem;
  color: #64748b;
}

.testimonials-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 2.5rem;
}

.dot-indicator {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.dot-indicator.active {
  background: #0284c7;
  width: 24px;
}

/* ==========================================================================
   GET IN TOUCH / CONTACT SECTION (FULL COVER PANORAMIC DESIGN)
   ========================================================================== */
.contact-section {
  padding: 0;
  background: #ffffff;
  width: 100%;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #e2e8f0;
}

.contact-card-banner {
  background: #ffffff;
  width: 100%;
  max-width: 100%;
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1.15fr 1.35fr 1.55fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}

/* Part 1: Left Angled Building Visual (Edge to Edge) */
.contact-banner-visual {
  position: relative;
  height: 100%;
  min-height: 480px;
  clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
  overflow: hidden;
  background: #0284c7;
}

.contact-building-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.contact-card-banner:hover .contact-building-img {
  transform: scale(1.05);
}

.contact-visual-slant-line {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 5px;
  background: #0284c7;
  z-index: 2;
  box-shadow: -2px 0 10px rgba(2, 132, 199, 0.4);
}

/* Part 2: Middle Contact Details */
.contact-banner-info {
  padding: 3.5rem 2.8rem 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
}

.contact-banner-tag {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: #0284c7;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.contact-banner-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #00376d;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.contact-info-list-horizontal {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-banner-item {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.contact-banner-item:hover {
  transform: translateX(5px);
}

.contact-banner-icon {
  width: 46px;
  height: 46px;
  background: #0284c7;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.35);
  transition: background 0.25s ease, transform 0.25s ease;
}

.contact-banner-item:hover .contact-banner-icon {
  background: #00376d;
  transform: scale(1.08);
}

.contact-banner-item-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  color: #0b2341;
  line-height: 1.25;
}

.contact-banner-item-text span {
  font-size: 0.84rem;
  color: #64748b;
}

/* Part 3: Right Form Card */
.contact-banner-form-card {
  padding: 3.5rem 3.5rem 3.5rem 2.5rem;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid #f1f5f9;
}

.contact-banner-form-card .form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-bottom: 1rem;
}

.contact-banner-form-card .form-group {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.contact-banner-form-card .form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
  margin-bottom: 0.4rem;
}

.contact-banner-form-card .form-control {
  width: 100%;
  padding: 0.82rem 1.1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.92rem;
  color: #1e293b;
  background: #f8fafc;
  transition: all var(--transition-fast);
}

.contact-banner-form-card .form-control:focus {
  border-color: #0284c7;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.12);
}

.contact-banner-form-card textarea.form-control {
  resize: vertical;
  min-height: 95px;
}

.contact-banner-form-card .btn-form-submit {
  width: 100%;
  padding: 0.95rem 1.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  background: #ef4444;
  color: #ffffff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 6px 18px rgba(239, 68, 68, 0.35);
  margin-top: 0.6rem;
}

.contact-banner-form-card .btn-form-submit:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.45);
}

@media (max-width: 1200px) {
  .contact-card-banner {
    grid-template-columns: 1fr 1.25fr 1.45fr;
  }
  .contact-banner-info {
    padding: 2.8rem 1.8rem;
  }
  .contact-banner-form-card {
    padding: 2.8rem 2rem;
  }
}

@media (max-width: 991px) {
  .contact-card-banner {
    grid-template-columns: 1fr;
  }
  .contact-banner-visual {
    min-height: 320px;
    clip-path: none;
  }
  .contact-visual-slant-line {
    display: none;
  }
  .contact-banner-info {
    padding: 2.5rem 1.5rem;
  }
  .contact-banner-form-card {
    border-left: none;
    border-top: 1px solid #f1f5f9;
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 580px) {
  .contact-banner-form-card .form-group-row {
    grid-template-columns: 1fr;
  }
  .contact-banner-heading {
    font-size: 1.4rem;
  }
  .contact-banner-info {
    padding: 1.8rem 1.25rem;
  }
  .contact-banner-form-card {
    padding: 1.8rem 1.25rem;
  }
}

/* ==========================================================================
   SITE FOOTER (UNIFIED LUXURY GLASSMORPHIC CARD & SLEEK MODERN DESIGN)
   ========================================================================== */
.site-footer {
  position: relative;
  background-color: #030712;
  background: radial-gradient(circle at 50% 10%, #0f172a 0%, #050811 60%, #020408 100%);
  color: #ffffff;
  padding: 3.5rem 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 30%, rgba(2, 132, 199, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 70%, rgba(56, 189, 248, 0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.footer-content-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
}

/* Unified Grand Frosted Glass Card */
.footer-main-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.70) 0%, rgba(7, 12, 22, 0.85) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 2.75rem 2.75rem 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  margin-bottom: 0.5rem;
}

.footer-grid-unified {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.95fr 1.25fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

/* Col 1: Brand & Bio */
.footer-brand-col {
  display: flex;
  flex-direction: column;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}

.footer-unified-logo {
  width: 82px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
  transition: transform 0.3s ease;
}

.footer-unified-logo:hover {
  transform: scale(1.06);
}

.footer-brand-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #38bdf8;
  background: rgba(2, 132, 199, 0.15);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  line-height: 1.2;
}

.footer-brand-tagline {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Social Row */
.footer-social-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: #0284c7;
  border-color: #38bdf8;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.5);
}

/* Headers for Cols */
.footer-unified-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.25rem;
  position: relative;
  display: inline-block;
  letter-spacing: -0.2px;
}

.footer-unified-title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 28px;
  height: 2.5px;
  background: #38bdf8;
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(56, 189, 248, 0.9);
}

/* Links lists with smooth arrow animations */
.footer-modern-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-modern-links li a {
  color: #cbd5e1;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.footer-modern-links li a i {
  font-size: 0.75rem;
  color: #38bdf8;
  transition: transform 0.2s ease;
}

.footer-modern-links li a:hover {
  color: #38bdf8;
  transform: translateX(4px);
}

.footer-modern-links li a:hover i {
  transform: translateX(2px);
}

/* Col 4: 24x7 Help Desk */
.footer-contact-unified {
  display: flex;
  flex-direction: column;
}

.footer-direct-box {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-phone-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 14px;
  padding: 0.75rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-phone-highlight:hover {
  background: rgba(2, 132, 199, 0.22);
  border-color: #38bdf8;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.3);
}

.phone-pulse-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #10b981;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.phone-tag {
  display: block;
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.phone-num {
  display: block;
  font-size: 1rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: #cbd5e1;
  line-height: 1.45;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-item i {
  color: #38bdf8;
  font-size: 0.95rem;
  margin-top: 3px;
  width: 16px;
  text-align: center;
}

.footer-contact-item:hover {
  color: #ffffff;
}

/* Sub-Footer Line inside Unified Card */
.footer-unified-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding-top: 1.25rem;
  font-size: 0.85rem;
  color: #94a3b8;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-unified-bottom strong {
  color: #f1f5f9;
}

.footer-legal-tags {
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #38bdf8;
  background: rgba(2, 132, 199, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}

/* Peeking Cute White Fluffy Cat Section at Absolute Bottom (Transparent, Clean 4K) */
.footer-cat-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-top: 0.5rem;
  margin-bottom: 0;
  line-height: 0;
  position: relative;
  z-index: 3;
  pointer-events: none;
}

.footer-cat-img {
  max-width: 320px;
  width: 75%;
  height: auto;
  display: block;
  user-select: none;
  margin: 0 auto;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: none;
}

.footer-cat-img:hover {
  transform: translateY(-5px) scale(1.02);
}

@media (max-width: 1024px) {
  .footer-grid-unified {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 2.5rem 0 0;
  }
  .footer-main-card {
    padding: 1.75rem 1.25rem 1.25rem;
    border-radius: 18px;
  }
  .footer-grid-unified {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-unified-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }
  .footer-legal-tags {
    justify-content: center;
  }
  .footer-cat-img {
    max-width: 230px;
    width: 80%;
  }
}

/* ==========================================================================
   MODALS & FLOATING WIDGETS
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 59, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: #ffffff;
  border-radius: var(--radius-xl);
  max-width: 580px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  transform: scale(0.95);
  transition: transform var(--transition-normal);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: var(--radius-full);
  color: #475569;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--color-accent-red);
  color: #ffffff;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all var(--transition-normal);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Back To Top Button */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--color-primary-navy);
  color: #ffffff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #0284c7;
  transform: translateY(-3px);
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #0f172a;
  color: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  border-left: 4px solid var(--color-primary-blue);
  animation: slideInRight 0.3s ease forwards;
}

.toast.success {
  border-left-color: #22c55e;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .about-grid,
  .why-us-grid,
  .testimonials-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-arrow-connector {
    display: none;
  }

  .footer-top-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .nav-menu,
  .nav-actions .phone-badge {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  /* Mobile Navigation Drawer */
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 75px;
    left: 0;
    right: 0;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: #ffffff;
    padding: 1.25rem 1.5rem 2rem;
    box-shadow: 0 20px 40px rgba(0, 31, 63, 0.22);
    border-bottom: 2px solid var(--color-border);
    gap: 0.75rem;
    align-items: stretch;
    z-index: 99999;
  }

  .nav-menu .nav-link {
    width: 100%;
    font-size: 1.05rem;
    padding: 10px 14px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }

  /* Mobile Nested Accordion Dropdown */
  .nav-item-dropdown {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    position: relative !important;
  }

  .nav-item-dropdown .dropdown-menu {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    min-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    background: #f1f5f9 !important;
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 14px !important;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.04), 0 4px 12px rgba(0, 55, 109, 0.08) !important;
    padding: 0.6rem 0.5rem !important;
    margin: 6px 0 4px 0 !important;
    display: none !important;
    flex-direction: column !important;
    gap: 4px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }

  /* When open or on mobile active / hover */
  .nav-item-dropdown.open .dropdown-menu,
  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown.active .dropdown-menu {
    display: flex !important;
  }

  .nav-item-dropdown .dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 0.65rem 1rem !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    color: #00376d !important;
    border-radius: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: left !important;
    background: transparent !important;
    transition: all 0.2s ease !important;
  }

  .nav-item-dropdown .dropdown-item i {
    color: #e53935 !important;
    font-size: 1.05rem !important;
    width: 24px !important;
    text-align: center !important;
    flex-shrink: 0 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 4px !important;
  }

  .nav-item-dropdown .dropdown-item:hover,
  .nav-item-dropdown .dropdown-item:active {
    background: #e0f2fe !important;
    color: #00376d !important;
    padding-left: 1.3rem !important;
  }
}

@media (max-width: 768px) {

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: 2.3rem;
  }

  .hero-image-card img {
    height: 300px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .about-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .collage-item.tall-left {
    grid-column: 1 / 3;
    height: 220px;
  }

  .why-features-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .why-feature-arrow {
    display: none;
  }

  .metrics-counter-card {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-cards-wrap {
    grid-template-columns: 1fr;
  }

  .form-group-row {
    grid-template-columns: 1fr;
  }

  .footer-top-grid {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }
}

/* ==========================================================================
   ABOUT US PAGE - REALISTIC WOODEN SIGNBOARD & SHOWCASE STYLES
   ========================================================================== */
.about-page-header-banner {
  background: linear-gradient(135deg, #001f3f 0%, #00376d 50%, #0b2341 100%);
  color: #ffffff;
  padding: 4rem 0 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-page-header-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, rgba(56, 189, 248, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.about-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #94a3b8;
  margin-bottom: 0.75rem;
}

.about-breadcrumbs a {
  color: #38bdf8;
  text-decoration: none;
  transition: color 0.2s;
}

.about-breadcrumbs a:hover {
  color: #ffffff;
}

.about-breadcrumbs .divider {
  color: #64748b;
}

.about-page-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin: 0;
}

/* ==========================================================================
   MINIMALIST LUXURY CORPORATE TYPOGRAPHY HERO BANNER
   ========================================================================== */
.minimal-page-hero {
  position: relative;
  padding: clamp(7.5rem, 12vh, 9.5rem) 1.5rem clamp(3.5rem, 6vh, 4.5rem);
  background: linear-gradient(135deg, #07152b 0%, #0b2341 50%, #00376d 100%);
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.minimal-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.4;
  pointer-events: none;
}

.minimal-page-hero .hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.minimal-page-hero .glow-cyan {
  top: 10%;
  left: 30%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.22) 0%, transparent 70%);
}

.minimal-page-hero .glow-gold {
  bottom: 10%;
  right: 25%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.14) 0%, transparent 70%);
}

.minimal-hero-container {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-minimal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.35);
  color: #38bdf8;
  font-family: 'Outfit', sans-serif;
  font-size: 0.80rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 9999px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
}

.hero-minimal-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-minimal-title .text-gradient-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 50%, #bae6fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 2px 10px rgba(56, 189, 248, 0.3));
}

.hero-minimal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0 1.25rem;
  width: 100%;
}

.divider-glow-bar {
  width: 80px;
  height: 3.5px;
  background: linear-gradient(90deg, transparent, #38bdf8 30%, #fbbf24 70%, transparent);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(56, 189, 248, 0.8);
}

.hero-minimal-desc {
  font-size: clamp(0.95rem, 1.8vw, 1.12rem);
  color: #cbd5e1;
  line-height: 1.65;
  max-width: 680px;
  margin-bottom: 1.5rem;
}

.hero-minimal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 6px 18px;
  border-radius: 9999px;
  backdrop-filter: blur(10px);
}

.hero-minimal-breadcrumb a {
  color: #f1f5f9;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-minimal-breadcrumb a:hover {
  color: #38bdf8;
}

.hero-minimal-breadcrumb i {
  font-size: 0.65rem;
  color: #64748b;
}

.hero-minimal-breadcrumb span {
  color: #38bdf8;
}

/* ==========================================================================
   CAREER 3D APPLICATION FORM (PROMINENT WHITE MARBLE 3D CARD & TRANSPARENT CARTOON)
   ========================================================================== */
.career-3d-form-section {
  padding: 5rem 0 6.5rem;
  background: linear-gradient(135deg, #eef2f6 0%, #e2e8f0 50%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.career-3d-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.career-3d-title-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: #ea580c;
  background: rgba(234, 88, 12, 0.1);
  border: 1.5px solid rgba(234, 88, 12, 0.3);
  padding: 5px 16px;
  border-radius: 30px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.12);
}

.career-3d-main-title {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.5rem;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
}

.career-3d-main-title .highlight-orange {
  color: #ff7a00;
  background: linear-gradient(135deg, #ff8a00 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.career-3d-subtitle {
  font-size: 1.05rem;
  color: #475569;
  margin: 0;
  font-weight: 500;
}

/* Grid Layout: Left Side Form (1.05fr), Right Side Character (0.95fr) */
.career-3d-grid-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1220px;
  margin: 0 auto;
}

/* Left Side: Real White Marble 3D Slab Card */
.career-3d-marble-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background-image: url('../images/white-marble-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3.25rem 2.75rem;
  box-shadow: 
    0 35px 70px -12px rgba(15, 23, 42, 0.28),
    0 12px 24px -5px rgba(0, 0, 0, 0.14),
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -3px 6px rgba(0, 0, 0, 0.08);
  border: 2.5px solid rgba(255, 255, 255, 0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-3d-marble-card:hover {
  transform: translateY(-5px);
  box-shadow: 
    0 42px 85px -14px rgba(15, 23, 42, 0.34),
    0 16px 30px -5px rgba(0, 0, 0, 0.18),
    inset 0 2px 4px rgba(255, 255, 255, 1),
    inset 0 -3px 6px rgba(0, 0, 0, 0.1);
}

/* Ultra-light sheen overlay so marble veins stay 100% visible and vivid */
.career-3d-marble-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
  pointer-events: none;
  border-radius: 28px;
  z-index: 1;
}

/* Card Header inside Marble Slab */
.career-3d-card-header {
  position: relative;
  z-index: 2;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px dashed rgba(148, 163, 184, 0.4);
}

.career-3d-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #ea580c;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(234, 88, 12, 0.35);
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(234, 88, 12, 0.12);
}

.career-3d-badge i {
  color: #ff7a00;
  animation: pulseBolt 2s infinite ease-in-out;
}

@keyframes pulseBolt {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.career-3d-card-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.35rem;
  line-height: 1.25;
}

.career-3d-card-sub {
  font-size: 0.88rem;
  color: #475569;
  margin: 0;
  line-height: 1.45;
}

.career-3d-form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.career-3d-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.15rem;
}

/* 3D Input Group with Left Icon Capsule */
.career-3d-input-group {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.career-3d-input-icon {
  position: absolute;
  left: 10px;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff 0%, #f1f5f9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7a00;
  font-size: 0.95rem;
  box-shadow: 
    0 3px 8px rgba(0, 0, 0, 0.08), 
    inset 0 1px 1px #ffffff,
    0 1px 0 #cbd5e1;
  border: 1px solid rgba(226, 232, 240, 0.95);
  z-index: 3;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.career-3d-input-group:focus-within .career-3d-input-icon {
  background: linear-gradient(135deg, #ff8a00 0%, #ea580c 100%);
  color: #ffffff;
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 
    0 6px 16px rgba(234, 88, 12, 0.42), 
    inset 0 1px 1px rgba(255, 255, 255, 0.6);
  border-color: transparent;
}

.career-3d-input-group.textarea-group {
  align-items: flex-start;
}

.career-3d-input-group.textarea-group .career-3d-input-icon {
  top: 12px;
}

/* 3D Elevated Glassmorphic Input Elements on Marble */
.career-3d-input,
.career-3d-select,
.career-3d-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid rgba(148, 163, 184, 0.45);
  border-radius: 14px;
  padding: 0.95rem 1.15rem 0.95rem 56px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  outline: none;
  box-shadow: 
    0 4px 12px rgba(0, 0, 0, 0.05),
    inset 0 1px 2px rgba(255, 255, 255, 0.9);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.career-3d-input::placeholder,
.career-3d-textarea::placeholder {
  color: #475569;
  font-size: 0.90rem;
  font-weight: 500;
}

.career-3d-input:focus,
.career-3d-select:focus,
.career-3d-textarea:focus {
  background: #ffffff;
  border-color: #ff7a00;
  box-shadow: 
    0 0 0 4px rgba(255, 122, 0, 0.22),
    0 6px 18px rgba(255, 122, 0, 0.16),
    inset 0 1px 2px rgba(0, 0, 0, 0.02);
  transform: translateY(-2px);
}

.career-3d-textarea {
  resize: vertical;
  min-height: 105px;
}

.career-3d-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23475569'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2'%20d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.15rem center;
  background-size: 1.15rem;
  cursor: pointer;
}

/* 3D Embossed Tactile Push Button */
.career-3d-submit-btn {
  width: 100%;
  background: linear-gradient(180deg, #ff8a00 0%, #ea580c 100%);
  color: #ffffff;
  border: none;
  border-radius: 16px;
  padding: 1.1rem 1.75rem;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 
    0 14px 28px rgba(234, 88, 12, 0.48),
    inset 0 1px 1px rgba(255, 255, 255, 0.65),
    0 5px 0 #9a3412;
  transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  position: relative;
  overflow: hidden;
}

.btn-3d-content {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-3d-subtext {
  font-size: 0.72rem;
  font-weight: 600;
  opacity: 0.9;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.career-3d-submit-btn:hover {
  background: linear-gradient(180deg, #ff981a 0%, #c2410c 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 18px 36px rgba(234, 88, 12, 0.58),
    inset 0 1px 1px rgba(255, 255, 255, 0.8),
    0 5px 0 #9a3412;
}

.career-3d-submit-btn:active {
  transform: translateY(3px);
  box-shadow: 
    0 4px 12px rgba(234, 88, 12, 0.35),
    inset 0 1px 2px rgba(0, 0, 0, 0.2),
    0 2px 0 #9a3412;
}

/* Right Side: 3D Transparent Character + 3D Floating Badges (Well Proportioned) */
.career-3d-visual-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0.5rem 0;
  width: 100%;
}

.career-3d-character-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
  transition: transform 0.4s ease;
  user-select: none;
  position: relative;
  z-index: 2;
}

.career-3d-character-img:hover {
  transform: translateY(-6px) scale(1.02);
}

/* 3D Floating Badges */
.floating-3d-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255, 255, 255, 0.95);
  padding: 10px 16px;
  border-radius: 18px;
  box-shadow: 
    0 18px 36px rgba(15, 23, 42, 0.16), 
    0 4px 12px rgba(0, 0, 0, 0.06), 
    inset 0 1px 0 #ffffff;
  z-index: 4;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  pointer-events: auto;
}

.floating-3d-badge:hover {
  transform: scale(1.06) translateY(-4px);
  box-shadow: 0 22px 45px rgba(15, 23, 42, 0.22);
}

.badge-3d-icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: #ffffff;
  flex-shrink: 0;
}

.badge-3d-icon-circle.bg-blue {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.35);
}

.badge-3d-icon-circle.bg-emerald {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.badge-3d-icon-circle.bg-amber {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.badge-3d-text {
  display: flex;
  flex-direction: column;
}

.badge-3d-text strong {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.badge-3d-text span {
  font-size: 0.74rem;
  color: #64748b;
  font-weight: 600;
}

/* Badge Positioning and Keyframe Animations */
.badge-top-right {
  top: 8%;
  right: -10px;
  animation: floatBadge1 4.8s ease-in-out infinite;
}

.badge-bottom-left {
  bottom: 12%;
  left: -15px;
  animation: floatBadge2 5.2s ease-in-out infinite 0.7s;
}

.badge-bottom-right {
  bottom: 2%;
  right: 0px;
  animation: floatBadge3 5.6s ease-in-out infinite 1.4s;
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1.2deg); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(-1.5deg); }
}

@keyframes floatBadge3 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-7px) rotate(1deg); }
}

@media (max-width: 991px) {
  .career-3d-grid-wrap {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .career-3d-visual-col {
    order: 2;
    padding: 1.5rem 0;
  }
  .career-3d-marble-card {
    order: 1;
    padding: 2.25rem 1.75rem;
  }
  .career-3d-character-img {
    min-height: auto;
    max-height: 480px;
    max-width: 360px;
  }
  .badge-top-right {
    top: 5%;
    right: 5%;
  }
  .badge-bottom-left {
    bottom: 12%;
    left: 5%;
  }
  .badge-bottom-right {
    bottom: -5px;
    right: 8%;
  }
}

@media (max-width: 540px) {
  .career-3d-row-2 {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }
  .career-3d-main-title {
    font-size: 2.1rem;
  }
  .career-3d-marble-card {
    padding: 1.85rem 1.25rem;
    border-radius: 20px;
  }
  .floating-3d-badge {
    padding: 8px 12px;
  }
  .badge-3d-text strong {
    font-size: 0.78rem;
  }
  .badge-3d-text span {
    font-size: 0.68rem;
  }
}

/* ==========================================================================
   3D FROSTED GLASSMORPHISM CONTACT SHOWCASE (EXACT IMAGE 2 AESTHETIC)
   ========================================================================== */
.glass-contact-showcase-section {
  padding: 8.5rem 0 4.5rem;
  padding-top: clamp(8.5rem, 13vh, 10.5rem);
  padding-bottom: clamp(4rem, 7vh, 5.5rem);
  background: #081426;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Atmospheric Ambient Lights & Mesh */
.glass-scene-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.glass-bg-picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.glass-bg-artwork {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  display: block;
  transform: scale(1.05);
  filter: brightness(0.92) contrast(1.05);
  animation: glassBgSubtleFloat 20s ease-in-out infinite alternate;
  will-change: transform;
}

@keyframes glassBgSubtleFloat {
  0% {
    transform: scale(1.05) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-10px, -6px);
  }
  100% {
    transform: scale(1.05) translate(10px, 4px);
  }
}

.glass-bg-overlay {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(8, 20, 38, 0.15) 0%, rgba(5, 14, 28, 0.65) 100%),
    linear-gradient(180deg, rgba(8, 20, 38, 0.3) 0%, rgba(5, 14, 28, 0.7) 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.glass-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
}

.glass-orb-sun-gold {
  top: -60px;
  left: 45%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.35) 0%, rgba(234, 88, 12, 0.15) 50%, transparent 70%);
  animation: glassOrbFloat1 9s ease-in-out infinite alternate;
}

.glass-orb-center-cyan {
  top: 40%;
  left: 15%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
  animation: glassOrbFloat2 11s ease-in-out infinite alternate;
}

.glass-orb-bottom-rose {
  bottom: -80px;
  right: 12%;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(244, 63, 94, 0.28) 0%, transparent 70%);
  animation: glassOrbFloat1 10s ease-in-out infinite alternate-reverse;
}

@keyframes glassOrbFloat1 {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(35px) scale(1.08); }
}

@keyframes glassOrbFloat2 {
  0% { transform: translateX(0) scale(1); }
  100% { transform: translateX(-30px) scale(1.1); }
}

.glass-backdrop-mesh {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 0 0;
  opacity: 0.3;
  pointer-events: none;
}

/* 3D Perspective Card Wrapper */
.glass-3d-card-wrapper {
  perspective: 1200px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* 3D Frosted Glass Container (Compact & Ultra-Sleek) */
.glass-3d-card {
  background: rgba(13, 27, 49, 0.52);
  backdrop-filter: blur(28px) saturate(210%);
  -webkit-backdrop-filter: blur(28px) saturate(210%);
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: 24px;
  box-shadow: 
    0 30px 70px -15px rgba(0, 0, 0, 0.8),
    0 0 50px rgba(2, 132, 199, 0.2),
    0 0 80px rgba(245, 158, 11, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.5);
  padding: 1.85rem 2.2rem;
  max-width: 980px;
  width: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

.glass-3d-card:hover {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 
    0 40px 85px -15px rgba(0, 0, 0, 0.9),
    0 0 60px rgba(56, 189, 248, 0.3),
    0 0 90px rgba(245, 158, 11, 0.12),
    inset 0 1px 2px rgba(255, 255, 255, 0.65);
}

.glass-card-glare {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  mix-blend-mode: overlay;
  z-index: 10;
}

/* Header Area (Compact) */
.glass-card-header {
  margin-bottom: 1.25rem;
  transform: translateZ(25px);
}

.glass-top-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(2, 132, 199, 0.25);
  border: 1px solid rgba(56, 189, 248, 0.45);
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.piano-mode-chip {
  background: rgba(245, 158, 11, 0.25);
  border: 1px solid rgba(245, 158, 11, 0.5);
  color: #fbbf24;
  border-radius: 20px;
  padding: 1px 8px;
  font-size: 0.66rem;
  margin-left: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.glass-radar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #38bdf8;
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  animation: radarDotPulse 2s infinite;
}

@keyframes radarDotPulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(56, 189, 248, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
  }
}

.glass-main-heading {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.2rem 0;
  letter-spacing: -0.5px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.glass-subheading {
  color: #cbd5e1;
  font-size: 0.86rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.4;
}

/* 2-Column Grid */
.glass-card-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.8rem;
  align-items: start;
}

/* Left Info Column */
.glass-info-column {
  transform: translateZ(20px);
}

.glass-info-badge-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.11) 0%, rgba(15, 32, 58, 0.65) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 0.72rem 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.72rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 
    0 10px 25px -4px rgba(0, 0, 0, 0.55),
    0 2px 4px rgba(0, 0, 0, 0.3),
    inset 0 1px 1px rgba(255, 255, 255, 0.4),
    inset 0 -1px 2px rgba(0, 0, 0, 0.5);
  transform: perspective(600px) translateZ(0);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.glass-info-badge-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16) 0%, rgba(20, 42, 75, 0.75) 100%);
  border-color: rgba(56, 189, 248, 0.6);
  transform: perspective(600px) translateY(-3px) translateZ(14px);
  box-shadow: 
    0 16px 32px -4px rgba(0, 0, 0, 0.7),
    0 0 25px rgba(56, 189, 248, 0.25),
    inset 0 1px 1px rgba(255, 255, 255, 0.6),
    inset 0 -1px 2px rgba(0, 0, 0, 0.5);
}

.glass-info-icon-box {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.02rem;
  color: #ffffff;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-info-icon-box.icon-home {
  background: linear-gradient(135deg, #38bdf8 0%, #0284c7 50%, #0369a1 100%);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.6), inset 0 -2px 3px rgba(0, 0, 0, 0.4);
}

.glass-info-icon-box.icon-mail {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
  box-shadow: 0 6px 16px rgba(245, 158, 11, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.6), inset 0 -2px 3px rgba(0, 0, 0, 0.4);
}

.glass-info-icon-box.icon-phone {
  background: linear-gradient(135deg, #34d399 0%, #10b981 50%, #059669 100%);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.45), inset 0 2px 2px rgba(255, 255, 255, 0.6), inset 0 -2px 3px rgba(0, 0, 0, 0.4);
}

.glass-info-badge-card:hover .glass-info-icon-box {
  transform: scale(1.08) rotate(4deg);
}

.glass-info-text {
  display: flex;
  flex-direction: column;
  font-size: 0.82rem;
  line-height: 1.35;
  color: #f8fafc;
}

.info-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin-bottom: 1px;
}

.glass-info-link,
.glass-phone-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.glass-info-link:hover,
.glass-phone-link:hover {
  color: #38bdf8;
}

.glass-phone-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

.phone-sep {
  color: #64748b;
  font-size: 0.75rem;
}

.glass-assurance-pill {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.18) 0%, rgba(6, 78, 59, 0.45) 100%);
  border: 1px solid rgba(52, 211, 153, 0.45);
  border-radius: 12px;
  padding: 0.65rem 0.95rem;
  font-size: 0.78rem;
  color: #a7f3d0;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0.85rem;
  box-shadow: 
    0 8px 20px rgba(0, 0, 0, 0.35),
    0 0 15px rgba(16, 185, 129, 0.15),
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -1px 2px rgba(0, 0, 0, 0.4);
}

.glass-assurance-pill i {
  font-size: 1.05rem;
  color: #34d399;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.glass-direct-actions {
  display: flex;
  gap: 10px;
}

.glass-action-btn {
  flex: 1;
  padding: 9px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  position: relative;
}

.glass-action-btn.btn-call {
  background: linear-gradient(180deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 3px solid #075985;
  box-shadow: 
    0 4px 0 #075985,
    0 8px 16px rgba(0, 0, 0, 0.4),
    inset 0 1.5px 1px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.glass-action-btn.btn-call:hover {
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 0 #075985,
    0 12px 20px rgba(2, 132, 199, 0.45),
    inset 0 1.5px 1px #ffffff;
}

.glass-action-btn.btn-call:active {
  transform: translateY(2px);
  box-shadow: 
    0 2px 0 #075985,
    0 4px 8px rgba(0, 0, 0, 0.4);
}

.glass-action-btn.btn-wa {
  background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 3px solid #14532d;
  box-shadow: 
    0 4px 0 #14532d,
    0 8px 16px rgba(0, 0, 0, 0.4),
    inset 0 1.5px 1px rgba(255, 255, 255, 0.6);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.glass-action-btn.btn-wa:hover {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
  transform: translateY(-2px);
  box-shadow: 
    0 6px 0 #14532d,
    0 12px 20px rgba(34, 197, 94, 0.45),
    inset 0 1.5px 1px #ffffff;
}

.glass-action-btn.btn-wa:active {
  transform: translateY(2px);
  box-shadow: 
    0 2px 0 #14532d,
    0 4px 8px rgba(0, 0, 0, 0.4);
}

/* Right Form Column */
.glass-form-column {
  transform: translateZ(22px);
}

.glass-input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.glass-field-wrap {
  position: relative;
  margin-bottom: 8px;
}

.glass-field-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.82rem;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 2;
}

.glass-input-field {
  width: 100%;
  background: linear-gradient(180deg, rgba(6, 16, 32, 0.85) 0%, rgba(13, 27, 49, 0.55) 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(0, 0, 0, 0.45);
  border-radius: 10px;
  padding: 9px 12px 9px 36px;
  font-family: var(--font-main);
  font-size: 0.83rem;
  color: #ffffff;
  outline: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    inset 0 3px 6px rgba(0, 0, 0, 0.6),
    inset 0 -1px 0 rgba(255, 255, 255, 0.15),
    0 1px 0 rgba(255, 255, 255, 0.1);
}

.glass-input-field::placeholder {
  color: #94a3b8;
  font-size: 0.80rem;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

/* Interactive Piano Wave Bar & Shimmer */
.piano-wave-bar {
  position: absolute;
  bottom: 0;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8 25%, #fbbf24 60%, #f43f5e 85%, transparent 100%);
  border-radius: 2px;
  opacity: 0;
  transform: scaleX(0.2);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  z-index: 3;
}

.glass-field-wrap:hover .piano-wave-bar,
.glass-field-wrap:focus-within .piano-wave-bar {
  opacity: 1;
  transform: scaleX(1);
  animation: pianoWavePulse 1.4s ease-in-out infinite alternate;
}

@keyframes pianoWavePulse {
  0% {
    filter: brightness(1) drop-shadow(0 0 3px #38bdf8);
  }
  100% {
    filter: brightness(1.6) drop-shadow(0 0 9px #fbbf24);
  }
}

/* Hover on fill text: Shimmering glow and 3D border highlight */
.glass-input-field:hover {
  background: linear-gradient(180deg, rgba(8, 20, 38, 0.9) 0%, rgba(17, 36, 64, 0.65) 100%);
  border-color: rgba(56, 189, 248, 0.6);
  box-shadow: 
    inset 0 2px 5px rgba(0, 0, 0, 0.5),
    0 0 16px rgba(56, 189, 248, 0.25),
    inset 0 -1px 0 rgba(56, 189, 248, 0.3);
  transform: translateY(-1px);
}

.glass-input-field:hover::placeholder {
  color: #f1f5f9;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
}

.glass-input-field:focus {
  background: linear-gradient(180deg, rgba(10, 24, 46, 0.95) 0%, rgba(20, 42, 75, 0.75) 100%);
  border-color: #38bdf8;
  box-shadow: 
    0 0 0 3px rgba(56, 189, 248, 0.3),
    0 0 25px rgba(56, 189, 248, 0.4),
    inset 0 2px 4px rgba(0, 0, 0, 0.45);
  transform: translateY(-1px);
}

.glass-field-wrap:focus-within .glass-field-icon,
.glass-field-wrap:hover .glass-field-icon {
  color: #38bdf8;
  transform: translateY(-50%) scale(1.1);
  filter: drop-shadow(0 0 4px #38bdf8);
}

.glass-select-field {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2338bdf8'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px 16px;
  cursor: pointer;
}

.glass-select-field option {
  background: #0d233e;
  color: #ffffff;
  padding: 6px;
}

.glass-textarea-field {
  height: 52px;
  resize: none;
}

/* 3D Vibrant Blue Submit Button */
.glass-submit-btn {
  width: 100%;
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 48%, #0369a1 100%);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 3px solid #075985;
  border-radius: 12px;
  padding: 10px 18px;
  font-family: var(--font-heading);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 
    0 5px 0 #075985,
    0 12px 25px rgba(2, 132, 199, 0.45),
    inset 0 1.5px 1px rgba(255, 255, 255, 0.75),
    inset 0 -1px 1px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  margin-top: 4px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
  position: relative;
}

.glass-submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 8px 0 #075985,
    0 18px 30px rgba(2, 132, 199, 0.6),
    inset 0 1.5px 1px #ffffff;
  filter: brightness(1.08);
}

.glass-submit-btn:active {
  transform: translateY(3px);
  box-shadow: 
    0 2px 0 #075985,
    0 4px 10px rgba(2, 132, 199, 0.4);
}

/* Social Connect Divider & 3D Coin Pills */
.glass-social-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0.75rem 0 0.55rem;
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.glass-social-pills-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.glass-social-pill {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 0.90rem;
  text-decoration: none;
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.06) 75%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 
    0 5px 12px rgba(0, 0, 0, 0.45),
    inset 0 1.5px 1px rgba(255, 255, 255, 0.5),
    inset 0 -1.5px 1px rgba(0, 0, 0, 0.4);
}

.glass-social-pill:hover {
  transform: translateY(-4px) scale(1.15);
  box-shadow: 
    0 8px 18px rgba(0, 0, 0, 0.55),
    inset 0 1.5px 1px #ffffff;
}

.glass-social-pill.pill-wa:hover {
  background: radial-gradient(circle at 35% 30%, #4ade80 0%, #22c55e 60%, #16a34a 100%);
  border-color: #86efac;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.5), inset 0 1.5px 1px #ffffff;
}

.glass-social-pill.pill-phone:hover {
  background: radial-gradient(circle at 35% 30%, #38bdf8 0%, #0284c7 60%, #0369a1 100%);
  border-color: #7dd3fc;
  box-shadow: 0 8px 20px rgba(2, 132, 199, 0.5), inset 0 1.5px 1px #ffffff;
}

.glass-social-pill.pill-mail:hover {
  background: radial-gradient(circle at 35% 30%, #f87171 0%, #ef4444 60%, #dc2626 100%);
  border-color: #fca5a5;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.5), inset 0 1.5px 1px #ffffff;
}

.glass-social-pill.pill-fb:hover {
  background: radial-gradient(circle at 35% 30%, #60a5fa 0%, #3b82f6 60%, #1d4ed8 100%);
  border-color: #93c5fd;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.5), inset 0 1.5px 1px #ffffff;
}

.glass-social-pill.pill-insta:hover {
  background: radial-gradient(circle at 30% 30%, #f43f5e 0%, #e11d48 50%, #be123c 100%);
  border-color: #fda4af;
  box-shadow: 0 8px 20px rgba(244, 63, 94, 0.5), inset 0 1.5px 1px #ffffff;
}

/* Floating Piano Musical Note Particle */
.piano-note-particle {
  position: absolute;
  pointer-events: none;
  font-size: 1rem;
  color: #38bdf8;
  font-weight: bold;
  z-index: 50;
  animation: floatUpAndFade 0.8s ease-out forwards;
  text-shadow: 0 0 8px rgba(56, 189, 248, 0.8);
}

@keyframes floatUpAndFade {
  0% {
    opacity: 1;
    transform: translateY(0) scale(0.8) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateY(-35px) scale(1.3) rotate(15deg);
  }
}

/* Responsive Adaptations */
@media (max-width: 900px) {
  .glass-contact-showcase-section {
    padding-top: 8.5rem;
    padding-bottom: 3.5rem;
  }
  .glass-card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .glass-3d-card {
    padding: 1.6rem 1.4rem;
    border-radius: 20px;
  }
  .glass-main-heading {
    font-size: 1.65rem;
  }
}

@media (max-width: 580px) {
  .glass-contact-showcase-section {
    padding-top: 7.5rem;
    padding-bottom: 3rem;
  }
  .glass-3d-card {
    padding: 1.4rem 1.1rem;
  }
  .glass-input-row {
    grid-template-columns: 1fr;
  }
  .glass-direct-actions {
    flex-direction: column;
  }
}

/* ==========================================================================
   MINIMALIST LUXURY CORPORATE TYPOGRAPHY HERO (UNIVERSAL FOR PAGES)
   ========================================================================== */
.minimal-page-hero {
  position: relative;
  width: 100%;
  padding-top: clamp(8.5rem, 15vh, 10.5rem);
  padding-bottom: clamp(3.5rem, 7vh, 4.5rem);
  background: linear-gradient(135deg, #07152b 0%, #0b2341 55%, #00376d 100%);
  overflow: hidden;
  text-align: center;
  color: #ffffff;
  border-bottom: 1px solid rgba(56, 189, 248, 0.15);
  box-shadow: 0 10px 30px rgba(7, 21, 43, 0.4);
}

.minimal-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(rgba(56, 189, 248, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(7, 21, 43, 0.2) 0%, rgba(7, 21, 43, 0.8) 100%);
  background-size: 32px 32px, 100% 100%;
  pointer-events: none;
  z-index: 1;
}

.minimal-page-hero .hero-ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
}

.minimal-page-hero .glow-cyan {
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 260px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.22) 0%, transparent 70%);
}

.minimal-page-hero .glow-gold {
  bottom: -20%;
  right: 15%;
  width: 320px;
  height: 220px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.12) 0%, transparent 70%);
}

.minimal-hero-container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-minimal-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(56, 189, 248, 0.08);
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 9999px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #38bdf8;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.15);
}

.hero-minimal-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin: 0 0 1rem 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.text-gradient-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #67e8f9 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-minimal-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  max-width: 240px;
  margin: 0.25rem 0 1.25rem;
}

.hero-minimal-divider .divider-glow-bar {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #38bdf8, transparent);
  border-radius: 2px;
}

.hero-minimal-divider .divider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
  box-shadow: 0 0 8px #38bdf8;
}

.hero-minimal-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  line-height: 1.7;
  color: #cbd5e1;
  max-width: 720px;
  margin: 0 0 1.75rem 0;
  font-weight: 400;
}

.hero-minimal-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: #94a3b8;
  background: rgba(15, 23, 42, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 18px;
  border-radius: 9999px;
  backdrop-filter: blur(8px);
}

.hero-minimal-breadcrumb a {
  color: #e2e8f0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-minimal-breadcrumb a:hover {
  color: #38bdf8;
}

.hero-minimal-breadcrumb i {
  font-size: 0.65rem;
  color: #64748b;
}

.hero-minimal-breadcrumb span {
  color: #38bdf8;
  font-weight: 600;
}

/* ==========================================================================
   ABOUT US TREE SIGNBOARD HERO SECTION
   ========================================================================== */
.about-tree-section {
  position: relative;
  width: 100%;
  padding-top: clamp(8.5rem, 14vh, 10.5rem);
  padding-bottom: clamp(3.5rem, 6vh, 5rem);
  background: linear-gradient(180deg, #f8fafc 0%, #edf4fc 50%, #e2eaf5 100%);
  overflow: hidden;
}

.about-tree-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(0, 55, 109, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.about-tree-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

.about-tree-left-content {
  display: flex;
  flex-direction: column;
}

.about-tree-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 16px;
  background: rgba(2, 132, 199, 0.1);
  border: 1px solid rgba(2, 132, 199, 0.25);
  border-radius: 9999px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #0284c7;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.about-tree-heading {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #00376d;
  margin: 0 0 1.25rem 0;
}

.about-tree-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.02rem;
  line-height: 1.75;
  color: #475569;
  margin: 0 0 1.75rem 0;
}

.about-tree-features {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.about-tree-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.96rem;
  font-weight: 600;
  color: #1e293b;
}

.about-tree-feature-item i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(2, 132, 199, 0.12);
  color: #0284c7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.about-tree-cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-tree-right-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.tree-signboard-wrapper {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  text-align: center;
  animation: subtleTreeFloat 4s ease-in-out infinite alternate;
}

@keyframes subtleTreeFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-8px);
  }
}

.tree-signboard-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 55, 109, 0.16));
  display: block;
}

.tree-signboard-content {
  position: absolute;
  top: 48%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 72%;
  text-align: center;
  pointer-events: none;
}

.tree-signboard-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: #6d381e;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.tree-signboard-title {
  font-family: 'Cinzel', 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 900;
  color: #3b1d0e;
  letter-spacing: 1px;
  margin: 0;
  line-height: 1.1;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6), 0 -1px 1px rgba(0, 0, 0, 0.25);
}

.tree-signboard-sub {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  color: #5c2c15;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

@media (max-width: 991px) {
  .about-tree-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .about-tree-tag {
    align-self: center;
  }
  .about-tree-features {
    align-items: center;
  }
  .about-tree-cta-row {
    justify-content: center;
  }
  .tree-signboard-wrapper {
    max-width: 360px;
  }
}

/* ==========================================================================
   ABOUT US - WHY CHOOSE RANJULA FACILITIES SECTION
   ========================================================================== */
.about-why-choose-section {
  position: relative;
  width: 100%;
  padding: clamp(4.5rem, 8vh, 6.5rem) 0;
  background: #ffffff;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  overflow: hidden;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3.5rem;
  align-items: start;
}

.about-why-main-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 800;
  color: #00376d;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 1.25rem 0;
}

.about-why-main-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 1.02rem;
  line-height: 1.8;
  color: #334155;
  margin: 0 0 2.5rem 0;
}

.about-why-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem 2rem;
}

.about-why-feat-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.about-why-feat-card:hover {
  transform: translateY(-4px);
}

.why-feat-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(2, 132, 199, 0.08);
  border: 1px solid rgba(2, 132, 199, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #0284c7;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.about-why-feat-card:hover .why-feat-icon-box {
  background: linear-gradient(135deg, #00376d, #0284c7);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(2, 132, 199, 0.3);
  transform: scale(1.05);
}

.why-feat-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.18rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
  margin: 0 0 0.6rem 0;
}

.why-feat-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #64748b;
  margin: 0;
}

/* Right Column Showcase Cards */
.about-why-right-stack {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.why-exp-badge-card {
  background: linear-gradient(135deg, #071e3d 0%, #00376d 100%);
  border-radius: 28px;
  padding: 2.2rem 2.5rem;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(0, 55, 109, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.why-exp-badge-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why-exp-number {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(3.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -1px;
}

.why-exp-label {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: #38bdf8;
  margin-top: 0.4rem;
  letter-spacing: 0.5px;
}

.why-media-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(226, 232, 240, 0.8);
  aspect-ratio: 16 / 10;
  background: #0f172a;
}

.why-media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-media-card:hover .why-media-img {
  transform: scale(1.04);
}

.why-video-play-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 21, 43, 0.1) 0%, rgba(7, 21, 43, 0.6) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.why-play-btn-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00376d;
  font-size: 1.5rem;
  padding-left: 4px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.why-play-btn-circle::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.6);
  animation: whyPlayPulse 2s infinite;
}

@keyframes whyPlayPulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.8;
  }
}

.why-media-card:hover .why-play-btn-circle {
  transform: scale(1.12);
  background: #0284c7;
  color: #ffffff;
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.4);
}

.why-media-badge-bottom {
  position: absolute;
  bottom: 16px;
  left: 18px;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 6px 14px;
  border-radius: 9999px;
  color: #ffffff;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.why-media-badge-bottom i {
  color: #38bdf8;
}

@media (max-width: 991px) {
  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-why-features-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* ==========================================================================
   AESTHETIC HOPE 3D BANNER HERO (SERVICES, GALLERY, BLOGS, CAREERS)
   ========================================================================== */
.aesthetic-3d-banner-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: clamp(9rem, 16vh, 11.5rem);
  padding-bottom: clamp(4rem, 7vh, 5.5rem);
  background: #07152b;
  overflow: hidden;
  text-align: center;
}

.aesthetic-banner-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.aesthetic-banner-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.15) contrast(1.05) brightness(1.02);
  transform: scale(1.01);
  transition: transform 12s cubic-bezier(0.16, 1, 0.3, 1);
}

.aesthetic-3d-banner-hero:hover .aesthetic-banner-bg-img {
  transform: scale(1.05);
}

.aesthetic-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg, 
    rgba(7, 21, 43, 0.42) 0%, 
    rgba(7, 21, 43, 0.08) 42%, 
    rgba(7, 21, 43, 0.58) 100%
  );
  pointer-events: none;
}

.aesthetic-banner-container {
  position: relative;
  z-index: 3;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.aesthetic-hero-3d-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.aesthetic-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 9999px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00376d;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);
  margin-bottom: 0.85rem;
}

.aesthetic-hero-tag i {
  color: #0284c7;
  font-size: 0.88rem;
}

.aesthetic-3d-title {
  font-family: 'Cinzel', 'Playfair Display', serif, var(--font-heading);
  font-size: clamp(3rem, 7.5vw, 5.4rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 7px;
  line-height: 1.05;
  margin: 0 0 0.85rem 0;
  color: #ffffff;
  text-shadow: 
    0 1px 0 #e2e8f0,
    0 2px 0 #cbd5e1,
    0 3px 0 #94a3b8,
    0 4px 0 #38bdf8,
    0 5px 0 #0284c7,
    0 6px 0 #0369a1,
    0 7px 0 #075985,
    0 8px 0 #0c4a6e,
    0 9px 2px rgba(0, 0, 0, 0.5),
    0 12px 20px rgba(7, 21, 43, 0.65),
    0 22px 40px rgba(0, 0, 0, 0.45),
    0 0 35px rgba(56, 189, 248, 0.35);
  transition: transform 0.35s ease;
}

.aesthetic-3d-banner-hero:hover .aesthetic-3d-title {
  transform: translateY(-3px) scale(1.01);
}

.aesthetic-3d-subtitle {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.8);
  margin: 0 0 1.35rem 0;
  max-width: 720px;
  letter-spacing: 0.5px;
  line-height: 1.55;
}

.aesthetic-3d-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(7, 21, 43, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 6px 22px;
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.aesthetic-3d-breadcrumb a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.aesthetic-3d-breadcrumb a:hover {
  color: #38bdf8;
}

.aesthetic-3d-breadcrumb i {
  font-size: 0.65rem;
  color: #94a3b8;
}

.aesthetic-3d-breadcrumb span {
  color: #38bdf8;
  font-weight: 700;
}

/* ==========================================================================
   ABOUT US - TRUSTED BY HAPPY CLIENTS 3-TYPE SHOWCASE SECTION
   ========================================================================== */
.about-clients-trust-section {
  position: relative;
  width: 100%;
  padding: clamp(5rem, 9vh, 7rem) 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
  overflow: hidden;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}

.about-clients-trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(2, 132, 199, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.trust-sparkle-star {
  position: absolute;
  top: 35px;
  right: 5%;
  width: 48px;
  height: 48px;
  color: #0284c7;
  filter: drop-shadow(0 0 12px rgba(56, 189, 248, 0.6));
  animation: trustStarFloat 3s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes trustStarFloat {
  0% {
    transform: translateY(0) rotate(0deg) scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: translateY(-8px) rotate(12deg) scale(1.1);
    opacity: 1;
  }
}

.trust-section-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Side Content & Rating Score */
.trust-left-content {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 900;
  color: #071e3d;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 1.75rem 0;
}

.trust-title-blue {
  color: #00376d;
}

.trust-rating-block {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.trust-rating-num {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: clamp(3.5rem, 5.5vw, 4.8rem);
  font-weight: 900;
  color: #00376d;
  line-height: 0.9;
  letter-spacing: -1px;
}

.trust-rating-stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-stars {
  display: flex;
  gap: 4px;
  color: #0284c7;
  font-size: 1.2rem;
}

.trust-rating-lbl {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.3px;
}

.trust-rating-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.98rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 1.75rem 0;
  max-width: 520px;
}

.trust-highlight-quote {
  position: relative;
  background: #ffffff;
  border-left: 4px solid #0284c7;
  border-radius: 0 16px 16px 0;
  padding: 1.25rem 1.5rem 1.25rem 1.75rem;
  box-shadow: 0 10px 25px rgba(0, 55, 109, 0.05);
  border-top: 1px solid rgba(226, 232, 240, 0.8);
  border-right: 1px solid rgba(226, 232, 240, 0.8);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.trust-quote-mark {
  color: #0284c7;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  opacity: 0.6;
}

.trust-quote-text {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
  color: #0f172a;
  margin: 0;
}

/* Right Side - 3 Types Interactive 3D Showcase Deck */
.trust-right-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.trust-type-tabs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 6px;
  border-radius: 9999px;
  box-shadow: 0 4px 15px rgba(0, 55, 109, 0.06);
  border: 1px solid #e2e8f0;
  align-self: flex-start;
  flex-wrap: wrap;
}

.trust-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-tab-btn:hover {
  color: #00376d;
  background: rgba(2, 132, 199, 0.08);
}

.trust-tab-btn.active {
  background: linear-gradient(135deg, #00376d 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.3);
}

/* 3D Card Deck Container */
.trust-cards-deck {
  position: relative;
  width: 100%;
  min-height: 330px;
}

.trust-type-card {
  display: none;
  background: #ffffff;
  border-radius: 24px;
  padding: 2rem 2.2rem;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 
    0 20px 40px -10px rgba(0, 55, 109, 0.12),
    0 8px 16px -4px rgba(0, 55, 109, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-type-card.active {
  display: flex;
  flex-direction: column;
  animation: trustCard3DIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes trustCard3DIn {
  0% {
    opacity: 0;
    transform: translateY(20px) scale(0.97) rotateX(4deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

.trust-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.trust-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 9999px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-corp {
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
}

.badge-society {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.badge-industrial {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.trust-card-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #10b981;
}

.trust-card-quote-body {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.6;
  color: #1e293b;
  margin: 0 0 1.5rem 0;
}

.trust-card-author-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  gap: 1rem;
  flex-wrap: wrap;
}

.trust-author-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0284c7;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.trust-author-name {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.02rem;
  font-weight: 800;
  color: #00376d;
}

.trust-author-role {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 500;
}

.trust-pill-tag {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
}

/* Nav Arrows Row */
.trust-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.trust-dots-indicator {
  display: flex;
  gap: 6px;
}

.trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #cbd5e1;
  cursor: pointer;
  transition: all 0.25s ease;
}

.trust-dot.active {
  width: 28px;
  border-radius: 9999px;
  background: #0284c7;
}

.trust-arrow-btns {
  display: flex;
  gap: 8px;
}

.trust-arrow-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #cbd5e1;
  background: #ffffff;
  color: #00376d;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.trust-arrow-btn:hover {
  background: #00376d;
  color: #ffffff;
  border-color: #00376d;
}

@media (max-width: 991px) {
  .trust-section-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ==========================================================================
   3D 3-STEP SERVICE PROCESS & CLEANERS FOOTER OVERLAP SECTION
   ========================================================================== */
.about-process-overlap-section {
  position: relative;
  z-index: 30;
  padding: 4.5rem 0 0;
  margin-bottom: -55px;
  overflow: visible;
}

.process-overlap-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.process-overlap-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: flex-end;
}

/* Left Column - Header & 3D Staggered Cards */
.process-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: 2.5rem;
}

.process-section-header {
  margin-bottom: 0.75rem;
}

.process-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(2, 132, 199, 0.1);
  color: #0284c7;
  border: 1px solid rgba(2, 132, 199, 0.25);
  padding: 6px 16px;
  border-radius: 9999px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.process-main-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 2.35rem;
  font-weight: 900;
  line-height: 1.25;
  color: #00376d;
  margin: 0;
  letter-spacing: -0.5px;
}

.process-title-blue {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.process-3d-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  perspective: 1200px;
}

/* 3D Floating / Popping Cards ("Aage Ubhre Huye") */
.process-3d-card {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1.5px solid rgba(186, 230, 253, 0.95);
  border-radius: 22px;
  padding: 1.35rem 1.75rem;
  position: relative;
  box-shadow: 
    0 16px 32px -6px rgba(2, 132, 199, 0.16),
    0 6px 12px -3px rgba(0, 55, 109, 0.08),
    inset 0 2px 4px rgba(255, 255, 255, 0.95),
    inset 0 -2px 4px rgba(2, 132, 199, 0.12);
  transform: translateZ(0);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

/* Subtle continuous floating micro-animation for depth */
.process-3d-card.card-step-1 {
  animation: processCardFloat 4.5s ease-in-out infinite alternate;
}

.process-3d-card.card-step-2 {
  animation: processCardFloat 4.5s ease-in-out infinite alternate 1.5s;
}

.process-3d-card.card-step-3 {
  animation: processCardFloat 4.5s ease-in-out infinite alternate 3s;
}

@keyframes processCardFloat {
  0% {
    transform: translateY(0) scale(1);
    box-shadow: 
      0 16px 32px -6px rgba(2, 132, 199, 0.16),
      0 6px 12px -3px rgba(0, 55, 109, 0.08),
      inset 0 2px 4px rgba(255, 255, 255, 0.95),
      inset 0 -2px 4px rgba(2, 132, 199, 0.12);
  }
  100% {
    transform: translateY(-5px) scale(1.01);
    box-shadow: 
      0 22px 40px -8px rgba(2, 132, 199, 0.22),
      0 8px 16px -4px rgba(0, 55, 109, 0.12),
      inset 0 2px 4px rgba(255, 255, 255, 1),
      inset 0 -2px 4px rgba(2, 132, 199, 0.15);
  }
}

.process-3d-card:hover {
  transform: perspective(1000px) translateZ(22px) translateY(-7px) !important;
  border-color: #38bdf8;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  box-shadow: 
    0 26px 50px -10px rgba(2, 132, 199, 0.3),
    0 12px 24px -5px rgba(0, 55, 109, 0.18),
    inset 0 2px 6px rgba(255, 255, 255, 1),
    inset 0 -2px 5px rgba(2, 132, 199, 0.2) !important;
}

/* 3D Sparkle Star Sphere Badge */
.process-card-icon-wrap {
  flex-shrink: 0;
}

.process-3d-sparkle-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
  box-shadow: 
    0 8px 18px rgba(2, 132, 199, 0.25),
    inset 0 2px 4px #ffffff,
    inset 0 -2px 4px rgba(2, 132, 199, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-3d-card:hover .process-3d-sparkle-circle {
  transform: scale(1.12) rotate(15deg);
}

.process-card-text-wrap {
  flex: 1;
}

.process-card-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.22rem;
  font-weight: 800;
  color: #00376d;
  margin: 0 0 0.35rem 0;
  line-height: 1.3;
}

.process-card-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.92rem;
  color: #475569;
  line-height: 1.55;
  margin: 0;
}

/* Right Column - 3D Cutout Cleaners */
.process-cleaners-col {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.cleaners-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 660px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.cleaners-overlap-img {
  width: 100%;
  max-width: 660px;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 35, 75, 0.28));
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  margin-bottom: -20px;
}

.cleaners-overlap-img:hover {
  transform: scale(1.025) translateY(-6px);
}

@media (max-width: 991px) {
  .about-process-overlap-section {
    padding: 3rem 0 0;
    margin-bottom: -35px;
  }
  .process-overlap-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .cleaners-image-wrapper {
    max-width: 480px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   BLOGS PAGE - 3D INTERACTIVE 9-ARTICLE GRID & ANIMATIONS
   ========================================================================== */
.blogs-section {
  position: relative;
  background: #f8fafc;
  overflow: hidden;
}

/* Interactive Filter Tabs */
.blog-filter-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 3.5rem;
  padding: 8px 12px;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(226, 232, 240, 0.95);
  border-radius: 9999px;
  box-shadow: 
    0 10px 25px -5px rgba(15, 23, 42, 0.06),
    0 4px 6px -2px rgba(15, 23, 42, 0.03);
}

.blog-filter-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 9999px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.3px;
  position: relative;
}

.blog-filter-btn:hover {
  color: #0284c7;
  background: rgba(2, 132, 199, 0.08);
}

.blog-filter-btn.active {
  background: linear-gradient(135deg, #00376d 0%, #0284c7 100%);
  color: #ffffff;
  box-shadow: 
    0 6px 16px rgba(2, 132, 199, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

/* 3D 9-Articles Grid */
.blogs-grid-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  perspective: 1200px;
}

/* Individual 3D Blog Card */
.blog-card-3d {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  border: 1.5px solid #e2e8f0;
  box-shadow: 
    0 10px 25px -5px rgba(15, 23, 42, 0.06),
    0 4px 10px -2px rgba(15, 23, 42, 0.03);
  transform-style: preserve-3d;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  animation: blogCardFloat 5s ease-in-out infinite alternate;
}

/* Staggered Floating Animation Across the 9 Cards */
.blog-card-3d:nth-child(1) { animation-delay: 0s; }
.blog-card-3d:nth-child(2) { animation-delay: 0.35s; }
.blog-card-3d:nth-child(3) { animation-delay: 0.7s; }
.blog-card-3d:nth-child(4) { animation-delay: 1.05s; }
.blog-card-3d:nth-child(5) { animation-delay: 1.4s; }
.blog-card-3d:nth-child(6) { animation-delay: 1.75s; }
.blog-card-3d:nth-child(7) { animation-delay: 2.1s; }
.blog-card-3d:nth-child(8) { animation-delay: 2.45s; }
.blog-card-3d:nth-child(9) { animation-delay: 2.8s; }

@keyframes blogCardFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-6px);
  }
}

/* Hover Elevation & 3D Tilt */
.blog-card-3d:hover {
  transform: perspective(1000px) translateY(-12px) scale(1.02) !important;
  border-color: #38bdf8;
  box-shadow: 
    0 24px 45px -10px rgba(2, 132, 199, 0.22),
    0 10px 20px -5px rgba(0, 55, 109, 0.12) !important;
}

.blog-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Clean Image Container (No overlays or distorted badges) */
.blog-img-container {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #f1f5f9;
}

.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-3d:hover .blog-img {
  transform: scale(1.07);
}

/* Card Content Body */
.blog-content-3d {
  padding: 1.5rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Clean Metadata Row with Category Pill and 01-09 Badge */
.blog-meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.blog-category-pill {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
}

.blog-category-pill.pill-blue {
  background: #e0f2fe;
  color: #0284c7;
}

.blog-category-pill.pill-red {
  background: #fee2e2;
  color: #dc2626;
}

.blog-category-pill.pill-cyan {
  background: #cffafe;
  color: #0891b2;
}

.blog-meta-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-date {
  font-size: 0.76rem;
  font-weight: 600;
  color: #94a3b8;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* 3D Cool Numbering Badge (#01 to #09) */
.blog-number-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #001f3f 0%, #00376d 100%);
  color: #38bdf8;
  font-family: 'Cinzel', 'Outfit', serif;
  font-size: 0.80rem;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(56, 189, 248, 0.35);
  box-shadow: 0 2px 6px rgba(0, 31, 63, 0.15);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card-3d:hover .blog-number-badge {
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff;
  border-color: #38bdf8;
  transform: scale(1.12);
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
}

.blog-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.35;
  color: #00376d;
  margin: 0 0 0.65rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-title-link:hover {
  color: #0284c7;
}

.blog-desc {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0 0 1.25rem 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

/* Footer CTA */
.blog-footer-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 1rem;
  border-top: 1px dashed rgba(226, 232, 240, 0.9);
  margin-top: auto;
}

.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.88rem;
  font-weight: 700;
  color: #0284c7;
  text-decoration: none;
  transition: all 0.25s ease;
}

.blog-btn-arrow {
  font-size: 0.78rem;
  transition: transform 0.25s ease;
  color: #0284c7;
}

.blog-card-3d:hover .blog-read-btn {
  color: #00376d;
}

.blog-card-3d:hover .blog-btn-arrow {
  transform: translateX(5px);
}

/* Responsive Grid */
@media (max-width: 1024px) {
  .blogs-grid-3d {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
}

@media (max-width: 640px) {
  .blogs-grid-3d {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .blog-filter-tabs {
    border-radius: 16px;
    padding: 6px;
    gap: 8px;
  }

  .blog-filter-btn {
    font-size: 0.82rem;
    padding: 7px 14px;
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
}

/* ==========================================================================
   3D VINTAGE PARCHMENT & WAX SEAL CARDS (IMAGE 1 DESIGN)
   ========================================================================== */
.job-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  perspective: 1200px;
}

.parchment-3d-card {
  background: url('../images/parchment-card-bg.png') center center / cover no-repeat, #e2d3be;
  border-radius: 20px;
  padding: 2.2rem 2rem 2rem 2rem;
  border: 1.5px solid rgba(160, 120, 70, 0.35);
  box-shadow: 
    0 16px 36px -8px rgba(60, 40, 20, 0.28),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 0 30px rgba(120, 80, 30, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

/* Staggered Floating Micro-Animation */
.job-cards-grid .parchment-3d-card:nth-child(1) { animation: parchmentCardFloat 5.2s ease-in-out infinite alternate 0s; }
.job-cards-grid .parchment-3d-card:nth-child(2) { animation: parchmentCardFloat 5.2s ease-in-out infinite alternate 0.6s; }
.job-cards-grid .parchment-3d-card:nth-child(3) { animation: parchmentCardFloat 5.2s ease-in-out infinite alternate 1.2s; }
.job-cards-grid .parchment-3d-card:nth-child(4) { animation: parchmentCardFloat 5.2s ease-in-out infinite alternate 0.8s; }
.job-cards-grid .parchment-3d-card:nth-child(5) { animation: parchmentCardFloat 5.2s ease-in-out infinite alternate 1.4s; }
.job-cards-grid .parchment-3d-card:nth-child(6) { animation: parchmentCardFloat 5.2s ease-in-out infinite alternate 2.0s; }

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

.parchment-3d-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(120, 80, 30, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

.parchment-3d-card > * {
  position: relative;
  z-index: 2;
}

/* 3D Hover Elevation & Aura */
.parchment-3d-card:hover {
  animation-play-state: paused !important;
  transform: perspective(1000px) translateY(-14px) scale(1.025) translateZ(25px) !important;
  box-shadow: 
    0 28px 55px -10px rgba(50, 30, 15, 0.38),
    0 10px 22px rgba(0, 0, 0, 0.12),
    0 0 0 1.5px rgba(185, 28, 28, 0.5),
    inset 0 0 45px rgba(120, 80, 30, 0.15) !important;
  border-color: rgba(185, 28, 28, 0.65) !important;
}

.parchment-3d-card .card-badge-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.1rem;
}

.parchment-3d-card .parchment-tag {
  font-family: var(--font-heading, serif);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 9999px;
  background: rgba(11, 35, 65, 0.90);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.parchment-3d-card .parchment-tag.tag-immediate {
  background: rgba(4, 120, 87, 0.90);
  color: #ffffff;
}

.parchment-3d-card .parchment-tag.tag-technical {
  background: rgba(180, 83, 9, 0.90);
  color: #ffffff;
}

.parchment-3d-card .parchment-tag.tag-corporate {
  background: rgba(109, 40, 217, 0.90);
  color: #ffffff;
}

.parchment-3d-card .parchment-location {
  font-size: 0.84rem;
  font-weight: 700;
  color: #4a3828;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.6);
  padding: 3px 10px;
  border-radius: 9999px;
  border: 1px solid rgba(160, 120, 70, 0.25);
}

.parchment-3d-card .parchment-location i {
  color: #b91c1c;
}

.parchment-3d-card .parchment-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b2341;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.25s ease;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.parchment-3d-card:hover .parchment-title {
  color: #b91c1c;
}

.parchment-3d-card .parchment-desc {
  font-size: 0.92rem;
  color: #3b2c20;
  line-height: 1.6;
  margin-bottom: 1.35rem;
  font-weight: 550;
}

.parchment-3d-card .parchment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem;
  font-size: 0.88rem;
  color: #241912;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
}

.parchment-3d-card .parchment-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.parchment-3d-card .parchment-list i {
  color: #0284c7;
  margin-top: 3px;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.parchment-3d-card .parchment-btn {
  text-align: center;
  border-radius: 12px;
  padding: 12px 20px;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-decoration: none;
  color: #ffffff;
  background: linear-gradient(135deg, #c02626 0%, #991b1b 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 18px rgba(185, 28, 28, 0.42);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.parchment-3d-card .parchment-btn:hover {
  background: linear-gradient(135deg, #dc2626 0%, #7f1d1d 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(185, 28, 28, 0.6);
  color: #ffffff;
}

/* ==========================================================================
   CONTACT LOCATIONS 3D PARCHMENT CARDS SECTION
   ========================================================================== */
.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  perspective: 1200px;
}

@media (max-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .contact-cards-grid {
    grid-template-columns: 1fr;
  }
}

.contact-parchment-card {
  background: url('../images/parchment-card-bg.png') center center / cover no-repeat, #e2d3be;
  border-radius: 20px;
  padding: 2.25rem 2rem 2rem;
  border: 1.5px solid rgba(160, 120, 70, 0.35);
  box-shadow: 
    0 16px 36px -8px rgba(60, 40, 20, 0.28),
    0 4px 12px rgba(0, 0, 0, 0.08),
    inset 0 0 30px rgba(120, 80, 30, 0.10);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transition: all 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
}

.contact-cards-grid .contact-parchment-card:nth-child(1) {
  animation: parchmentCardFloat 5.2s ease-in-out infinite alternate 0s;
}

.contact-cards-grid .contact-parchment-card:nth-child(2) {
  animation: parchmentCardFloat 5.2s ease-in-out infinite alternate 0.7s;
}

.contact-cards-grid .contact-parchment-card:nth-child(3) {
  animation: parchmentCardFloat 5.2s ease-in-out infinite alternate 1.4s;
}

.contact-parchment-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(120, 80, 30, 0.08) 100%);
  pointer-events: none;
  z-index: 1;
}

.contact-parchment-card > * {
  position: relative;
  z-index: 2;
}

.contact-parchment-card:hover {
  animation-play-state: paused !important;
  transform: perspective(1000px) translateY(-14px) scale(1.025) translateZ(25px) !important;
  box-shadow: 
    0 28px 55px -10px rgba(50, 30, 15, 0.38),
    0 10px 22px rgba(0, 0, 0, 0.12),
    0 0 0 1.5px rgba(185, 28, 28, 0.5),
    inset 0 0 45px rgba(120, 80, 30, 0.15) !important;
  border-color: rgba(185, 28, 28, 0.65) !important;
}

.contact-card-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
  box-shadow: 
    0 6px 16px rgba(0, 0, 0, 0.12),
    inset 0 1px 1px rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.7);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-parchment-card:hover .contact-card-icon-box {
  transform: scale(1.1) rotate(-4deg);
}

.contact-card-icon-box.icon-blue {
  background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
  color: #0284c7;
}

.contact-card-icon-box.icon-green {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #059669;
}

.contact-card-icon-box.icon-amber {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #d97706;
}

.contact-parchment-card .contact-card-title {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #0b2341;
  line-height: 1.3;
  margin-bottom: 0.75rem;
  transition: color 0.25s ease;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-parchment-card:hover .contact-card-title {
  color: #b91c1c;
}

.contact-parchment-card .contact-card-desc {
  font-size: 0.92rem;
  color: #3b2c20;
  line-height: 1.6;
  margin-bottom: 1.35rem;
  font-weight: 550;
}

.contact-card-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 9999px;
  font-size: 0.90rem;
  font-weight: 700;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(160, 120, 70, 0.3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
  width: fit-content;
}

.contact-card-link-btn.link-blue {
  color: #0284c7;
}

.contact-card-link-btn.link-blue:hover {
  background: #0284c7;
  color: #ffffff;
  border-color: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(2, 132, 199, 0.35);
}

.contact-card-link-btn.link-green {
  color: #059669;
}

.contact-card-link-btn.link-green:hover {
  background: #059669;
  color: #ffffff;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(5, 150, 105, 0.35);
}

.contact-card-link-btn.link-amber {
  color: #d97706;
}

.contact-card-link-btn.link-amber:hover {
  background: #d97706;
  color: #ffffff;
  border-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(217, 119, 6, 0.35);
}

/* ==========================================================================
   ABOUT US HERO: 3D HANGING WOODEN SIGNBOARD WITH CONTINUOUS LEFT-RIGHT MOTION
   ========================================================================== */
.about-tree-section {
  padding: 4.5rem 1.5rem 5rem;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-tree-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .about-tree-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-tree-left-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-tree-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 55, 109, 0.08);
  border: 1px solid rgba(0, 55, 109, 0.2);
  color: #00376d;
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 9999px;
  width: fit-content;
}

.about-tree-heading {
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: #0b2341;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.about-tree-desc {
  font-size: 1.02rem;
  color: #475569;
  line-height: 1.75;
}

.about-tree-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0.5rem 0;
}

.about-tree-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1e293b;
}

.about-tree-feature-item i {
  color: #0284c7;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.about-tree-cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

/* Right Column: 4K Magical Glowing About Us Showcase Card */
.about-hero-art-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  perspective: 1200px;
}

.about-ghost-card-3d {
  position: relative;
  max-width: 440px;
  width: 100%;
  animation: ghostCardFloat 5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
  transform-style: preserve-3d;
  will-change: transform;
}

/* Ambient Backlight Aura */
.ghost-glow-aura {
  position: absolute;
  inset: -25px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.30) 0%, rgba(2, 132, 199, 0.22) 40%, rgba(7, 21, 43, 0.12) 65%, transparent 75%);
  filter: blur(42px);
  border-radius: 50px;
  z-index: 1;
  pointer-events: none;
  animation: ghostAuraPulse 4.5s ease-in-out infinite alternate;
}

/* 4K Image Container Frame - Soft Natural Shadow Blend */
.ghost-picture-frame {
  position: relative;
  z-index: 2;
  border-radius: 36px;
  overflow: hidden;
  border: none;
  outline: none;
  background: transparent;
  box-shadow: 
    0 25px 55px -12px rgba(8, 28, 59, 0.32),
    0 12px 28px -6px rgba(0, 0, 0, 0.22),
    0 0 35px rgba(0, 0, 0, 0.10);
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.about-ghost-card-3d:hover .ghost-picture-frame {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 
    0 35px 70px -15px rgba(8, 28, 59, 0.42),
    0 16px 36px -8px rgba(0, 0, 0, 0.30),
    0 0 45px rgba(251, 191, 36, 0.35);
}


/* 3D Floating & Hover Animations */
@keyframes ghostCardFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  35% {
    transform: translateY(-10px) rotate(0.8deg);
  }
  70% {
    transform: translateY(6px) rotate(-0.6deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes ghostAuraPulse {
  0% {
    opacity: 0.6;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1.08);
  }
}