/* ================================
   Enhanced Quantumcore Styles
   Inspired by Vitic Design
   ================================ */

/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  width: 100%;
}

.dwn {
  background-color: #002244 !important;
  border: none !important;
}

:root {
  /* Brand Colors */
  --primary-blue: #003366;
  --primary-orange: #f59e0b;
  --dark-blue: #002244;
  --light-orange: #fcd34d;

  /* Neutral Colors */
  --black: #111827;
  --dark-gray: #1f2937;
  --medium-gray: #4b5563;
  --light-gray: #6b7280;
  --border-gray: #d1d5db;
  --bg-gray: #f3f4f6;
  --bg-light: #f9fafb;
  --white: #ffffff;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;

  /* Spacing */
  --section-padding-top: 40px;
  --section-padding-bottom: 20px;
  --container-width: 1200px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-gray);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  max-width: 100vw;
  padding-top: 101px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--black);
  margin: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin: 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1;
}

.btn-primary {
  background: var(--primary-orange);
  color: var(--white);
  border-color: var(--primary-orange);
}

.btn-primary:hover {
  background: #d97706;
  border-color: #d97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--primary-orange);
  border-color: var(--primary-orange);
}

.btn-outline:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.btn-white {
  background: var(--white);
  color: var(--primary-blue);
  border-color: var(--white);
}

.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-sm {
  padding: 10px 24px;
  font-size: 13px;
}

.btn-header {
  padding: 12px 28px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--primary-blue);
  padding: 12px 0;
  font-size: 14px;
}

.top-bar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  gap: 30px;
}

.top-label {
  color: var(--white);
}

.top-link {
  color: var(--white);
}

.top-link:hover {
  color: var(--light-orange);
}

.top-info {
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info svg {
  flex-shrink: 0;
}

.top-bar-right {
  color: var(--light-orange);
  font-weight: 500;
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9997;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: var(--white);
}

.header.scrolled .header-main {
  padding: 5px 0;
}

.header.scrolled .logo img {
  height: 80px;
  transition: height 0.3s ease;
}

.container-fluid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}

/* Header Main Section */
.header-main {
  background: var(--white);
  padding: 0px 0;
  border-bottom: 1px solid var(--border-gray);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

/* Header Center - Navigation */
.header-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-center .main-nav {
  width: 100%;
}

.header-center .nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-center .nav-item {
  position: relative;
}

.header-center .nav-link {
  display: block;
  padding: 30px 0;
  color: var(--dark-gray);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}

/* Hide dropdown arrow on desktop */
.dropdown-arrow {
  display: none;
}

.header-center .nav-link::after {
  content: '';
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary-orange);
  transition: var(--transition);
}

.header-center .nav-link:hover,
.header-center .nav-link.active {
  color: var(--primary-orange);
}

.header-center .nav-link:hover::after,
.header-center .nav-link.active::after {
  width: 100%;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-header svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn-header:hover svg {
  transform: translateY(2px);
}

.header-user {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: var(--transition);
}

.header-user:hover {
  color: var(--primary-orange);
}

.header-user svg {
  flex-shrink: 0;
  color: var(--dark-gray);
}

.user-text {
  display: flex;
  flex-direction: column;
}

.user-greeting {
  font-size: 11px;
  font-weight: 600;
  color: var(--light-gray);
  letter-spacing: 0.5px;
}

.user-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
  transition: var(--transition);
}

.user-link:hover {
  color: var(--primary-orange);
}

.header-cart {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: var(--primary-orange);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.header-cart:hover {
  background: #d97706;
}

.cart-link {
  position: relative;
  display: flex;
}

.cart-link svg {
  color: var(--white);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  background: var(--primary-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.cart-info {
  display: flex;
  flex-direction: column;
}

.cart-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.cart-total {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
}

/* Header Navigation (OLD - Now moved to header-center) */
.header-nav {
  display: none;
  /* Hide old navigation container */
}

/* ===== NAVIGATION ===== */
.main-nav {
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 18px 28px;
  position: relative;
  transition: var(--transition);
}

.nav-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--primary-orange);
}

/* Dropdown Menu */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  padding: 10px 0;
  border-radius: 0;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  text-transform: none;
  letter-spacing: 0;
}

.dropdown-menu a:hover {
  background: var(--bg-gray);
  color: var(--primary-orange);
}

/* Nested Dropdown Menu (Submenu) */
.dropdown-menu .has-dropdown {
  position: relative;
}

.dropdown-menu .has-dropdown>a {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  gap: 28px;
}

.submenu-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.dropdown-menu .has-dropdown:hover .submenu-arrow {
  transform: translateX(3px);
}

.dropdown-menu .submenu {
  position: absolute;
  top: 0;
  left: 100%;
  margin-left: 0;
  opacity: 0;
  visibility: hidden;
  display: none;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.dropdown-menu .has-dropdown:hover>.submenu {
  opacity: 1;
  visibility: visible;
  display: block;
  transform: translateX(0);
}

/* Coming Soon Badge */
.coming-soon-badge {
  display: inline-block;
  background: var(--primary-orange);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 12px;
  margin-left: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  vertical-align: middle;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 10001;
  position: relative;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
  touch-action: manipulation;
  user-select: none;
  -webkit-user-select: none;
  outline: none;
}

.mobile-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark-gray);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
  pointer-events: none;
}

.mobile-toggle:active {
  opacity: 0.7;
}

.mobile-toggle:focus-visible {
  outline: 2px solid var(--primary-orange);
  outline-offset: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

/* Desktop Navigation */
@media (min-width: 1193px) {
  .header-center {
    display: flex;
    position: static;
    width: auto;
    height: auto;
  }

  .mobile-toggle {
    display: none !important;
  }

  .mobile-menu-header {
    display: none !important;
  }
}

/* Mobile Navigation Styles */
@media (max-width: 1192px) {
  .header-center {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: var(--white);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    transition: left 0.3s ease;
    z-index: 10000;
    overflow-y: auto;
    display: block !important;
  }

  .header-center.active {
    left: 0;
  }

  /* Mobile Menu Header */
  .mobile-menu-header {
    display: none;
  }

  .header-center .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 15px 20px;
    border-bottom: 2px solid var(--bg-gray);
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .mobile-menu-logo img {
    height: 60px;
    width: auto;
  }

  .mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    transition: all 0.3s ease;
    border-radius: 4px;
  }

  .mobile-close-btn:hover {
    background: var(--bg-gray);
    color: var(--primary-orange);
  }

  .mobile-close-btn svg {
    width: 24px;
    height: 24px;
  }

  .mobile-toggle {
    display: flex !important;
    z-index: 10001;
    position: relative;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    touch-action: manipulation;
    transition: opacity 0.3s ease;
  }

  /* Hide hamburger when menu is open (we have close button inside menu) */
  .mobile-toggle.active {
    opacity: 0;
    pointer-events: none;
  }

  .header-wrapper {
    position: relative;
    z-index: 10001;
  }

  /* Ensure header layout on mobile */
  .header-main {
    position: relative;
    z-index: 10001;
    background: var(--white);
  }

  /* Mobile menu overlay */
  /* body.menu-open::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 9998;
    animation: fadeIn 0.3s ease;
    pointer-events: auto;
  } */

  @keyframes fadeIn {
    from {
      opacity: 0;
    }

    to {
      opacity: 1;
    }
  }

  .main-nav {
    padding: 20px 20px 20px;
    width: 100%;
  }

  .header-center .nav-list {
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
  }

  .header-center .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--bg-gray);
  }

  .header-center .nav-link {
    display: block;
    padding: 15px 0;
    font-size: 15px;
  }

  .header-center .nav-link::after {
    display: none;
  }

  /* Mobile Dropdown */
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-dropdown.active>.dropdown-menu {
    max-height: 500px;
    padding: 10px 0 10px 20px;
    padding-left: 0px !important;
  }

  .dropdown-menu li {
    border-bottom: none;
  }

  .dropdown-menu a {
    padding: 10px 0;
    font-size: 14px;
  }

  /* Mobile Nested Dropdown */
  .dropdown-menu .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    display: block;
    transform: none;
    padding: 0 0 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .dropdown-menu .has-dropdown.active>.submenu {
    max-height: 300px;
    padding: 5px 0 5px 15px;
    display: block;
  }

  /* Dropdown arrow for main PRODUCTS link */
  .dropdown-arrow {
    /* margin-left: 8px; */
    transition: transform 0.3s ease;
    position: absolute;
    right: 0px;
    top: 25px;
  }
}

