/* =============================================
   AME RACKING — PREMIUM STYLES
   Theme: Orange | Navy Blue | White
   Layout: White Navbar + Full Hero + Ticker
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');
/* @import url("https://cdn.jsdelivr.net/npm/mona-sans@1/fonts/webfonts.css"); */

/* ---- CSS Variables ---- */
:root {
  --orange: #d66007;
  --orange-dark: #D4610A;
  --orange-light: #FF9A45;
  --navy: #0D1B3E;
  --navy-mid: #162550;
  --white: #FFFFFF;
  --off-white: #F5F6FA;
  --gray-100: #F0F2F7;
  --gray-200: #E2E6EF;
  --gray-500: #8A95B0;
  --text-dark: #1A2340;
  --text-mid: #4A5577;

  --font-main: 'Poppins', sans-serif;
  --font-display: 'Poppins', sans-serif;

  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.55s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-nav: 0 2px 24px rgba(13, 27, 62, 0.09);
  --shadow-btn: 0 8px 28px rgba(244, 123, 32, 0.38);
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--white);
  background: linear-gradient(135deg, var(--navy) 0%, #060c20 100%);
}

/* ==============================================
   TOPBAR SECTION
   ============================================== */
.topbar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  font-family: var(--font-main);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8rem;
  font-weight: 500;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1001;
}

.topbar-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.topbar-link:hover {
  color: var(--orange);
}

.topbar-icon {
  color: var(--orange);
  flex-shrink: 0;
}

.whatsapp-link:hover {
  color: #25D366;
}

.whatsapp-link:hover .topbar-icon {
  color: #25D366;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11000;
}

/* =============================================
   NAVBAR — WHITE BACKGROUND
   ============================================= */
.navbar {
  position: relative;
  z-index: 11001;
  background: transparent;
  box-shadow: none;
  transition: box-shadow var(--transition);
}

.navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: -1;
  pointer-events: none;
  transition: background-color var(--transition), backdrop-filter var(--transition), -webkit-backdrop-filter var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.25);
}

.navbar.scrolled::before {
  background: rgba(13, 27, 62, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  height: 70px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* --- Logo --- */
.nav-logo {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  padding-bottom: 2px;
}

.nav-logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

@media (max-width: 400px) {
  .nav-logo-name {
    font-size: 1.25rem !important;
  }
  .nav-logo-sub {
    font-size: 0.52rem !important;
    letter-spacing: 0.05em !important;
  }
  .nav-logo img {
    height: 48px !important;
  }
}

.navbar.scrolled .nav-logo-name {
  color: var(--white);
}

.navbar.scrolled .nav-logo-sub {
  color: var(--orange-light);
}

/* --- Center Links --- */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  display: block;
  padding: 8px 14px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-radius: 6px;
  transition: color var(--transition);
  white-space: nowrap;
  position: relative;
  letter-spacing: 0.01em;
}

.nav-links a:hover {
  color: var(--orange-light);
}

.nav-links a.active {
  color: var(--orange-light);
}

.navbar.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--orange-light);
}

.navbar.scrolled .nav-links a.active {
  color: var(--orange-light);
}

/* Dropdown arrow */
.nav-links .has-drop>a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links .chevron {
  width: 13px;
  height: 13px;
  transition: transform var(--transition);
}

.nav-links .has-drop:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100%);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 210px;
  background: rgba(13, 27, 62, 0.92) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 99;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(13, 27, 62, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: none;
  border-right: none;
}

.has-drop:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  color: rgba(255, 255, 255, 0.85) !important;
}

.nav-dropdown a::after {
  display: none;
}

.nav-dropdown a:hover {
  background: rgba(255, 255, 255, 0.06) !important;
  color: var(--orange-light) !important;
  padding-left: 16px;
}

.drop-icon {
  width: 28px;
  height: 28px;
  background: rgba(244, 123, 32, 0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}

/* --- CTA Button --- */
.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  transition: all var(--transition);
  padding: 13px 20px;
  box-shadow: 0 4px 16px rgba(244, 123, 32, 0.25);
  letter-spacing: 0.02em;
}

.nav-cta-text {
  padding: 0;
  margin-right: 0px;
}

.nav-cta-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.nav-cta:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.40);
  transform: translateY(-1.5px);
}

.nav-cta:hover .nav-cta-arrow {
  background: #000000;
  transform: translate(1px, -1px);
}

/* --- Hamburger --- */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  border-radius: 7px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.navbar.scrolled .nav-toggle span {
  background: var(--white);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================
   HERO BANNER SLIDER
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: var(--navy);
}

@media (min-width: 1280px) {
  .hero {
    height: 600px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 460px;
  }
}

@media (max-width: 500px) {
  .hero {
    height: 430px;
  }
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity 1.1s ease;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 7s ease;
}

.slide.active .slide-bg {
  transform: scale(1);
}

/* Gradient overlay — dark left, transparent right (like reference) */
.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right,
      rgba(8, 15, 38, 0.90) 0%,
      rgba(8, 15, 38, 0.70) 38%,
      rgba(8, 15, 38, 0.25) 65%,
      rgba(8, 15, 38, 0.05) 100%);
}

/* Slide Content */
.slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
}

.slide-text {
  max-width: 600px;
}

/* Animate in when slide becomes active */
.slide.active .slide-text {
  animation: fadeUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.slide-title span {
  color: var(--white);
}

.slide-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 520px;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* CTA Button — matching reference style */
.slide-btn {
  display: inline-flex;
  align-items: center;
  background: var(--orange);
  color: var(--white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all var(--transition);
  padding: 13px 24px;
  box-shadow: 0 6px 20px rgba(244, 123, 32, 0.3);
  letter-spacing: 0.02em;
}

.slide-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 123, 32, 0.45);
}

/* Secondary Button — Contact Us */
.slide-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  border: 2px solid var(--white);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  transition: all var(--transition);
  padding: 11px 24px;
  /* Account for 2px border height match */
  letter-spacing: 0.02em;
}

.slide-btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

/* --- Arrow Nav Buttons --- */
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  background: rgba(13, 27, 62, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all var(--transition);
}

.hero-prev {
  left: 24px;
}

.hero-next {
  right: 24px;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--orange);
  border-color: var(--orange);
  transform: translateY(-50%) scale(1.08);
}

/* Slide dots */
.hero-dots {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 7px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.hero-dot.active {
  width: 26px;
  border-radius: 4px;
  background: var(--orange);
}

/* =============================================
   SCROLLING TICKER STRIP
   ============================================= */
.ticker-strip {
  position: relative;
  z-index: 4;
  background: #27478e;
  height: 56px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 32s linear infinite;
  will-change: transform;
}

/* Duplicate the items for seamless loop */
.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 12px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
  white-space: nowrap;
}

.ticker-sep {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 8px;
}

/* =============================================
   SKELETON LOADER
   ============================================= */
.preloader-container {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, #0d1c44 0%, #060c20 100%);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1),
    visibility 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.preloader-container.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.logo-grid-loader {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  width: 62px;
  height: 62px;
  animation: gridRotate 4s infinite linear;
}

.grid-tile {
  width: 28px;
  height: 28px;
  border-radius: 5px;
  animation: tilePulse 1.6s infinite ease-in-out;
}

.tile-blue {
  background-color: #008be2;
  animation-delay: 0s;
}

.tile-orange {
  background-color: #d66007;
  animation-delay: 0.4s;
}

.tile-light-orange {
  background-color: #f29c1f;
  animation-delay: 0.8s;
}

.tile-navy {
  background-color: #061d4a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  animation-delay: 1.2s;
}

@keyframes gridRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes tilePulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(0.65);
    opacity: 0.4;
  }
}

.preloader-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 950;
  color: var(--white);
  letter-spacing: 0.12em;
  margin: 0;
  text-transform: uppercase;
  animation: fadePulse 2s infinite ease-in-out;
}

.brand-subtitle {
  font-family: var(--font-main);
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@keyframes fadePulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.65;
  }
}

.preloader-progress-bar {
  width: 140px;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}

.progress-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 50%;
  background: linear-gradient(90deg, #008be2, #d66007);
  border-radius: 2px;
  animation: progressFill 1.8s infinite ease-in-out;
}

@keyframes progressFill {
  0% {
    left: -50%;
  }

  100% {
    left: 100%;
  }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 960px) {
  .nav-inner {
    padding: 0 16px;
    gap: 16px;
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 27, 62, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 16px;
    gap: 2px;
    z-index: 11002;
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    list-style: none !important;
    list-style-type: none !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 11003;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    list-style: none !important;
    list-style-type: none !important;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 16px;
    font-size: 0.95rem;
    border-radius: 8px;
    color: var(--white);
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--orange-light) !important;
  }

  .nav-dropdown {
    position: static;
    transform: none !important;
    opacity: 0;
    visibility: hidden;
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.2) !important;
    border-radius: 8px;
    margin: 4px 0;
    display: none;
    pointer-events: none;
  }

  .has-drop.open .nav-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .has-drop.open > a .chevron {
    transform: rotate(180deg);
  }
}
@media (max-width: 600px) {
  .slide-content {
    padding: 0 24px;
  }

  .slide-text {
    max-width: 100%;
  }

  .hero-prev {
    left: 10px;
  }

  .hero-next {
    right: 10px;
  }
}

/* =============================================
   ABOUT SECTION
   ============================================= */
/* =============================================
   ABOUT SECTION (COLLAGE & MINIMAL DETAILS)
   ============================================= */
.about-section {
  padding: 10px 0;
  background: var(--white);
  overflow: hidden;
}

/* Scoped Alternating Gradient Backgrounds and Glassmorphic styling for Homepage Sections */
.home-section-grad-1,
.home-section-grad-2,
.home-section-grad-3,
.home-section-grad-4,
.home-section-grad-5,
.home-section-grad-6 {
  padding: 80px 0;
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
  position: relative;
  overflow: hidden;
}

/* Liquid Glass Cards */
[class*="home-section-grad-"] .service-card,
[class*="home-section-grad-"] .prod-card,
[class*="home-section-grad-"] .proj-min-card,
[class*="home-section-grad-"] .testimonial-card,
[class*="home-section-grad-"] .contact-form-card,
[class*="home-section-grad-"] .info-card-new,
[class*="home-section-grad-"] .premium-cta-card,
[class*="home-section-grad-"] .highlight-card,
[class*="home-section-grad-"] .why-val-card,
[class*="home-section-grad-"] .benefit-casual-item,
[class*="home-section-grad-"] .cert-frame,
[class*="home-section-grad-"] .video-thumbnail-card,
[class*="home-section-grad-"] .process-step-card-recent,
[class*="home-section-grad-"] .service-inquiry-card,
[class*="home-section-grad-"] .category-card,
[class*="home-section-grad-"] .enquiry-pane-card,
[class*="home-section-grad-"] .product-action-block,
[class*="home-section-grad-"] .safety-rule-card,
[class*="home-section-grad-"] .related-card,
[class*="home-section-grad-"] .project-card,
[class*="home-section-grad-"] .modern-blog-card,
[class*="home-section-grad-"] .featured-blog-card,
[class*="home-section-grad-"] .blog-main-content,
[class*="home-section-grad-"] .sidebar-widget,
[class*="home-section-grad-"] .faq-sidebar-card,
[class*="home-section-grad-"] .faq-item,
[class*="home-section-grad-"] .office-profile-grid,
[class*="home-section-grad-"] .cmf-map-card,
[class*="home-section-grad-"] .cmf-form-col,
[class*="home-section-grad-"] .cmf-map-col {
  background:
    radial-gradient(
      circle at calc(50% + var(--mouse-x, 0) * 35%) calc(50% + var(--mouse-y, 0) * 35%),
      rgba(255, 255, 255, 0.08) 0%,
      transparent 60%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

[class*="home-section-grad-"] .service-card:hover,
[class*="home-section-grad-"] .prod-card:hover,
[class*="home-section-grad-"] .proj-min-card:hover,
[class*="home-section-grad-"] .testimonial-card:hover,
[class*="home-section-grad-"] .contact-form-card:hover,
[class*="home-section-grad-"] .info-card-new:hover,
[class*="home-section-grad-"] .premium-cta-card:hover,
[class*="home-section-grad-"] .highlight-card:hover,
[class*="home-section-grad-"] .why-val-card:hover,
[class*="home-section-grad-"] .benefit-casual-item:hover,
[class*="home-section-grad-"] .cert-frame:hover,
[class*="home-section-grad-"] .video-thumbnail-card:hover,
[class*="home-section-grad-"] .process-step-card-recent:hover,
[class*="home-section-grad-"] .service-inquiry-card:hover,
[class*="home-section-grad-"] .category-card:hover,
[class*="home-section-grad-"] .enquiry-pane-card:hover,
[class*="home-section-grad-"] .product-action-block:hover,
[class*="home-section-grad-"] .safety-rule-card:hover,
[class*="home-section-grad-"] .related-card:hover,
[class*="home-section-grad-"] .project-card:hover,
[class*="home-section-grad-"] .modern-blog-card:hover,
[class*="home-section-grad-"] .featured-blog-card:hover,
[class*="home-section-grad-"] .sidebar-widget:hover,
[class*="home-section-grad-"] .faq-sidebar-card:hover,
[class*="home-section-grad-"] .faq-item:hover,
[class*="home-section-grad-"] .office-profile-grid:hover,
[class*="home-section-grad-"] .cmf-map-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(214, 96, 7, 0.05) 100%) !important;
  border-color: rgba(214, 96, 7, 0.35) !important;
  box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4), 0 0 20px rgba(214, 96, 7, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  transform: translateY(-8px) !important;
}

/* Global typography & readability overrides in gradient sections */
[class*="home-section-grad-"] .section-title,
[class*="home-section-grad-"] h2,
[class*="home-section-grad-"] h3,
[class*="home-section-grad-"] .why-choose-heading,
[class*="home-section-grad-"] .contact-title-new,
[class*="home-section-grad-"] .partners-title,
[class*="home-section-grad-"] .gallery-title {
  color: var(--white) !important;
}

[class*="home-section-grad-"] p,
[class*="home-section-grad-"] .about-paragraph,
[class*="home-section-grad-"] .service-desc,
[class*="home-section-grad-"] .why-choose-desc,
[class*="home-section-grad-"] .project-desc,
[class*="home-section-grad-"] .testimonial-text,
[class*="home-section-grad-"] .blog-desc,
[class*="home-section-grad-"] .section-desc {
  color: rgba(255, 255, 255, 0.75) !important;
}

/* Badge styling inside gradient sections */
[class*="home-section-grad-"] .section-badge,
[class*="home-section-grad-"] .contact-badge-new {
  background: rgba(244, 123, 32, 0.15) !important;
  color: var(--orange-light) !important;
  border-color: rgba(244, 123, 32, 0.25) !important;
}

/* Checklist items and check icons */
[class*="home-section-grad-"] .checklist-item {
  color: rgba(255, 255, 255, 0.9) !important;
}

[class*="home-section-grad-"] .check-icon-wrapper {
  background: rgba(244, 123, 32, 0.15) !important;
  color: var(--orange-light) !important;
}

/* Glassmorphic Stats styling */
[class*="home-section-grad-"] .about-stat-col,
[class*="home-section-grad-"] .stat-card {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

[class*="home-section-grad-"] .about-stat-col:hover,
[class*="home-section-grad-"] .stat-card:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

[class*="home-section-grad-"] .stat-number {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .stat-text-label {
  color: rgba(255, 255, 255, 0.6) !important;
}

[class*="home-section-grad-"] .stat-icon-box {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--orange-light) !important;
}

[class*="home-section-grad-"] .about-stat-col:hover .stat-icon-box {
  background: var(--orange) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .about-stat-col:hover .stat-number {
  color: var(--orange-light) !important;
}

/* Floating Badge */
[class*="home-section-grad-"] .floating-experience-badge {
  background: rgba(13, 27, 62, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1.5px solid var(--orange) !important;
}

[class*="home-section-grad-"] .floating-experience-badge .exp-num {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .floating-experience-badge .exp-label {
  color: rgba(255, 255, 255, 0.7) !important;
}



[class*="home-section-grad-"] .service-card-title {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .service-card:hover .service-card-title {
  color: var(--orange-light) !important;
}

[class*="home-section-grad-"] .service-card-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

[class*="home-section-grad-"] .service-link-text {
  color: var(--orange-light) !important;
}

/* Why Choose Us styling overrides */
[class*="home-section-grad-"] .why-mvv-list,
[class*="home-section-grad-"] .why-mvv-item {
  border-color: rgba(255, 255, 255, 0.08) !important;
}

[class*="home-section-grad-"] .why-mvv-icon {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--orange-light) !important;
}

[class*="home-section-grad-"] .why-mvv-title {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .why-mvv-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

[class*="home-section-grad-"] .why-choose-btn {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

[class*="home-section-grad-"] .why-choose-btn:hover {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .why-choose-img-badge {
  background: rgba(13, 27, 62, 0.85) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1.5px solid var(--orange) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
}

[class*="home-section-grad-"] .why-badge-label {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Project Card Glassmorphism */
[class*="home-section-grad-"] .project-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

[class*="home-section-grad-"] .project-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 20px 35px rgba(214, 96, 7, 0.15) !important;
}

[class*="home-section-grad-"] .project-card-title {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .project-card:hover .project-card-title {
  color: var(--orange-light) !important;
}

[class*="home-section-grad-"] .project-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}



[class*="home-section-grad-"] .testimonial-quote {
  color: rgba(255, 255, 255, 0.8) !important;
}

[class*="home-section-grad-"] .author-name {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .author-role {
  color: rgba(255, 255, 255, 0.6) !important;
}

[class*="home-section-grad-"] .testimonial-author {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* Glassmorphic Blog Cards */
[class*="home-section-grad-"] .blog-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

[class*="home-section-grad-"] .blog-card:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 20px 35px rgba(214, 96, 7, 0.15) !important;
}

[class*="home-section-grad-"] .blog-card-title a {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .blog-card:hover .blog-card-title a {
  color: var(--orange-light) !important;
}

[class*="home-section-grad-"] .blog-card-desc {
  color: rgba(255, 255, 255, 0.7) !important;
}

[class*="home-section-grad-"] .blog-meta {
  color: rgba(255, 255, 255, 0.5) !important;
}

[class*="home-section-grad-"] .blog-read-more {
  color: var(--orange-light) !important;
}



[class*="home-section-grad-"] .form-card-title-new,
[class*="home-section-grad-"] .form-label-new {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .form-input-new,
[class*="home-section-grad-"] .form-textarea-new {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .form-input-new::placeholder,
[class*="home-section-grad-"] .form-textarea-new::placeholder {
  color: rgba(255, 255, 255, 0.4) !important;
}

[class*="home-section-grad-"] .form-input-new:focus,
[class*="home-section-grad-"] .form-textarea-new:focus {
  border-color: var(--orange) !important;
  box-shadow: 0 0 0 3px rgba(214, 96, 7, 0.25) !important;
}

[class*="home-section-grad-"] .form-success-overlay {
  background: rgba(13, 27, 62, 0.98) !important;
}

[class*="home-section-grad-"] .success-title {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .success-msg {
  color: rgba(255, 255, 255, 0.7) !important;
}



[class*="home-section-grad-"] .info-card-title-new {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .info-label-new {
  color: rgba(255, 255, 255, 0.5) !important;
}

[class*="home-section-grad-"] .info-value-new {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .info-icon-wrap-new.type-loc {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .partner-card-new {
  background: rgba(255, 255, 255, 0.92) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

.about-section-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-badge {
  font-family: var(--font-main);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.08em;
  background: rgba(244, 123, 32, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
}

.about-header-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}

.about-header-centered .section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.about-header-centered .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.about-grid-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}

/* Left side Collage Layout */
.about-collage-container {
  position: relative;
  width: 100%;
}

.collage-grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.collage-top-box {
  width: 100%;
  height: 385px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(13, 27, 62, 0.08);
}

.collage-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.collage-sub-box {
  height: 170px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(13, 27, 62, 0.08);
}

.collage-img-sub {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.collage-top-box:hover .collage-img-main,
.collage-sub-box:hover .collage-img-sub {
  transform: scale(1.035);
}

/* Overlapping Experience Badge */
.floating-experience-badge {
  position: absolute;
  bottom: 170px;
  /* Aligns vertically between top and bottom boxes */
  left: 50%;
  transform: translate(-50%, 50%);
  z-index: 10;
  background: var(--white);
  padding: 14px 28px;
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(13, 27, 62, 0.15);
  border: 1.5px solid var(--orange);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.floating-experience-badge:hover {
  transform: translate(-50%, 50%) translateY(-3px);
}

.floating-experience-badge .exp-num {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 850;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 2px 0;
}

.floating-experience-badge .exp-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-mid);
  letter-spacing: 0.1em;
}

/* Right side Text Content styling */
.about-text-content-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-paragraph {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

.about-paragraph.lead-text {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.6;
}

/* Checklist Grid styling */
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  font-weight: 655;
  color: var(--navy);
}

.check-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(214, 96, 7, 0.08);
  color: var(--orange);
  flex-shrink: 0;
}

.about-actions-new {
  margin-top: 10px;
}

.about-actions-new .btn-primary-consult {
  background-color: var(--orange-dark);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(13, 27, 62, 0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-actions-new .btn-primary-consult:hover {
  background-color: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(214, 96, 7, 0.25);
}

/* Bottom Stats Bar */
.about-bottom-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 0px;

  padding-top: 56px;
  width: 100%;
}

.about-stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 15px rgba(13, 27, 62, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-stat-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(13, 27, 62, 0.08);
  border-color: #CBD5E1;
}

.stat-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(0, 139, 226, 0.06);
  color: #008be2;
  transition: all 0.3s ease;
}

.about-stat-col:hover .stat-icon-box {
  background: #008be2;
  color: var(--white);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 850;
  color: var(--navy);
  margin: 0;
  line-height: 1.1;
  transition: color 0.3s ease;
}

.about-stat-col:hover .stat-number {
  color: #008be2;
}

.stat-text-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  line-height: 1.35;
}

/* Responsive Overrides */
@media (max-width: 991px) {
  .about-grid-content {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-bottom-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    margin-top: 60px;
    padding-top: 48px;
  }
}

@media (max-width: 576px) {
  .about-bottom-stats {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .floating-experience-badge {
    padding: 10px 20px;
  }

  .floating-experience-badge .exp-num {
    font-size: 1.4rem;
  }

  .collage-top-box {
    height: 200px;
  }

  .collage-sub-box {
    height: 120px;
  }

  .floating-experience-badge {
    bottom: 120px;
  }

  .checklist-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.gallery-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

/* =============================================
   PRODUCTS CATEGORIES SLIDER
   ============================================= */
.categories-section {
  padding: 10px 0 0px;
  background: var(--white);
  overflow: hidden;
}

.categories-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.categories-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.categories-header .header-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.categories-header .section-title {
  margin-bottom: 0;
}

.categories-header-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.categories-header-centered .header-left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.categories-header-centered .section-title {
  margin-bottom: 0;
}

.categories-header .header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.cat-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.03);
}

.cat-nav-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 123, 32, 0.25);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 30px;
  background: transparent;
  border: 1.5px solid var(--orange);
  color: var(--orange);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
  line-height: 1;
}

.btn-view-all:hover {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(244, 123, 32, 0.2);
}

.btn-view-all svg {
  transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
  transform: translate(2px, -2px);
}

.categories-slider-wrapper {
  position: relative;
  width: 100%;
}

.categories-slider {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Hide scrollbar Firefox */
  padding: 10px 0 50px;
  will-change: transform;
}

.categories-slider::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar Chrome/Safari */
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 10px 0 50px;
}

.categories-grid .category-card {
  flex: none;
  width: 100%;
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Product Category Cards (image-on-top, text-below) ── */
.prod-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 10px 0 50px;
}

.prod-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #E8EEF6;
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.05);
  text-decoration: none !important;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13, 27, 62, 0.12);
  border-color: rgba(244, 123, 32, 0.3);
}

.prod-card-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #F0F4FA;
}

.prod-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.prod-card:hover .prod-card-img {
  transform: scale(1.06);
}

.prod-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EEF3F9;
}

.prod-card-count-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(13, 27, 62, 0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 30px;
  text-transform: uppercase;
}

.prod-card-body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
  border-top: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.prod-card:hover .prod-card-body {
  border-top-color: var(--orange);
}

.prod-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.prod-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 750;
  color: var(--navy);
  line-height: 1.3;
  margin: 0 0 8px;
}

.prod-card-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: auto;
  opacity: 0.55;
  transition: all 0.3s ease;
}

.prod-card:hover .prod-card-cta {
  opacity: 1;
  color: var(--orange);
  gap: 9px;
}

/* Responsive */
@media (max-width: 992px) {
  .prod-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .prod-cards-grid {
    grid-template-columns: 1fr;
  }

  .prod-card-img-wrap {
    height: 180px;
  }
}

.category-card {
  flex: 0 0 300px;
  height: 400px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 27, 62, 0.18);
}

.category-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.85;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-bg {
  transform: scale(1.08);
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(13, 27, 62, 0.95) 0%,
      rgba(13, 27, 62, 0.5) 50%,
      rgba(13, 27, 62, 0.15) 100%);
}

.category-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 3;
}