.header-center .has-dropdown>a .dropdown-arrow {
  display: inline-block;
  vertical-align: middle;
}

.header-center .has-dropdown.active>a .dropdown-arrow {
  transform: rotate(180deg);
}

.submenu-arrow {
  transform: rotate(90deg);
}

.dropdown-menu .has-dropdown.active .submenu-arrow {
  transform: rotate(90deg) translateX(3px);
}

.coming-soon-badge {
  display: block;
  margin-left: 0;
  margin-top: 5px;
  width: fit-content;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  padding: 50px 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
  overflow: hidden;
}

.hero .container {
  max-width: 1344px;
}


.hero-wrapper {
  display: flex;
  /* grid-template-columns: 1fr 1.2fr; */
  align-items: center;
  justify-content: left;

}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  max-height: 350px;
  width: auto;
  height: auto;
  border-radius: 12px;
}

/* ============================================
   HERO ANIMATION DEMOS - ALL HIDDEN BY DEFAULT
   ============================================ */

/* DEMO 1: 3D Rotating Carousel */
.hero-animation-demo1 {
  perspective: 1200px;
  width: 100%;
  max-width: 500px;
}

.carousel-3d {
  position: relative;
  width: 100%;
  height: 350px;
  transform-style: preserve-3d;
  animation: rotate3d 20s infinite linear;
}

.carousel-3d-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.carousel-3d-item.active {
  opacity: 1;
  animation: cardFlip 6s ease-in-out infinite;
}

.carousel-3d-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}



@keyframes rotate3d {

  0%,
  100% {
    transform: rotateY(0deg);
  }

  33% {
    transform: rotateY(120deg);
  }

  66% {
    transform: rotateY(240deg);
  }
}

@keyframes cardFlip {

  0%,
  100% {
    transform: rotateY(0deg) scale(1);
  }

  25% {
    transform: rotateY(10deg) scale(1.05);
  }

  50% {
    transform: rotateY(0deg) scale(1);
  }

  75% {
    transform: rotateY(-10deg) scale(1.05);
  }
}

.carousel-3d:hover {
  animation-play-state: paused;
}

/* DEMO 2: Floating + Pulse Animation */
.hero-animation-demo2 {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.floating-image {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.floating-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(245, 158, 11, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow 2s ease-in-out infinite;
  z-index: -1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes glow {

  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* DEMO 3: Parallax Layers */
.hero-animation-demo3 {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 350px;
}

.parallax-container {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.parallax-layer {
  position: absolute;
  width: 100%;
  height: 100%;
}

.parallax-layer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.parallax-layer.layer-1 {
  animation: parallaxMove1 8s ease-in-out infinite;
  z-index: 3;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

.parallax-layer.layer-2 {
  animation: parallaxMove2 8s ease-in-out infinite;
  opacity: 0.6;
  z-index: 2;
  transform: scale(0.9);
}

.parallax-layer.layer-3 {
  animation: parallaxMove3 8s ease-in-out infinite;
  opacity: 0.3;
  z-index: 1;
  transform: scale(0.8);
}

@keyframes parallaxMove1 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-10px, -10px);
  }
}

@keyframes parallaxMove2 {

  0%,
  100% {
    transform: scale(0.9) translate(0, 0);
  }

  50% {
    transform: scale(0.9) translate(15px, 10px);
  }
}

@keyframes parallaxMove3 {

  0%,
  100% {
    transform: scale(0.8) translate(0, 0);
  }

  50% {
    transform: scale(0.8) translate(-20px, 15px);
  }
}

/* DEMO 4: Fade Slideshow */
.hero-animation-demo4 {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 350px;
}

.fade-slideshow {
  position: relative;
  width: 100%;
  height: 100%;
}

.fade-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: fadeSlide 12s infinite;
}

.fade-slide:nth-child(1) {
  animation-delay: 0s;
}

.fade-slide:nth-child(2) {
  animation-delay: 4s;
}

.fade-slide:nth-child(3) {
  animation-delay: 8s;
}

.fade-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 51, 102, 0.3);
}

@keyframes fadeSlide {

  0%,
  25% {
    opacity: 0;
    transform: scale(0.95);
  }

  33%,
  58% {
    opacity: 1;
    transform: scale(1);
  }

  66%,
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

/* DEMO 5: Animated Assembly */
.hero-animation-demo5 {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 350px;
}

.assembly-animation {
  position: relative;
  width: 100%;
  height: 100%;
}

.assembly-part {
  position: absolute;
  width: 50%;
  height: 100%;
}

.assembly-part img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}

.assembly-part.part-left {
  left: 0;
  animation: slideInLeft 4s ease-in-out infinite;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.assembly-part.part-right {
  right: 0;
  animation: slideInRight 4s ease-in-out infinite;
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
}

@keyframes slideInLeft {

  0%,
  20% {
    transform: translateX(-100%);
    opacity: 0;
  }

  40%,
  80% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

@keyframes slideInRight {

  0%,
  20% {
    transform: translateX(100%);
    opacity: 0;
  }

  40%,
  80% {
    transform: translateX(0);
    opacity: 1;
  }

  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* ============================================
   END OF DEMO ANIMATIONS
   ============================================ */

/* Hero Slider */
.hero-slider {
  position: relative;
  max-width: 600px;
  width: 100%;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 350px;
  overflow: hidden;
  border-radius: 12px;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide.active {
  opacity: 1;
}

.slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-blue);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-btn:hover {
  background: var(--primary-orange);
  color: var(--white);
}

.slider-btn.prev {
  left: 20px;
}

.slider-btn.next {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot:hover,
.dot.active {
  background: var(--primary-orange);
  transform: scale(1.2);
}

.hero-title {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.15;
}

.hero-title .highlight {
  color: var(--primary-orange);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
  padding: 60px 0;
  text-align: center;
}

/* Page Header with Factory Background Image */
.page-header-with-image {
  position: relative;
  background-image: url('./assests/images/factory-back.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 50px 0 !important;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.page-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 64, 128, 0.9) 100%);
  z-index: 1;
}

.page-header-with-image .container {
  position: relative;
  z-index: 2;
}

.page-header-with-image .page-header-content {
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 15px;
}

.page-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* ===== PRODUCT SECTION ===== */
.product-section {
  padding: 80px 0;
}

.product-section.bg-light {
  background: var(--bg-light);
}

.product-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.product-section .section-description {
  max-width: 600px;
  margin: 0 auto;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px;
}

.product-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--light-gray);
}

.product-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
}

.product-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--primary-orange);
  padding: 60px 0;
  text-align: center;
}

.cta-content h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--primary-orange);
  border-color: var(--white);
}

.cta-section .btn-primary:hover {
  background: var(--primary-blue);
  color: var(--white);
  border-color: var(--primary-blue);
}

/* ===== PRODUCT DETAIL SECTION (Brochure Style) ===== */
.product-detail-section {
  padding: 80px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.product-detail-grid.reverse {
  grid-template-columns: 1.5fr 1fr;
}

.product-detail-image {
  position: relative;
}

.product-detail-image img {
  width: 100%;
  border-radius: var(--radius-md);
  /* border: 3px solid var(--primary-blue); */
}

.product-detail-title {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 800;
}

.product-detail-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.detail-bar {
  width: 4px;
  min-height: 100%;
  background: var(--primary-orange);
  border-radius: 2px;
  flex-shrink: 0;
  align-self: stretch;
}

.detail-item p {
  color: var(--dark-gray);
  line-height: 1.7;
  margin: 0;
  font-size: 15px;
}

/* ===== PRODUCT INTRO (Legacy) ===== */
.product-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.product-intro.reverse {
  direction: rtl;
}

.product-intro.reverse>* {
  direction: ltr;
}

.product-intro-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.product-intro-content h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--black);
}

/* Product Detail Responsive */
@media (max-width: 768px) {

  .product-detail-grid,
  .product-detail-grid.reverse {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== SPECS TABLE ===== */
.specs-table-wrapper {
  margin-top: 60px;
}

.table-title {
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 30px;
  text-align: center;
}

.table-responsive {
  overflow-x: auto;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.specs-table th,
.specs-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-gray);
  font-size: 14px;
}

.specs-table th {
  background: var(--primary-blue);
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.specs-table th small {
  display: block;
  font-weight: 400;
  opacity: 0.8;
  text-transform: none;
  margin-top: 4px;
}

.specs-table tbody tr:hover {
  background: var(--bg-light);
}

.specs-table tbody tr:last-child td {
  border-bottom: none;
}

/* Spray Coating & Product Marking Vertical Cell Layout */
.specs-table td:has(.spray-marking-cell) {
  padding: 0;
  vertical-align: middle;
}

.spray-marking-cell {
  display: flex;
  flex-direction: column;
  min-width: 120px;
  width: 100%;
}

.spray-marking-cell .cell-row {
  padding: 14px 20px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  border-bottom: 2px solid #e2e8f0;
  transition: all 0.2s ease;
  letter-spacing: 0.3px;
}

.spray-marking-cell .cell-row:last-child {
  border-bottom: none;
}

.spray-marking-cell .cell-row:first-child {
  background: #f8fafc;
  color: var(--dark-gray);
}

.spray-marking-cell .cell-row:last-child {
  background: #e0f2fe;
  color: var(--primary-blue);
}

/* Hover effect for better interactivity */
.specs-table tbody tr:hover .spray-marking-cell .cell-row:first-child {
  background: #f1f5f9;
}

.specs-table tbody tr:hover .spray-marking-cell .cell-row:last-child {
  background: #bae6fd;
}

/* Honeypot Field - Hidden from users */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Form Messages */
.form-message {
  margin-top: 15px;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

.btn-loading {
  display: none;
}

/* Color Badges */
.color-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
}

.color-badge.white {
  background: #f3f4f6;
  color: var(--dark-gray);
  border: 1px solid var(--border-gray);
}

.color-badge.blue {
  background: #3b82f6;
  color: var(--white);
}

.color-badge.brown {
  background: #92400e;
  color: var(--white);
}

.color-badge.yellow {
  background: #f59e0b;
  color: var(--white);
}

.color-badge.orange {
  background: #ea580c;
  color: var(--white);
}

.color-badge.green {
  background: #10b981;
  color: var(--white);
}

.color-badge.purple {
  background: #8b5cf6;
  color: var(--white);
}

.color-badge.pink {
  background: #ec4899;
  color: var(--white);
}

/* ===== CERTIFICATIONS BANNER ===== */
.certifications-banner {
  background: var(--primary-blue);
  padding: 60px 0;
}

.cert-banner-content {
  text-align: center;
}

.cert-banner-content h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 30px;
}

.cert-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cert-badge-item {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 15px 30px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .product-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .product-intro.reverse {
    direction: ltr;
  }

  .specs-table th,
  .specs-table td {
    padding: 10px 12px;
    font-size: 12px;
  }

  .specs-table td:has(.spray-marking-cell) {
    padding: 0;
  }

  .spray-marking-cell {
    min-width: 90px;
  }

  .spray-marking-cell .cell-row {
    padding: 12px 15px;
    font-size: 12px;
    font-weight: 700;
  }

  .cert-badges {
    gap: 10px;
  }

  .cert-badge-item {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ===== ABOUT PAGE - NEW DESIGN ===== */

/* Split Section */
.about-split-section {
  padding: 80px 0;
}

.split-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-label {
  display: inline-block;
  color: var(--primary-orange);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.split-text h2 {
  font-size: 2.5rem;
  color: var(--black);
  margin-bottom: 25px;
  line-height: 1.2;
}

.split-text .large-text {
  font-size: 1.15rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.split-text p {
  color: var(--light-gray);
  line-height: 1.8;
  margin-bottom: 30px;
}

.split-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 5px;
}

.stat-text {
  font-size: 12px;
  color: var(--light-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.split-image {
  position: relative;
}

.split-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.image-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.image-badge span {
  display: block;
  font-size: 12px;
  opacity: 0.9;
}

.image-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
}

/* Process Cards Section */
.about-process-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 50px;
}

.process-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.process-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary-orange);
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-blue), #004080);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}

.process-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--black);
}

.process-card p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.6;
}

/* Certifications Section */
.about-certs-section {
  padding: 80px 0;
  background: var(--primary-blue);
}

.certs-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.certs-content .section-label {
  color: var(--primary-orange);
}

.certs-content h2 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 20px;
}

.certs-content p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.certs-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cert-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.cert-badge-large {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  padding: 25px 15px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 10px;
  transition: var(--transition);
}

.cert-item:hover .cert-badge-large {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
}

.cert-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}

/* Values Section */
.about-values-section {
  padding: 80px 0;
  padding-top: 0px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.value-item {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.value-item:hover {
  border-color: var(--primary-orange);
  box-shadow: var(--shadow-md);
}

.value-icon-wrap {
  width: 70px;
  height: 70px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary-orange);
  transition: var(--transition);
}

.value-item:hover .value-icon-wrap {
  background: var(--primary-orange);
  color: var(--white);
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--black);
}

.value-item p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.7;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .split-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .certs-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .split-stats {
    flex-direction: column;
    gap: 15px;
  }

  .process-cards {
    grid-template-columns: 1fr;
  }

  .certs-grid {
    justify-content: center;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* Process Timeline */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-orange), #fcd34d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.step-content h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--black);
}

.step-content p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.6;
}

/* Certification Cards */
.cert-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.cert-card .cert-icon {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.cert-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: var(--black);
}

.cert-card p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.6;
}

/* Why Choose Section */
.why-choose-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.advantage-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.advantage-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary-orange);
  opacity: 0.3;
  margin-bottom: 15px;
}

.advantage-card h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: var(--black);
}

.advantage-card p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.7;
}

/* About Page Responsive */
@media (max-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
  }

  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-stats {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .hero-stat-item {
    padding: 25px 20px;
  }

  .about-hero-title {
    font-size: 2rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
  }

  .about-hero-description {
    padding: 25px 20px;
  }

  .about-hero-description h3 {
    font-size: 1.2rem;
  }

  .about-hero-description p {
    font-size: 0.95rem;
  }

  .process-timeline {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
  }

  .certifications-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--primary-blue);
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--white);
}

.contact-intro {
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  stroke: var(--primary-orange);
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--white);
}

.contact-text p {
  opacity: 0.9;
  line-height: 1.6;
  margin: 0;
}

.contact-text a {
  color: var(--white);
  opacity: 0.9;
}

.contact-text a:hover {
  color: var(--primary-orange);
  opacity: 1;
}

/* Contact Form */
.contact-form-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  color: var(--black);
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 8px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-block {
  width: 100%;
}

/* Map Section */
.map-section {
  padding: 0 0 80px;
  padding-top: 30px !important;
}

.map-title {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 30px;
  color: var(--black);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
  display: block;
}