.category-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.category-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.category-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin-bottom: 20px;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-desc {
  opacity: 1;
  max-height: 80px;
  transform: translateY(0);
}

.category-action {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--white);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.category-card:hover .category-action {
  opacity: 1;
  color: var(--orange);
}

.action-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.category-card:hover .action-arrow {
  background: var(--orange);
  color: var(--white);
  transform: translate(2px, -2px);
}

/* Responsive Categories */
@media (max-width: 960px) {
  .categories-section {
    padding: 20px 0;
  }

  .categories-container {
    padding: 0 24px;
  }

  .category-card {
    flex: 0 0 280px;
    height: 380px;
  }
}

@media (max-width: 600px) {
  .categories-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }

  .categories-header .header-right {
    margin-bottom: 0;
  }
}

/* =============================================
   CALL TO ACTION (CTA) SECTION
   ============================================= */
.cta-section {
  padding: 0;
  background: var(--off-white);
}

.cta-minimal-strip {
  max-width: 1300px;
  margin: 0 auto;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid #E2E8F0;
  border-bottom: 1px solid #E2E8F0;
}

.cta-minimal-text {
  font-size: 0.95rem;
  color: #4A5568;
  line-height: 1.55;
  margin: 0;
  flex: 1;
  max-width: 620px;
}

.cta-minimal-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-main);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.cta-minimal-btn:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 27, 62, 0.15);
}

.cta-minimal-btn svg {
  transition: transform 0.25s ease;
}

.cta-minimal-btn:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 720px) {
  .cta-minimal-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 20px;
  }

  .cta-minimal-btn {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   SERVICES SECTION (PREMIUM B2B CORPORATE)
   ============================================= */
.services-section {
  padding: 50px 0;
  background: var(--off-white);
  position: relative;
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.services-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}

.services-header .section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.services-header .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: 0 20px 25px -5px rgba(214, 96, 7, 0.08), 0 10px 10px -5px rgba(214, 96, 7, 0.04);
}

/* Card Image Wrapper (Full Width, bleeds edge-to-edge) */
.service-image-wrapper {
  position: relative;
  width: 100%;
  height: 240px;
  /* Strong visual presence */
  overflow: hidden;
  background: var(--navy);
}

.service-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-card-img {
  transform: scale(1.05);
}

/* Card Body */
.service-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
  transition: color 0.3s;
}

.service-card:hover .service-card-title {
  color: var(--orange);
}

.service-card-desc {
  font-size: 0.9rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 10px;
}

/* Service Card Footer (Clean text and circular arrow button) */
.service-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #F1F5F9;
  padding-top: 10px;
}

.service-link-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s;
}

.service-card:hover .service-link-text {
  color: var(--orange);
}

.service-arrow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.service-arrow-btn svg {
  transition: transform 0.3s;
}

.service-card:hover .service-arrow-btn {
  background: var(--navy);
  color: var(--white);
}

.service-card:hover .service-arrow-btn svg {
  transform: translateX(3px);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .services-section {
    padding: 50px 0;
  }

  .services-container {
    padding: 0 24px;
  }
}

/* =============================================
   FEATURED PROJECTS SECTION
   ============================================= */
.projects-section {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}

.projects-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.projects-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.projects-header .section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.projects-header .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.projects-actions {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Project Card */
.project-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  border-color: #CBD5E1;
  box-shadow: 0 20px 25px -5px rgba(13, 27, 62, 0.06), 0 10px 10px -5px rgba(13, 27, 62, 0.02);
}

/* Project Image Box */
.project-image-box {
  position: relative;
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: var(--navy);
}

.project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-img {
  transform: scale(1.04);
}

/* Glassmorphic Sequence Tag */
.project-number-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(13, 27, 62, 0.85);
  backdrop-filter: blur(4px);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.05em;
  z-index: 2;
}

/* Content Box */
.project-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.project-tag-pill {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.project-card-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.35;
  transition: color 0.3s;
}

.project-card:hover .project-card-title {
  color: var(--orange);
}

.project-desc {
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* Engineering Specs Grid */
.project-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  background: var(--white);
  border: 1px solid #F1F5F9;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 24px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94A3B8;
  letter-spacing: 0.05em;
}

.spec-value {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

/* Card Link Footer */
.project-footer {
  margin-top: auto;
  display: flex;
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  background: var(--orange-dark);
  color: var(--navy);
  border: 1.5px solid var(--navy);
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.project-link svg {
  transition: transform 0.3s;
}

.project-card:hover .project-link {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(244, 123, 32, 0.2);
}

.project-card:hover .project-link svg {
  transform: translate(2px, -2px);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .projects-section {
    padding: 0px 0 50px;
  }
}

@media (max-width: 600px) {
  .project-image-box {
    height: 240px;
  }

  .project-content {
    padding: 24px;
  }

  .project-specs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 12px;
  }

  .projects-container {
    padding: 0 20px;
  }
}

/* =============================================
   WHY CHOOSE US (MISSION, VISION, VALUES) SECTION
   ============================================= */
.why-choose-section {
  padding: 50px 0;
  padding-top: 40px;
  background: var(--off-white);
  border-top: 1px solid #EEF1F6;
}

.why-choose-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ── Centered top header ── */
.why-choose-top-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

/* ── Two-column layout ── */
.why-choose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── Left image column ── */
.why-choose-img-col {
  position: relative;
}

.why-choose-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 560px;
  box-shadow: 0 24px 60px rgba(13, 27, 62, 0.12);
}

.why-choose-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-choose-img-wrap:hover .why-choose-main-img {
  transform: scale(1.04);
}

/* Floating years badge */
.why-choose-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.12);
}

.why-badge-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.why-badge-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Right content column ── */
.why-choose-content-col {
  display: flex;
  flex-direction: column;
}

/* Heading */
.why-choose-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 12px 0 0;
}

.why-choose-heading .highlight-text {
  color: var(--orange);
}

/* Button */
.why-choose-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #bbc0c9;
  color: #1F2937;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-bottom: 36px;
}

.why-choose-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.why-choose-btn .plus-icon {
  font-weight: 700;
}

/* ── Mission / Vision / Values stacked list ── */
.why-mvv-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid #EEF1F6;
}

.why-mvv-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid #EEF1F6;
}

.why-mvv-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #d2d8e1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy);
  transition: all 0.3s ease;
}

.why-mvv-item:hover .why-mvv-icon {
  background: var(--orange);
  color: var(--white);
}

.why-mvv-item:hover .why-mvv-icon svg {
  stroke: var(--white);
}

.why-mvv-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.why-mvv-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.why-mvv-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .why-choose-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .why-choose-img-wrap {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .why-choose-section {
    padding: 30px 0;
  }

  .why-choose-container {
    padding: 0 20px;
  }

  .why-choose-img-wrap {
    height: 280px;
  }

  .why-mvv-item {
    gap: 14px;
  }
}

/* =============================================
   OUR PROCESS SECTION (SLIDER LAYOUT)
   ============================================= */
.process-section {
  padding: 96px 0 80px;
  background: #FFFFFF;
  position: relative;
  overflow: hidden;
}

/* Subtle warm geometric accent — top-right corner */
.process-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Bottom-left subtle navy accent */
.process-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 27, 62, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.process-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ---- Section Header ---- */
.process-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.process-header .section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.process-header .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

/* ---- Slider Track Wrapper ---- */
.process-slider-wrapper {
  position: relative;
  width: 100%;
}

.process-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 12px 4px 52px;
  /* Fade-out edges to hint at more cards */
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 92%, transparent 100%);
}

.process-slider-track::-webkit-scrollbar {
  display: none;
}

/* ---- Process Card ---- */
.process-card {
  flex: 0 0 340px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 20px;
  padding: 36px 32px 28px;
  box-shadow: 0 2px 12px rgba(13, 27, 62, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Orange bottom bar reveal on hover */
.process-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  border-radius: 0 0 20px 20px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
  transform: translateY(-10px);
  border-color: rgba(244, 123, 32, 0.3);
  box-shadow: 0 24px 48px rgba(13, 27, 62, 0.10), 0 8px 20px rgba(244, 123, 32, 0.08);
}

.process-card:hover::after {
  transform: scaleX(1);
}

/* ---- Step Number Badge (circular, orange) ---- */
.process-card-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 6px 18px rgba(244, 123, 32, 0.35);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.process-card:hover .process-card-number {
  background: var(--navy);
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.25);
  transform: scale(1.08);
}

/* ---- Outline Icon — top right ---- */
.process-card-icon {
  position: absolute;
  top: 28px;
  right: 28px;
  color: var(--gray-200);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.8;
}

.process-card:hover .process-card-icon {
  color: rgba(244, 123, 32, 0.2);
  transform: scale(1.12) rotate(-8deg);
  opacity: 1;
}

/* ---- Card Title ---- */
.process-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s;
  line-height: 1.35;
}

.process-card:hover .process-card-title {
  color: var(--orange);
}

/* ---- Card Description ---- */
.process-card-desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex-grow: 1;
}

/* ---- "Learn more" link ---- */
.process-card-link {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  color: var(--navy);
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  transition: color 0.3s, gap 0.3s;
}

.process-card-link svg {
  transition: transform 0.3s;
}

.process-card:hover .process-card-link {
  color: var(--orange);
  gap: 12px;
}

.process-card:hover .process-card-link svg {
  transform: translateX(4px);
}

/* ---- Nav Buttons ---- */
.process-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 6px 24px rgba(13, 27, 62, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--shadow-btn);
  transform: translateY(-50%) scale(1.1);
}

.process-btn-next {
  right: -8px;
}

.process-btn-prev {
  left: -8px;
  display: none;
}

/* ---- Responsive ---- */
@media (max-width: 960px) {
  .process-card {
    flex: 0 0 300px;
    padding: 28px 24px 24px;
    min-height: 300px;
  }

  .process-section {
    padding: 72px 0 64px;
  }
}

@media (max-width: 600px) {
  .process-card {
    flex: 0 0 265px;
    padding: 24px 20px 20px;
  }

  .process-container {
    padding: 0 20px;
  }

  .process-slider-btn {
    width: 42px;
    height: 42px;
  }

  .process-header .section-title {
    font-size: 1.85rem;
  }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */
.testimonials-section {
  padding: 10px 0;
  background: var(--off-white);
  position: relative;
}

.testimonials-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Centered Header */
.testimonials-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
}

.testimonials-header .section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.testimonials-header .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

/* Slider Wrapper */
.testimonials-slider-wrapper {
  position: relative;
  width: 100%;
}

/* Slider Track */
.testimonials-slider-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 12px 4px 10px;
  /* Mask gradient for visual polish */
  mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.testimonials-slider-track::-webkit-scrollbar {
  display: none;
}

/* Testimonial Card in Slider Mode */
.testimonial-card {
  flex: 0 0 380px;
  /* Fixed width on desktop */
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.03);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Accent Bar */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-6px);
  border-color: rgba(244, 123, 32, 0.25);
  box-shadow: 0 20px 40px rgba(13, 27, 62, 0.08);
}

.testimonial-card:hover::after {
  transform: scaleX(1);
}

/* Card Top Header */
.testimonial-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.star-rating {
  display: flex;
  gap: 4px;
  color: var(--orange);
}

.quote-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Card Quote Text */
.testimonial-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

/* Author Details */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  border-top: 1px solid var(--gray-100);
  padding-top: 20px;
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.1);
}

/* Author Avatar Gradient Themes */
.grad-orange {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
}

.grad-navy {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
}

/* Photo avatar — testimonial author headshot */
.author-avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--orange), 0 4px 12px rgba(13, 27, 62, 0.15);
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.author-role {
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.2;
}

/* Overlaid Nav Buttons (matches process section style) */
.testimonials-slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 6px 24px rgba(13, 27, 62, 0.22);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonials-slider-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: var(--shadow-btn);
  transform: translateY(-50%) scale(1.1);
}

.testimonials-btn-next {
  right: -8px;
}

.testimonials-btn-prev {
  left: -8px;
  display: none;
}

/* Tablet & Mobile Adjustments */
@media (max-width: 960px) {
  .testimonial-card {
    flex: 0 0 320px;
    /* Sleeker cards on tablets */
  }

  .testimonials-section {
    padding: 70px 0;
  }
}

@media (max-width: 600px) {
  .testimonial-card {
    flex: 0 0 290px;
    max-width: calc(100vw - 40px);
    /* Compact cards on mobile */
    padding: 16px;
  }

  .testimonials-container {
    padding: 0 20px;
  }

  .testimonials-slider-btn {
    width: 42px;
    height: 42px;
  }
}

/* =============================================
   BOTTOM CTA SECTION
   ============================================= */
.bottom-cta-section {
  padding: 0;
  background: var(--off-white);
  border-top: 1px solid #EEF1F6;
}


/* Floating soft glows */
.bottom-cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.6;
  z-index: 2;
}

.bottom-cta-glow.glow-orange {
  top: -150px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.18) 0%, rgba(244, 123, 32, 0.02) 70%, transparent 100%);
}

.bottom-cta-glow.glow-blue {
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, rgba(99, 102, 241, 0.01) 70%, transparent 100%);
}

.bottom-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 3;
}

/* Glassmorphic premium card container */
.bottom-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  background: rgb(13 27 62);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-left-radius: 64px;
  border-bottom-right-radius: 64px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 25px 43px;
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: all 0.4s ease;
}

.bottom-cta-inner:hover {
  border-color: rgba(244, 123, 32, 0.25);
  box-shadow:
    0 35px 70px rgba(0, 0, 0, 0.45),
    0 0 40px rgba(244, 123, 32, 0.05),
    inset 0 1px 0px rgba(255, 255, 255, 0.15);
}

.bottom-cta-content {
  flex: 1;
  max-width: 680px;
}

/* Consultation Badge */
.bottom-cta-badge-wrapper {
  margin-bottom: 20px;
}

.bottom-cta-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(244, 123, 32, 0.1);
  border: 1px solid rgba(244, 123, 32, 0.3);
  color: #FF9F43;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(244, 123, 32, 0.1);
}

.bottom-cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

/* Highlighted gradient text style */
.bottom-cta-title .gradient-text {
  background: linear-gradient(135deg, #FF9F43 0%, #F47B20 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.bottom-cta-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0;
}

.bottom-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* Premium Primary Accent Button with Gradient */
.btn-primary-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: linear-gradient(135deg, #d66007 0%, #d66007 100%);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(244, 123, 32, 0.35);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  letter-spacing: 0.01em;
}

.btn-primary-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(244, 123, 32, 0.55);
}

/* Premium Secondary Button with glowing transparency */
.btn-secondary-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-secondary-light:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}

/* ---- Responsive Styles ---- */
@media (max-width: 992px) {
  .bottom-cta-inner {
    padding: 50px 48px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-top-left-radius: 48px;
    border-bottom-right-radius: 48px;
  }

  .bottom-cta-actions {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .bottom-cta-section {
    padding: 60px 0;
  }

  .bottom-cta-container {
    padding: 0 16px;
  }

  .bottom-cta-inner {
    padding: 40px 24px;
    border-top-left-radius: 36px;
    border-bottom-right-radius: 36px;
  }

  .bottom-cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary-accent,
  .btn-secondary-light {
    width: 100%;
  }
}

/* ==============================================
   CONTACT / ENQUIRY SECTION — Light Refined
   ============================================== */

.contact-section {
  position: relative;
  padding: 50px 0px;
  background: var(--white);
  overflow: hidden;
}

/* Background decorative ambient shapes */
.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
}

.contact-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.07) 0%, transparent 70%);
  top: -100px;
  left: -120px;
  opacity: 1;
}

.contact-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(13, 27, 62, 0.04) 0%, transparent 70%);
  bottom: -60px;
  right: -80px;
  opacity: 1;
}

/* Layout */
.contact-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}

.contact-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.contact-title {
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.22;
  font-family: var(--font-display);
}

.contact-gradient {
  color: #F47B20;
}

.title-divider-line {
  width: 48px;
  height: 4px;
  background: var(--orange);
  margin-top: 16px;
  margin-bottom: 28px;
  border-radius: 2px;
}

.contact-subtitle {
  font-size: 1.02rem;
  color: #5a6482;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 480px;
}

/* Detail cards */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 450px;
}

.contact-detail-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  background: #ffffff;
  border: 1px solid #EEF1F6;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.02);
  transition: all 0.25s ease;
  cursor: default;
}

.contact-detail-card:hover {
  border-color: rgba(244, 123, 32, 0.2);
  box-shadow: 0 8px 20px rgba(244, 123, 32, 0.06);
  transform: translateY(-2px);
}

.detail-icon-wrap {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FDF2E9;
  /* Light orange tint */
  border-radius: 8px;
  color: var(--orange);
}

.detail-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8C98A9;
}

.detail-value-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.2s;
}

.detail-value:hover {
  color: var(--orange);
}

.whatsapp-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: #E8F7EE;
  color: #25D366;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 20px;
}

.whatsapp-badge svg {
  fill: #25D366;
}

.contact-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 580px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #ffffff;
  border: 1px solid #EEF1F6;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 2px 8px rgba(13, 27, 62, 0.02);
  transition: all 0.25s ease;
  white-space: nowrap;
}

.trust-badge svg {
  color: var(--orange);
  flex-shrink: 0;
}

.trust-badge:hover {
  background: #FDF2E9;
  border-color: rgba(244, 123, 32, 0.3);
}

/* ── RIGHT: Form Column ── */
.contact-form-col {
  position: relative;
}

.contact-form-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #EEF1F6;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(13, 27, 62, 0.06);
  overflow: hidden;
}

/* Card Header banner in Navy */
.form-card-header {
  background: var(--navy);
  padding: 40px 40px 0 40px;
  position: relative;
  color: #ffffff;
  overflow: hidden;
}

.form-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.header-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  background: rgba(244, 123, 32, 0.05);
  flex-shrink: 0;
}

.header-text .form-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
  font-family: var(--font-display);
}

.header-text .form-subtitle {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

.header-wave-wrapper {
  position: relative;
  width: 100%;
  height: 48px;
  margin-top: 0px;
  z-index: 1;
}

.header-wave-svg {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Card Body spacing */
.form-card-body {
  padding: 24px;
}

/* Grid & Groups */
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group:last-child {
  margin-bottom: 0;
}

/* Labels */
.form-label {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #4A5568;
  text-transform: uppercase;
  margin-bottom: 2px;
  display: inline-block;
}

.form-label .req {
  color: var(--orange);
  margin-left: 2px;
}

/* Icon input layout */
.input-with-icon {
  position: relative;
  width: 100%;
}

.input-with-icon .input-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #A0AEC0;
  pointer-events: none;
  transition: color 0.25s ease;
}

.input-with-icon .form-input {
  padding-left: 48px;
}

/* Inputs */
.form-input {
  width: 100%;
  padding: 10px 18px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 8px;
  color: #1A202C;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-appearance: none;
  appearance: none;
}

.form-input::placeholder {
  color: #A0AEC0;
}

.form-input:focus {
  border-color: #CBD5E0;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.05);
}

.input-with-icon:focus-within .input-icon {
  color: var(--orange);
}

/* Textarea styling */
.form-textarea {
  resize: vertical;
  min-height: 110px;
  line-height: 1.6;
}

/* Custom Select styling */
.select-wrapper {
  position: relative;
}

.form-select {
  cursor: pointer;
  padding-right: 44px;
}

.form-select option {
  background: #ffffff;
  color: var(--text-dark);
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #718096;
  pointer-events: none;
  transition: color 0.2s;
}

.select-wrapper:focus-within .select-arrow {
  color: var(--orange);
}

/* Validation Errors */
.form-error {
  display: none;
  font-size: 0.76rem;
  font-weight: 600;
  color: #E53935;
  padding-left: 2px;
  margin-top: 4px;
}

.form-error.visible {
  display: block;
}

/* Submit button exactly as mockup */
.form-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 12px 32px;
  margin-top: 24px;
  background: #F47B20;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(244, 123, 32, 0.2);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.form-submit-btn:hover {
  background: #E06912;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(244, 123, 32, 0.3);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.form-submit-btn.loading .submit-label::after {
  content: '…';
  animation: ellipsis 1.2s steps(4, end) infinite;
}

.form-submit-btn.loading .submit-arrow {
  animation: spin 0.8s linear infinite;
}

.submit-arrow {
  transition: transform 0.25s;
  flex-shrink: 0;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ellipsis {
  0% {
    content: '';
  }

  33% {
    content: '.';
  }

  66% {
    content: '..';
  }

  100% {
    content: '…';
  }
}

/* Bottom Privacy notice */
.privacy-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  color: #718096;
  font-size: 0.8rem;
  font-weight: 500;
}

.privacy-notice svg {
  color: #718096;
  flex-shrink: 0;
}

/* ── Success Overlay ── */
.form-success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 10;
}

.form-success-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.form-success-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 40px 24px;
  animation: successPop 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes successPop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-icon-ring {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(244, 123, 32, 0.1);
  border: 2px solid rgba(244, 123, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(244, 123, 32, 0.18);
  }

  50% {
    box-shadow: 0 0 0 14px rgba(244, 123, 32, 0);
  }
}

.success-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--navy);
}

.success-msg {
  font-size: 0.95rem;
  color: #5a6482;
  line-height: 1.5;
  max-width: 280px;
}

.success-back-btn {
  margin-top: 8px;
  padding: 12px 32px;
  background: transparent;
  border: 1.5px solid rgba(244, 123, 32, 0.45);
  border-radius: 8px;
  color: var(--orange);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s ease;
}

.success-back-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.contact-section {
  position: relative;
  padding: 50px 0;
  background: var(--white);
  overflow: hidden;
}

/* Contact Header */
.contact-header-new {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.contact-badge-new {
  background: rgba(244, 123, 32, 0.08);
  color: var(--orange);
  border: 1px solid rgba(244, 123, 32, 0.15);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.contact-title-new {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 850;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.25;
}

.contact-header-new .title-divider-line {
  margin: 16px auto 0 auto;
}

/* Background decorative ambient shapes */
.contact-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(85px);
  pointer-events: none;
}

.contact-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.05) 0%, transparent 70%);
  top: -100px;
  left: -120px;
}

.contact-orb-2 {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(13, 27, 62, 0.03) 0%, transparent 70%);
  bottom: -60px;
  right: -80px;
}

/* Layout */
.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 40px;
  align-items: start;
  position: relative;
  z-index: 1;
}

/* Form Card */
.contact-form-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.03);
  position: relative;
}

.form-success-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 16px;
}

.form-success-inner {
  text-align: center;
  padding: 30px;
}

.success-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(244, 123, 32, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-msg {
  color: var(--text-mid);
  margin-bottom: 24px;
}

.success-back-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}

.success-back-btn:hover {
  background: var(--orange-dark);
}