/* Contact Responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-form-card {
    padding: 30px 25px;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

/* ===== PROMO BANNERS ===== */
.promo-banners {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  background: var(--white);
}

.banners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.promo-banner {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 60px;
  background-size: cover;
  background-position: center;
  transition: var(--transition);
}

.promo-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.88) 25%,
      rgba(0, 0, 0, 0.7) 40%,
      rgba(0, 0, 0, 0.4) 55%,
      rgba(0, 0, 0, 0.15) 65%,
      rgba(0, 0, 0, 0.05) 75%,
      transparent 85%);
  z-index: 1;
}

.promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.banner-content {
  position: relative;
  z-index: 2;
  max-width: 45%;
}

.banner-label {
  display: inline-block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.banner-title {
  font-size: 39px;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}

.banner-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 35px;
  max-width: 400px;
  line-height: 1.6;
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  background: var(--bg-light);
}

.features-wrapper {
  display: grid;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 40px;
}

.vision_mission_cards_grid {
  grid-template-columns: repeat(2, 1fr);
}

.vision_mission_cards_grid .feature-box {
  align-items: flex-start;
}

.vision_mission_cards_grid .feature-text h4 {
  font-size: 1.15rem;
}

.vision_mission_cards_grid .feature-text p {
  font-size: 0.95rem;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, #003366, #004080);
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(135deg,
      rgba(0, 51, 102, 0.02),
      rgba(0, 64, 128, 0.02));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 51, 102, 0.08);
  border-color: rgba(0, 51, 102, 0.15);
}

.feature-box:hover::before {
  height: 100%;
}

.feature-box:hover::after {
  opacity: 1;
}

.feature-box:hover .feature-icon {
  transform: scale(1.08) translateY(-2px);
}

.feature-box:hover .feature-icon svg circle {
  stroke: #003366;
  stroke-width: 2.5;
}

.feature-box:hover .feature-icon svg path {
  stroke: #003366;
}

.feature-box:hover h4 {
  color: #003366;
  font-weight: 700;
}

.feature-box:hover p {
  color: #1f2937;
}

.feature-icon {
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.feature-text {
  position: relative;
  z-index: 1;
}

.feature-text h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--black);
  transition: all 0.3s ease;
}

.feature-text p {
  font-size: 13px;
  color: var(--light-gray);
  line-height: 1.5;
  transition: color 0.3s ease;
}

/* ===== SECTION HEADERS ===== */
.section-label {
  display: inline-block;
  color: var(--primary-orange);
  background: transparent;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 3px;
  margin-bottom: 20px;
  padding: 0;
  border-radius: 0;
  position: relative;
}

.section-title {
  font-size: 2.75rem;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: 800;
}

.section-description {
  font-size: 1.15rem;
  color: var(--light-gray);
  max-width: 700px;
  line-height: 1.8;
  font-weight: 400;
}

.section-header-center {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-header-center .section-description {
  margin: 0 auto;
}

.section-header-center .section-title {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-template-rows: 27px 0;
  grid-gap: 20px;
  align-items: center;
}

.section-header-center .section-title:after,
.section-header-center .section-title:before {
  content: " ";
  display: block;
  border-bottom: 1px solid var(--primary-orange);
  border-top: 1px solid var(--primary-orange);
  height: 5px;
  background-color: var(--bg-light);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--white);
  overflow-x: hidden;
}

.about-hero {
  background: linear-gradient(135deg,
      rgba(0, 51, 102, 0.75) 0%,
      rgba(0, 64, 128, 0.75) 100%),
    url("bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding-top: 40px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
}

.about-hero::after {
  content: "";
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
}

.about-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.about-label {
  display: inline-block;
  color: var(--primary-orange);
  background: rgba(245, 158, 11, 0.15);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  padding: 8px 24px;
  border-radius: 50px;
}

.about-hero-title {
  font-size: 3rem;
  color: var(--white);
  margin-bottom: 25px;
  line-height: 1.2;
  font-weight: 800;
}

.about-hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 50px;
}

.about-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 60px;
}

.hero-stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.hero-stat-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.hero-stat-item h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-stat-item p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.about-hero-description {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 35px 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.about-hero-description h3 {
  font-size: 1.5rem;
  color: var(--primary-orange);
  margin-bottom: 15px;
  font-weight: 700;
}

.about-hero-description p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 0;
}

.about-hero-description p:last-child {
  margin-bottom: 0;
}

.about-content-section {
  background: var(--white);
  padding-top: var(--section-padding-top);
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.process-card {
  background: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: var(--radius-lg);
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.1);
  border-color: var(--primary-orange);
}

.process-icon-large {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.process-card:hover .process-icon-large {
  background: var(--primary-orange);
  transform: scale(1.1);
}

.process-card:hover .process-icon-large svg path,
.process-card:hover .process-icon-large svg circle,
.process-card:hover .process-icon-large svg rect {
  stroke: var(--white);
}

.process-card h4 {
  font-size: 1.15rem;
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-weight: 700;
}

.process-card p {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.7;
  flex-grow: 1;
}

.about-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.about-stats-section {
  background: var(--bg-light);
  padding: 60px 0;
  margin-top: 60px;
}

.stats-wrapper-horizontal {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin: 0 0 25px;
  font-weight: 500;
}

.about-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--light-gray);
  margin-bottom: 35px;
}

.about-section-heading {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.about-section-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-orange);
}

.about-process-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 40px;
}

.process-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--primary-orange);
}

.process-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.process-item span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-gray);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

.about-feature-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.feature-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-orange), #fcd34d);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.feature-info h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: var(--black);
}

.feature-info p {
  color: var(--light-gray);
  line-height: 1.7;
}

.about-stats {
  background: var(--bg-light);
  padding: 50px;
  border-radius: var(--radius-lg);
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
  position: relative;
}

.stat-number {
  font-size: 4rem;
  font-weight: 900;
  color: var(--primary-orange);
  line-height: 1;
  display: inline-block;
}

.stat-suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-orange);
}

.stat-label {
  font-size: 14px;
  color: var(--light-gray);
  margin-top: 10px;
  font-weight: 500;
}

.highlight-stat {
  grid-column: 1 / -1;
}

.stat-badge {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 15px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  background: var(--bg-light);
}

/* Modern Product Cards */
.products-modern-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.product-modern-card {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.product-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 4;
  box-shadow: 0 4px 12px rgba(0, 51, 102, 0.25);
}

.product-image-container {
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.product-bg-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(245, 158, 11, 0.08) 0%,
      transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.product-main-image {
  position: relative;
  z-index: 2;
  max-width: 85%;
  max-height: 280px;
  object-fit: contain;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.12));
  border-radius: 12px;
}

.product-content {
  padding: 45px 40px 50px;
  position: relative;
}

.product-number-label {
  position: absolute;
  top: -28px;
  left: 40px;
  width: 56px;
  height: 56px;
  background: var(--primary-orange);
  color: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(245, 158, 11, 0.35);
}

.product-name {
  font-size: 2rem;
  color: var(--primary-blue);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.product-tagline {
  font-size: 1.05rem;
  color: #64748b;
  margin-bottom: 30px;
  font-weight: 500;
}

.product-features-list {
  margin-bottom: 35px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.product-feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.product-feature-item span {
  font-size: 0.95rem;
  color: var(--dark-gray);
  line-height: 1.6;
}

.product-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-blue);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 14px 0;
  border-top: 1px solid #e2e8f0;
  width: 100%;
}

.product-link-btn svg {
  transition: transform 0.3s ease;
}

.product-link-btn:hover {
  color: var(--primary-orange);
}

.product-link-btn:hover svg {
  transform: translateX(5px);
}