.form-card-title-new {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 850;
  color: var(--navy);
  margin: 0 0 32px 0;
}

.form-group-new {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label-new {
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E293B;
}

.form-label-new .req {
  color: var(--orange);
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #CBD5E1;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: all 0.3s;
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: #94A3B8;
}

.form-input-new:focus,
.form-textarea-new:focus {
  border-color: var(--orange);
  outline: none;
  box-shadow: 0 0 0 3px rgba(214, 96, 7, 0.12);
}

.form-row-2-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-submit-btn-new {
  width: 100%;
  padding: 14px 28px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s;
}

.form-submit-btn-new:hover {
  background: var(--orange-dark);
  box-shadow: 0 4px 15px rgba(214, 96, 7, 0.2);
}

/* Form Error styles */
.form-error {
  font-size: 0.8rem;
  color: #DC2626;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
}

/* Right Column Info Cards */
.contact-info-col-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card-new {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.03);
}

.info-card-title-new {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 850;
  color: var(--navy);
  margin: 0 0 28px 0;
}

.info-list-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}

.info-item-new {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon-wrap-new {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-icon-wrap-new.type-phone {
  background: rgba(0, 139, 226, 0.08);
  color: #008be2;
}

.info-icon-wrap-new.type-email {
  background: rgba(214, 96, 7, 0.08);
  color: var(--orange);
}

.info-icon-wrap-new.type-loc {
  background: rgba(13, 27, 62, 0.08);
  color: var(--navy);
}

.info-text-new {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label-new {
  font-size: 0.75rem;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.info-value-new {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s ease;
}

a.info-value-new:hover {
  color: var(--orange);
}

.whatsapp-cta-btn-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border: 1.5px solid #008be2;
  border-radius: 8px;
  color: #008be2;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.whatsapp-cta-btn-new:hover {
  background: rgba(0, 139, 226, 0.05);
  border-color: #0077c2;
  color: #0077c2;
}

/* Card 2: Branches */
.info-card-new.branches-card {
  padding: 32px 28px;
}

.branch-item-new {
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 1px solid #F1F5F9;
}

.branch-item-new:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.branch-name-new {
  font-size: 1rem;
  font-weight: 750;
  color: var(--white);
  margin: 0 0 6px 0;
}

.branch-address-new {
  font-size: 0.88rem;
  color: #475569;
  margin: 0 0 6px 0;
  line-height: 1.4;
}

.branch-phone-new {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  transition: color 0.25s ease;
}

.branch-phone-new:hover {
  color: var(--orange-dark);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .form-row-2-new {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-form-card {
    padding: 24px;
  }

  .contact-section {
    padding: 50px 0;
  }
}

/* ==============================================
   PARTNERS / CLIENTS SECTION
   ============================================== */

.partners-section {
  position: relative;
  padding: 50px 0;
  background: var(--off-white);
  border-top: 1px solid #EEF1F6;
  border-bottom: 1px solid #EEF1F6;
}

.partners-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Section Header */
.partners-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 40px;
}

.partners-title {
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  font-weight: 850;
  color: var(--navy);
  margin-bottom: 0px;
  font-family: var(--font-display);
}

.partners-grid-new {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  margin-top: 40px;
  width: 100%;
}

.partner-card-new {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 10px;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  height: 90px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(13, 27, 62, 0.01);
}

.partner-card-new:hover {
  border-color: rgba(244, 123, 32, 0.25);
  box-shadow: 0 8px 20px rgba(244, 123, 32, 0.05);
  transform: translateY(-3px);
}

.partner-logo-img-new {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;

  opacity: 1;
  transition: all 0.3s ease;
}

.partner-card-new:hover .partner-logo-img-new {
  filter: grayscale(0%);
  opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .partners-grid-new {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

@media (max-width: 576px) {
  .partners-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partner-card-new {
    height: 80px;
  }
}

/* --- About page Infinite Partners Slider --- */
.partners-slider-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 20px 0;
}

.partners-slider-wrapper::before,
.partners-slider-wrapper::after {
  display: none !important;
}

.partners-slider-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: partnersMarquee 35s linear infinite;
}

.partners-slider-wrapper:hover .partners-slider-track {
  animation-play-state: paused;
}

.partner-card {
  width: 200px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 20px;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(13, 27, 62, 0.01);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.partner-card:hover {
  border-color: rgba(244, 123, 32, 0.25);
  box-shadow: 0 8px 20px rgba(244, 123, 32, 0.05);
  transform: translateY(-3px);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.partner-logo-img {
  max-height: 44px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

.partners-header .section-desc {
  font-size: 0.96rem;
  color: var(--text-mid);
  margin-top: 14px;
  line-height: 1.6;
}

@keyframes partnersMarquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==============================================
   BLOG / INSIGHTS SECTION
   ============================================= */

.blog-section {
  position: relative;
  padding: 40px 0;
  background: var(--white);
}

.blog-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Section Header */
.blog-header {
  text-align: center;
  max-width: 790px;
  margin: 0 auto 56px;
}

.blog-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 850;
  color: var(--navy);
  margin-bottom: 0;
  font-family: var(--font-display);
  position: relative;
  padding-bottom: 16px;
  display: block;
}

.blog-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.blog-section .section-desc {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.blog-card {
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.02);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(13, 27, 62, 0.08);
  border-color: #CBD5E1;
}

.blog-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
  background: #F1F5F9;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.blog-meta .meta-date {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta .meta-icon {
  color: #94A3B8;
  flex-shrink: 0;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.4;
  margin: 0 0 12px 0;
  font-family: var(--font-display);
}

.blog-card-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.25s ease;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-title a:hover {
  color: var(--orange);
}

.blog-card-desc {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.blog-readmore {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
  margin-top: auto;
}

.blog-readmore span {
  transition: transform 0.3s ease;
}

.blog-readmore:hover {
  color: var(--orange-dark);
}

.blog-readmore:hover span {
  transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-section {
    padding: 50px 0;
  }
}

/* ==============================================
   FOOTER SECTION
   ============================================== */

.footer-section {
  background: #070F24;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 50px 0 20px;
  color: #8C98A9;
  font-family: var(--font-main);
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 10px;
}

.footer-col-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.footer-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 750;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #8C98A9;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #A3AED0;
}

.footer-contact-item a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-contact-icon {
  color: var(--orange);
  flex-shrink: 0;
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #A3AED0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #FFFFFF;
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 24px;
  position: relative;
  letter-spacing: 0.02em;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 24px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #8C98A9;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6C7A97;
  font-size: 0.88rem;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-bottom-links a {
  color: #6C7A97;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: var(--orange);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-container {
    padding: 0 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* =============================================
   SUBPAGE HEADER & BREADCRUMBS
   ============================================= */
.subpage-header {
  background-color: var(--navy);
  background-image: linear-gradient(rgba(13, 27, 62, 0.75), rgba(13, 27, 62, 0.82)), url('/static/img/about/about.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center calc(50% + var(--scroll-offset, 0px));
  padding: 130px 0 45px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--orange);
  will-change: background-position;
}

.subpage-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(214, 96, 7, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
  z-index: 1;
  pointer-events: none;
}

.subpage-header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.subpage-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0;
}

.breadcrumb-nav {
  margin: 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
}

.breadcrumb-link:hover {
  color: var(--orange);
}

.breadcrumb-item.separator {
  color: rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  padding: 0 2px;
}

.breadcrumb-item.separator svg {
  width: 10px;
  height: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb-item.active {
  color: var(--orange);
  font-weight: 600;
}

/* =============================================
   ABOUT PAGE — INTRODUCTION REDESIGN
   ============================================= */
.about-container {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-description {
  margin-top: 20px;
  margin-bottom: 32px;
}

.about-lead {
  font-size: 1.08rem;
  line-height: 1.68;
  color: var(--navy-mid);
  margin-bottom: 18px;
}

.about-description p:not(.about-lead) {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.03);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 96, 7, 0.2);
  box-shadow: 0 10px 24px rgba(13, 27, 62, 0.08);
}

.highlight-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.highlight-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(214, 96, 7, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.highlight-card:hover .highlight-icon-wrapper {
  background: var(--orange);
  color: var(--white);
}

.highlight-num {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.highlight-label {
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Right side image styling */
.about-image-content {
  position: relative;
  width: 100%;
}

.about-image-content .image-wrapper {
  position: relative;
  border-radius: 20px;
  padding: 0;
  z-index: 2;
}

.about-image-content .accent-box {
  position: absolute;
  inset: 15px -15px -15px 15px;
  background: linear-gradient(135deg, rgba(214, 96, 7, 0.08) 0%, rgba(214, 96, 7, 0.15) 100%);
  border: 1px solid rgba(214, 96, 7, 0.15);
  border-radius: 24px;
  z-index: 1;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-content:hover .accent-box {
  transform: translate3d(-6px, calc(var(--parallax-y, 0px) - 6px), 0);
}

.about-main-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(13, 27, 62, 0.12);
  display: block;
  z-index: 2;
  position: relative;
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-image-content:hover .about-main-img {
  transform: translate3d(0, var(--parallax-y, 0px), 0) scale(1.015);
}

@media (max-width: 991px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image-content {
    max-width: 550px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .about-highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .highlight-card {
    padding: 16px;
  }
}

/* =============================================
   ABOUT PAGE — WHY CHOOSE US REDESIGN
   ============================================= */
.why-choose-top {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}

.why-choose-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-choose-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 850;
  color: var(--navy);
  line-height: 1.25;
  margin-top: 14px;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}

.why-choose-heading .highlight-text {
  color: var(--orange);
  background: linear-gradient(120deg, rgba(214, 96, 7, 0.1) 0%, rgba(214, 96, 7, 0.02) 100%);
  padding: 2px 8px;
  border-radius: 6px;
}

.why-choose-btn {
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  border: 2px solid var(--navy);
  padding: 12px 28px;
  border-radius: 30px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.why-choose-btn:hover {
  background-color: var(--navy) !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 27, 62, 0.15);
}

.why-choose-btn .plus-icon {
  font-size: 1.1rem;
  color: var(--orange);
  transition: transform 0.3s ease;
}

.why-choose-btn:hover .plus-icon {
  transform: rotate(90deg);
  color: var(--white);
}

/* Beautiful overlapping image collage */
.why-choose-images {
  position: relative;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-img-card {
  position: absolute;
  width: 250px;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(13, 27, 62, 0.12);
  border: 4px solid var(--white);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 2;
}

.left-img-card {
  transform: translate(-50px, 30px) rotate(-3deg);
  z-index: 2;
}

.right-img-card {
  transform: translate(60px, -30px) rotate(4deg);
  z-index: 1;
}

.why-img-card:hover {
  z-index: 10;
  transform: translate(var(--hover-tx, 0), var(--hover-ty, 0)) scale(1.05) rotate(0deg);
  box-shadow: 0 25px 50px rgba(13, 27, 62, 0.2);
}

.left-img-card:hover {
  --hover-tx: -60px;
  --hover-ty: 20px;
}

.right-img-card:hover {
  --hover-tx: 70px;
  --hover-ty: -40px;
}

.why-img-styled {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-img-card:hover .why-img-styled {
  transform: scale(1.08);
}

/* Bottom cards layout */
.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.why-val-card {
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 6px 20px rgba(13, 27, 62, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 24px;
  border: 1px solid rgba(13, 27, 62, 0.04);
}

/* Gradient backgrounds for cards */
.mission-card {

  background: linear-gradient(135deg, rgb(255 91 34 / 69%) 0%, rgba(255, 91, 34, 0.08) 100%);
  border-color: rgb(255 91 34 / 76%);

}

.vision-card {
  background: var(--white);
  border-color: rgba(79, 209, 197, 0.1);
}

.values-card {
  background: linear-gradient(135deg, rgb(49 130 206 / 53%) 0%, rgba(49, 130, 206, 0.08) 100%);
  border-color: rgb(49 130 206 / 80%);
}

.why-val-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 36px rgba(13, 27, 62, 0.08);
}

.mission-card:hover {
  border-color: rgba(255, 91, 34, 0.25);
  background: linear-gradient(135deg, rgba(255, 91, 34, 0.05) 0%, rgba(255, 91, 34, 0.12) 100%);
}

.vision-card:hover {
  border-color: rgba(79, 209, 197, 0.25);
}

.values-card:hover {
  border-color: rgba(49, 130, 206, 0.25);
  background: linear-gradient(135deg, rgba(49, 130, 206, 0.05) 0%, rgba(49, 130, 206, 0.12) 100%);
}

.why-val-icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mission-card .why-val-icon-box {
  background: rgba(255, 91, 34, 0.1);
  color: #FF5B22;
}

.vision-card .why-val-icon-box {
  background: rgba(79, 209, 197, 0.1);
  color: #319795;
}

.values-card .why-val-icon-box {
  background: rgba(49, 130, 206, 0.1);
  color: #3182CE;
}

.why-val-card:hover .why-val-icon-box {
  transform: scale(1.1);
}

.mission-card:hover .why-val-icon-box {
  background: #FF5B22;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255, 91, 34, 0.3);
}

.vision-card:hover .why-val-icon-box {
  background: #319795;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(49, 209, 197, 0.3);
}

.values-card:hover .why-val-icon-box {
  background: #3182CE;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(49, 130, 206, 0.3);
}

.why-val-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0;
}

.why-val-desc {
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .why-choose-top {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .why-choose-info {
    align-items: center;
  }

  .why-choose-cards {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-choose-images {
    height: 340px;
  }
}

@media (max-width: 576px) {
  .why-choose-images {
    height: 280px;
  }

  .why-img-card {
    width: 180px;
    height: 220px;
  }

  .left-img-card {
    transform: translate(-30px, 20px) rotate(-3deg);
  }

  .right-img-card {
    transform: translate(40px, -20px) rotate(4deg);
  }

  .left-img-card:hover {
    --hover-tx: -40px;
    --hover-ty: 10px;
  }

  .right-img-card:hover {
    --hover-tx: 50px;
    --hover-ty: -30px;
  }
}

/* =============================================
   VISION, MISSION & VALUES
   ============================================= */
.values-section {
  padding: 80px 0;
  background: var(--off-white);
}

.values-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.04);
  border: 1px solid rgba(13, 27, 62, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(13, 27, 62, 0.1);
  border-color: rgba(214, 96, 7, 0.15);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: rgba(214, 96, 7, 0.08);
  color: var(--orange);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.value-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.value-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}

.value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.value-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.value-list li strong {
  color: var(--navy);
}

.value-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

@media (max-width: 960px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .value-card {
    padding: 32px 28px;
  }

  .values-container {
    padding: 0 24px;
  }

  .subpage-header-container {
    padding: 0 24px;
  }
}

@media (max-width: 768px) {
  .subpage-header {
    padding: 120px 0 35px;
    text-align: center;
  }

  .subpage-header-container {
    align-items: center;
  }

  .breadcrumb-list {
    justify-content: center;
  }
}

/* =============================================
   FAQ PAGE STYLE
   ============================================= */
.faq-page-section {
  padding: 80px 0;
  background: var(--off-white);
}

.faq-page-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}

.faq-sidebar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.04);
  border: 1px solid rgba(13, 27, 62, 0.05);
}

.faq-badge {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.08em;
  background: rgba(214, 96, 7, 0.08);
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 16px;
  display: inline-flex;
}

.faq-sidebar-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.faq-sidebar-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-mid);
  margin-bottom: 32px;
}

.faq-support-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.support-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.support-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.support-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.support-value {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  transition: color var(--transition);
}

.support-value:hover {
  color: var(--orange);
}

/* --- FAQ Category Pills --- */
.faq-pills-container {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.faq-pill {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  color: var(--navy);
  padding: 10px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-main);
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.faq-pill:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--orange);
}

.faq-pill.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(214, 96, 7, 0.2);
}

.faq-item.hidden {
  display: none !important;
}

/* Accordion */
.faq-accordion-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(13, 27, 62, 0.06);
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.02);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(214, 96, 7, 0.15);
  box-shadow: 0 10px 24px rgba(13, 27, 62, 0.05);
}

.faq-item.active {
  border-color: rgba(214, 96, 7, 0.25);
  box-shadow: 0 12px 30px rgba(13, 27, 62, 0.08);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  text-align: left;
  gap: 20px;
}

.faq-question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  transition: color var(--transition);
}

.faq-trigger:hover .faq-question,
.faq-item.active .faq-question {
  color: var(--orange);
}

.faq-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(13, 27, 62, 0.04);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-trigger:hover .faq-icon-wrap {
  background: rgba(214, 96, 7, 0.08);
  color: var(--orange);
}

.faq-item.active .faq-icon-wrap {
  background: var(--orange);
  color: var(--white);
}

.faq-chevron {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-content-inner {
  padding: 0 28px 28px;
}

.faq-content-inner p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-mid);
  margin: 0;
}

.faq-content-inner p strong {
  color: var(--navy);
}

@media (max-width: 960px) {
  .faq-page-container {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .faq-trigger {
    padding: 20px;
  }

  .faq-content-inner {
    padding: 0 20px 20px;
  }

  .faq-question {
    font-size: 0.95rem;
  }

  .faq-sidebar-card {
    padding: 28px 24px;
  }
}

.faq-header-container {
  max-width: 1300px;
  margin: 0 auto 56px;
  padding: 0 32px;
}

@media (max-width: 960px) {
  .faq-header-container {
    padding: 0 24px;
    margin-bottom: 40px;
  }
}

/* =============================================
   CONTACT PAGE REWORK — DETAILS TOP & MAP LEFT
   ============================================= */
.contact-header {
  max-width: 1260px;
  margin: 0 auto 36px auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}

.contact-header .contact-title {
  margin-bottom: 12px;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: var(--navy);
}

.contact-header .contact-subtitle {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact-main-grid {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px 60px 40px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 40px;
  align-items: stretch;
  position: relative;
  z-index: 2;
}

.contact-map-col {
  display: flex;
  flex-direction: column;
}

.contact-map-col .map-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #EEF1F6;
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(13, 27, 62, 0.06);
  padding: 24px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.contact-map-col .map-card:hover {
  box-shadow: 0 20px 55px rgba(13, 27, 62, 0.1);
  transform: translateY(-2px);
}

.contact-map-col .map-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-map-col .map-card-title svg {
  color: var(--orange);
}

.contact-map-col .map-iframe-wrapper {
  position: relative;
  width: 100%;
  flex: 1;
  min-height: 480px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E2E8F0;
}

@media (max-width: 1100px) {
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-map-col .map-iframe-wrapper {
    min-height: 400px;
  }
}

@media (max-width: 600px) {
  .contact-header {
    padding: 0 24px;
    margin-bottom: 24px;
  }

  .contact-main-grid {
    padding: 0 24px 40px 24px;
  }

  .contact-map-col .map-card {
    padding: 16px;
  }

  .contact-map-col .map-iframe-wrapper {
    min-height: 300px;
  }
}

/* =============================================
   CONTACT PAGE FORM SPECIFIC LIGHT DESIGN
   ============================================= */
.contact-page-form-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #EEF1F6;
  border-left: 5px solid var(--orange);
  /* Distinct left accent border */
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(13, 27, 62, 0.05);
  overflow: hidden;
  color: var(--text-dark);
}

.contact-page-form-card .form-card-body {
  padding: 30px;
}

.contact-page-form-card .form-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  font-family: var(--font-display);
}

.contact-page-form-card .form-subtitle {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 32px;
}

/* Custom form labels for light card */
.contact-page-form-card .form-label {
  color: #4A5568;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.contact-page-form-card .form-label .req {
  color: var(--orange);
}

/* Custom crisp white inputs */
.contact-page-form-card .form-input {
  background: #ffffff !important;
  border: 1px solid #E2E8F0 !important;
  color: var(--text-dark) !important;
  transition: all 0.25s ease;
}

.contact-page-form-card .form-input::placeholder {
  color: #A0AEC0;
}

.contact-page-form-card .form-input:focus {
  border-color: var(--orange) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(244, 123, 32, 0.06) !important;
}

/* Icon colors */
.contact-page-form-card .input-with-icon .input-icon {
  color: #A0AEC0;
}

.contact-page-form-card .input-with-icon:focus-within .input-icon {
  color: var(--orange);
}

/* Custom Select Arrow for light theme */
.contact-page-form-card .select-arrow {
  color: #718096;
}

.contact-page-form-card .select-wrapper:focus-within .select-arrow {
  color: var(--orange);
}

/* Custom dropdown option values */
.contact-page-form-card .form-select option {
  background: #ffffff;
  color: var(--text-dark);
}

/* Submission privacy note */
.contact-page-form-card .privacy-notice {
  color: #718096;
}

.contact-page-form-card .privacy-notice svg {
  color: #718096;
}

/* Form success overlay for light theme */
.contact-page-form-card .form-success-overlay {
  background: rgba(255, 255, 255, 0.98);
  color: var(--text-dark);
}

.contact-page-form-card .success-title {
  color: var(--navy);
}

.contact-page-form-card .success-msg {
  color: var(--text-mid);
}

.contact-page-form-card .success-back-btn {
  background: var(--navy);
  border: none;
  color: #ffffff;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  transition: background 0.2s;
  cursor: pointer;
}

.contact-page-form-card .success-back-btn:hover {
  background: #000000;
}

/* Custom submit button in deep navy blue */
.contact-page-form-card .form-submit-btn {
  background: var(--navy) !important;
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.2) !important;
}

.contact-page-form-card .form-submit-btn:hover {
  background: #081229 !important;
  box-shadow: 0 6px 18px rgba(13, 27, 62, 0.3) !important;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .contact-page-form-card .form-card-body {
    padding: 24px;
  }

  .contact-page-form-card .form-title {
    font-size: 1.4rem;
  }
}

/* ==============================================
   CONTACT PAGE — PREMIUM INFO BOXES
   ============================================== */
.contact-top-details {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}

/* Base card */
.cpd-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  border: 1px solid #EEF1F6;
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.04);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s ease;
  cursor: default;
}

.cpd-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(13, 27, 62, 0.08);
  border-color: #E2E8F0;
}

/* Decorative top-edge accent bar */
.cpd-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--navy);
  border-radius: 16px 16px 0 0;
  transition: background 0.3s ease;
}

.cpd-card:hover::before {
  background: var(--orange);
}

/* Shimmering gloss overlay */
.cpd-shine {
  position: absolute;
  top: -60%;
  right: -30%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cpd-card:hover .cpd-shine {
  opacity: 1;
}

/* Icon badge */
.cpd-icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #F1F5F9;
  color: var(--navy);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cpd-card:hover .cpd-icon-badge {
  background: var(--orange);
  color: #ffffff;
  transform: scale(1.05) translateY(-2px);
}

/* Body text block */
.cpd-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.cpd-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #718096;
}

.cpd-value {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  text-decoration: none;
  transition: color 0.2s;
}

a.cpd-value:hover {
  color: var(--orange);
}

.cpd-hint {
  font-size: 0.8rem;
  color: #718096;
  margin-top: 2px;
  line-height: 1.45;
}

.cpd-hint--link {
  text-decoration: none;
  color: var(--orange);
  font-weight: 600;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cpd-hint--link:hover {
  color: #d46313;
}

/* Action row for call/wa buttons */
.cpd-action-row {
  display: flex;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.cpd-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cpd-btn--call {
  background: #F1F5F9;
  color: var(--navy);
}

.cpd-btn--call:hover {
  background: var(--navy);
  color: #ffffff;
}

.cpd-btn--wa {
  background: #E8FBF0;
  color: #15803d;
}

.cpd-btn--wa:hover {
  background: #15803d;
  color: #ffffff;
}

/* ==============================================
   OFFICE TAB SYSTEM (EXECUTIVE TAB & PROFILE GRID)
   ============================================== */

.office-tabs-wrapper {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px 0px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

/* ── Tab Navigation Bar ── */
.office-tab-nav {
  align-self: flex-start;
  display: inline-flex;
  gap: 8px;
  margin-bottom: 40px;
  background: #F1F5F9;
  padding: 6px;
  border-radius: 40px;
  border: 1px solid #E2E8F0;
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.03);
}

.office-tab-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border: none;
  background: transparent;
  border-radius: 30px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #64748B;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-main);
  outline: none;
  white-space: nowrap;
}

/* Hover state for inactive tabs */
.office-tab-btn:not(.active):hover {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.45);
}

/* Active State */
.office-tab-btn.active {
  background: var(--orange);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.15);
}

/* ── Tab Panes ── */
.office-tab-pane {
  display: none;
  animation: tabFadeIn 0.35s ease both;
}

.office-tab-pane.active {
  display: block;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Profile Split Grid ── */
.office-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  background: #ffffff;
  border: 1px solid #E2E8F0;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.04);
  padding: 44px;
  align-items: center;
}

/* Left address block */
.opg-address-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-right: 1px solid #E2E8F0;
  padding-right: 44px;
}

.opg-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: #FFF0E6;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.opg-office-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 12px;
}

.opg-address-text {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 28px;
}

.opg-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 8px;
  background: var(--orange);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  transition: all 0.22s ease;
}

.opg-map-link:hover {
  background: var(--orange);
  box-shadow: 0 6px 16px rgba(214, 96, 7, 0.2);
  transform: translateY(-1px);
}

.opg-map-link svg {
  transition: transform 0.22s ease;
}

.opg-map-link:hover svg {
  transform: translateX(4px);
}

/* Right contacts block */
.opg-contacts-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.opg-contact-row {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.opg-contact-row:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 60px;
  right: 0;
  bottom: -14px;
  height: 1px;
  background: #F1F5F9;
}

.opg-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #F1F5F9;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.22s ease;
}

.opg-contact-row:hover .opg-icon {
  background: var(--orange);
  color: #ffffff;
  transform: scale(1.05);
}

.opg-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.opg-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94A3B8;
}

.opg-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.25;
  transition: color 0.2s;
}

a.opg-value:hover {
  color: var(--orange);
}

.opg-actions {
  display: flex;
  gap: 8px;
}

.opg-actions .opg-btn {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.opg-btn--call {
  background: #F1F5F9;
  color: var(--navy);
}

.opg-btn--call:hover {
  background: var(--orange-dark);
  color: #ffffff;
}

.opg-btn--wa {
  background: #E8FBF0;
  color: #15803d;
}

.opg-btn--wa:hover {
  background: #15803d;
  color: #ffffff;
}

.opg-meta {
  font-size: 0.82rem;
  color: #718096;
  font-weight: 500;
}

/* Responsive adjustments for Profile Split Grid */
@media (max-width: 1024px) {
  .office-profile-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  .opg-address-block {
    border-right: none;
    border-bottom: 1px solid #E2E8F0;
    padding-right: 0;
    padding-bottom: 32px;
    width: 100%;
  }

  .opg-contact-row:not(:last-child)::after {
    left: 54px;
  }
}

@media (max-width: 768px) {
  .office-tab-nav {
    margin-bottom: 28px;
  }
}

@media (max-width: 600px) {
  .office-tab-nav {
    align-self: stretch;
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    border-radius: 20px;
    padding: 4px;
    gap: 4px;
  }

  .office-tab-nav::-webkit-scrollbar {
    display: none;
  }

  .office-tab-btn {
    flex: 1;
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .opg-contact-row {
    flex-wrap: wrap;
    gap: 12px;
  }

  .opg-actions {
    width: 100%;
    margin-left: 56px;
    margin-top: -4px;
  }
}

/* ==============================================
   CONTACT — FORM + MAP SIDE-BY-SIDE CARDS
   ============================================== */

.contact-form-section {
  background: #F8FAFC;
  padding: 0px 0 50px;
  position: relative;
}

.contact-map-form-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 40px;
  align-items: stretch;
  /* equal height */
}

/* ── Shared card style: both form & map ── */
.cmf-form-col,
.cmf-map-col {
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.05),
    0 1px 3px rgba(13, 27, 62, 0.02);
  border: 1px solid #E2E8F0;
  overflow: hidden;
}

/* ── Form card ── */
.cmf-form-col {
  padding: 30px 35px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.form-intro {
  margin-bottom: 32px;
}

.cmf-form-title {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  font-family: var(--font-display);
  line-height: 1.25;
  margin: 0 0 8px 0;
}

.cmf-form-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}

/* Plain form */
.cmf-plain-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Label */
.cmf-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 8px;
}

/* Input & Select */
.cmf-input,
.cmf-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #CBD5E1;
  border-radius: 10px;
  background: #FAFBFD;
  color: var(--text-dark);
  font-size: 0.92rem;
  font-family: var(--font-main);
  transition: all 0.22s ease;
  outline: none;
  box-sizing: border-box;
}

.cmf-select {
  cursor: pointer;
  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' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 40px;
}

.cmf-input::placeholder {
  color: #94A3B8;
}

.cmf-input:focus,
.cmf-select:focus {
  border-color: var(--navy);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 27, 62, 0.06);
}

.cmf-textarea {
  resize: none;
  min-height: 110px;
}

/* Form Validation Errors */
.form-error {
  font-size: 0.76rem;
  color: #dc2626;
  font-weight: 600;
  margin-top: 4px;
  display: none;
}

.form-error.visible {
  display: block;
  animation: errorFadeIn 0.2s ease forwards;
}

@keyframes errorFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Submit button */
.cmf-submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  background: var(--orange);
  color: #ffffff;
  border: none;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-main);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
  position: relative;
  overflow: hidden;
}

.cmf-submit-btn:hover {
  background: #060e22;
  box-shadow: 0 8px 20px rgba(13, 27, 62, 0.15);
  transform: translateY(-1px);
}

.cmf-submit-btn:active {
  transform: translateY(0);
}

.cmf-submit-icon {
  transition: transform 0.2s ease;
}

.cmf-submit-btn:hover .cmf-submit-icon {
  transform: translate(2px, -2px);
}

/* Loading state */
.cmf-submit-btn.loading {
  color: transparent !important;
  pointer-events: none;
}

.cmf-submit-btn.loading .cmf-submit-icon {
  opacity: 0;
}

.cmf-spinner {
  display: none;
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
}

.cmf-submit-btn.loading .cmf-spinner {
  display: block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Map card ── */
.cmf-map-col {
  padding: 0;
  min-height: 540px;
  display: flex;
  flex-direction: column;
}

.cmf-map-card {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.cmf-map-header {
  background: var(--navy);
  color: #ffffff;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cmf-map-icon {
  color: var(--orange);
  display: flex;
  align-items: center;
}

#cmfMapLabelText {
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.cmf-map-card iframe {
  flex: 1;
  width: 100%;
  border: none;
  display: block;
}

/* Success overlay */
.cmf-form-col .form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cmf-form-col .form-success-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.form-success-inner {
  text-align: center;
  max-width: 400px;
  animation: successPop 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes successPop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.success-icon-ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FFF0E6;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 8px 24px rgba(214, 96, 7, 0.1);
}

.success-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.success-msg {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 28px;
}

.success-back-btn {
  background: var(--navy);
  color: #ffffff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.success-back-btn:hover {
  background: var(--orange);
  box-shadow: 0 4px 12px rgba(214, 96, 7, 0.2);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact-map-form-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cmf-map-col {
    min-height: 400px;
  }

  .cmf-map-card iframe {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .contact-form-section {
    padding: 0px 0 70px;
  }

  .contact-map-form-grid {
    padding: 0 20px;
  }

  .cmf-form-col {
    padding: 44px 32px;
  }

  .cmf-form-title {
    font-size: 1.6rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .cmf-form-col {
    padding: 32px 20px;
  }

  .cmf-map-col {
    min-height: 300px;
  }

  .cmf-map-card iframe {
    min-height: 300px;
  }
}


/* =============================================
   BLOG DETAILS PAGE
   ============================================= */
.blog-details-section {
  padding: 80px 0;
  background-color: var(--white);
}

.blog-details-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.blog-details-grid {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 40px;
  align-items: start;
}

/* --- Main Content --- */
.blog-main-content {
  background: var(--white);
  overflow: hidden;
}

.blog-featured-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 12px 30px rgba(13, 27, 62, 0.06);
  margin-bottom: 32px;
}

.blog-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-featured-image-wrapper:hover .blog-featured-image {
  transform: scale(1.03);
}

.blog-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(13, 27, 62, 0.2) 100%);
  pointer-events: none;
}

.blog-post-category-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 18px;
  border-radius: 50px;
  box-shadow: 0 6px 14px rgba(214, 96, 7, 0.3);
}

/* Detailed Post Meta */
.blog-post-meta-detailed {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 32px;
}

.meta-author-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
}

.meta-author-info {
  display: flex;
  flex-direction: column;
}

.author-label {
  font-size: 0.72rem;
  color: var(--gray-500);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.author-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.meta-divider {
  width: 1px;
  height: 30px;
  background: var(--gray-200);
}

.meta-details-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.meta-detail-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
}

.meta-detail-item svg {
  color: var(--orange);
}

/* Article Body Typography */
.blog-article-body {
  font-family: var(--font-main);
  color: var(--text-dark);
}

.paragraph-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--navy-mid);
  font-weight: 500;
  margin-bottom: 28px;
}

.blog-article-body h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  margin: 40px 0 20px;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
  position: relative;
  padding-left: 16px;
}

.blog-article-body h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.blog-article-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 24px;
}

.blog-article-body strong {
  color: var(--navy);
  font-weight: 600;
}

/* Blockquote Style */
.blog-article-body blockquote {
  position: relative;
  background: var(--off-white);
  border-left: 4px solid var(--orange);
  padding: 32px 40px;
  margin: 40px 0;
  border-radius: 0 16px 16px 0;
  font-size: 1.12rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
  color: var(--navy-mid);
}

.blog-article-body blockquote::before {
  content: '“';
  position: absolute;
  top: 10px;
  left: 15px;
  font-size: 4rem;
  font-family: 'Poppins', Georgia, serif;
  color: rgba(214, 96, 7, 0.1);
  line-height: 1;
}

.blog-article-body blockquote cite {
  display: block;
  font-size: 0.88rem;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  margin-top: 16px;
}

/* Custom Table Layout */
.table-responsive-wrapper {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  margin: 32px 0;
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.02);
}

.specs-comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.92rem;
  min-width: 600px;
}

.specs-comparison-table th {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 16px 20px;
  font-family: var(--font-display);
}

.specs-comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-100);
  color: var(--text-mid);
  background: var(--white);
}

.specs-comparison-table tr:last-child td {
  border-bottom: none;
}

.specs-comparison-table tr.highlighted-row td {
  background: rgba(214, 96, 7, 0.03);
  font-weight: 500;
}

/* Custom Checklist */
.custom-checklist {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.checklist-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(214, 96, 7, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist-text {
  font-size: 0.98rem;
  line-height: 1.6;
  color: var(--text-mid);
}

/* Share & Tags */
.blog-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  margin-top: 48px;
  margin-bottom: 40px;
}

.blog-post-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-pill {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mid);
  background: var(--gray-100);
  padding: 6px 14px;
  border-radius: 6px;
  transition: all 0.2s ease;
  cursor: default;
}

.tag-pill:hover {
  background: var(--gray-200);
  color: var(--navy);
}

.blog-share-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.share-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mid);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(13, 27, 62, 0.08);
}

.share-btn.linkedin-btn:hover {
  background: #0077b5;
  color: var(--white);
  border-color: #0077b5;
}

.share-btn.twitter-btn:hover {
  background: #000000;
  color: var(--white);
  border-color: #000000;
}

.share-btn.copy-btn:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

/* Author Bio Card */
.blog-author-card {
  display: flex;
  gap: 24px;
  background: var(--off-white);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
}

.author-card-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gray-200);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.06);
}

.author-card-text {
  display: flex;
  flex-direction: column;
}

.author-card-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.author-card-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.author-card-bio {
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--text-mid);
  margin: 0;
}

/* --- Sidebar Widgets --- */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.sidebar-widget {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.02);
  position: relative;
  overflow: hidden;
}

.widget-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  font-family: var(--font-display);
  position: relative;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gray-100);
}

.widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

/* TOC navigation list */
.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.toc-link {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  display: block;
  padding: 4px 0 4px 12px;
  border-left: 2px solid transparent;
  transition: all 0.25s ease;
}

.toc-link:hover {
  color: var(--orange);
  padding-left: 16px;
}

.toc-link.active {
  color: var(--orange);
  font-weight: 700;
  border-left-color: var(--orange);
}

/* Inquiry Widget */
.widget-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.sidebar-inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-input,
.sidebar-textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-family: var(--font-main);
  color: var(--text-dark);
  outline: none;
  transition: all 0.25s ease;
}

.sidebar-input:focus,
.sidebar-textarea:focus {
  background: var(--white);
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(214, 96, 7, 0.1);
}

.sidebar-submit-btn {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 14px 20px;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
  font-family: var(--font-main);
}

.sidebar-submit-btn:hover {
  background: var(--orange);
  box-shadow: 0 6px 16px rgba(214, 96, 7, 0.2);
  transform: translateY(-1px);
}

.sidebar-submit-btn svg {
  transition: transform 0.25s ease;
}

.sidebar-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Download Widget */
.download-widget {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(13, 27, 62, 0.2);
}

.download-widget::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(214, 96, 7, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.download-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  margin-bottom: 20px;
}

.download-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.download-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.sidebar-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s;
}

.sidebar-download-btn:hover {
  color: var(--orange-light);
}

/* Recent Posts Sidebar */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.recent-post-item-link {
  text-decoration: none;
}

.recent-post-item {
  display: flex;
  gap: 14px;
  transition: transform 0.25s;
}

.recent-post-item-link:hover .recent-post-item {
  transform: translateX(4px);
}

.recent-post-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-100);
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-post-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.recent-post-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.recent-post-item-link:hover .recent-post-title {
  color: var(--orange);
}

/* --- Related Blogs Section --- */
.related-blogs-section {
  padding: 80px 0 100px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}

.related-blogs-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.related-header {
  text-align: center;
  margin-bottom: 48px;
}

.related-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.related-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  font-family: var(--font-display);
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 10px;
}

/* Toast styling */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(13, 27, 62, 0.25);
  z-index: 2000;
  transform: translateY(-1px);
}

.sidebar-submit-btn svg {
  transition: transform 0.25s ease;
}

.sidebar-submit-btn:hover svg {
  transform: translateX(4px);
}

/* Download Widget */
.download-widget {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(13, 27, 62, 0.2);
}

.download-widget::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(214, 96, 7, 0.2) 0%, transparent 60%);
  border-radius: 50%;
}

.download-card-icon {
  width: 54px;
  height: 54px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-light);
  margin-bottom: 20px;
}

.download-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.download-desc {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.sidebar-download-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  transition: color 0.2s;
}

.sidebar-download-btn:hover {
  color: var(--orange-light);
}

/* Recent Posts Sidebar */
.recent-posts-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.recent-post-item-link {
  text-decoration: none;
}

.recent-post-item {
  display: flex;
  gap: 14px;
  transition: transform 0.25s;
}

.recent-post-item-link:hover .recent-post-item {
  transform: translateX(4px);
}

.recent-post-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--gray-100);
}

.recent-post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recent-post-cat {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.recent-post-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition);
}

.recent-post-item-link:hover .recent-post-title {
  color: var(--orange);
}

/* --- Related Blogs Section --- */
.related-blogs-section {
  padding: 80px 0 100px;
  background: var(--off-white);
  border-top: 1px solid var(--gray-200);
}

.related-blogs-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.related-header {
  text-align: center;
  margin-bottom: 48px;
}

.related-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.related-title {
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  font-family: var(--font-display);
}

.title-underline {
  width: 60px;
  height: 3px;
  background: var(--orange);
  margin: 16px auto 0;
  border-radius: 10px;
}

/* Toast styling */
.toast-notification {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--navy);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 12px 30px rgba(13, 27, 62, 0.25);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-notification.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
}

.toast-check-icon {
  color: #25D366;
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
  .blog-details-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .blog-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .blog-featured-image-wrapper {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .blog-sidebar {
    grid-template-columns: 1fr;
  }

  .blog-details-section {
    padding: 50px 0;
  }

  .related-blogs-section {
    padding: 60px 0 80px;
  }

  .blog-featured-image-wrapper {
    height: 300px;
  }

  .blog-article-body h2 {
    font-size: 1.5rem;
    margin: 32px 0 16px;
  }

  .blog-article-body blockquote {
    padding: 24px 30px;
    font-size: 1.05rem;
  }

  .blog-footer-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 480px) {

  .blog-details-container,
  .related-blogs-container {
    padding: 0 20px;
  }

  .blog-featured-image-wrapper {
    height: 220px;
  }

  .blog-post-meta-detailed {
    gap: 16px;
  }
}

/* ==========================================================================
   COMPANY BENEFITS & CERTIFICATES (CASUAL & PREMIUM REMAKE)
   ========================================================================== */

/* --- Company Benefits Section --- */
.benefits-casual-section {
  padding: 50px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.benefits-casual-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.benefit-casual-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 40px;
  border-radius: 30px;
  background: #F5F6FA;
  border: 1px solid rgba(13, 27, 62, 0.03);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-casual-item:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: rgba(214, 96, 7, 0.15);
  box-shadow: 0 16px 40px rgba(13, 27, 62, 0.06);
}

.benefit-number {
  position: absolute;
  top: 20px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1;
  color: #eedad0;
  /* Exactly matching the soft peach color */
  opacity: 0.55;
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 1;
}

.benefit-casual-item:hover .benefit-number {
  color: var(--orange);
  opacity: 0.18;
  transform: scale(1.08) translate(-4px, 4px);
}

.benefit-info-casual {
  position: relative;
  z-index: 2;
}

.benefit-title-casual {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  padding-right: 48px;
  /* Avoid overlapping the absolute number */
  transition: color 0.3s ease;
}

.benefit-casual-item:hover .benefit-title-casual {
  color: var(--orange);
}

.benefit-desc-casual {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin: 0;
}


/* --- Certificates & Achievements Section --- */
.certificates-casual-section {
  padding: 50px 0 80px;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.certificates-casual-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.section-header-centered {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 35px;
}

.section-header-centered .section-title {
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
}

.certificates-casual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.cert-seal-card {
  background: #F5F6FA;
  border-radius: 30px;
  padding: 48px 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 24px rgba(13, 27, 62, 0.015);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid rgba(13, 27, 62, 0.03);
}

.cert-seal-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  box-shadow: 0 16px 40px rgba(13, 27, 62, 0.06);
  border-color: rgba(214, 96, 7, 0.15);
}

.cert-seal-outer {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  border: 2px dashed rgba(214, 96, 7, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: transform 0.8s ease, border-color 0.4s ease;
  flex-shrink: 0;
}



.cert-seal-card:hover .cert-seal-outer {
  transform: rotate(180deg);
  border-color: var(--orange);
}

.cert-seal-inner {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(214, 96, 7, 0.05);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.cert-seal-card:hover .cert-seal-inner {
  background: var(--orange);
  color: var(--white);
  transform: scale(1.05);
}

.cert-seal-inner svg {
  width: 28px;
  height: 28px;
  stroke-width: 2.2;
}

.cert-seal-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.cert-seal-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  opacity: 0.85;
}

.cert-seal-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-mid);
  margin: 0;
}

/* --- Responsive Adjustments for Casual Sections --- */
@media (max-width: 1024px) {
  .benefit-casual-item {
    padding: 36px 30px;
    gap: 24px;
  }


  .certificates-casual-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }

  .cert-seal-card {
    padding: 40px 24px 36px;
    gap: 24px;
  }
}


@media (max-width: 768px) {

  .benefits-casual-section,
  .certificates-casual-section {
    padding: 80px 0;
  }

  .section-header-centered {
    margin-bottom: 48px;
  }

  .benefit-casual-item {
    padding: 28px 24px;
    gap: 20px;
  }

  .benefit-number {
    font-size: 3rem;
  }
}

@media (max-width: 600px) {
  .benefit-casual-item {
    flex-direction: column;
    gap: 16px;
  }


  .certificates-casual-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cert-seal-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 24px;
    gap: 20px;
  }

  .benefit-casual-item:hover,
  .cert-seal-card:hover {
    transform: translateY(-4px);
  }
}

/* =============================================
   SERVICE DETAILS PAGE STYLES
   ============================================= */
.service-details-section {
  padding: 60px 0 80px;
  background-color: var(--white);
  position: relative;
}

.service-details-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 50px;
}

@media (max-width: 992px) {
  .service-details-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Sidebar ── */
.service-sidebar {
  position: sticky;
  top: 110px;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
  z-index: 10;
}

@media (max-width: 992px) {
  .service-sidebar {
    position: static;
  }
}

.service-nav-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.04);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

.service-nav-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-nav-item {
  border-bottom: 1px solid var(--gray-100);
}

.service-nav-item:last-child {
  border-bottom: none;
}

.service-nav-btn {
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-main);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
}

.service-nav-btn:hover {
  background: var(--gray-100);
  color: var(--orange);
}

.service-nav-btn.active {
  background: var(--navy);
  color: var(--white);
}

.service-nav-btn .btn-chevron {
  width: 16px;
  height: 16px;
  stroke-width: 2.5;
  transition: transform var(--transition);
  color: var(--gray-500);
}

.service-nav-btn.active .btn-chevron {
  color: var(--orange);
  transform: translateX(4px);
}

/* Sidebar Info Card */
.service-cta-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 16px;
  padding: 35px 30px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(13, 27, 62, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 100% 0%, rgba(214, 96, 7, 0.25) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.service-cta-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.service-cta-card-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(214, 96, 7, 0.15);
  color: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 5px;
  border: 1px solid rgba(214, 96, 7, 0.3);
}

.service-cta-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.service-cta-card-desc {
  font-size: 0.88rem;
  color: var(--gray-500);
  line-height: 1.5;
  margin: 0;
}

.service-cta-card-btn {
  width: 100%;
  display: block;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all var(--transition);
  text-align: center;
}

.service-cta-card-btn--primary {
  background: var(--orange);
  color: var(--white);
}

.service-cta-card-btn--primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 5px 15px rgba(214, 96, 7, 0.4);
  transform: translateY(-2px);
}

.service-cta-card-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.service-cta-card-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ── Main Content Area ── */
.service-content-pane {
  display: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.service-content-pane.active {
  display: block;
  opacity: 1;
}

.service-main-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: 0 15px 35px rgba(13, 27, 62, 0.06);
  margin-bottom: 35px;
  border: 1px solid var(--gray-200);
}

.service-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-badge-certified {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(13, 27, 62, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(214, 96, 7, 0.4);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-badge-icon {
  color: var(--orange-light);
}

.service-title-main {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.service-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 25px;
}

.service-description {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 30px;
}

.service-section-subtitle {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 45px;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 8px;
}

.service-section-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* Benefits Grid */
.benefits-grid-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .benefits-grid-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.benefit-item-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 26px;
  transition: all var(--transition);
  box-shadow: 0 4px 15px rgba(13, 27, 62, 0.02);
}

.benefit-item-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-light);
  box-shadow: 0 12px 28px rgba(13, 27, 62, 0.06);
}

.benefit-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(214, 96, 7, 0.07);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(214, 96, 7, 0.12);
  transition: all var(--transition);
}

.benefit-item-card:hover .benefit-icon-box {
  background: var(--orange);
  color: var(--white);
}

.benefit-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.benefit-card-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* Timeline Process */
.process-timeline-list {
  position: relative;
  padding-left: 45px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.process-timeline-list::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: var(--gray-200);
}

.process-timeline-item {
  position: relative;
}

.process-step-num {
  position: absolute;
  left: -40px;
  top: 5px;
  background: var(--gray-100);
  color: var(--navy);
  border: 2px solid var(--gray-200);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 2;
  transition: all var(--transition);
}

.process-timeline-item:hover .process-step-num {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  box-shadow: 0 0 10px rgba(214, 96, 7, 0.4);
}

.process-step-content {
  background: var(--off-white);
  border-radius: 12px;
  padding: 24px 28px;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}