.product-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 14px 32px;
  background: var(--white);
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.tab-button:hover,
.tab-button.active {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  position: relative;
  width: 100%;
  height: 320px;
  background: var(--bg-gray);
  overflow: hidden;
}

.product-image svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 51, 102, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.quick-view-btn {
  padding: 14px 32px;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  border-radius: var(--radius-lg);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
}

.quick-view-btn:hover {
  background: #d97706;
  transform: scale(1.05);
}

.product-info {
  padding: 30px;
}

.product-category {
  display: inline-block;
  color: var(--primary-orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.product-name {
  font-size: 1.35rem;
  color: var(--black);
  margin-bottom: 12px;
}

.product-specs {
  color: var(--light-gray);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  background: var(--white);
}

.process-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
}

.process-item {
  flex: 1;
  text-align: center;
}

.process-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-orange), #fcd34d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.process-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
}

.process-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--black);
}

.process-item p {
  font-size: 14px;
  color: var(--light-gray);
  line-height: 1.6;
}

.process-arrow {
  font-size: 2rem;
  color: var(--primary-orange);
  font-weight: 700;
}

/* ===== CERTIFICATIONS SECTION ===== */
.certifications-section {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  background: var(--white);
}

/* Layout Wrapper */
.cert-layout-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  margin-top: 60px;
  align-items: start;
}

/* Left Column - 3 Certifications */
.cert-column-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Right Column - 3 Items (2 certs + 1 info box) */
.cert-column-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Info Box (3rd box in right column) */
.cert-info-box {
  background: linear-gradient(135deg, #003366 0%, #004080 100%);
  border-radius: 16px;
  padding: 30px 25px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.cert-info-box h4 {
  color: var(--primary-orange);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cert-info-box p {
  color: white;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

/* Certification Boxes */
.cert-box {
  background: var(--white);
  border: 2px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cert-box:hover {
  border-color: var(--primary-orange);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.2);
  transform: translateY(-5px);
}

.cert-box:hover .cert-box-badge {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.cert-box.active {
  border-color: var(--primary-blue);
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  box-shadow: 0 10px 35px rgba(0, 51, 102, 0.25);
  transform: translateY(-5px);
}

.cert-box-badge {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #004080 100%);
  color: white;
  font-size: 1.4rem;
  font-weight: 900;
  padding: 14px 24px;
  border-radius: 12px;
  margin-bottom: 18px;
  display: inline-block;
  transition: all 0.3s ease;
}

.cert-box h5 {
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.cert-box:hover h5 {
  color: var(--primary-orange);
}

/* Center Featured Content */
.cert-center-content {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 51, 102, 0.12);
  transition: all 0.3s ease;
}

.cert-center-content h3 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-blue);
  margin-bottom: 12px;
}

.cert-status {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
}

.cert-status.applied {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.cert-center-content h4 {
  font-size: 1.4rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 15px;
}

.cert-center-content p {
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.cert-features {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.cert-feature-tag {
  background: var(--white);
  color: var(--primary-blue);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  padding-top: var(--section-padding-top);
  padding-bottom: var(--section-padding-bottom);
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--bg-light);
  padding: 40px;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  font-size: 5rem;
  color: var(--primary-orange);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--dark-gray);
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-info h4 {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 5px;
}

.author-info span {
  font-size: 14px;
  color: var(--light-gray);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding-top: 10px;
  padding-bottom: 40px;
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  margin-top: 31px;
  place-content: center;
}

.contact-lead {
  font-size: 1.1rem;
  color: var(--light-gray);
  line-height: 1.8;
  margin: 30px 0 50px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
}

.detail-icon {
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.detail-text h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--black);
}

.detail-text p {
  color: var(--light-gray);
  line-height: 1.7;
}

.detail-text a {
  color: var(--primary-blue);
  font-weight: 600;
}

.detail-text a:hover {
  color: var(--primary-orange);
}

/* Contact Form */
.contact-form-side {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.modern-contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 10px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 18px;
  border: 2px solid var(--border-gray);
  border-radius: var(--radius-md);
  font-family: var(--font-primary);
  font-size: 15px;
  color: var(--dark-gray);
  transition: var(--transition);
  background: var(--white);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-orange);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
  width: 100%;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
  padding-top: 40px;
  padding-bottom: 20px;
  background: var(--primary-blue);
  margin-top: 0;
}

.newsletter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.newsletter-content h3 {
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 10px;
}

.newsletter-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
  display: flex;
  gap: 15px;
  min-width: 500px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 15px;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary-orange);
  background: rgba(255, 255, 255, 0.15);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-gray);
  color: var(--white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
  background-image: url("site_footer_bg_image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  height: 100px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-size: 14px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-orange);
  padding-left: 5px;
}

.footer-contact li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

.footer-contact a {
  color: var(--primary-orange);
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--primary-orange);
  color: var(--white);
}

/* ===== BROCHURE MODAL ===== */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  background: white;
  padding: 40px;
  border-radius: 16px;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  z-index: 10001;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--medium-gray);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--bg-gray);
  color: var(--primary-blue);
}

.modal-content h3 {
  font-size: 1.8rem;
  color: var(--primary-blue);
  margin-bottom: 10px;
}

.modal-content>p {
  color: var(--medium-gray);
  margin-bottom: 25px;
}

.brochure-form .form-group {
  margin-bottom: 20px;
}

.brochure-form label {
  display: block;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 8px;
  font-size: 14px;
}

.brochure-form input {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--border-gray);
  border-radius: 8px;
  font-size: 15px;
  transition: var(--transition);
}

.brochure-form input:focus {
  outline: none;
  border-color: var(--primary-blue);
}

.brochure-form .btn-full {
  width: 100%;
  margin-top: 10px;
}

.form-message {
  margin-top: 15px;
  padding: 12px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: #d1fae5;
  color: #065f46;
  display: block;
}

.form-message.error {
  background: #fee2e2;
  color: #991b1b;
  display: block;
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-lg);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--primary-blue);
  transform: translateY(-5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .features-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cert-layout-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cert-column-left,
  .cert-column-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .cert-center-content {
    order: -1;
    padding: 40px 30px;
  }

  .about-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .newsletter-wrapper {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .newsletter-form {
    min-width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .process-flow {
    flex-wrap: wrap;
  }

  .process-arrow {
    display: none;
  }
}

@media (max-width: 1024px) {
  .header-search {
    max-width: 400px;
  }

  .header-user .user-text {
    display: none;
  }

  .header-cart .cart-info {
    display: none;
  }

  .nav-link {
    padding: 18px 20px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 81px;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Page Header with Image - Mobile */
  .page-header-with-image {
    padding: 60px 0;
    min-height: 300px;
    background-attachment: scroll;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .page-description {
    font-size: 1rem;
  }

  .top-bar {
    padding: 6px 0;
    font-size: 11px;
  }

  .top-bar-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 5px;
  }

  .top-bar-left,
  .top-bar-right {
    font-size: 10px;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .top-bar-left span {
    display: inline-block;
  }

  .top-bar-right {
    flex-direction: row;
    gap: 8px;
  }

  .top-bar-right a {
    padding: 3px 8px;
    font-size: 10px;
  }

  .header-main {
    padding: 10px 0;
    transition: padding 0.3s ease;
  }

  .header.scrolled .header-main {
    padding: 8px 0;
  }

  .header-wrapper {
    gap: 10px;
  }

  .logo img {
    height: 60px;
    transition: height 0.3s ease;
  }

  .header.scrolled .logo img {
    height: 50px;
  }

  .get-quote {
    padding: 8px 16px;
    font-size: 12px;
    white-space: nowrap;
  }

  .header-search {
    display: none;
  }

  .header-nav {
    display: none;
    /* Old navigation - now using header-center */
  }

  /* Mobile toggle is already handled in the main mobile breakpoint above */

  .header-user,
  .header-cart {
    display: none;
  }

  .header-right-wrapper {
    display: none !important;
  }

  .hero {
    padding: 30px 0;
  }

  .hero-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    max-width: 100%;
    font-size: 0.95rem;
    line-height: 1.5;
  }

  .hero-buttons {
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 100%;
    padding: 12px 20px;
    font-size: 13px;
  }

  .hero-image {
    justify-content: center;
    order: -1;
  }

  .hero-image img {
    max-width: 100%;
    height: auto;
  }

  .section-title {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .section-label {
    font-size: 0.75rem;
  }

  .about-hero {
    padding-top: 30px;
    padding-bottom: 30px;
    background-attachment: scroll;
  }

  .about-hero-content {
    padding: 0 10px;
  }

  .about-label {
    font-size: 0.7rem;
    padding: 5px 14px;
  }

  .about-hero-title {
    font-size: 1.3rem;
    line-height: 1.35;
    margin-bottom: 15px;
  }

  .about-hero-subtitle {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .about-hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .hero-stat-item {
    padding: 20px 15px;
  }

  .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 12px;
  }

  .stat-icon svg {
    width: 30px;
    height: 30px;
  }

  .hero-stat-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
  }

  .hero-stat-item p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .hero-slider {
    max-width: 100%;
  }

  .slider-wrapper {
    height: 250px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }

  .slider-btn.prev {
    left: 10px;
  }

  .slider-btn.next {
    right: 10px;
  }

  .banners-grid,
  .features-wrapper,
  .products-grid,
  .testimonials-grid,
  .products-modern-grid {
    grid-template-columns: 1fr;
  }

  .cert-layout-wrapper {
    grid-template-columns: 1fr;
  }

  .cert-column-left,
  .cert-column-right {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cert-center-content {
    padding: 35px 25px;
    order: -1;
  }

  .cert-info-box {
    padding: 25px 20px;
  }

  .about-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .newsletter-wrapper {
    gap: 25px;
  }

  .newsletter-form {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-form input {
    width: 100%;
  }

  .contact-info-side,
  .contact-form-side {
    padding: 0;
  }

  .modern-contact-form {
    padding: 1.5em 1em;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .product-modern-card {
    margin-bottom: 20px;
  }

  .product-image-container {
    height: 280px;
  }

  .product-content {
    padding: 40px 25px 35px;
  }

  .product-number-label {
    left: 25px;
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
  }

  .product-name {
    font-size: 1.6rem;
  }

  .product-tagline {
    font-size: 0.95rem;
  }

  .product-badge {
    top: 20px;
    right: 20px;
    font-size: 12px;
    padding: 8px 14px;
  }

  .promo-banner {
    min-height: 250px;
    padding: 40px 30px;
    background-position: center !important;
  }

  .promo-banner::before {
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 60%,
        rgba(0, 0, 0, 0.3) 100%);
  }

  .banner-content {
    max-width: 100%;
  }

  .banner-title {
    font-size: 2rem;
  }

  .banner-text {
    font-size: 0.95rem;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .stats-wrapper {
    grid-template-columns: 1fr;
  }

  .newsletter-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    min-width: 100%;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-visual {
    order: -1;
  }

  .stats-row {
    grid-template-columns: 1fr;
  }
}

/* ===== INTRO SECTION (About Page) ===== */
.intro-section {
  padding: 80px 0;
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-content {
  padding-right: 20px;
}

.intro-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--primary-blue);
  margin-bottom: 20px;
  line-height: 1.2;
}

.intro-lead {
  font-size: 1.1rem;
  color: var(--medium-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

.intro-text {
  color: var(--light-gray);
  margin-bottom: 30px;
  line-height: 1.8;
}

.intro-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.feature-icon-box {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: linear-gradient(135deg,
      var(--primary-orange),
      var(--light-orange));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-box svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
  stroke: var(--white);
}

.feature-content h4 {
  font-size: 1rem;
  color: var(--black);
  margin-bottom: 4px;
}

.feature-content p {
  font-size: 0.9rem;
  color: var(--light-gray);
  line-height: 1.5;
}

.intro-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 30em;
}

.visual-card img {
  width: 100%;
  /* height: 348px; */
  height: 480px;
  object-fit: cover;
  object-position: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 20px;
}

.stat-card {
  background: var(--primary-blue);
  padding: 20px 15px;
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-card .stat-number,
.stat-card .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-orange);
  display: block;
  margin-bottom: 5px;
}

.stat-card .stat-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero {
  /* background: url('./assests/images/main-bg-final.jpg');
  background-size: cover; */
  background-image: url('./assests/images/hero_banner_image1.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 100%;
}

/* ===== ABOUT PAGE MOBILE RESPONSIVE (MAX-WIDTH: 768PX) ===== */
@media (max-width: 768px) {

  /* Page Header with Background Image */
  .page-header-with-image {
    padding: 60px 0 40px;
    min-height: 300px;
  }

  .page-header-content {
    text-align: center;
  }

  .page-title {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .page-description {
    font-size: 0.95rem;
  }

  /* Introduction Section */
  .intro-section {
    padding: 40px 0;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .intro-content {
    padding-right: 0;
    order: 2;
  }

  .intro-visual {
    order: 1;
  }

  .intro-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .intro-lead {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .intro-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .intro-features {
    gap: 15px;
  }

  .intro-feature {
    gap: 12px;
  }

  .feature-icon-box {
    width: 42px;
    height: 42px;
    min-width: 42px;
  }

  .feature-icon-box svg {
    width: 20px;
    height: 20px;
  }

  .feature-content h4 {
    font-size: 0.95rem;
  }

  .feature-content p {
    font-size: 0.85rem;
  }

  /* Visual Card */
  .visual-card img {
    height: 250px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 15px;
  }

  .stat-card {
    padding: 15px 12px;
  }

  .stat-card .stat-number,
  .stat-card .stat-value {
    font-size: 1.3rem;
  }

  .stat-card .stat-label {
    font-size: 0.7rem;
  }

  /* About Values Section */
  .about-values-section {
    padding: 40px 0;
  }

  .section-header-center {
    margin-bottom: 30px;
  }

  .section-title {
    font-size: 1.3em;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .value-card {
    padding: 25px 20px;
  }

  .value-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
  }

  .value-card h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .value-card p {
    font-size: 0.9rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 40px 0;
  }

  .cta-content h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .cta-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .cta-buttons .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.error-message.show {
  display: block;
}

.error-message {
  color: #dc2626;
  font-size: 13px;
  display: none;
  margin-top: 5px;
}

/* Input Error State */
.input-error {
  border-color: #dc2626 !important;
  background-color: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1) !important;
}

.input-error:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* Form field validation styles */
.form-field .error-message {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.form-field .error-message.show {
  display: block;
}

/* Honeypot field - hidden from users */
.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.file-input-wrapper {
  position: relative;
  width: 100%;
}

.file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.file-input-display {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px dashed #d1d5db;
  border-radius: 8px;
  background: #f9fafb;
  transition: all 0.3s ease;
}

.file-input-wrapper:hover .file-input-display,
.file-input:focus+.file-input-display {
  border-color: #F59E0B;
  background: #fffbeb;
}

.file-input-display.has-file {
  border-style: solid;
  border-color: #10b981;
  background: #ecfdf5;
}

.file-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #e5e7eb;
  border-radius: 8px;
  color: #6b7280;
  transition: all 0.3s ease;
}

.file-input-wrapper:hover .file-icon {
  background: #fef3c7;
  color: #F59E0B;
}

.file-input-display.has-file .file-icon {
  background: #d1fae5;
  color: #10b981;
}

.file-text {
  color: #6b7280;
  font-size: 14px;
}

.file-name {
  font-size: 14px;
  font-weight: 500;
  color: #111827;
  display: none;
}

.file-input-display.has-file .file-text {
  display: none;
}

.file-input-display.has-file .file-name {
  display: block;
}

.file-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #9ca3af;
}

/* Textarea Character Counter Styles */
.textarea-wrapper {
  position: relative;
}

.char-counter {
  display: flex;
  justify-content: flex-end;
  margin-top: 6px;
  font-size: 12px;
  color: #6b7280;
}

.char-counter .current-count {
  font-weight: 600;
  transition: color 0.2s ease;
}

.char-counter.warning .current-count {
  color: #f59e0b;
}

.char-counter.limit-reached .current-count {
  color: #dc3545;
  font-weight: 700;
}

.char-counter-bar {
  height: 3px;
  background: #e5e7eb;
  border-radius: 3px;
  margin-top: 4px;
  overflow: hidden;
}

.char-counter-bar .bar-fill {
  height: 100%;
  background: #10b981;
  border-radius: 3px;
  transition: width 0.2s ease, background 0.2s ease;
}

.char-counter.warning .bar-fill {
  background: #f59e0b;
}

.char-counter.limit-reached .bar-fill {
  background: #dc3545;
}

.unhighlight_text {
  color: rgba(255, 255, 255, 0.7) !important;
}

.highlight_text {
  font-weight: 400;
  color: var(--primary-orange);
}

.separator_line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 1em;
}

.main_highlight_title {
  font-weight: bold;
  font-size: 1em;
}

.svgbox {
  display: flex;
  align-items: center;
  justify-content: center;
}

.svgbox>svg {
  fill: var(--primary-orange);
  font-size: 1em;
  height: 1.5em;
}

.contact_details_li_with_icon_div {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}

.detail-text>p>a {
  color: var(--light-gray);
  font-weight: normal;
}

.hero-slider-wrapper {
  position: relative;
  overflow: hidden;
}

.hero_slide_imagebanner_div {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  height: 70vh;
  max-height: 700px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 50px;
}

.first_hero_slide_div {
  background-image: url("./assests/images/hero_banner_image1.jpg");
}

.second_hero_slide_div {
  background-image: url("./assests/images/hero_banner_image2.jpg");
}

.hero_slide_content_container {
  height: 100%;
  display: flex;
  align-items: center;
}

.hero_slide_imagebanner_div .hero-wrapper {
  width: 100%;
}

.hero_slide_imagebanner_div .hero-content {
  max-width: 700px;
}

.hero_slide_imagebanner_div .hero-title {
  color: white;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero_slide_imagebanner_div .hero-title .highlight {
  color: var(--primary-orange);
}

.hero_slide_imagebanner_div .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero_slide_imagebanner_div .hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-slider-wrapper .swiper-button-next,
.hero-slider-wrapper .swiper-button-prev {
  color: white;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.hero-slider-wrapper .swiper-button-next:hover,
.hero-slider-wrapper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.25);
}

.hero-slider-wrapper .swiper-button-next::after,
.hero-slider-wrapper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Swiper Pagination */
.hero-slider-wrapper .swiper-pagination {
  bottom: 20px;
}

.hero-slider-wrapper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-slider-wrapper .swiper-pagination-bullet-active {
  background: var(--primary-orange);
  border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero_slide_imagebanner_div {
    min-height: 400px;
    height: auto;
    padding: 0;
  }

  .hero_slide_imagebanner_div .hero-title {
    font-size: 1.75rem;
  }

  .hero_slide_imagebanner_div .hero-subtitle {
    font-size: 1rem;
  }

  .hero_slide_imagebanner_div .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero_slide_imagebanner_div .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .hero-slider-wrapper .swiper-button-next,
  .hero-slider-wrapper .swiper-button-prev {
    display: none;
  }
}

.autoplay-progress {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--primary-orange);
  display: none;
}

.autoplay-progress svg {
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 1;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--primary-orange);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.careers-header-content .section-label {
  color: var(--primary-orange);
  background: rgba(245, 158, 11, 0.15);
  padding: 8px 20px;
  border-radius: 30px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.careers-header-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  margin-bottom: 20px;
  font-weight: 800;
}

.careers-header-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Why Join Us Section */
.why-join-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.why-join-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.why-join-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.why-join-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-orange), var(--light-orange));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-join-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.why-join-card:hover::before {
  transform: scaleX(1);
}

.why-join-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.4s ease;
}

.why-join-card:hover .why-join-icon {
  background: var(--primary-orange);
  transform: scale(1.1);
}

.why-join-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary-orange);
  transition: color 0.4s ease;
}

.why-join-card:hover .why-join-icon svg {
  color: var(--white);
}

.why-join-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--dark-gray);
}