.process-timeline-item:hover .process-step-content {
  background: var(--white);
  border-color: rgba(13, 27, 62, 0.15);
  box-shadow: 0 10px 25px rgba(13, 27, 62, 0.04);
}

.process-step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.process-step-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
  margin: 0;
}

/* FAQ Accordion in Details */
.faq-details-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}

.faq-details-container .faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
  transition: all var(--transition);
}

.faq-details-container .faq-item.active {
  border-color: var(--navy);
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.04);
}

.faq-details-container .faq-trigger {
  width: 100%;
  border: none;
  background: none;
  text-align: left;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
  cursor: pointer;
  outline: none;
}

.faq-details-container .faq-trigger:hover {
  color: var(--orange);
}

.faq-details-container .faq-chevron {
  transition: transform var(--transition);
  color: var(--gray-500);
  flex-shrink: 0;
}

.faq-details-container .faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-details-container .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-details-container .faq-content-inner {
  padding: 0 24px 22px 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.faq-details-container .faq-content-inner p {
  margin: 0;
}

.faq-details-container .faq-content-inner strong {
  color: var(--navy);
}

/* Service Inquiry Card (Form Card) */
.service-inquiry-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 15px 40px rgba(13, 27, 62, 0.04);
  margin-top: 50px;
  position: relative;
}

.service-inquiry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-light) 100%);
  border-radius: 16px 16px 0 0;
}

/* CTA buttons section below page content */
.service-bottom-cta-section {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 35px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 50px;
  border: 1px solid var(--gray-200);
}

@media (max-width: 768px) {
  .service-bottom-cta-section {
    flex-direction: column;
    text-align: center;
    padding: 30px 24px;
  }
}

.sbcs-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sbcs-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.sbcs-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin: 0;
}

.sbcs-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .sbcs-actions {
    flex-direction: column;
    width: 100%;
  }

  .sbcs-actions .btn,
  .sbcs-actions a {
    width: 100%;
  }
}

.sbcs-btn-call {
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  border: 1px solid var(--navy);
}

.sbcs-btn-call:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
}

.sbcs-btn-wa {
  background: #25D366;
  color: var(--white);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
}

.sbcs-btn-wa:hover {
  background: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-btn-icon {
  flex-shrink: 0;
}

/* ---- Partner Logo Image ---- */
.partner-logo-img {
  max-height: 48px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* =============================================
   PRODUCT DETAILS STYLES
   ============================================= */
/* ── Design System Tokens ── */
:root {
  --shadow-soft: 0 10px 30px rgba(13, 27, 62, 0.04);
  --shadow-hover: 0 20px 40px rgba(13, 27, 62, 0.08);
  --shadow-card: 0 15px 35px rgba(13, 27, 62, 0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --border-color: var(--gray-200);
}

.product-details-section {
  padding: 60px 0 90px;
  background-color: var(--white);
}

.product-details-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

@media (max-width: 768px) {
  .product-details-container {
    padding: 0 20px;
    gap: 40px;
  }
}

/* ==========================================
           1. PRODUCT INTRO FOLD (TOP GRID)
           ========================================== */
.product-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 992px) {
  .product-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ── Left Column: Premium Gallery ── */
.product-gallery-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.product-main-view {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 576px) {
  .product-main-view {
    height: 320px;
  }
}

.product-main-view img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.product-main-view:hover img {
  transform: scale(1.05);
}

.product-main-view img.fade-out {
  opacity: 0;
}

.product-badge-flag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 16px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(13, 27, 62, 0.25);
  z-index: 5;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-badge-flag svg {
  color: var(--orange-light);
}

.product-thumbs-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.product-thumb-item {
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--gray-100);
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
}

@media (max-width: 576px) {
  .product-thumb-item {
    height: 80px;
  }
}

.product-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.product-thumb-item:hover img {
  transform: scale(1.06);
}

.product-thumb-item.active {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(214, 96, 7, 0.18);
}

/* ── Right Column: Product Meta Block ── */
.product-meta-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-meta-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-main-title {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

@media (max-width: 576px) {
  .product-main-title {
    font-size: 1.85rem;
  }
}

.product-main-tagline {
  font-size: 1.2rem;
  color: var(--orange);
  font-weight: 600;
  line-height: 1.4;
}

.product-short-desc {
  font-size: 0.98rem;
  color: var(--gray-700);
  line-height: 1.65;
  margin: 0;
}

.product-short-desc p {
  margin-bottom: 12px;
}

.product-short-desc p:last-child {
  margin-bottom: 0;
}

/* Highlights Checklist */
.product-highlights-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 20px 0;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--navy);
  font-weight: 500;
}

.highlight-item-icon {
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Interactive B2B Action Block */
.product-action-block {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.action-block-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

@media (max-width: 480px) {
  .action-block-row {
    flex-direction: column;
    align-items: stretch;
  }
}

/* Quantity Selector */
.quantity-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

@media (max-width: 480px) {
  .quantity-selector {
    width: 100%;
    justify-content: space-between;
  }
}

.quantity-btn {
  background: none;
  border: none;
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  transition: background var(--transition);
}

.quantity-btn:hover {
  background: var(--gray-100);
  color: var(--orange);
}

.quantity-input {
  width: 80px;
  height: 44px;
  border: none;
  border-left: 1px solid var(--gray-200);
  border-right: 1px solid var(--gray-200);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  font-family: var(--font-main);
}

.quantity-input:focus {
  outline: none;
}

/* Primary Add To B2B Quote Button */
.add-to-inquiry-btn {
  flex-grow: 1;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 8px;
  height: 44px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all var(--transition);
  box-shadow: 0 4px 10px rgba(214, 96, 7, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.add-to-inquiry-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(214, 96, 7, 0.3);
}

.add-to-inquiry-btn svg {
  transition: transform var(--transition);
}

.add-to-inquiry-btn:hover svg {
  transform: translate(2px, -2px);
}

/* Secondary CTAs row */
.secondary-ctas-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.sec-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--transition);
}

.sec-cta-whatsapp {
  background: #25D366;
  color: var(--white);
  box-shadow: 0 4px 8px rgba(37, 211, 102, 0.15);
}

.sec-cta-whatsapp:hover {
  background: #20ba59;
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(37, 211, 102, 0.25);
}

.sec-cta-catalog {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gray-300);
  box-shadow: var(--shadow-sm);
}

.sec-cta-catalog:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

/* ==========================================
           2. DETAILED TECHNICAL TABS (MIDDLE FOLD)
           ========================================== */
.product-tabs-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  scroll-margin-top: 100px;
}

.tabs-header-row {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.tabs-header-row::-webkit-scrollbar {
  display: none;
}

.tab-trigger {
  background: none;
  border: none;
  padding: 14px 4px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-500);
  cursor: pointer;
  position: relative;
  transition: all var(--transition);
  white-space: nowrap;
}

.tab-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: transparent;
  transition: background-color var(--transition);
}

.tab-trigger:hover {
  color: var(--navy);
}

.tab-trigger.active {
  color: var(--navy);
}

.tab-trigger.active::after {
  background-color: var(--orange);
}

.tab-pane-content {
  display: none;
  animation: fadeIn 0.4s ease forwards;
  min-height: 200px;
}

.tab-pane-content.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Tab 1: Left-Aligned, Highly Visible B2B Enquiry Card ── */
.enquiry-pane-card {
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 100%;
  margin: 0;
  border-top: 4px solid var(--orange) !important;
}

@media (max-width: 576px) {
  .enquiry-pane-card {
    padding: 28px 20px;
  }
}

.enquiry-pane-header {
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(147, 162, 192, 0.15);
  padding-bottom: 16px;
}

.enquiry-pane-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 6px;
  text-align: left;
}

.enquiry-pane-subtitle {
  font-size: 0.92rem;
  color: var(--gray-700);
  margin: 0;
  line-height: 1.45;
  text-align: left;
}

.enquiry-b2b-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 768px) {
  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

@media (max-width: 992px) {
  .form-row-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .form-row-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
  text-align: left;
}

/* High-visibility input styling */
.form-input {
  background: #ffffff;
  border: 1.5px solid #cdd5e1;
  /* visible border in grey-slate */
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--navy);
  font-family: var(--font-main);
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-input::placeholder {
  color: #93a2c0;
  opacity: 1;
}

.form-input:focus {
  outline: none;
  border-color: var(--navy);
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(13, 27, 62, 0.08);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230d1b3e' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-error {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 2px;
  display: none;
  text-align: left;
}

/* Highly professional left-aligned button */
.submit-btn-card {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-main);
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  width: fit-content;
  /* Aligns left properly instead of stretched full width */
  box-shadow: 0 4px 12px rgba(214, 96, 7, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 10px;
}

.submit-btn-card:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(214, 96, 7, 0.3);
}

.submit-btn-card:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.submit-btn-card svg {
  transition: transform var(--transition);
}

.submit-btn-card:hover svg {
  transform: translate(2px, -2px);
}

/* Trust badges row aligned left */
.form-trust-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* Aligned left */
  gap: 24px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(147, 162, 192, 0.15);
}

@media (max-width: 576px) {
  .form-trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray-700);
  font-weight: 600;
}

.trust-badge-item svg {
  color: var(--orange);
  flex-shrink: 0;
}

/* ── Tab 2: Specs Table Pane Styling ── */
.specs-table-box {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.specs-table-wrapper {
  width: 100%;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  margin: 0;
}

.specs-table tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background-color var(--transition);
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table tr:nth-child(even) {
  background-color: var(--gray-100);
}

.specs-table tr:hover {
  background-color: rgba(238, 241, 246, 0.4);
}

.specs-label {
  padding: 16px 24px;
  font-weight: 700;
  color: var(--navy);
  width: 35%;
  font-size: 0.95rem;
}

.specs-value {
  padding: 16px 24px;
  color: var(--gray-700);
  font-size: 0.95rem;
}

@media (max-width: 576px) {

  .specs-label,
  .specs-value {
    padding: 12px 16px;
    font-size: 0.88rem;
  }
}

/* ── Tab 3: Safety Checklist Pane Styling ── */
.safety-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

@media (max-width: 768px) {
  .safety-rules-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.safety-rule-card {
  background: var(--gray-100);
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all var(--transition);
}

.safety-rule-card:hover {
  transform: translateY(-2px);
  background: var(--white);
  border-color: var(--orange-light);
  box-shadow: var(--shadow-soft);
}

.safety-rule-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.safety-rule-title svg {
  color: var(--orange);
  flex-shrink: 0;
}

.safety-rule-desc {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================
           3. RELATED PRODUCTS GRID (CROSS SELLING)
           ========================================== */
.related-products-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 10px;
}

.related-sec-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.related-sec-title {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .related-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .related-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.related-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange-light);
}

.related-card-img {
  height: 200px;
  width: 100%;
  overflow: hidden;
  background: var(--gray-100);
}

.related-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.related-card:hover .related-card-img img {
  transform: scale(1.04);
}

.related-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.related-card-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.related-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.related-card-desc {
  font-size: 0.88rem;
  color: var(--gray-700);
  line-height: 1.5;
  margin: 0;
}

.related-card-footer {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-top: auto;
  transition: color var(--transition);
}

.related-card:hover .related-card-footer {
  color: var(--orange);
}

.related-card-arrow {
  transition: transform var(--transition);
}

.related-card:hover .related-card-arrow {
  transform: translateX(4px);
}

/* ==========================================
           SCROLL TO TOP BUTTON
           ========================================== */
/* Scroll to top button removed in favor of floating WhatsApp button */

/* =====================================================
   CERTIFICATES & ACHIEVEMENTS PREMIUM SHOWCASE
   ===================================================== */
.cert-showcase-section {
  background: var(--off-white);
  padding: 50px 0;
  position: relative;
  overflow: hidden;
}

.cert-showcase-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(214, 96, 7, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cert-showcase-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 27, 62, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.cert-showcase-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

/* ---- Split Header ---- */
.cert-showcase-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(13, 27, 62, 0.1);
}

.cert-showcase-header-left {
  flex: 1;
  max-width: 540px;
}

.cert-showcase-header-left .section-badge {
  background: rgba(214, 96, 7, 0.08);
  color: var(--orange);
}

.cert-showcase-header-left .section-title {
  color: var(--navy);
  margin-bottom: 14px;
}

.cert-showcase-header-left .section-desc {
  color: var(--text-mid);
}

.cert-showcase-header-right {
  display: flex;
  gap: 48px;
  flex-shrink: 0;
}

.cert-showcase-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cert-stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  letter-spacing: -0.02em;
}

.cert-stat-label {
  font-size: 0.78rem;
  color: var(--text-mid);
  text-align: right;
  max-width: 120px;
  line-height: 1.4;
}

/* ---- Gallery Grid ---- */
.cert-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert-gallery-item {
  position: relative;
}

/* ---- Certificate Frame ---- */
.cert-frame {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--white);
  border: 1px solid rgba(13, 27, 62, 0.08);
  cursor: pointer;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.cert-frame:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 44px rgba(13, 27, 62, 0.12);
  border-color: rgba(214, 96, 7, 0.4);
}

/* Actual certificate image */
.cert-frame-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
}

.cert-frame:hover .cert-frame-img {
  transform: scale(1.04);
}

/* ---- Placeholder (no image uploaded) ---- */
.cert-frame-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, #0f1b3d 0%, #1a2d5a 50%, #0f1b3d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cert-frame-placeholder::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1.5px solid rgba(214, 96, 7, 0.25);
  border-radius: 6px;
  pointer-events: none;
}

.cert-frame-placeholder::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  pointer-events: none;
}

.cert-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cert-placeholder-ribbon {
  width: 56px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.cert-placeholder-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cert-placeholder-seal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(214, 96, 7, 0.5);
  background: rgba(214, 96, 7, 0.08);
  margin-top: 8px;
}

.cert-placeholder-seal span {
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ---- Glass Overlay on Hover ---- */
.cert-frame-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 27, 62, 0.0) 0%, rgba(13, 27, 62, 0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.cert-frame:hover .cert-frame-overlay {
  opacity: 1;
}

.cert-overlay-content {
  transform: translateY(16px);
  transition: transform 0.4s ease;
}

.cert-frame:hover .cert-overlay-content {
  transform: translateY(0);
}

.cert-overlay-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 8px;
  background: rgba(214, 96, 7, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(214, 96, 7, 0.3);
}

.cert-overlay-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cert-overlay-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 16px;
}

.cert-overlay-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  background: var(--orange);
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cert-overlay-btn:hover {
  background: var(--white);
  color: var(--navy);
}

/* ---- Bottom Label (always visible) ---- */
.cert-frame-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(13, 27, 62, 0.9) 0%, transparent 100%);
  padding: 40px 16px 14px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.cert-frame:hover .cert-frame-label {
  opacity: 0;
}

.cert-label-title {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.cert-label-sub {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .cert-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .cert-showcase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .cert-showcase-header-right {
    gap: 40px;
  }

  .cert-showcase-stat {
    align-items: flex-start;
  }

  .cert-stat-label {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .cert-showcase-section {
    padding: 72px 0;
  }

  .cert-showcase-container {
    padding: 0 20px;
  }

  .cert-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .cert-showcase-header {
    margin-bottom: 40px;
    padding-bottom: 32px;
  }
}

/* ---- Floating Get a Quote Button ---- */
.floating-quote-btn {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right center;
  z-index: 1050;
  background: var(--orange);
  color: var(--white) !important;
  padding: 10px 24px;
  /* Since it's rotated -90deg, the top-left and top-right of the original horizontal button
     will face left. We keep them flat or slightly rounded to fit the exact flat vertical tab style.
     To match the image's clean, premium look, we use a 4px border-radius on the top corners. */
  border-radius: 4px 4px 0 0;
  text-decoration: none !important;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 -4px 15px rgba(13, 27, 62, 0.12);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.floating-quote-btn:hover {
  background: var(--navy);
  /* Translate slightly to the left (which is local -Y direction when rotated -90deg) */
  transform: translateY(-50%) rotate(-90deg) translateY(-6px);
  box-shadow: 0 -6px 20px rgba(13, 27, 62, 0.25);
}

@media (max-width: 768px) {
  .floating-quote-btn {
    padding: 8px 18px;
    font-size: 0.78rem;
  }
}

/* ---- Floating WhatsApp Button (Right Side) ---- */
.floating-whatsapp-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #25D366;
  color: var(--white) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1050;
  text-decoration: none !important;
}

.floating-whatsapp-btn:hover {
  background-color: #1ebd56;
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

@media (max-width: 768px) {
  .floating-whatsapp-btn {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }
}

/* ---- Service Details Redesign Layout ---- */
.service-details-main-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
}

@media (max-width: 991px) {

  .service-details-main-grid,
  .service-faq-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .faq-cta-sidebar {
    position: static !important;
  }

  .service-banner-hero {
    min-height: 320px !important;
    padding: 60px 20px !important;
  }
}

/* ---- Process Card Recent Design ---- */
.process-step-card-recent {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.02);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.process-step-card-recent .card-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gray-200);
  transition: background-color 0.3s ease;
}

.process-step-card-recent .process-step-num-huge {
  font-family: var(--font-display);
  font-size: 5.5rem;
  font-weight: 900;
  color: rgba(13, 27, 62, 0.03);
  position: absolute;
  bottom: -10px;
  right: 10px;
  line-height: 1;
  transition: color 0.4s ease, transform 0.4s ease;
  pointer-events: none;
  user-select: none;
}

.process-step-card-recent .step-num-bubble {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(13, 27, 62, 0.05);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.25rem;
  font-family: var(--font-display);
  margin-bottom: 28px;
  transition: all 0.4s ease;
}

/* Hover States */
.process-step-card-recent:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 27, 62, 0.08);
}

.process-step-card-recent:hover .card-top-bar {
  background: var(--orange);
}

.process-step-card-recent:hover .step-num-bubble {
  background: var(--orange);
  color: var(--white);
}

.process-step-card-recent:hover .process-step-num-huge {
  color: rgba(214, 96, 7, 0.08);
  transform: scale(1.1);
}

/* ---- Benefits Section Redesign Layout ---- */
.benefits-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 991px) {
  .benefits-split-grid {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
}

/* ---- Multi-Column Navbar Dropdown ---- */
.nav-dropdown-columns {
  display: grid !important;
  grid-template-rows: repeat(10, auto);
  grid-auto-flow: column;
  gap: 4px 24px;
  min-width: max-content !important;
  padding: 12px 16px !important;
}

@media (max-width: 960px) {
  .nav-dropdown-columns {
    display: none !important;
    flex-direction: column !important;
    min-width: 100% !important;
    gap: 8px !important;
  }

  .has-drop.open .nav-dropdown-columns {
    display: flex !important;
  }

  .hero-dots {
    display: none;
  }
}

/* =============================================
   PREMIUM HERO REDESIGN
   ============================================= */
.premium-hero {
  position: relative;
  width: 100%;
  min-height: calc(100vh - 100px);
  min-height: 820px;
  overflow: hidden;
  background-color: transparent;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  filter: brightness(0.85);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg,
      #080f26 0%,
      rgba(8, 15, 38, 0.98) 35%,
      rgba(8, 15, 38, 0.85) 55%,
      rgba(214, 96, 7, 0.1) 80%,
      rgba(214, 96, 7, 0.15) 100%),
    radial-gradient(circle at 85% 35%,
      rgba(214, 96, 7, 0.25) 0%,
      rgba(0, 0, 0, 0) 55%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

.globe-container {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(-50%, -50%);
  width: 75vw;
  height: 75vw;
  max-width: 800px;
  max-height: 800px;
  z-index: 3;
  pointer-events: none;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 100%);
}

.globe-container svg {
  width: 100%;
  height: 100%;
  transform-origin: center;
  animation: spinGlobe 120s linear infinite;
}

@keyframes spinGlobe {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero-container {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 120px 32px 80px 32px;
}

.hero-content-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}

/* Left Content */
.hero-left-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 6px 16px;
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #38A169;
  box-shadow: 0 0 8px #38A169;
}

.badge-icon {
  display: inline-flex;
  align-items: center;
}

.badge-text {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.02em;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.8vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.text-teal {
  color: #4FD1C5;
  text-shadow: 0 0 15px rgba(79, 209, 197, 0.15);
}

.text-orange-gradient {
  background: linear-gradient(135deg, #FF9A45 0%, #FF5B22 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 38px;
  max-width: 580px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.btn-primary-consult {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FF5B22;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 10px;
  padding: 14px 26px;
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(255, 91, 34, 0.35);
  border: 1px solid transparent;
}

.btn-primary-consult:hover {
  background: #E04E1B;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 91, 34, 0.45);
  color: var(--white);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.btn-primary-consult:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-secondary-explore {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  border-radius: 10px;
  padding: 13px 26px;
  text-decoration: none;
  transition: all var(--transition);
}

.btn-secondary-explore:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  color: var(--white);
}

.hero-stats-box {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 28px;
  gap: 28px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: #4FD1C5;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.25;
  white-space: nowrap;
}

.stat-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.12);
}

/* Right Content & Feature Cards */
.hero-right-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.feature-glass-card {
  display: flex;
  gap: 18px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 24px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  width: 100%;
}

.feature-glass-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.card-1 {
  align-self: flex-end;
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

.card-2 {
  align-self: center;
  margin-right: 20px;
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.card-3 {
  align-self: flex-end;
  animation: fadeInRight 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

.card-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cyan-glow {
  box-shadow: 0 0 15px rgba(79, 209, 197, 0.15);
  border-color: rgba(79, 209, 197, 0.25);
}

.orange-glow {
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.25);
}

.blue-glow {
  box-shadow: 0 0 15px rgba(49, 130, 206, 0.15);
  border-color: rgba(49, 130, 206, 0.25);
}

.card-text-wrapper {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.card-desc {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.35;
}

/* Mouse Scroll Indicator */
.scroll-mouse-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.mouse-wheel {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 12px;
  display: block;
  position: relative;
}

.mouse-wheel::after {
  content: '';
  width: 4px;
  height: 6px;
  background: var(--white);
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
  animation: scrollMouse 1.8s infinite;
}

@keyframes scrollMouse {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, 8px);
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .hero-content-grid {
    gap: 40px;
  }

  .globe-container {
    left: 55%;
  }
}

@media (max-width: 1024px) {
  .premium-hero {
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 60px;
  }

  .hero-content-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-left-content {
    align-items: center;
    text-align: center;
  }

  .hero-badge,
  .hero-actions {
    justify-content: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-right-content {
    align-items: center;
  }

  .card-1,
  .card-2,
  .card-3 {
    align-self: center;
    margin-right: 0;
    margin-left: 0;
  }

  .globe-container {
    left: 50%;
    width: 90vw;
    height: 90vw;
    opacity: 0.35;
  }

  .scroll-mouse-indicator {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-container {
    padding: 150px 20px 40px 20px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-stats-box {
    width: 100%;
    justify-content: space-around;
    padding: 14px 20px;
    gap: 16px;
  }

  .stat-num {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.95rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary-consult,
  .btn-secondary-explore {
    width: 100%;
    justify-content: center;
  }

  .hero-stats-box {
    flex-wrap: wrap;
    gap: 12px;
  }

  .stat-item {
    align-items: center;
    text-align: center;
  }

  .stat-divider {
    display: none;
  }
}

/* =============================================
   SCROLL REVEAL & PREMIUM DYNAMIC ANIMATIONS
   ============================================= */
/* Hide/translate initially when JavaScript is enabled and body has reveal support */
body.js-reveal-active [data-reveal] {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-reveal-active [data-reveal="up"] {
  transform: translateY(80px) scale(0.98);
}

body.js-reveal-active section[data-reveal="up"] {
  transform: perspective(1500px) rotateX(7deg) translateY(60px) scale(0.98);
  transform-origin: top center;
  transition: opacity 1.3s cubic-bezier(0.16, 1, 0.3, 1), transform 1.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body.js-reveal-active [data-reveal="down"] {
  transform: translateY(-80px) scale(0.98);
}

body.js-reveal-active [data-reveal="left"] {
  transform: translateX(-100px) rotate(-1.5deg) scale(0.97);
}

body.js-reveal-active [data-reveal="right"] {
  transform: translateX(100px) rotate(1.5deg) scale(0.97);
}

body.js-reveal-active [data-reveal="zoom-in"] {
  transform: scale(0.9) rotate(-1deg);
}

/* Stagger parent - hides its children containing [data-reveal-child] */
body.js-reveal-active [data-reveal-stagger] [data-reveal-child] {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 1.0s cubic-bezier(0.16, 1, 0.3, 1), transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

body.js-reveal-active [data-reveal-stagger] [data-reveal-child="up"] {
  transform: translateY(70px) rotate(1.2deg) scale(0.96);
}

body.js-reveal-active [data-reveal-stagger] [data-reveal-child="down"] {
  transform: translateY(-70px) rotate(-1.2deg) scale(0.96);
}

body.js-reveal-active [data-reveal-stagger] [data-reveal-child="left"] {
  transform: translateX(-75px) rotate(-1deg) scale(0.96);
}

body.js-reveal-active [data-reveal-stagger] [data-reveal-child="right"] {
  transform: translateX(75px) rotate(1deg) scale(0.96);
}

body.js-reveal-active [data-reveal-stagger] [data-reveal-child="zoom-in"] {
  transform: scale(0.86) rotate(-1.5deg);
}

/* Activated Animation State */
body.js-reveal-active [data-reveal].revealed,
body.js-reveal-active [data-reveal-stagger] [data-reveal-child].revealed {
  opacity: 1;
  transform: translate(0) scale(1) rotate(0deg);
}

/* Ambient Floating Animations for Badges and Decorative Items */
@keyframes ambientFloatUp {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes ambientFloatDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Background Blurry Orbs Ambient Motion */
@keyframes orbMoveLeft {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(40px, -25px) scale(1.1);
  }

  100% {
    transform: translate(-15px, 20px) scale(0.95);
  }
}

@keyframes orbMoveRight {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-30px, 35px) scale(0.9);
  }

  100% {
    transform: translate(25px, -20px) scale(1.05);
  }
}

/* Connect Ambient Animations */
.floating-experience-badge {
  animation: ambientFloatUp 6s ease-in-out infinite !important;
}

.why-choose-img-badge {
  animation: ambientFloatDown 6s ease-in-out infinite !important;
}

.contact-orb-1 {
  animation: orbMoveLeft 16s ease-in-out infinite alternate !important;
}

.contact-orb-2 {
  animation: orbMoveRight 20s ease-in-out infinite alternate !important;
}

/* ── Home Page & Projects Styles (Extracted from index.html) ── */
.gallery-nav-btn:hover {
  background: var(--orange) !important;
  border-color: transparent !important;
  color: var(--white) !important;
  transform: scale(1.05);
}

.gallery-slider::-webkit-scrollbar {
  display: none;
  /* Hide scrollbar for Chrome, Safari and Opera */
}

.projects-section {
  padding: 50px 0;
  padding-bottom: 30px;
  background: var(--off-white);
  border-top: 1px solid #EEF1F6;
}

.projects-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.projects-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 48px;
}

.projects-header .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.projects-header .section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.projects-actions {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ── Minimal 2×2 grid ── */
.projects-minimal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.proj-min-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none !important;
  color: inherit;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.04);
}

.proj-min-card:hover {
  border-color: rgba(244, 123, 32, 0.3);
  box-shadow: 0 16px 40px rgba(13, 27, 62, 0.1);
  transform: translateY(-5px);
}

.proj-min-img-wrap {
  position: relative;
  width: 100%;
  height: 330px;
  overflow: hidden;
  background: #EEF3F9;
  flex-shrink: 0;
}

.proj-min-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.proj-min-card:hover .proj-min-img {
  transform: scale(1.06);
}

.proj-min-img-placeholder {
  width: 100%;
  height: 100%;
  background: #E2E8F0;
}

/* Location badge floating over image */
.proj-min-location-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  background: rgba(13, 27, 62, 0.78);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 20px;
}

/* Card body */
.proj-min-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 3px solid transparent;
  transition: border-color 0.3s ease;
}

.proj-min-card:hover .proj-min-body {
  border-top-color: var(--orange);
}

.proj-min-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 0;
}

.proj-min-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #94A3B8;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.proj-min-card:hover .proj-min-cta {
  color: var(--orange);
  gap: 9px;
}

/* Responsive */
@media (max-width: 640px) {
  .projects-minimal-grid {
    grid-template-columns: 1fr;
  }

  .proj-min-img-wrap {
    height: 180px;
  }

  .projects-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .projects-container {
    padding: 0 20px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(13, 27, 62, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
}

.gallery-overlay-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 27, 62, 0) 40%, rgba(13, 27, 62, 0.95));
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(10px);
  pointer-events: none;
  z-index: 2;
}

.gallery-zoom-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(214, 96, 7, 0.3);
}

/* Gallery-specific smooth reveals (no scales/rotations to prevent borders subpixel clipping jitter in Chrome) */
body.js-reveal-active .gallery-grid [data-reveal-child] {
  opacity: 0;
  will-change: transform, opacity;
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

body.js-reveal-active .gallery-grid [data-reveal-child="left"] {
  transform: translate3d(-80px, 0, 0);
}

body.js-reveal-active .gallery-grid [data-reveal-child="right"] {
  transform: translate3d(80px, 0, 0);
}

body.js-reveal-active .gallery-grid [data-reveal-child="up"] {
  transform: translate3d(0, 70px, 0);
}

body.js-reveal-active .gallery-grid [data-reveal-child].revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(13, 27, 62, 0.15) !important;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay-hover {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.lightbox-close:hover {
  transform: scale(1.1);
}

.lightbox-nav:hover {
  background: var(--orange) !important;
  border-color: transparent !important;
  transform: scale(1.05);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .lightbox-nav {
    width: 40px !important;
    height: 40px !important;
  }

  .lightbox-nav svg {
    width: 18px !important;
    height: 18px !important;
  }

  .lightbox-close {
    top: 15px !important;
    right: 15px !important;
    font-size: 2rem !important;
  }
}

/* =============================================
   HOMEPAGE ANIMATED GRADIENT BACKGROUND
   ============================================= */
.homepage-animated-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background-color: #000000;
  background-image: linear-gradient(135deg, #000000 0%, #030612 25%, #08112a 60%, #04091a 85%, #000000 100%) !important;
  background-size: 100% 100% !important;
}

.bg-video-element {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
  pointer-events: none;
  z-index: -1;
}

.bg-liquid-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  filter: url(#fluid-goo);
  /* Morph overlapping shapes like dynamic liquid */
}

.bg-racking-wireframe {
  position: absolute;
  color: var(--navy);
  width: 500px;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

.homepage-animated-bg .wireframe-left {
  left: 5%;
  top: 15%;
  animation: wireframeFloat 35s ease-in-out infinite alternate;
}

.homepage-animated-bg .wireframe-right {
  right: 5%;
  bottom: 12%;
  transform: scale(0.85) rotate(15deg);
  animation: wireframeFloat 40s ease-in-out infinite alternate-reverse;
}

@keyframes wireframeFloat {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(0.8deg);
  }

  100% {
    transform: translateY(20px) rotate(-0.8deg);
  }
}

/* =============================================
   BLUEPRINT GEOMETRICS FOR BACKGROUND DETAIL
   ============================================= */
.bg-blueprint-item {
  position: absolute;
  color: var(--orange);
  /* Blueprint highlight orange */
  width: 90px;
  height: auto;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  will-change: transform;
}

.homepage-animated-bg .blueprint-crosshair-1 {
  left: 8%;
  top: 35%;
  animation: blueprintRotate1 25s linear infinite;
}

.homepage-animated-bg .blueprint-dimension-1 {
  right: 12%;
  top: 55%;
  width: 100px;
  animation: blueprintDrift1 20s ease-in-out infinite alternate;
}

.homepage-animated-bg .blueprint-angle-1 {
  left: 10%;
  bottom: 25%;
  width: 95px;
  animation: blueprintDrift2 24s ease-in-out infinite alternate;
}

.homepage-animated-bg .blueprint-crosshair-2 {
  right: 15%;
  top: 25%;
  width: 75px;
  animation: blueprintRotate2 30s linear infinite;
  color: var(--navy);
  opacity: 0.12;
}

.particle-wave-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none;
  filter: blur(5px);
}

@keyframes blueprintRotate1 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes blueprintRotate2 {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(-360deg);
  }
}

@keyframes blueprintDrift1 {
  0% {
    transform: translate(0, 0) rotate(2deg);
  }

  100% {
    transform: translate(15px, -20px) rotate(-2deg);
  }
}

@keyframes blueprintDrift2 {
  0% {
    transform: translate(0, 0) rotate(-5deg);
  }

  100% {
    transform: translate(-20px, 15px) rotate(5deg);
  }
}

.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.92;
  will-change: transform;
}

.homepage-animated-bg .orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(13, 27, 62, 0.22);
  /* Soft navy */
  top: -10%;
  right: -10%;
  animation: orbDrift1 45s ease-in-out infinite alternate;
}

.homepage-animated-bg .orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(13, 27, 62, 0.22);
  /* Soft navy instead of orange */
  top: 40%;
  left: -15%;
  animation: orbDrift2 50s ease-in-out infinite alternate;
}

.homepage-animated-bg .orb-3 {
  width: 700px;
  height: 700px;
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.18), rgba(6, 12, 29, 0.25));
  /* Dark navy mesh instead of orange */
  bottom: -10%;
  right: 15%;
  animation: orbDrift3 55s ease-in-out infinite alternate;
}

/* If the fluid background is active, make content sections transparent */
.homepage-animated-bg~section:not(#hero):not([class*="home-section-grad-"]):not(.subpage-header):not(.service-banner-hero) {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* For overlapping sections, ensure clean layouts */
.homepage-animated-bg~.home-gallery-section {
  padding: 10px 0 !important;
}

.homepage-animated-bg ~ #portfolio,
.homepage-animated-bg ~ #blog {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
}


@keyframes orbDrift1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-100px, 80px) scale(1.1);
  }

  100% {
    transform: translate(-50px, 150px) scale(0.95);
  }
}

@keyframes orbDrift2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(150px, -100px) scale(0.9);
  }

  100% {
    transform: translate(80px, -50px) scale(1.05);
  }
}

@keyframes orbDrift3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-120px, -80px) scale(1.05);
  }

  100% {
    transform: translate(-40px, -120px) scale(0.95);
  }
}

/* =============================================
   CORPORATE VIDEO PLAY SECTION STYLES
   ============================================= */
.about-video-section {
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.video-section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.video-header {
  margin-bottom: 48px;
}

.video-section-title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  margin-top: 8px;
  margin-bottom: 16px;
}

.video-section-desc {
  font-size: 1.05rem;
  color: var(--slate);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Video Card Thumbnail */
.video-thumbnail-card {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(13, 27, 62, 0.12);
  cursor: pointer;
  transform: translate3d(0, 0, 0);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;
}

.video-thumbnail-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(13, 27, 62, 0.22);
}

.video-thumbnail-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-thumbnail-card:hover .video-thumbnail-img {
  transform: scale(1.04);
}

.video-thumbnail-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.4) 0%, rgba(13, 27, 62, 0.65) 100%);
  z-index: 1;
  transition: background 0.4s ease;
}

.video-thumbnail-card:hover .video-thumbnail-overlay {
  background: linear-gradient(135deg, rgba(13, 27, 62, 0.3) 0%, rgba(13, 27, 62, 0.55) 100%);
}

/* Pulsing Play Button styling */
.video-play-btn-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.video-play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(214, 96, 7, 0.5), 0 10px 25px rgba(214, 96, 7, 0.4);
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease;
  animation: playBtnPulse 2.5s infinite;
}

.video-thumbnail-card:hover .video-play-btn {
  background: #E55205;
  transform: scale(1.1);
  box-shadow: 0 0 0 20px rgba(214, 96, 7, 0), 0 15px 30px rgba(214, 96, 7, 0.5);
}

.play-icon-svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}

.play-btn-label {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(13, 27, 62, 0.4);
  opacity: 0.85;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-thumbnail-card:hover .play-btn-label {
  opacity: 1;
  transform: translateY(2px);
}

@keyframes playBtnPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(214, 96, 7, 0.5), 0 10px 25px rgba(214, 96, 7, 0.4);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(214, 96, 7, 0), 0 10px 25px rgba(214, 96, 7, 0.4);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(214, 96, 7, 0), 0 10px 25px rgba(214, 96, 7, 0.4);
  }
}

/* Lightbox Modal CSS */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.video-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.video-lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 62, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}

.video-lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  aspect-ratio: 16/9;
  z-index: 1052;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lightbox.active .video-lightbox-container {
  transform: scale(1);
}

.video-player-wrapper {
  width: 100%;
  height: 100%;
}

.lightbox-video-element {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.video-lightbox-close {
  position: absolute;
  top: -45px;
  right: 0;
  background: transparent;
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.video-lightbox-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .about-video-section {
    padding: 56px 0;
  }

  .video-section-title {
    font-size: 1.75rem;
  }

  .video-lightbox-close {
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1060;
  }
}

/* =============================================
   LIGHT BLUEPRINT BACKGROUND FOR PROJECTS
   ============================================= */
.projects-light-blueprint-bg {
  position: fixed;
  inset: -40px;
  /* Offset slightly to prevent borders showing during hover translate */
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
  background-color: #F8FAFC;
  /* Clean off-white */
  background-image:
    linear-gradient(rgba(13, 27, 62, 0.04) 1px, transparent 1px),
    /* Grid lines */
    linear-gradient(90deg, rgba(13, 27, 62, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 10% 20%, rgba(13, 27, 62, 0.06) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(13, 27, 62, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%, 100% 100%, 100% 100%;
  transform: translate3d(calc(var(--mouse-x, 0) * 20px), calc(var(--mouse-y, 0) * 20px), 0);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-light-blueprint-bg .bg-liquid-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  filter: url(#fluid-goo-light);
  /* Gooey morph filter */
}

.projects-light-blueprint-bg .bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  mix-blend-mode: multiply;
  /* Soft blend in light mode */
  filter: blur(50px);
  will-change: transform;
}

.projects-light-blueprint-bg .light-orb-1 {
  width: 500px;
  height: 500px;
  left: 5%;
  top: 15%;
  background: radial-gradient(circle, rgba(13, 27, 62, 0.1) 0%, rgba(13, 27, 62, 0) 70%);
  animation: orbDrift1 25s infinite alternate ease-in-out;
}

.projects-light-blueprint-bg .light-orb-2 {
  width: 600px;
  height: 600px;
  right: 8%;
  bottom: 10%;
  background: radial-gradient(circle, rgba(244, 123, 32, 0.07) 0%, rgba(244, 123, 32, 0) 70%);
  animation: orbDrift2 30s infinite alternate ease-in-out;
}

.projects-light-blueprint-bg .light-orb-3 {
  width: 450px;
  height: 450px;
  left: 35%;
  top: 45%;
  background: radial-gradient(circle, rgba(79, 209, 197, 0.07) 0%, rgba(79, 209, 197, 0) 70%);
  animation: orbDrift3 28s infinite alternate ease-in-out;
}

/* Glowing Racking wireframes */
.projects-light-blueprint-bg .bg-racking-wireframe {
  position: absolute;
  color: var(--navy);
  width: 500px;
  height: auto;
  pointer-events: none;
  z-index: -1;
}

.projects-light-blueprint-bg .wireframe-left {
  left: 6%;
  top: 20%;
  animation: wireframeFloat 35s ease-in-out infinite alternate;
}

.projects-light-blueprint-bg .wireframe-right {
  right: 6%;
  bottom: 15%;
  transform: scale(0.85) rotate(15deg);
  animation: wireframeFloat 40s ease-in-out infinite alternate-reverse;
}

/* Blueprint indicators in light theme */
.projects-light-blueprint-bg .bg-blueprint-item {
  position: absolute;
  color: var(--orange);
  width: 90px;
  pointer-events: none;
  z-index: -1;
  opacity: 0.18;
  will-change: transform;
}

.projects-light-blueprint-bg .blueprint-crosshair-1 {
  left: 10%;
  top: 40%;
  animation: blueprintRotate1 25s linear infinite;
}

.projects-light-blueprint-bg .blueprint-dimension-1 {
  right: 15%;
  top: 50%;
  width: 100px;
  animation: blueprintDrift1 20s ease-in-out infinite alternate;
}

/* Section Transparency for Projects */
.projects-light-blueprint-bg~section:not(#hero):not(#contact):not(.subpage-header) {
  background: transparent !important;
  border-top: none !important;
  border-bottom: none !important;
}

/* Glassmorphic light theme project card */
.projects-light-blueprint-bg~#portfolio .project-card {
  background: rgba(255, 255, 255, 0.65) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  border: 1px solid rgba(226, 232, 240, 0.7) !important;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.05) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.projects-light-blueprint-bg~#portfolio .project-card:hover {
  transform: translateY(-8px) !important;
  border-color: var(--orange) !important;
  box-shadow: 0 20px 45px rgba(214, 96, 7, 0.12) !important;
}

.projects-light-blueprint-bg~#portfolio .project-card:hover .project-card-title {
  color: var(--orange) !important;
}

/* =============================================
   REDESIGNED MODERN BLOG LISTINGS
   ============================================= */
.blog-section {
  padding: 30px 0;
  padding-bottom: 50px;
  position: relative;
  z-index: 1;
}

.blog-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.blog-header .section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(244, 123, 32, 0.08);
  color: var(--orange);
  border: 1px solid rgba(244, 123, 32, 0.2);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.blog-header .blog-title {
  font-size: 2.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 18px;
}

.blog-header .blog-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Featured Article Card style */
.featured-blog-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 50px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(13, 27, 62, 0.08);
  border-color: rgba(244, 123, 32, 0.3);
}

.featured-blog-img-box {
  width: 100%;
  height: 420px;
  overflow: hidden;
  position: relative;
}

.featured-blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-blog-card:hover .featured-blog-img-box img {
  transform: scale(1.04);
}

.featured-blog-content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-badge-row {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.featured-tag {
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.featured-date {
  font-size: 0.85rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 6px;
}

.featured-title {
  font-size: 2.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 18px;
}

.featured-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s;
}

.featured-title a:hover {
  color: var(--orange);
}

.featured-desc {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.featured-action-btn {
  align-self: flex-start;
  padding: 12px 28px;
  border-radius: 50px;
  background: var(--orange-dark);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.featured-action-btn:hover {
  background: var(--orange);
  transform: translateX(3px);
  box-shadow: var(--shadow-btn);
}

/* Modern Blog Cards Grid */
.modern-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

@media (max-width: 480px) {
  .modern-blog-grid {
    grid-template-columns: 1fr !important;
  }
}

.modern-blog-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.03);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(244, 123, 32, 0.3);
  box-shadow: 0 20px 40px rgba(13, 27, 62, 0.08);
}

.modern-blog-img-box {
  width: 100%;
  height: 240px;
  overflow: hidden;
  position: relative;
}

.modern-blog-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.modern-blog-card:hover .modern-blog-img-box img {
  transform: scale(1.05);
}

.modern-blog-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.modern-blog-meta {
  margin-bottom: 12px;
}

.modern-blog-date {
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.modern-blog-title {
  font-size: 1.35rem;
  font-family: var(--font-display);
  font-weight: 750;
  line-height: 1.4;
  margin-bottom: 12px;
  flex-grow: 0;
}

.modern-blog-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s;
}

.modern-blog-title a:hover {
  color: var(--orange);
}

.modern-blog-desc {
  color: var(--text-dark);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 22px;
  flex-grow: 1;
}

.modern-blog-footer {
  border-top: 1px solid var(--gray-100);
  padding-top: 16px;
  margin-top: auto;
}

.modern-read-more {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}

.modern-read-more .arrow {
  transition: transform 0.3s;
}

.modern-read-more:hover {
  color: var(--orange);
}

.modern-read-more:hover .arrow {
  transform: translateX(4px);
}

/* Responsiveness overrides */
@media (max-width: 991px) {
  .featured-blog-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .featured-blog-img-box {
    height: 300px;
  }
}

/* =============================================
   GLASSMORPHISM OVERRIDES FOR FAQ PAGE
   ============================================= */


/* =============================================
   PREMIUM CTA SECTION REDESIGN (OPTION 1)
   ============================================= */
.premium-cta-section {
  padding-top: 10px;
  padding-bottom: 50px;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.premium-cta-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 32px;
}

.premium-cta-card {
  position: relative;
  background: transparent;
  border-radius: 24px;
  padding: 56px 0;
  overflow: hidden;
  border: none;
  box-shadow: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Grid pattern in card background */
.premium-cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.85;
  z-index: 1;
}

/* Accent Glow */
.cta-glow-orb {
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(214, 96, 7, 0.15) 0%, rgba(214, 96, 7, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: 2;
}

.cta-blueprint-svg {
  position: absolute;
  right: 5%;
  bottom: -20px;
  width: 380px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 2;
  color: var(--white);
  transform: rotate(-5deg);
  transition: transform 0.6s var(--transition);
}

.premium-cta-card:hover .cta-blueprint-svg {
  transform: rotate(-2deg) scale(1.03);
}

/* Content Column */
.cta-content-col {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.cta-tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(214, 96, 7, 0.15);
  color: var(--orange-light);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
  border: 1px solid rgba(214, 96, 7, 0.2);
}

.cta-tagline-dot {
  width: 6px;
  height: 6px;
  background-color: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--orange);
  animation: pulse-dot-cta 2s infinite;
}

@keyframes pulse-dot-cta {
  0% {
    transform: scale(0.9);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.9);
    opacity: 0.6;
  }
}

.cta-headline {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 14px;
}

.cta-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Features List */
.cta-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-feature-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: rgba(214, 96, 7, 0.2);
  border-radius: 50%;
  color: var(--orange-light);
  flex-shrink: 0;
}

.cta-feature-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

/* Button Column */
.cta-button-col {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.cta-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  padding: 18px 36px;
  border-radius: 12px;
  box-shadow: var(--shadow-btn);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.cta-action-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-action-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(244, 123, 32, 0.5);
}

.cta-action-btn:hover::after {
  transform: translateX(100%);
}

.cta-action-btn:active {
  transform: translateY(-1px);
}

.cta-action-btn svg {
  transition: transform 0.3s var(--transition);
}

.cta-action-btn:hover svg {
  transform: translate(3px, -3px);
}

/* Media Queries */
@media (max-width: 1024px) {
  .premium-cta-card {
    padding: 48px;
  }

  .cta-headline {
    font-size: 2rem;
  }
}

@media (max-width: 991px) {
  .premium-cta-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .cta-button-col {
    width: 100%;
  }

  .cta-action-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .premium-cta-section {
    padding: 40px 0;
  }

  .premium-cta-container {
    padding: 0 16px;
  }

  .premium-cta-card {
    padding: 32px 24px;
    border-radius: 16px;
  }

  .cta-headline {
    font-size: 1.75rem;
  }

  .cta-description {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .cta-features-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-blueprint-svg {
    display: none;
  }
}

/* =============================================
   LENIS SMOOTH SCROLL STYLES
   ============================================= */
html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

/* =============================================
   ABOUT PAGE ALTERNATING SECTIONS & ACCREDITATION REDESIGN
   ============================================= */
#about-certificates-section,
#services,
#products-categories,
#portfolio,
#blog {
  position: relative !important;
  padding: 50px 0 !important;
  overflow: hidden !important;
  z-index: 5 !important;
}

/* Background layers */
#about-certificates-section .cert-bg-layer,
#about-profile-section .cert-bg-layer,
#about-corporate-video-section .cert-bg-layer,
#services .cert-bg-layer,
#products-categories .cert-bg-layer,
#portfolio .cert-bg-layer,
#blog .cert-bg-layer {
  position: absolute !important;
  pointer-events: none !important;
  user-select: none !important;
}