.why-join-card p {
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Job Openings Section */
.job-openings-section {
  padding: 80px 0;
  background: var(--white);
}

.job-card {
  background: var(--white);
  border: 1px solid var(--border-gray);
  border-radius: 20px;
  overflow: hidden;
  margin-top: 50px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.job-card-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #001a33 100%);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.job-card-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.job-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 158, 11, 0.2);
  color: var(--primary-orange);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.job-badge svg {
  width: 16px;
  height: 16px;
}

.job-card-header h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 15px;
  font-weight: 700;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}

.job-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.job-meta-item svg {
  width: 20px;
  height: 20px;
  color: var(--primary-orange);
}

.job-card-body {
  padding: 50px 40px;
}

.job-section {
  margin-bottom: 40px;
}

.job-section:last-child {
  margin-bottom: 0;
}

.job-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  color: var(--dark-gray);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-gray);
}

.job-section-title svg {
  width: 24px;
  height: 24px;
  color: var(--primary-orange);
}

.job-section-content {
  color: var(--medium-gray);
  line-height: 1.8;
}

.job-section-content p {
  margin-bottom: 15px;
}

/* Responsibilities Grid */
.responsibilities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.responsibility-card {
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid var(--primary-orange);
  transition: all 0.3s ease;
}

.responsibility-card:hover {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transform: translateX(5px);
}

.responsibility-card h4 {
  color: var(--dark-gray);
  font-size: 1.05rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.responsibility-card h4 .card-number {
  width: 28px;
  height: 28px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.responsibility-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.responsibility-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.responsibility-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--primary-orange);
  border-radius: 50%;
}

/* Qualifications Section */
.qualifications-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.qualification-box {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 16px;
}

.qualification-box h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--dark-gray);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.qualification-box h4 svg {
  width: 24px;
  height: 24px;
  color: var(--primary-orange);
}

.qualification-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualification-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: var(--medium-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

.qualification-box ul li:last-child {
  margin-bottom: 0;
}

.qualification-box ul li svg {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
  margin-top: 2px;
}

/* KPIs Section */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kpi-item {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #001a33 100%);
  padding: 25px 20px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.kpi-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 51, 102, 0.3);
}

.kpi-item svg {
  width: 32px;
  height: 32px;
  color: var(--primary-orange);
  margin-bottom: 15px;
}

.kpi-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Apply Section */
.apply-section {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #d97706 100%);
  padding: 40px;
  border-radius: 20px;
  margin-top: 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.apply-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.apply-section h3 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.apply-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.apply-section .apply-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--primary-blue);
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  text-decoration: none;
}

.apply-section .apply-email:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.apply-section .apply-email svg {
  width: 24px;
  height: 24px;
}

/* CTA Section */
.careers-cta-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.careers-cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.careers-cta-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.careers-cta-content p {
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .why-join-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .responsibilities-grid {
    grid-template-columns: 1fr;
  }

  .qualifications-wrapper {
    grid-template-columns: 1fr;
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .why-join-section,
  .job-openings-section,
  .careers-cta-section {
    padding: 60px 0;
  }

  .why-join-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-card-header {
    padding: 30px 25px;
  }

  .job-card-body {
    padding: 30px 25px;
  }

  .job-meta {
    flex-direction: column;
    gap: 15px;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .apply-section {
    padding: 30px 20px;
  }

  .apply-section .apply-email {
    padding: 15px 30px;
    font-size: 1rem;
  }
}

/* =====================================================
   CAREERS PAGE - NEW STICKY SIDEBAR LAYOUT
   ===================================================== */

/* Main Layout */
.careers-layout {
  display: grid;
  grid-template-columns: 74% 24%;
  gap: 1em;
  place-content: center;
  margin-top: 50px;
  max-width: 100%;
  overflow: hidden;
}

/* Left Side - Job Details Content */
.careers-content {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

/* Individual Career Item */
.career-item {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-gray);
  transition: box-shadow 0.3s ease;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.career-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Career Item Header */
.career-item-header {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #001a33 100%);
  padding: 35px 40px;
  position: relative;
  overflow: hidden;
}

.career-item-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.career-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.career-badge svg {
  width: 16px;
  height: 16px;
}

.career-item-header h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.career-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  position: relative;
}

.career-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 14px;
  border-radius: 6px;
}

.career-meta span svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* Career Item Body */
.career-item-body {
  padding: 40px;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.career-section {
  margin-bottom: 35px;
}

.career-section:last-of-type {
  margin-bottom: 0;
}

.career-section>h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.3rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg-light);
}

.career-section>h3 svg {
  width: 24px;
  height: 24px;
  color: var(--primary-orange);
}

.career-section>p {
  color: var(--dark-gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Apply Section in Career Item */
.career-item .apply-section {
  background: linear-gradient(135deg, var(--primary-orange) 0%, #d97706 100%);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.career-item .apply-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.career-item .apply-section h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 10px;
  position: relative;
}

.career-item .apply-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
  position: relative;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--primary-blue);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--primary-blue);
}

.apply-btn svg {
  width: 20px;
  height: 20px;
}

/* Right Side - Sidebar Navigation */
.careers-sidebar {
  position: relative;
}

.careers-nav-sticky {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid var(--border-gray);
}

.careers-nav-sticky h3 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--bg-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.careers-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.careers-nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: var(--bg-light);
  border-left: 4px solid transparent;
}

.careers-nav-item:hover {
  background: #e8f4f8;
  border-left-color: var(--primary-blue);
}

.careers-nav-item.active {
  background: linear-gradient(135deg, rgba(0, 51, 102, 0.08) 0%, rgba(0, 51, 102, 0.04) 100%);
  border-left-color: var(--primary-orange);
}

.careers-nav-item.active .nav-indicator {
  background: var(--primary-orange);
  transform: scale(1.2);
}

.careers-nav-item.active .nav-title {
  color: var(--primary-blue);
  font-weight: 700;
}

.nav-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--medium-gray);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-gray);
  transition: color 0.3s ease;
  line-height: 1.3;
}

.nav-meta {
  font-size: 0.8rem;
  color: var(--medium-gray);
}

/* Section Subtitle */
.section-subtitle {
  text-align: center;
  color: var(--medium-gray);
  font-size: 1.1rem;
  margin-top: 15px;
}

/* Responsive Styles for New Careers Layout */
@media (max-width: 1200px) {
  .careers-layout {
    grid-template-columns: 1fr 280px;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .careers-layout {
    grid-template-columns: 1fr;
  }

  .careers-sidebar {
    order: -1;
  }

  .careers-nav-sticky {
    position: relative;
    top: 0;
  }

  .careers-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .careers-nav-item {
    flex: 1 1 calc(50% - 5px);
    min-width: 200px;
  }
}

@media (max-width: 768px) {
  .careers-layout {
    margin-top: 30px;
    gap: 25px;
  }

  .career-item-header {
    padding: 25px 20px;
  }

  .career-item-body {
    padding: 25px 20px;
  }

  .career-meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .career-meta span {
    width: fit-content;
    max-width: 100%;
  }

  .careers-nav {
    flex-direction: column;
  }

  .careers-nav-item {
    flex: 1 1 100%;
  }

  .careers-nav-sticky {
    padding: 20px;
  }

  .career-item .apply-section {
    padding: 30px 20px;
    border-radius: 16px;
    margin-top: 35px;
  }

  .career-item .apply-section h3 {
    font-size: 1.3rem;
  }

  .apply-btn {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
    border-radius: 50px;
  }

  .career-section>p {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }

  /* .career-section ul {
    padding-left: 25px;
  } */

  .career-section ul li {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}

@media (max-width: 480px) {
  .careers-nav-item {
    padding: 12px 14px;
  }

  .nav-title {
    font-size: 0.85rem;
  }

  .nav-meta {
    font-size: 0.75rem;
  }

  .career-section>h3 {
    font-size: 1.1rem;
  }

  .career-item-header h2 {
    font-size: 1.3rem;
  }

  .career-item-header {
    padding: 20px 15px;
  }

  .career-item-body {
    padding: 20px 15px;
  }

  .career-badge {
    padding: 6px 12px;
    font-size: 0.8rem;
  }

  .career-meta span {
    padding: 6px 10px;
    font-size: 0.8rem;
  }

  .career-section>p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .career-section ul li {
    font-size: 0.95rem;
  }

  .career-item .apply-section {
    padding: 25px 15px;
    border-radius: 14px;
    margin-top: 30px;
  }

  .career-item .apply-section h3 {
    font-size: 1.2rem;
  }

  .career-item .apply-section p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }

  .apply-btn {
    padding: 14px 25px;
    font-size: 0.9rem;
  }

  .careers-nav-sticky {
    padding: 15px;
  }

  .careers-nav-sticky h3 {
    font-size: 1rem;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }
}

/* Extra small devices - 320px and up */
@media (max-width: 375px) {
  .careers-layout {
    margin-top: 20px;
    gap: 20px;
  }

  .career-item {
    border-radius: 12px;
  }

  .career-item-header {
    padding: 18px 12px;
  }

  .career-item-header h2 {
    font-size: 1.15rem;
    margin-bottom: 15px;
  }

  .career-item-body {
    padding: 18px 12px;
  }

  .career-badge {
    padding: 5px 10px;
    font-size: 0.75rem;
    margin-bottom: 10px;
  }

  .career-meta {
    gap: 8px;
  }

  .career-meta span {
    padding: 5px 8px;
    font-size: 0.75rem;
    gap: 4px;
  }

  .career-meta span svg {
    width: 14px;
    height: 14px;
  }

  .career-section {
    margin-bottom: 25px;
  }

  .career-section>h3 {
    font-size: 1rem;
    gap: 8px;
    margin-bottom: 15px;
    padding-bottom: 10px;
  }

  .career-section>h3 svg {
    width: 20px;
    height: 20px;
  }

  .career-section>p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  /* .career-section ul {
    padding-left: 20px;
  } */

  .career-section ul li {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }

  .career-item .apply-section {
    padding: 20px 12px;
    margin-top: 25px;
    border-radius: 12px;
  }

  .career-item .apply-section::before {
    width: 150px;
    height: 150px;
  }

  .career-item .apply-section h3 {
    font-size: 1.05rem;
  }

  .career-item .apply-section p {
    font-size: 0.85rem;
    margin-bottom: 15px;
  }

  .apply-btn {
    padding: 12px 20px;
    font-size: 0.85rem;
    border-radius: 50px;
    gap: 8px;
  }

  .apply-btn svg {
    width: 16px;
    height: 16px;
  }

  .careers-nav-sticky {
    padding: 12px;
    border-radius: 12px;
  }

  .careers-nav-sticky h3 {
    font-size: 0.9rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .careers-nav-item {
    padding: 10px 12px;
    gap: 10px;
    border-radius: 8px;
  }

  .nav-indicator {
    width: 8px;
    height: 8px;
  }

  .nav-title {
    font-size: 0.8rem;
  }

  .nav-meta {
    font-size: 0.7rem;
  }
}