#about-certificates-section .cert-bg-glow,
#about-profile-section .cert-bg-glow,
#about-corporate-video-section .cert-bg-glow,
#services .cert-bg-glow,
#products-categories .cert-bg-glow,
#portfolio .cert-bg-glow,
#blog .cert-bg-glow {
  top: -150px !important;
  right: -150px !important;
  width: 600px !important;
  height: 600px !important;
  background: radial-gradient(circle, rgba(214, 96, 7, 0.14) 0%, rgba(214, 96, 7, 0) 70%) !important;
  filter: blur(60px) !important;
  z-index: 1 !important;
}

#about-certificates-section .cert-bg-wireframe,
#about-profile-section .cert-bg-wireframe,
#about-corporate-video-section .cert-bg-wireframe,
#services .cert-bg-wireframe,
#products-categories .cert-bg-wireframe,
#portfolio .cert-bg-wireframe,
#blog .cert-bg-wireframe {
  top: 12% !important;
  left: -20px !important;
  width: 320px !important;
  height: auto !important;
  color: var(--orange) !important;
  z-index: 1 !important;
  opacity: 0.8 !important;
}

#about-certificates-section .cert-bg-grid,
#about-profile-section .cert-bg-grid,
#about-corporate-video-section .cert-bg-grid,
#services .cert-bg-grid,
#products-categories .cert-bg-grid,
#portfolio .cert-bg-grid,
#blog .cert-bg-grid {
  bottom: 5% !important;
  right: -5% !important;
  width: 350px !important;
  height: 350px !important;
  background-image: radial-gradient(rgba(13, 27, 62, 0.05) 1.2px, transparent 1.2px) !important;
  background-size: 18px 18px !important;
  z-index: 1 !important;
}

/* Separation line at the top */
#about-certificates-section .cert-top-separator,
#about-profile-section .cert-top-separator,
#about-corporate-video-section .cert-top-separator,
#services .cert-top-separator,
#products-categories .cert-top-separator,
#portfolio .cert-top-separator,
#blog .cert-top-separator {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 1px !important;
  background: linear-gradient(90deg, transparent, rgba(13, 27, 62, 0.08), transparent) !important;
  z-index: 2 !important;
}

/* Header customization */
#about-certificates-section .cert-showcase-header {
  display: flex !important;
  justify-content: space-between !important;
  align-items: flex-end !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 56px !important;
  position: relative !important;
  z-index: 2 !important;
}

#about-certificates-section .cert-showcase-header-left {
  flex: 1 !important;
  max-width: 65% !important;
  text-align: left !important;
}

#about-certificates-section .cert-showcase-header-right {
  display: flex !important;
  align-items: center !important;
  gap: 40px !important;
}

#about-certificates-section .section-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: transparent !important;
  color: var(--orange) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  padding: 0 !important;
  border: none !important;
  margin-bottom: 16px !important;
}

#about-certificates-section .section-badge::before {
  content: '';
  width: 20px;
  height: 2.5px;
  background-color: var(--orange);
  display: inline-block;
}

#about-certificates-section .section-title {
  color: var(--white) !important;
  font-family: var(--font-display) !important;
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  margin: 0 0 12px 0 !important;
  line-height: 1.2 !important;
}

#about-certificates-section .section-desc {
  color: rgba(255, 255, 255, 0.75) !important;
  font-size: 1.02rem !important;
  max-width: 600px !important;
  margin: 0 !important;
  line-height: 1.6 !important;
}

/* Adjusting Statistics */
#about-certificates-section .cert-showcase-stat {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  position: relative !important;
  text-align: left !important;
}

/* Stat Separator Line */
#about-certificates-section .cert-showcase-stat:not(:last-child)::after {
  content: '' !important;
  position: absolute !important;
  right: -20px !important;
  top: 15% !important;
  height: 70% !important;
  width: 1px !important;
  background-color: rgba(255, 255, 255, 0.15) !important;
}

#about-certificates-section .cert-stat-icon {
  color: var(--orange) !important;
  margin-bottom: 8px !important;
}

#about-certificates-section .cert-stat-num {
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: var(--orange) !important;
  line-height: 1.1 !important;
}

#about-certificates-section .cert-stat-label {
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.85) !important;
  font-weight: 600 !important;
  margin-top: 4px !important;
}

/* Gallery Grid */
#about-certificates-section .cert-gallery-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)) !important;
  gap: 30px !important;
  position: relative !important;
  z-index: 2 !important;
}

/* Certificate Cards */
.cert-gallery-item {
  perspective: 1000px !important;
}

#about-certificates-section .cert-frame {
  border-radius: 20px !important;
  padding: 12px !important;
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
}

#about-certificates-section .cert-gallery-item:hover .cert-frame {
  transform: translateY(-8px) !important;
}

#about-certificates-section .cert-img-container {
  position: relative !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3.8 !important;
}

#about-certificates-section .cert-frame-img {
  border-radius: 12px !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border: none !important;
}

#about-certificates-section .cert-gallery-item:hover .cert-frame-img {
  transform: scale(1.04) !important;
}

/* Card footer with circular badge icon */
#about-certificates-section .cert-card-footer {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  margin-top: 16px !important;
  padding: 4px 8px 12px 8px !important;
}

#about-certificates-section .cert-footer-icon-wrapper {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  background-color: var(--navy) !important;
  color: var(--orange) !important;
  border-radius: 50% !important;
  flex-shrink: 0 !important;
  box-shadow: 0 4px 10px rgba(13, 27, 62, 0.15) !important;
}

#about-certificates-section .cert-footer-text {
  display: flex !important;
  flex-direction: column !important;
  text-align: left !important;
}

#about-certificates-section .cert-footer-title {
  color: var(--white) !important;
  font-size: 1.05rem !important;
  font-weight: 750 !important;
  margin: 0 !important;
}

/* Divider below title */
#about-certificates-section .cert-title-divider {
  width: 40px !important;
  height: 2px !important;
  background-color: var(--orange) !important;
  margin: 6px 0 !important;
}

#about-certificates-section .cert-footer-sub {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 0.82rem !important;
  margin: 0 !important;
  font-weight: 500 !important;
}

/* Dual color stripe at the bottom */
#about-certificates-section .cert-card-stripe {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 4px !important;
  background: linear-gradient(90deg, var(--navy) 40%, var(--orange) 40%) !important;
}

/* Frame Hover Overlay */
#about-certificates-section .cert-frame-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(13, 27, 62, 0.9) !important;
  border-radius: 12px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 20px !important;
  z-index: 5 !important;
}

#about-certificates-section .cert-frame:hover .cert-frame-overlay {
  opacity: 1 !important;
  visibility: visible !important;
}

.cert-overlay-content {
  text-align: center !important;
  transform: translateY(10px) !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

#about-certificates-section .cert-frame:hover .cert-overlay-content {
  transform: translateY(0) !important;
}

.cert-overlay-badge {
  background: rgba(214, 96, 7, 0.2) !important;
  color: var(--orange-light) !important;
  border: 1px solid rgba(214, 96, 7, 0.3) !important;
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  padding: 4px 10px !important;
  border-radius: 100px !important;
  display: inline-block !important;
  margin-bottom: 12px !important;
}

.cert-overlay-title {
  color: var(--white) !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
}

.cert-overlay-desc {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.88rem !important;
  line-height: 1.5 !important;
  margin-bottom: 20px !important;
}

.cert-overlay-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--orange) !important;
  color: var(--white) !important;
  font-size: 0.88rem !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.cert-overlay-btn:hover {
  background: var(--orange-dark) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(244, 123, 32, 0.5) !important;
}

/* Fallback placeholder style */
#about-certificates-section .cert-frame-placeholder {
  background: linear-gradient(135deg, var(--off-white) 0%, rgba(226, 230, 239, 0.5) 100%) !important;
  border: 1px dashed var(--gray-300) !important;
  border-radius: 12px !important;
  height: 100% !important;
}

/* Solid background for profile section */
#about-profile-section {
  position: relative !important;
  padding: 50px 0 !important;
  z-index: 5 !important;
}

#about-profile-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 27, 62, 0.08), transparent) !important;
}

#about-profile-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 27, 62, 0.08), transparent) !important;
}

/* Solid background for corporate video section */
#about-corporate-video-section {
  position: relative !important;
  padding: 50px 0 !important;
  z-index: 5 !important;
}

#about-corporate-video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 27, 62, 0.08), transparent) !important;
}

#about-corporate-video-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 27, 62, 0.08), transparent) !important;
}

/* =============================================
   REDESIGNED TECH CORPORATE VIDEO SECTION
   ============================================= */
.about-video-section {
  position: relative !important;
  padding: 80px 0 !important;
  z-index: 5 !important;
  overflow: hidden !important;
}

/* Background elements */
.video-bg-layer {
  position: absolute !important;
  pointer-events: none !important;
  user-select: none !important;
}

.video-section-container {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1100px !important;
}

.video-header {
  margin-bottom: 10px !important;
}

.video-section-title {
  color: var(--navy) !important;
  font-family: var(--font-display) !important;
  font-size: 2.3rem !important;
  font-weight: 800 !important;
  margin-top: 12px !important;
}

.video-section-desc {
  color: var(--text-mid) !important;
  font-size: 1.02rem !important;
  max-width: 650px !important;
  margin: 16px auto 0 auto !important;
  line-height: 1.6 !important;
}

/* Redesigned Premium Viewport */
.video-viewport-wrapper {
  background: rgba(13, 27, 62, 0.03) !important;
  border: 1px solid rgba(13, 27, 62, 0.08) !important;
  padding: 12px !important;
  border-radius: 24px !important;
  box-shadow: 0 30px 70px rgba(13, 27, 62, 0.05) !important;
  position: relative !important;
  backdrop-filter: blur(10px) !important;
  overflow: hidden !important;
}

.video-viewport-topbar {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 0 16px 12px 16px !important;
  font-family: var(--font-mono), monospace !important;
  font-size: 0.8rem !important;
  color: rgba(13, 27, 62, 0.6) !important;
  border-bottom: 1px dashed rgba(13, 27, 62, 0.08) !important;
  margin-bottom: 12px !important;
}

.topbar-left {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
}

.live-indicator {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-weight: 700 !important;
  color: var(--orange) !important;
}

.live-dot {
  width: 6px !important;
  height: 6px !important;
  background-color: var(--orange) !important;
  border-radius: 50% !important;
  animation: pulseGlow 1.8s infinite alternate !important;
}

@keyframes pulseGlow {
  0% {
    opacity: 0.3;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.filename-tag {
  letter-spacing: 0.5px !important;
}

.duration-badge {
  background: rgba(13, 27, 62, 0.06) !important;
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 3px 8px !important;
  border-radius: 6px !important;
}

/* Video Thumbnail Card */
.about-video-section .video-thumbnail-card {
  position: relative !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  height: 480px !important;
  cursor: pointer !important;
  background-color: var(--navy) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15) !important;
}

.video-img-zoom-wrapper {
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.about-video-section .video-thumbnail-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease !important;
  filter: brightness(0.9) !important;
}

.about-video-section .video-thumbnail-card:hover .video-thumbnail-img {
  transform: scale(1.05) !important;
  filter: brightness(0.95) !important;
}

/* Vignette Overlay */
.about-video-section .video-thumbnail-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to bottom, rgba(13, 27, 62, 0.2), rgba(13, 27, 62, 0.6)) !important;
  transition: opacity 0.4s ease !important;
  z-index: 2 !important;
}

.about-video-section .video-thumbnail-card:hover .video-thumbnail-overlay {
  opacity: 0.8 !important;
}

/* Tech Blueprint Overlay Grid */
.video-blueprint-grid-overlay {
  position: absolute !important;
  inset: 0 !important;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
  background-size: 30px 30px !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

/* Corner steel brackets details */
.corner-brace {
  position: absolute !important;
  width: 16px !important;
  height: 16px !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  border-style: solid !important;
  z-index: 3 !important;
  pointer-events: none !important;
  transition: all 0.4s ease !important;
}

.brace-tl {
  top: 20px !important;
  left: 20px !important;
  border-width: 2.5px 0 0 2.5px !important;
}

.brace-tr {
  top: 20px !important;
  right: 20px !important;
  border-width: 2.5px 2.5px 0 0 !important;
}

.brace-bl {
  bottom: 20px !important;
  left: 20px !important;
  border-width: 0 0 2.5px 2.5px !important;
}

.brace-br {
  bottom: 20px !important;
  right: 20px !important;
  border-width: 0 2.5px 2.5px 0 !important;
}

.about-video-section .video-thumbnail-card:hover .corner-brace {
  border-color: var(--orange) !important;
  width: 22px !important;
  height: 22px !important;
}

.about-video-section .video-thumbnail-card:hover .brace-tl {
  top: 15px !important;
  left: 15px !important;
}

.about-video-section .video-thumbnail-card:hover .brace-tr {
  top: 15px !important;
  right: 15px !important;
}

.about-video-section .video-thumbnail-card:hover .brace-bl {
  bottom: 15px !important;
  left: 15px !important;
}

.about-video-section .video-thumbnail-card:hover .brace-br {
  bottom: 15px !important;
  right: 15px !important;
}

/* Pulsing play button wrapper */
.about-video-section .video-play-btn-wrapper {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 20px !important;
  z-index: 4 !important;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-video-section .video-thumbnail-card:hover .video-play-btn-wrapper {
  transform: translate(-50%, -50%) scale(1.05) !important;
}

.about-video-section .video-play-btn {
  width: 80px !important;
  height: 80px !important;
  background-color: var(--orange) !important;
  color: var(--white) !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 10px 30px rgba(244, 123, 32, 0.4) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative !important;
  z-index: 3 !important;
  border: none !important;
}

.about-video-section .video-thumbnail-card:hover .video-play-btn {
  background-color: var(--orange-dark) !important;
  box-shadow: 0 15px 45px rgba(244, 123, 32, 0.6) !important;
}

.about-video-section .play-icon-svg {
  width: 28px !important;
  height: 28px !important;
  margin-left: 4px !important;
  transition: transform 0.4s ease !important;
}

.about-video-section .video-thumbnail-card:hover .play-icon-svg {
  transform: scale(1.1) !important;
}

/* Pulsing radar circles */
.video-play-pulse-circle {
  position: absolute !important;
  width: 80px !important;
  height: 80px !important;
  border: 1px solid rgba(244, 123, 32, 0.4) !important;
  border-radius: 50% !important;
  z-index: 1 !important;
  pointer-events: none !important;
}

.circle-1 {
  animation: radarWave 2.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite !important;
}

.circle-2 {
  animation: radarWave 2.5s cubic-bezier(0.1, 0.8, 0.3, 1) infinite !important;
  animation-delay: 1.25s !important;
}

@keyframes radarWave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Play label design */
.play-btn-label-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  text-align: center !important;
}

.about-video-section .play-btn-label {
  font-family: var(--font-display) !important;
  color: var(--white) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  margin-top: 4px !important;
  transition: color 0.3s ease !important;
}

.about-video-section .video-thumbnail-card:hover .play-btn-label {
  color: var(--orange-light) !important;
}

.play-btn-sublabel {
  font-size: 0.72rem !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  font-weight: 500 !important;
}

.hidden-svg-filter {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
}

/* =============================================
   SERVICES PAGE VIEW MORE BUTTON
   ============================================= */
.service-card-hidden {
  display: none !important;
}

.services-view-more-wrapper {
  margin-top: 56px !important;
  text-align: center !important;
}

.btn-view-more-tech {
  background: var(--orange-dark) !important;
  color: var(--white) !important;
  border: 1px solid rgba(13, 27, 62, 0.1) !important;
  font-family: var(--font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 750 !important;
  letter-spacing: 1.5px !important;
  padding: 16px 40px !important;
  border-radius: 50px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.08) !important;
  cursor: pointer !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  text-transform: uppercase !important;
}

.btn-view-more-tech:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 35px rgba(244, 123, 32, 0.25) !important;
  border-color: var(--orange) !important;
}

.btn-view-more-tech svg {
  transition: transform 0.3s ease !important;
}

.btn-view-more-tech:hover svg {
  transform: translateY(2px) !important;
}

/* =============================================
   PAGINATION STYLING FOR BLOGS PAGE
   ============================================= */
.tech-pagination-wrapper {
  margin-top: 64px !important;
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
}

.tech-pagination-container {
  display: inline-flex !important;
  align-items: center !important;
  gap: 16px !important;
  background: rgba(13, 27, 62, 0.02) !important;
  border: 1px solid rgba(13, 27, 62, 0.06) !important;
  padding: 10px 16px !important;
  border-radius: 50px !important;
  box-shadow: var(--shadow-sm) !important;
  backdrop-filter: blur(10px) !important;
}

.pagination-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--white) !important;
  border: 1px solid rgba(13, 27, 62, 0.08) !important;
  color: var(--navy) !important;
  font-family: var(--font-display) !important;
  font-size: 0.85rem !important;
  font-weight: 750 !important;
  letter-spacing: 1px !important;
  padding: 10px 20px !important;
  border-radius: 30px !important;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 4px 10px rgba(13, 27, 62, 0.03) !important;
}

.pagination-btn:not(.disabled):hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  border-color: var(--orange) !important;
  transform: translateY(-1.5px) !important;
  box-shadow: 0 6px 15px rgba(244, 123, 32, 0.2) !important;
}

.pagination-btn.disabled {
  opacity: 0.5 !important;
  cursor: not-allowed !important;
  background: rgba(13, 27, 62, 0.03) !important;
  border-color: transparent !important;
}

.pagination-numbers {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.pagination-num {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  font-family: var(--font-display) !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: var(--navy) !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  background: transparent !important;
}

.pagination-num:not(.active):hover {
  background: rgba(13, 27, 62, 0.05) !important;
  border-color: rgba(13, 27, 62, 0.1) !important;
}

.pagination-num.active {
  background: var(--navy) !important;
  color: var(--white) !important;
  box-shadow: 0 6px 12px rgba(13, 27, 62, 0.2) !important;
}

/* Glassmorphic overrides for Product Cards inside gradient sections */

[class*="home-section-grad-"] .prod-card-title {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .prod-card:hover .prod-card-title {
  color: var(--orange-light) !important;
}

[class*="home-section-grad-"] .prod-card-cta {
  color: var(--white) !important;
  opacity: 0.85 !important;
}

[class*="home-section-grad-"] .prod-card:hover .prod-card-cta {
  color: var(--orange-light) !important;
  opacity: 1 !important;
}

[class*="home-section-grad-"] .prod-card-img-wrap {
  background: rgba(255, 255, 255, 0.05) !important;
}

[class*="home-section-grad-"] .prod-card-img-placeholder {
  background: rgba(255, 255, 255, 0.03) !important;
}

/* Scoped text color adjustments for transparent premium CTA card on gradient sections */
[class*="home-section-grad-"] .premium-cta-card .cta-headline {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .premium-cta-card .cta-description {
  color: rgba(255, 255, 255, 0.78) !important;
}

[class*="home-section-grad-"] .premium-cta-card .cta-features-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

[class*="home-section-grad-"] .premium-cta-card .cta-feature-text {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .premium-cta-card .cta-tagline {
  background: rgba(214, 96, 7, 0.15) !important;
  color: var(--orange-light) !important;
  border-color: rgba(214, 96, 7, 0.2) !important;
}

[class*="home-section-grad-"] .premium-cta-card {
  padding: 56px 48px !important;
}

/* Glassmorphic overrides for Project Cards inside gradient sections */

[class*="home-section-grad-"] .proj-min-title {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .proj-min-card:hover .proj-min-title {
  color: var(--orange-light) !important;
}

[class*="home-section-grad-"] .proj-min-cta {
  color: var(--orange-light) !important;
}

[class*="home-section-grad-"] .proj-min-card:hover .proj-min-cta {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .proj-min-img-wrap {
  background: rgba(255, 255, 255, 0.05) !important;
}

/* Minimally Striped CTA adjustments */
[class*="home-section-grad-"] .cta-minimal-strip {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

[class*="home-section-grad-"] .cta-minimal-text {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Service arrow button adjustments */
[class*="home-section-grad-"] .service-arrow-btn {
  background: rgba(255, 255, 255, 0.05) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .service-card:hover .service-arrow-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
}

/* Hide separation lines for visual continuity */
[class*="home-section-grad-"] .cert-top-separator {
  display: none !important;
}

/* Service card footer border override */
[class*="home-section-grad-"] .service-card-footer {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

/* Branch list item border override */
[class*="home-section-grad-"] .branch-item-new {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

/* Glass glare sweep shimmer animation */
[class*="home-section-grad-"] .service-card,
[class*="home-section-grad-"] .prod-card,
[class*="home-section-grad-"] .proj-min-card,
[class*="home-section-grad-"] .testimonial-card,
[class*="home-section-grad-"] .contact-form-card,
[class*="home-section-grad-"] .info-card-new,
[class*="home-section-grad-"] .premium-cta-card,
[class*="home-section-grad-"] .highlight-card,
[class*="home-section-grad-"] .why-val-card,
[class*="home-section-grad-"] .benefit-casual-item,
[class*="home-section-grad-"] .cert-frame,
[class*="home-section-grad-"] .video-thumbnail-card,
[class*="home-section-grad-"] .process-step-card-recent,
[class*="home-section-grad-"] .service-inquiry-card,
[class*="home-section-grad-"] .category-card,
[class*="home-section-grad-"] .enquiry-pane-card,
[class*="home-section-grad-"] .product-action-block,
[class*="home-section-grad-"] .safety-rule-card,
[class*="home-section-grad-"] .related-card,
[class*="home-section-grad-"] .project-card,
[class*="home-section-grad-"] .modern-blog-card,
[class*="home-section-grad-"] .featured-blog-card,
[class*="home-section-grad-"] .sidebar-widget,
[class*="home-section-grad-"] .faq-sidebar-card,
[class*="home-section-grad-"] .faq-item,
[class*="home-section-grad-"] .office-profile-grid,
[class*="home-section-grad-"] .cmf-map-card,
[class*="home-section-grad-"] .cmf-form-col,
[class*="home-section-grad-"] .cmf-map-col {
  position: relative;
  overflow: hidden;
}

[class*="home-section-grad-"] .service-card::after,
[class*="home-section-grad-"] .prod-card::after,
[class*="home-section-grad-"] .proj-min-card::after,
[class*="home-section-grad-"] .testimonial-card::after,
[class*="home-section-grad-"] .contact-form-card::after,
[class*="home-section-grad-"] .info-card-new::after,
[class*="home-section-grad-"] .premium-cta-card::after,
[class*="home-section-grad-"] .highlight-card::after,
[class*="home-section-grad-"] .why-val-card::after,
[class*="home-section-grad-"] .benefit-casual-item::after,
[class*="home-section-grad-"] .cert-frame::after,
[class*="home-section-grad-"] .video-thumbnail-card::after,
[class*="home-section-grad-"] .process-step-card-recent::after,
[class*="home-section-grad-"] .service-inquiry-card::after,
[class*="home-section-grad-"] .category-card::after,
[class*="home-section-grad-"] .enquiry-pane-card::after,
[class*="home-section-grad-"] .product-action-block::after,
[class*="home-section-grad-"] .safety-rule-card::after,
[class*="home-section-grad-"] .related-card::after,
[class*="home-section-grad-"] .project-card::after,
[class*="home-section-grad-"] .modern-blog-card::after,
[class*="home-section-grad-"] .featured-blog-card::after,
[class*="home-section-grad-"] .sidebar-widget::after,
[class*="home-section-grad-"] .faq-sidebar-card::after,
[class*="home-section-grad-"] .faq-item::after,
[class*="home-section-grad-"] .office-profile-grid::after,
[class*="home-section-grad-"] .cmf-map-card::after,
[class*="home-section-grad-"] .cmf-form-col::after,
[class*="home-section-grad-"] .cmf-map-col::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.08) 20%,
    rgba(255, 255, 255, 0.22) 50%,
    rgba(255, 255, 255, 0.08) 80%,
    transparent
  );
  transform: skewX(-25deg);
  pointer-events: none;
  z-index: 5;
  transition: none;
}

[class*="home-section-grad-"] .service-card:hover::after,
[class*="home-section-grad-"] .prod-card:hover::after,
[class*="home-section-grad-"] .proj-min-card:hover::after,
[class*="home-section-grad-"] .testimonial-card:hover::after,
[class*="home-section-grad-"] .contact-form-card:hover::after,
[class*="home-section-grad-"] .info-card-new:hover::after,
[class*="home-section-grad-"] .premium-cta-card:hover::after,
[class*="home-section-grad-"] .highlight-card:hover::after,
[class*="home-section-grad-"] .why-val-card:hover::after,
[class*="home-section-grad-"] .benefit-casual-item:hover::after,
[class*="home-section-grad-"] .cert-frame:hover::after,
[class*="home-section-grad-"] .video-thumbnail-card:hover::after,
[class*="home-section-grad-"] .process-step-card-recent:hover::after,
[class*="home-section-grad-"] .service-inquiry-card:hover::after,
[class*="home-section-grad-"] .category-card:hover::after,
[class*="home-section-grad-"] .enquiry-pane-card:hover::after,
[class*="home-section-grad-"] .product-action-block:hover::after,
[class*="home-section-grad-"] .safety-rule-card:hover::after,
[class*="home-section-grad-"] .related-card:hover::after,
[class*="home-section-grad-"] .project-card:hover::after,
[class*="home-section-grad-"] .modern-blog-card:hover::after,
[class*="home-section-grad-"] .featured-blog-card:hover::after,
[class*="home-section-grad-"] .sidebar-widget:hover::after,
[class*="home-section-grad-"] .faq-sidebar-card:hover::after,
[class*="home-section-grad-"] .faq-item:hover::after,
[class*="home-section-grad-"] .office-profile-grid:hover::after,
[class*="home-section-grad-"] .cmf-map-card:hover::after,
[class*="home-section-grad-"] .cmf-form-col:hover::after,
[class*="home-section-grad-"] .cmf-map-col:hover::after {
  left: 150%;
  transition: left 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide background animations and texture layers to make background a solid clean gradient */
.homepage-animated-bg .bg-liquid-orbs,
.homepage-animated-bg .bg-glow-orb,
.homepage-animated-bg .bg-video-element {
  display: none !important;
}

/* Custom Parallax translates overrides on scroll */
.homepage-animated-bg .wireframe-left {
  left: 5% !important;
  top: 15% !important;
  transform: translateY(var(--parallax-offset, 0px)) !important;
  animation: none !important;
}

.homepage-animated-bg .wireframe-right {
  right: 5% !important;
  bottom: 12% !important;
  transform: translateY(var(--parallax-offset, 0px)) scale(0.85) rotate(15deg) !important;
  animation: none !important;
}

.homepage-animated-bg .blueprint-crosshair-1 {
  left: 8% !important;
  top: 35% !important;
  transform: translateY(var(--parallax-offset, 0px)) !important;
  animation: none !important;
}

.homepage-animated-bg .blueprint-dimension-1 {
  right: 12% !important;
  top: 55% !important;
  transform: translateY(var(--parallax-offset, 0px)) !important;
  animation: none !important;
}

.homepage-animated-bg .blueprint-angle-1 {
  left: 10% !important;
  bottom: 25% !important;
  transform: translateY(var(--parallax-offset, 0px)) !important;
  animation: none !important;
}

[class*="home-section-grad-"] .cert-bg-layer,
[class*="home-section-grad-"] .cert-bg-glow,
[class*="home-section-grad-"] .cert-bg-grid,
[class*="home-section-grad-"] .cert-bg-wireframe,
[class*="home-section-grad-"] .contact-orb,
[class*="home-section-grad-"] .cta-glow-orb {
  display: none !important;
}

/* Custom Cursor Ambient Glow Light */
.custom-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(214, 96, 7, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: -1; /* Float behind content panels but on top of the background gradient */
  mix-blend-mode: screen;
  will-change: transform;
  transform: translate3d(-9999px, -9999px, 0); /* Hide initially */
}

/* Enable 3D nested tilt preserve-3d */
.services-container,
.about-section-container,
.gallery-container,
.categories-section,
.why-choose-container,
.projects-section,
.testimonials-container,
.premium-cta-container,
.contact-section,
.blog-section,
.partners-container,
.benefits-casual-container,
.cert-showcase-container,
.process-steps-grid,
.service-details-main-grid,
.categories-grid,
.product-intro-grid,
.product-tabs-container,
.related-products-grid {
  transform-style: preserve-3d !important;
}

/* About Page Specific Text Legibility */
[class*="home-section-grad-"] .highlight-card h4,
[class*="home-section-grad-"] .why-val-card h3,
[class*="home-section-grad-"] .cert-footer-title,
[class*="home-section-grad-"] .benefit-casual-item h3 {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .highlight-card p,
[class*="home-section-grad-"] .why-val-card p,
[class*="home-section-grad-"] .cert-footer-sub,
[class*="home-section-grad-"] .benefit-casual-item p {
  color: rgba(255, 255, 255, 0.7) !important;
}

[class*="home-section-grad-"] .benefit-casual-item {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Hide cert showcase container glows */
[class*="home-section-grad-"] .cert-showcase-section::before,
[class*="home-section-grad-"] .cert-showcase-section::after {
  display: none !important;
}

/* Service Details Page Legibility Overrides */
[class*="home-section-grad-"] .service-detail-title,
[class*="home-section-grad-"] .cmf-form-title,
[class*="home-section-grad-"] .cmf-label,
[class*="home-section-grad-"] .process-step-title,
[class*="home-section-grad-"] .service-benefits-section h2,
[class*="home-section-grad-"] .benefit-list-item h4 {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .cmf-form-subtitle,
[class*="home-section-grad-"] .benefit-list-item p,
[class*="home-section-grad-"] .process-step-desc,
[class*="home-section-grad-"] .service-detail-description,
[class*="home-section-grad-"] .service-detail-description p {
  color: rgba(255, 255, 255, 0.72) !important;
}

[class*="home-section-grad-"] .process-step-num-huge {
  color: rgba(255, 255, 255, 0.05) !important;
}

/* Form input elements inside glass cards */
[class*="home-section-grad-"] .cmf-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
}
[class*="home-section-grad-"] .cmf-input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}
[class*="home-section-grad-"] .cmf-input:focus {
  border-color: var(--orange) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Hide line separators on detail page */
[class*="home-section-grad-"] .service-inquiry-card {
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
[class*="home-section-grad-"] .process-step-card-recent .card-top-bar {
  background: rgba(255, 255, 255, 0.1) !important;
}

/* Product Page Specific Text Legibility Overrides */
[class*="home-section-grad-"] .product-main-title,
[class*="home-section-grad-"] .product-main-tagline,
[class*="home-section-grad-"] .quantity-label,
[class*="home-section-grad-"] .enquiry-pane-title,
[class*="home-section-grad-"] .safety-rule-title,
[class*="home-section-grad-"] .related-sec-title,
[class*="home-section-grad-"] .related-card-title,
[class*="home-section-grad-"] .specs-label,
[class*="home-section-grad-"] .specs-value {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .product-short-desc,
[class*="home-section-grad-"] .enquiry-pane-subtitle,
[class*="home-section-grad-"] .safety-rule-desc,
[class*="home-section-grad-"] .related-card-desc,
[class*="home-section-grad-"] .product-highlights-list li,
[class*="home-section-grad-"] .quantity-input {
  color: rgba(255, 255, 255, 0.72) !important;
}

[class*="home-section-grad-"] .quantity-btn {
  color: var(--white) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}
[class*="home-section-grad-"] .quantity-selector {
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.04) !important;
}
[class*="home-section-grad-"] .quantity-input {
  background: transparent !important;
  border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-right: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: rgba(255, 255, 255, 0.72) !important;
}
[class*="home-section-grad-"] .quantity-label {
  color: var(--white) !important;
  opacity: 0.9;
}

/* Tech Specs table styling */
[class*="home-section-grad-"] .specs-table tr {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
[class*="home-section-grad-"] .specs-table tr:nth-child(even) {
  background-color: rgba(255, 255, 255, 0.03) !important;
}
[class*="home-section-grad-"] .specs-table tr:hover {
  background-color: rgba(255, 255, 255, 0.06) !important;
}
[class*="home-section-grad-"] .specs-label {
  background-color: rgba(255, 255, 255, 0.02) !important;
  font-weight: 700 !important;
}
[class*="home-section-grad-"] .specs-table-box {
  border-color: rgba(255, 255, 255, 0.1) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

/* Form Row overrides */
[class*="home-section-grad-"] .enquiry-b2b-form .form-label {
  color: var(--white) !important;
}
[class*="home-section-grad-"] .enquiry-b2b-form .form-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
}
[class*="home-section-grad-"] .enquiry-b2b-form .form-input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}
[class*="home-section-grad-"] .enquiry-b2b-form .form-input:focus {
  border-color: var(--orange) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}
[class*="home-section-grad-"] .enquiry-b2b-form select option {
  background-color: #0d1b3e !important;
  color: var(--white) !important;
}
[class*="home-section-grad-"] .form-trust-row .trust-badge-item {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Tab triggers style overrides */
[class*="home-section-grad-"] .tabs-header-row {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}
[class*="home-section-grad-"] .tab-trigger {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-weight: 700 !important;
}
[class*="home-section-grad-"] .tab-trigger:hover {
  color: var(--white) !important;
}
[class*="home-section-grad-"] .tab-trigger.active {
  background: transparent !important;
  color: var(--white) !important;
}
[class*="home-section-grad-"] .tab-trigger.active::after {
  background-color: var(--orange) !important;
}

/* Products List Page Controls & Pagination Overrides */

[class*="home-section-grad-"] .search-wrapper input,
[class*="home-section-grad-"] .select-wrapper select {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .search-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

[class*="home-section-grad-"] .select-wrapper select option {
  background-color: #0d1b3e !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .pag-btn,
[class*="home-section-grad-"] .pag-num {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .pag-btn.disabled {
  background: rgba(255, 255, 255, 0.02) !important;
  border-color: rgba(255, 255, 255, 0.05) !important;
  color: rgba(255, 255, 255, 0.3) !important;
}

/* Projects Page Specific Text Legibility Overrides */
[class*="home-section-grad-"] .project-card-title,
[class*="home-section-grad-"] .spec-label,
[class*="home-section-grad-"] .spec-value {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .project-desc {
  color: rgba(255, 255, 255, 0.72) !important;
}

[class*="home-section-grad-"] .project-number-tag {
  color: rgba(255, 255, 255, 0.06) !important;
}

[class*="home-section-grad-"] .project-specs-grid {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

/* Enable 3D tilt containers for blog page */
.blog-details-grid,
.modern-blog-grid {
  transform-style: preserve-3d !important;
}

/* Blog Page Specific Text Legibility Overrides */
[class*="home-section-grad-"] .blog-title,
[class*="home-section-grad-"] .modern-blog-title a,
[class*="home-section-grad-"] .featured-title a,
[class*="home-section-grad-"] .modern-read-more,
[class*="home-section-grad-"] .blog-article-body h1,
[class*="home-section-grad-"] .blog-article-body h2,
[class*="home-section-grad-"] .blog-article-body h3,
[class*="home-section-grad-"] .blog-article-body h4,
[class*="home-section-grad-"] .widget-title,
[class*="home-section-grad-"] .recent-post-title,
[class*="home-section-grad-"] .download-title {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .blog-subtitle,
[class*="home-section-grad-"] .modern-blog-desc,
[class*="home-section-grad-"] .modern-blog-date,
[class*="home-section-grad-"] .featured-desc,
[class*="home-section-grad-"] .blog-article-body,
[class*="home-section-grad-"] .blog-article-body p,
[class*="home-section-grad-"] .download-desc,
[class*="home-section-grad-"] .recent-post-cat {
  color: rgba(255, 255, 255, 0.72) !important;
}

[class*="home-section-grad-"] .modern-blog-footer {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

[class*="home-section-grad-"] .widget-title {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}
[class*="home-section-grad-"] .recent-post-item {
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}
[class*="home-section-grad-"] .blog-post-meta-detailed {
  border-bottom-color: rgba(255, 255, 255, 0.1) !important;
}
[class*="home-section-grad-"] .meta-detail-item {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Blogs Page Controls & Pagination Overrides */

[class*="home-section-grad-"] .blogs-controls input {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .blogs-controls input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

/* Remove solid background and borders from main content and sidebar widgets to inherit liquid glass card styles */
[class*="home-section-grad-"] .blog-main-content {
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}

.blog-sidebar .sidebar-widget:not(.download-widget) {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Enable 3D tilt containers for FAQ page */
.faq-page-container {
  transform-style: preserve-3d !important;
}

/* FAQ Page Specific Text Legibility Overrides */
[class*="home-section-grad-"] .faq-sidebar-title,
[class*="home-section-grad-"] .support-value,
[class*="home-section-grad-"] .faq-question {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .faq-sidebar-desc,
[class*="home-section-grad-"] .support-label,
[class*="home-section-grad-"] .faq-content p {
  color: rgba(255, 255, 255, 0.72) !important;
}

[class*="home-section-grad-"] .faq-chevron {
  color: rgba(255, 255, 255, 0.6) !important;
}
[class*="home-section-grad-"] .faq-item.active .faq-chevron {
  color: var(--orange) !important;
}

[class*="home-section-grad-"] .faq-support-box {
  border-top-color: rgba(255, 255, 255, 0.08) !important;
}

/* Accordion Active States */
[class*="home-section-grad-"] .faq-item.active {
  border-color: rgba(214, 96, 7, 0.45) !important;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(214, 96, 7, 0.05) 100%) !important;
}

/* Category Filter Pill Overrides */
[class*="home-section-grad-"] .faq-pill {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.72) !important;
}

[class*="home-section-grad-"] .faq-pill:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: var(--orange) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .faq-pill.active {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: var(--white) !important;
}

/* Enable 3D tilt containers for Contact page */
.office-tabs-wrapper,
.contact-map-form-grid {
  transform-style: preserve-3d !important;
}

/* Contact Page Specific Text Legibility Overrides */
[class*="home-section-grad-"] .contact-title,
[class*="home-section-grad-"] .opg-office-title,
[class*="home-section-grad-"] .opg-value,
[class*="home-section-grad-"] .cmf-form-title,
[class*="home-section-grad-"] .cmf-label {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .contact-subtitle,
[class*="home-section-grad-"] .opg-address-text,
[class*="home-section-grad-"] .opg-label,
[class*="home-section-grad-"] .opg-meta,
[class*="home-section-grad-"] .cmf-form-subtitle {
  color: rgba(255, 255, 255, 0.72) !important;
}

[class*="home-section-grad-"] .opg-address-block {
  border-right-color: rgba(255, 255, 255, 0.08) !important;
  border-bottom-color: rgba(255, 255, 255, 0.08) !important;
}

[class*="home-section-grad-"] .opg-contact-row:not(:last-child)::after {
  background: rgba(255, 255, 255, 0.06) !important;
}

[class*="home-section-grad-"] .cmf-select option {
  background-color: #0d1b3e !important;
  color: var(--white) !important;
}

/* Tab Navigation Bar Overrides */
[class*="home-section-grad-"] .office-tab-nav {
  background: rgba(255, 255, 255, 0.03) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

[class*="home-section-grad-"] .office-tab-btn {
  background: rgba(255, 255, 255, 0.03) !important;
  color: rgba(255, 255, 255, 0.7) !important;
}

[class*="home-section-grad-"] .office-tab-btn:not(.active):hover {
  background: rgba(255, 255, 255, 0.08) !important;
  color: var(--white) !important;
}

[class*="home-section-grad-"] .office-tab-btn.active {
  background: var(--orange) !important;
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(214, 96, 7, 0.3) !important;
}

/* Remove solid background and borders from office grids & maps to inherit liquid glass card styles */


[class*="home-section-grad-"] .cmf-map-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

[class*="home-section-grad-"] .blog-section,
[class*="home-section-grad-"] .blog-details-section,
[class*="home-section-grad-"] .product-details-section {
  background: transparent !important;
}

/* Middle Call to Action Section styling */
.middle-cta-section {
  background: transparent;
  padding: 10px 0 20px 0;
}

.middle-cta-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.middle-cta-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.middle-cta-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.middle-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1;
}

.middle-cta-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange-light);
  background: rgba(214, 96, 7, 0.1);
  padding: 4px 10px;
  border-radius: 20px;
}

.middle-cta-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.55;
  margin: 0;
}

.middle-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.middle-cta-btn:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 6px 18px rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.middle-cta-btn svg {
  transition: transform 0.3s ease;
}

.middle-cta-btn:hover svg {
  transform: translate(2px, -2px);
}

@media (max-width: 768px) {
  .middle-cta-card {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 24px;
    gap: 24px;
    text-align: left;
  }
  .middle-cta-btn {
    justify-content: center;
  }
}

/* Responsive Typography Auto-Adjust overrides */
@media (max-width: 960px) {
  .section-title {
    font-size: 1.95rem !important;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.85rem !important;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.55rem !important;
  }
}

/* =============================================
   SERVICE DETAILS FAQ SECTION STYLING
   ============================================= */
.service-faq-section {
  padding: 80px 0;
  background: transparent;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  align-items: start;
}

.faq-cta-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-cta-card-wrapper {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(13, 27, 62, 0.08);
  position: relative;
  overflow: hidden;
}

.sidebar-cta-card-wrapper .cta-orb {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(214, 96, 7, 0.15);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.sidebar-cta-card-wrapper .section-badge {
  background: rgba(214, 96, 7, 0.2);
  color: var(--orange);
  border: 1px solid rgba(214, 96, 7, 0.3);
  margin-bottom: 20px;
  display: inline-block;
}

.sidebar-cta-card-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
  color: var(--white);
}

.sidebar-cta-card-wrapper p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.sidebar-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sidebar-cta-btn {
  text-align: center;
  padding: 14px 20px;
  border-radius: 8px;
  font-weight: 700;
  font-family: var(--font-main);
  text-decoration: none !important;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sidebar-cta-btn--primary {
  background: var(--orange);
  color: var(--white) !important;
  box-shadow: 0 4px 12px rgba(214, 96, 7, 0.25);
}

.sidebar-cta-btn--primary:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

.sidebar-cta-btn--secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--white) !important;
}

.sidebar-cta-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-1px);
}

.faq-header-block {
  margin-bottom: 32px;
}

.faq-header-block .section-badge {
  background: rgba(214, 96, 7, 0.08);
  color: var(--orange);
  display: inline-block;
  margin-bottom: 12px;
}

.faq-header-block .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-top: 12px;
  margin-bottom: 0;
}

.faq-details-container .faq-item {
  margin-bottom: 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

.faq-details-container .faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  text-align: left;
  cursor: pointer;
}

.faq-details-container .faq-chevron {
  transition: transform 0.3s ease;
  color: var(--gray-500);
}

.faq-details-container .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-details-container .faq-content-inner {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* Gradient overrides for FAQ */
[class*="home-section-grad-"] .sidebar-cta-card-wrapper {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

[class*="home-section-grad-"] .faq-details-container .faq-item {
  border-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.02) !important;
}

[class*="home-section-grad-"] .faq-details-container .faq-trigger {
  color: var(--white) !important;
}

[class*="home-section-grad-"] .faq-details-container .faq-content-inner {
  color: rgba(255, 255, 255, 0.72) !important;
}

[class*="home-section-grad-"] .faq-header-block .section-title {
  color: var(--white) !important;
}

@media (max-width: 991px) {
  .service-faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-cta-sidebar {
    position: static;
  }
}

/* =============================================
   HOME GALLERY & LIGHTBOX STYLING
   ============================================= */
.gallery-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 56px;
}

.gallery-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: inherit;
  margin-bottom: 0;
  position: relative;
  padding-bottom: 16px;
}

.gallery-lightbox-modal {
  position: fixed;
  inset: 0;
  background: rgba(13, 27, 62, 0.98);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.gallery-lightbox-modal .lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.3s;
  z-index: 10001;
}

.gallery-lightbox-modal .lightbox-close:hover {
  transform: scale(1.1);
}

.gallery-lightbox-modal .lightbox-nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  z-index: 10001;
}

.gallery-lightbox-modal .lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.05);
}

.gallery-lightbox-modal .lightbox-prev {
  left: 24px;
}

.gallery-lightbox-modal .lightbox-next {
  right: 24px;
}

.gallery-lightbox-modal .lightbox-content-wrapper {
  max-width: 90%;
  max-height: 80%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.gallery-lightbox-modal #lightbox-img {
  max-width: 100%;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-lightbox-modal .lightbox-caption {
  text-align: center;
  margin-top: 20px;
  color: var(--white);
  width: 100%;
}

.gallery-lightbox-modal #lightbox-loc {
  color: var(--orange);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}

.gallery-lightbox-modal #lightbox-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 850;
  margin: 0;
}

/* Category Title Styling */
.categories-header .section-title,
.categories-header-centered .section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.5rem);
  font-weight: 850;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 0;
}

.categories-header .title-divider-line,
.categories-header-centered .title-divider-line,
.why-choose-top-header .title-divider-line,
.partners-header .title-divider-line {
  margin: 16px auto 0 auto;
  width: 60px;
  margin-bottom: 0;
}

.categories-header .title-divider-line {
  margin-left: 0;
}

@media (max-width: 768px) {
  .gallery-lightbox-modal .lightbox-nav {
    width: 44px;
    height: 44px;
  }
  .gallery-lightbox-modal .lightbox-prev {
    left: 12px;
  }
  .gallery-lightbox-modal .lightbox-next {
    right: 12px;
  }
  .gallery-title {
    font-size: 1.85rem !important;
  }
}

/* About Page Certificate Showcase Responsiveness overrides */
@media (max-width: 960px) {
  #about-certificates-section .cert-showcase-header {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 36px !important;
    margin-bottom: 40px !important;
  }

  #about-certificates-section .cert-showcase-header-left {
    max-width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  #about-certificates-section .cert-showcase-header-right {
    justify-content: center !important;
    gap: 48px !important;
    width: 100% !important;
  }

  #about-certificates-section .cert-showcase-stat {
    align-items: center !important;
    text-align: center !important;
  }

  #about-certificates-section .cert-stat-label {
    text-align: center !important;
  }
}

@media (max-width: 576px) {
  #about-certificates-section .cert-showcase-header-right {
    flex-direction: column !important;
    gap: 28px !important;
  }

  #about-certificates-section .cert-showcase-stat:not(:last-child)::after {
    display: none !important;
  }

  #about-certificates-section .cert-gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .tabs-header-row {
    gap: 18px !important;
    padding-bottom: 8px !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--orange) rgba(120, 120, 120, 0.15) !important;
  }

  .tabs-header-row::-webkit-scrollbar {
    display: block !important;
    height: 3px !important;
  }

  .tabs-header-row::-webkit-scrollbar-track {
    background: rgba(120, 120, 120, 0.15) !important;
    border-radius: 10px !important;
  }

  .tabs-header-row::-webkit-scrollbar-thumb {
    background: var(--orange) !important;
    border-radius: 10px !important;
  }

  .tab-trigger {
    font-size: 0.92rem !important;
    padding: 10px 0 !important;
  }
}

@media (max-width: 768px) {
  .tabs-header-row {
    gap: 28px !important;
    padding-bottom: 8px !important;
    scrollbar-width: thin !important;
    scrollbar-color: var(--orange) rgba(120, 120, 120, 0.15) !important;
  }

  .tabs-header-row::-webkit-scrollbar {
    display: block !important;
    height: 3px !important;
  }

  .tabs-header-row::-webkit-scrollbar-track {
    background: rgba(120, 120, 120, 0.15) !important;
    border-radius: 10px !important;
  }

  .tabs-header-row::-webkit-scrollbar-thumb {
    background: var(--orange) !important;
    border-radius: 10px !important;
  }

  .tab-trigger {
    font-size: 1.02rem !important;
    padding: 12px 2px !important;
  }
}