:root {
  --clr-primary: #0074ce;
  --clr-primary-dark: #00569e;
  --clr-secondary: #5aad19;
  --clr-secondary-dark: #438512;
  --clr-white: #ffffff;
  --clr-bg-light: #f8fbff;
  --clr-text-main: #1a1a1a;
  --clr-text-muted: #6b7280;

  --gradient-primary: linear-gradient(135deg, var(--clr-primary), #00b4d8);
  --gradient-secondary: linear-gradient(135deg, var(--clr-secondary), #80ed99);
  --gradient-tertiary: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px -5px rgba(0, 116, 206, 0.15);
  --shadow-hover: 0 20px 40px -10px rgba(0, 116, 206, 0.25);

  --radius-md: 12px;
  --radius-lg: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--clr-bg-light);
  color: var(--clr-text-main);
  line-height: 1.6;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Accessibility Focus States */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--clr-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip to main content link for accessibility */
#skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--clr-primary);
  color: white;
  padding: 8px 16px;
  z-index: 9999;
  transition: top 0.2s;
  text-decoration: none;
  font-weight: 600;
}

#skip-link:focus {
  top: 0;
}

/* Utilities */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  /* Safe padding for mobile */
}

.text-center {
  text-align: center;
}

.section-padding {
  padding: 4rem 0;
}

/* Smaller padding for mobile */
.mb-2 {
  margin-bottom: 2rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  /* Scaled fluidly for responsiveness */
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 1rem;
  /* Scaled down for mobile */
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-white);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--clr-primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

/* Animated Lighting Trace Border for Secondary & Learn More Buttons */
.btn-secondary,
.btn-learn-more {
  position: relative !important;
  background: transparent !important;
  color: var(--clr-white) !important;
  font-weight: 700;
  border-radius: 50px !important;
  overflow: hidden !important;
  z-index: 1 !important;
  border: none !important;
  box-shadow: 0 0 15px rgba(0, 116, 206, 0.4), 0 10px 20px -5px rgba(90, 173, 25, 0.3) !important;
  transition: var(--transition);
}

.btn-secondary::before,
.btn-learn-more::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 350%;
  aspect-ratio: 1 / 1;
  background: conic-gradient(from 0deg,
      transparent 0deg 220deg,
      rgba(0, 116, 206, 0.15) 250deg,
      var(--clr-primary) 290deg,
      #ffffff 330deg,
      var(--clr-secondary) 360deg);
  animation: traceBorderRotate 2.5s linear infinite;
  z-index: -2;
}

.btn-secondary::after,
.btn-learn-more::after {
  content: '';
  position: absolute;
  inset: 2.5px;
  background: var(--clr-secondary);
  border-radius: 48px;
  z-index: -1;
  transition: var(--transition);
}

.btn-secondary:hover,
.btn-learn-more:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 25px rgba(0, 116, 206, 0.7), 0 15px 30px rgba(90, 173, 25, 0.5) !important;
  color: var(--clr-white) !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover::before,
.btn-learn-more:hover::before {
  animation-duration: 1.2s;
}

.btn-secondary:hover::after,
.btn-learn-more:hover::after {
  background: var(--clr-secondary-dark);
}

@keyframes traceBorderRotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Header & Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 0;
  transition: var(--transition);
  z-index: 1000;
  /* Flat background for mobile */
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}



header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
  width: 90px;
  /* Scaled for mobile */
  height: 40px;
  /* Scaled for mobile */
}

.logo img {
  height: 53px;
  /* Scaled for mobile */
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: var(--transition);
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
  object-fit: contain;
}

.mobile-menu-btn {
  display: block;
  /* Shown by default on mobile */
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--clr-primary);
  cursor: pointer;
  z-index: 1001;
  /* Above mobile menu */
}

/* Mobile Navigation Setup */
.nav-links {
  position: absolute;
  top: calc(100% + 10px);
  left: 1.5rem;
  right: 1.5rem;
  background: var(--clr-white);
  flex-direction: column;
  padding: 2rem;
  border-radius: var(--radius-md);
  gap: 1.5rem;
  box-shadow: var(--shadow-md);
  /* Hidden by default */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  display: flex;
  /* keep it flex for layout, toggle via opacity/visibility */
  text-align: center;
}

.nav-links.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-links li {
  width: 100%;
}

.nav-links a {
  font-weight: 600;
  color: var(--clr-text-main);
  transition: var(--transition);
  position: relative;
  display: block;
  /* full width hit area on mobile */
  padding: 0.5rem 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--clr-primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 50px;
  /* Fixed underline width for mobile */
}

/* Exclude btn from underline effect */
.nav-links a.btn::after {
  display: none;
}

.nav-links a.btn.active {
  color: var(--clr-white);
}

@keyframes pulseCTA {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 116, 206, 0.5);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(0, 116, 206, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 116, 206, 0);
  }
}

.nav-links .btn-primary {
  animation: pulseCTA 2s infinite;
  display: inline-block;
  width: 100%;
}

.nav-links .btn-primary:hover {
  animation: none;
}

/* Phone Number Beautiful Brand Styling */
a[href^="tel:"] {
  color: var(--clr-primary) !important;
  font-weight: 700 !important;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

a[href^="tel:"]:hover {
  color: var(--clr-secondary) !important;
  transform: translateY(-2px);
}

a[href^="tel:"] i {
  color: var(--clr-secondary) !important;
  font-size: 1.1em;
  transition: var(--transition);
}

a[href^="tel:"]:hover i {
  color: var(--clr-primary) !important;
  transform: rotate(15deg) scale(1.1);
}

.nav-links .contact-link a::after {
  display: none;
}

/* Hero Section (Mobile First) */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  /* Top padding to clear header */
  overflow: hidden;
  text-align: center;
}

/* Background blob decorations */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.05;
  /* Reduced dramatically for mobile to prevent crowded feeling */
  animation: float 10s infinite alternate ease-in-out;
}

.hero::before {
  top: -5%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: var(--clr-primary);
}

.hero::after {
  bottom: -5%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: var(--clr-secondary);
  animation-delay: -5s;
}

@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(5%, 10%) scale(1.05);
  }

  100% {
    transform: translate(-5%, 5%) scale(0.95);
  }
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  z-index: 2;
  width: 100%;
}

.hero-tag {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(0, 116, 206, 0.1);
  color: var(--clr-primary);
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.75rem;
  animation: fadeInUp 1s ease both;
}

.hero-tag.hero-motto {
  font-size: 1.1rem;
  padding: 0.65rem 1.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: none;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 116, 206, 0.25);
  background: linear-gradient(135deg, rgba(0, 116, 206, 0.15), rgba(0, 180, 216, 0.1));
  box-shadow: 0 4px 15px rgba(0, 116, 206, 0.1);
}

.hero h1 {
  font-size: 2.25rem;
  /* Scaled for mobile */
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--clr-text-main);
  animation: fadeInUp 1s 0.2s ease both;
}

.hero h1 span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.125rem;
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  animation: fadeInUp 1s 0.4s ease both;
}

.hero-btns {
  display: flex;
  flex-direction: column;
  /* Stack buttons on mobile */
  gap: 1rem;
  justify-content: center;
  animation: fadeInUp 1s 0.6s ease both;
}

.hero-btns .btn {
  width: 100%;
}

/* Spinner Visual - Mobile First */
.hero-visual {
  display: flex;
  position: relative;
  height: 450px;
  /* Increased to accommodate the full height of the scaled images */
  width: 100%;
  justify-content: center;
  align-items: center;
  z-index: 1;
  margin-top: 2rem;
}

.spinner-container {
  position: relative;
  width: 500px;
  height: 500px;
  /* Scale it down to 60% so it fits beautifully in the center of mobile screens */
  transform: scale(0.6);
}

.spinner-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px dashed rgba(0, 116, 206, 0.3);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}

.line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 250px;
  height: 2px;
  background: rgba(0, 116, 206, 0.2);
  transform-origin: 0 50%;
}

.line-1 {
  transform: translateY(-50%) rotate(-90deg);
}

.line-2 {
  transform: translateY(-50%) rotate(30deg);
}

.line-3 {
  transform: translateY(-50%) rotate(150deg);
}

.spinner-item {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid var(--clr-white);
  box-shadow: var(--shadow-md);
  animation: counter-spin 40s linear infinite;
}

.item-1 {
  left: calc(50% - 100px);
  top: -100px;
}

.item-2 {
  left: calc(50% + 216.5px - 100px);
  top: calc(50% + 125px - 100px);
}

.item-3 {
  left: calc(50% - 216.5px - 100px);
  top: calc(50% + 125px - 100px);
}

.spinner-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: white;
}

.spinner-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: var(--clr-white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--shadow-hover);
  z-index: 10;
  border: 5px solid rgba(0, 116, 206, 0.1);
}

.spinner-center img {
  width: 80px;
  animation: pulse-gear 4s infinite alternate ease-in-out;
}

@keyframes pulse-gear {
  0% {
    transform: scale(0.95) rotate(-5deg);
  }

  100% {
    transform: scale(1.05) rotate(5deg);
  }
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@keyframes counter-spin {
  100% {
    transform: rotate(-360deg);
  }
}

/* Storytelling About Section */
.story-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.story-content {
  background: var(--clr-white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.story-lead {
  font-size: 1.125rem;
  color: var(--clr-text-main);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.story-bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--clr-bg-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.story-bullets li:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 116, 206, 0.2);
}

.bullet-icon {
  font-size: 1.5rem;
  color: var(--clr-white);
  background: var(--gradient-primary);
  padding: 1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 10px rgba(0, 116, 206, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.story-bullets div {
  color: var(--clr-text-muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.story-bullets strong {
  color: var(--clr-text-main);
  display: block;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
  font-weight: 800;
}

.mission-vision-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
  flex: 1;
  justify-content: space-between;
}

.mission-card {
  background: var(--gradient-primary);
  color: var(--clr-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  flex: 1;
}

.vision-card {
  background: var(--gradient-secondary);
  color: var(--clr-white);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
  flex: 1;
}

.mission-card:hover,
.vision-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.mission-icon {
  font-size: 1.35rem;
  margin-bottom: 0;
  color: var(--clr-white);
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.vision-card .mission-icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.mission-card:hover .mission-icon,
.vision-card:hover .mission-icon {
  transform: scale(1.08) rotate(6deg);
}

.mission-card h3,
.vision-card h3 {
  font-size: 1.35rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.mission-card p,
.vision-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.95;
  margin: 0;
}

/* Core Values Column & Stack */
.story-values {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.values-column-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  flex: 1;
  justify-content: space-between;
}

.values-column-grid .value-card {
  flex: 1;
  justify-content: center;
}

.value-card {
  background: var(--clr-white);
  padding: 1.15rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 116, 206, 0.08);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: var(--transition);
  z-index: 1;
  flex: 1;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(0, 116, 206, 0.3);
}

.value-header-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  position: relative;
  z-index: 2;
}

.value-number {
  position: absolute;
  top: 0.85rem;
  right: 1.25rem;
  font-size: 2.2rem;
  font-weight: 900;
  opacity: 0.06;
  color: var(--clr-primary);
  line-height: 1;
  transition: var(--transition);
  user-select: none;
}

.value-card:hover .value-number {
  opacity: 0.15;
  transform: scale(1.05);
  color: var(--clr-primary-dark);
}

.value-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 10px;
  background: var(--clr-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--clr-primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0;
  transition: var(--transition);
  border: 1px solid rgba(0, 116, 206, 0.1);
}

.value-card:hover .value-icon {
  background: var(--gradient-primary);
  color: var(--clr-white);
  transform: rotate(-5deg) scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 116, 206, 0.25);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--clr-text-main);
  margin-bottom: 0;
}

.value-card p {
  color: var(--clr-text-muted);
  font-size: 0.925rem;
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 2;
}

.value-glow {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  filter: blur(40px);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.value-card:hover .value-glow {
  opacity: 0.35;
}

/* Employee of the Year Showcase Section (Compact Brand Banner) */
.employee-award-section {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
}

.employee-award-card {
  background: var(--gradient-primary);
  color: var(--clr-white);
  padding: 1.25rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.25);
  max-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .employee-award-card {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }
  .award-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    min-width: fit-content;
  }
  .award-right {
    flex: 1;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
}

.employee-award-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.5);
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--clr-white);
  padding: 0.4rem 1.25rem;
  margin-bottom: 0;
  border-bottom: 2px solid var(--clr-secondary);
  backdrop-filter: blur(8px);
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
}

.award-badge i {
  color: var(--clr-secondary);
  font-size: 1.25rem;
  filter: drop-shadow(0 0 8px rgba(90, 173, 25, 0.5));
}

.award-year {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--clr-white);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  line-height: 1;
}

.award-label {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--clr-white);
  line-height: 1;
  text-transform: uppercase;
}

.award-photo-wrapper {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--clr-white);
  margin-bottom: 0;
  background: var(--clr-bg-light);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.award-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.award-name {
  font-size: 1.35rem;
  color: var(--clr-white);
  margin: 0 0 0.2rem 0;
  font-weight: 800;
  font-family: 'Outfit', sans-serif;
}

.award-title {
  color: var(--clr-bg-light);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

.award-quote {
  color: var(--clr-white);
  font-style: italic;
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0;
  max-width: 100%;
}

.award-quote i {
  color: var(--clr-secondary);
  margin-right: 8px;
  font-size: 0.85rem;
}

.award-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  filter: blur(30px);
  pointer-events: none;
  z-index: 0;
}

/* Responsive Overrides for About & Values */
@media (max-width: 767px) {
  .employee-award-card {
    padding: 1.5rem 1.25rem;
  }

  .award-badge {
    padding: 0.4rem 1rem;
  }
}

/* Company Stats Section */
.company-stats {
  background: var(--clr-primary);
  /* Changed from undefined blue to match main brand colors */
  color: var(--clr-white);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  text-align: center;
}

.stat-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.stat-box p {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

/* Partners Section */
.partners {
  background: var(--clr-white);
}

.partners-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  width: 100%;
  margin-top: 2rem;
  position: relative;
}

.carousel-btn {
  background: var(--clr-white);
  border: 1px solid #e2e8f0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--clr-text-main);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  z-index: 5;
  box-shadow: var(--shadow-md);
}

.carousel-btn:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
  transform: scale(1.1);
  box-shadow: var(--shadow-hover);
}

.partners-viewport {
  flex: 1;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* Subtle fade gradient at edges inside viewport for premium marquee look */
.partners-viewport::before,
.partners-viewport::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 15;
  pointer-events: none;
}

.partners-viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--clr-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--clr-white) 0%, rgba(255, 255, 255, 0) 100%);
}

.partners-carousel {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
  padding: 1rem 0;
  will-change: transform;
}

.partners-wrapper:hover .partners-carousel,
.partners-wrapper.is-paused .partners-carousel,
.partners-viewport:hover .partners-carousel,
.partners-carousel:hover,
.partners-carousel.is-paused {
  animation-play-state: paused !important;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 0.75rem));
  }
}

.partner-item {
  min-width: 160px;
  height: 100px;
  background: var(--clr-white);
  border: 1px solid #eaeaea;
  border-radius: var(--radius-md);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.partner-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px) scale(1.05);
  border-color: var(--clr-primary);
  z-index: 10;
}

.partner-item img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
  transition: var(--transition);
}

.partner-item:hover img {
  transform: scale(1.08);
}

/* Products Section */
.products {
  background: var(--clr-bg-light);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--clr-white);
  padding: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: left;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #eaeaea;
}

.product-img-wrapper {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background-color: #ffffff;
  position: relative;
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transition: transform 0.5s ease;
  cursor: pointer;
}

.product-img-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);
  z-index: 2;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.product-card:hover .product-img-wrapper img {
  transform: scale(1.05);
}

.product-card:hover .product-img-wrapper::before {
  opacity: 1;
}

.product-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--clr-text-main);
  transition: var(--transition);
}

.product-info p {
  color: var(--clr-text-muted);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-info .btn {
  margin-top: auto;
}

/* Category Cards for Homepage - 2026 Premium Redesign */
.category-card {
  background: var(--clr-white);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow: hidden;
  text-align: left;
  border: none;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.category-card:hover {
  box-shadow: 0 25px 50px rgba(0, 163, 224, 0.15);
  transform: translateY(-10px);
}

.category-card .category-main-link {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-slider-wrapper {
  width: calc(100% - 16px);
  margin: 8px 8px 0 8px;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.category-slider-wrapper .slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.3s ease-in-out;
  width: 100%;
}

.category-slider-wrapper .slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-slider-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.6s ease;
}

.category-card:hover .category-slider-wrapper img {
  transform: scale(1.08);
}

.category-info {
  padding: 1rem 1rem 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-info h3 {
  margin-bottom: 0.25rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-text-main);
  letter-spacing: -0.02em;
}

.category-actions {
  padding: 0.5rem 1rem 1.15rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  border-top: 1px solid #f1f5f9;
}

.category-card .explore-link,
.explore-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--clr-primary) !important;
  font-size: 0.885rem;
  transition: var(--transition);
  text-decoration: none;
}

.category-card .all-products-link,
.all-products-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: #0f172a !important;
  font-size: 0.885rem;
  transition: var(--transition);
  text-decoration: none;
}

.explore-link:hover {
  color: var(--clr-secondary) !important;
  text-decoration: underline;
}

.all-products-link:hover {
  color: var(--clr-primary) !important;
  text-decoration: underline;
}

.order-btn {
  align-self: flex-start;
  width: 100%;
  text-align: center;
  padding: 0.5rem 1.5rem;
}

.product-card:hover .product-info h3 {
  color: var(--clr-primary);
}

/* Contact Section */
.contact-section {
  background-color: var(--clr-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form-container {
  background: var(--clr-white);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.contact-form .form-group {
  margin-bottom: 1.5rem;
}

.contact-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--clr-text-main);
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background-color: #f8fafc;
  transition: all 0.3s ease;
  font-family: inherit;
  color: var(--clr-text-main);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--clr-primary);
  background-color: var(--clr-white);
  box-shadow: 0 0 0 4px rgba(0, 163, 224, 0.1);
}

.map-container {
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Footer */
footer {
  background: var(--clr-text-main);
  color: var(--clr-white);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: #a0aec0;
}

.footer-links h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--clr-white);
}

.footer-links ul li {
  margin-bottom: 0.5rem;
}

.footer-links ul li a {
  color: #a0aec0;
  transition: var(--transition);
}

.footer-links ul li a:hover {
  color: var(--clr-primary);
}

.footer-contact li {
  display: flex;
  flex-direction: column;
  /* Stack icons and text on small mobile */
  align-items: center;
  gap: 0.5rem;
  color: #a0aec0;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--clr-secondary);
  font-size: 1.25rem;
}

.footer-contact a {
  color: #a0aec0;
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #a0aec0;
  font-size: 0.875rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/* ========================================================== */
/* Tablet Breakpoint (768px +) */
/* ========================================================== */
@media (min-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .hero {
    min-height: 100vh;
    padding: 120px 0 0 0;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-btns {
    flex-direction: row;
  }

  .hero-btns .btn {
    width: auto;
  }

  .about {
    padding: 4rem;
    margin: 2rem;
  }

  .about-stats {
    flex-direction: row;
    justify-content: center;
    gap: 3rem;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .footer-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: left;
  }

  .footer-brand {
    align-items: flex-start;
    max-width: 300px;
  }

  .footer-contact li {
    flex-direction: row;
  }
}


/* ========================================================== */
/* Desktop Breakpoint (992px +) */
/* ========================================================== */
@media (min-width: 992px) {

  /* Header Setup */
  header {
    padding: 1.5rem 0;
    background: transparent;
    border-bottom: none;
    box-shadow: none;
    backdrop-filter: none;
  }

  header.scrolled {
    background: transparent;
    box-shadow: none;
  }

  .nav-container {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.5);
  }

  .logo {
    width: 120px;
    height: 50px;
  }

  .logo img {
    height: 55px;
  }

  .mobile-menu-btn {
    display: none;
  }

  .mobile-only {
    display: none !important;
  }

  nav[role="navigation"] {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .nav-links {
    position: static;
    background: transparent;
    flex-direction: row;
    padding: 0;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: flex;
    gap: 2rem;
    align-items: center;
  }

  .nav-links li {
    width: auto;
  }

  .nav-links .btn-primary {
    width: auto;
  }

  .nav-links a::after {
    left: 0;
    transform: none;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }

  /* Hero Setup */
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-tag.hero-motto {
    font-size: 1.25rem;
    padding: 0.75rem 2rem;
  }

  .hero-content {
    text-align: left;
  }

  .hero-btns {
    justify-content: flex-start;
  }

  .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  /* Restore vibrant blobs on desktop */
  .hero::before,
  .hero::after {
    opacity: 0.5;
  }

  /* Desktop Spinner Layout */
  .hero-visual {
    height: 600px;
    margin-top: 0;
    overflow: visible;
  }

  .spinner-container {
    /* Push slightly right on desktop to create the semi-circle peek effect */
    transform: translateX(15%) scale(1);
  }

  .story-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
  }

  .story-content {
    padding: 3rem;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .stat-number {
    font-size: 3.5rem;
  }

  .partner-item {
    min-width: 200px;
    height: 120px;
  }

  /* About Layout */
  .story-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .products-main .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer Layout */
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.image-modal.show {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  animation-name: zoom;
  animation-duration: 0.3s;
}

@keyframes zoom {
  from {
    transform: scale(0)
  }

  to {
    transform: scale(1)
  }
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 2001;
}

.close-modal:hover,
.close-modal:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

.product-img-wrapper {
  cursor: pointer;
}

/* Products Page Layout */
.products-layout {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.products-sidebar {
  background: var(--clr-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  border: 1px solid #eaeaea;
}

.sidebar-title {
  font-size: 1.25rem;
  color: var(--clr-text-main);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--clr-bg-light);
}

.category-list {
  list-style: none;
  padding: 0;
}

.category-item {
  border-bottom: 1px solid #f0f0f0;
}

.category-item:last-child {
  border-bottom: none;
}

.category-header {
  padding: 1rem 0;
  font-weight: 600;
  color: #334155;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.category-header:hover {
  color: var(--clr-primary);
}

.subcategory-list {
  display: none;
  list-style: none;
  padding: 0 0 1rem 1rem;
}

.subcategory-list.open {
  display: block;
}

.category-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.category-header i {
  transition: transform 0.3s ease;
}

.category-header.open i {
  transform: rotate(90deg);
}

.subcategory-list li {
  margin-bottom: 0.5rem;
}

.subcategory-list li a {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.subcategory-list li a:hover {
  color: var(--clr-primary);
  padding-left: 5px;
}

/* Layout Breakpoints */
@media (min-width: 992px) {
  .products-layout {
    flex-direction: row;
    align-items: flex-start;
  }

  .products-sidebar {
    width: 300px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
  }

  .products-main {
    flex-grow: 1;
  }
}

/* --- Modern Maintenance Services Section (2026 Design) --- */
.maintenance-modern-section {
  position: relative;
  padding: 4rem 0;
  overflow: hidden;
  background-color: #0b1120;
  color: #fff;
}

.maintenance-parallax-bg {
  position: absolute;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: linear-gradient(135deg, rgba(0, 116, 206, 0.2), rgba(90, 173, 25, 0.1)), url('../images/repair_mri_african.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  filter: blur(15px) brightness(0.2);
  z-index: 0;
  transform: translateZ(0);
}

.maintenance-modern-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.maintenance-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.maintenance-content .hero-tag {
  background: #ffffff;
  color: #0074ce;
  border: 1px solid #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  font-weight: 700;
}

.maintenance-title {
  font-size: clamp(1.5rem, 2.3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, #ffffff, #b3d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
}

.maintenance-subtitle {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  text-align: left;
}

.maintenance-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #ffffff;
  border: 1px solid #ffffff;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  transition: var(--transition);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.point-item:hover {
  background: #f8fafc;
  border-color: #0074ce;
  transform: translateX(6px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 116, 206, 0.35);
}

.point-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(0, 116, 206, 0.1);
  border: 1px solid rgba(0, 116, 206, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0074ce;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.point-text {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

.maintenance-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-glow {
  box-shadow: 0 0 20px rgba(0, 116, 206, 0.5);
}

.cta-glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  box-shadow: none;
}

.cta-glass:hover {
  background: rgba(255, 255, 255, 0.2);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  padding: 0.875rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Bento Grid */
.maintenance-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 200px 200px 200px;
  gap: 1.5rem;
}

.bento-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
  cursor: pointer;
  background: #1e293b;
}

.bento-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 50px rgba(0, 116, 206, 0.3);
}

.bento-img-wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bento-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  opacity: 0.85;
}

.bento-item:hover .bento-img-wrapper img {
  transform: scale(1.1);
  opacity: 1;
}

.item-mri {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.item-xray {
  grid-column: 1 / 2;
  grid-row: 3 / 4;
}

.item-ultrasound {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.item-analyzer {
  grid-column: 2 / 3;
  grid-row: 2 / 4;
}

.bento-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
  display: flex;
  align-items: center;
  gap: 1rem;
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s ease;
}

.bento-item:hover .bento-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.bento-overlay i {
  font-size: 1.5rem;
  color: #80ed99;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem;
  border-radius: 12px;
  backdrop-filter: blur(5px);
}

.bento-overlay span {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .maintenance-modern-container {
    grid-template-columns: 1fr;
  }

  .maintenance-content {
    align-items: center;
    text-align: center;
  }

  .maintenance-title,
  .maintenance-subtitle {
    text-align: center;
  }

  .maintenance-points {
    width: 100%;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .maintenance-ctas {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .maintenance-bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bento-item {
    height: 250px;
    grid-column: auto !important;
    grid-row: auto !important;
  }
}

/* --- Modern Maintenance Services Page (2026 Design) --- */

.srv-hero {
  position: relative;
  padding: 12rem 0 4rem;
  overflow: hidden;
  background-color: #0b1120;
  color: #fff;
  text-align: center;
}

.srv-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background: linear-gradient(to bottom, rgba(11, 17, 32, 0.7), rgba(11, 17, 32, 0.95)), url('../images/repair_mri_african.png') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  z-index: 0;
}

.srv-hero-container {
  position: relative;
  z-index: 1;
}

.srv-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff, #80ed99);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.srv-subtitle {
  font-size: 1.25rem;
  color: #cbd5e1;
  max-width: 800px;
  margin: 0 auto;
}

.srv-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.srv-intro-text .lead-text {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--clr-primary);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.srv-intro-text p {
  font-size: 1.1rem;
  color: var(--clr-text-muted);
  line-height: 1.8;
}

.srv-intro-images {
  position: relative;
  height: 400px;
}

.srv-intro-images .img-main {
  width: 70%;
  height: 300px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-hover);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  border: 5px solid white;
}

.srv-intro-images .img-sub {
  width: 60%;
  height: 250px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  border: 5px solid white;
}

.float-anim {
  animation: float-y 6s ease-in-out infinite;
}

.float-anim-delayed {
  animation: float-y 6s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes float-y {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.srv-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.srv-card {
  background: var(--clr-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
}

.srv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 116, 206, 0.2);
}

.srv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.srv-card:hover::before {
  transform: scaleX(1);
}

.srv-card-icon {
  width: 60px;
  height: 60px;
  background: rgba(0, 116, 206, 0.1);
  color: var(--clr-primary);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.srv-card:hover .srv-card-icon {
  background: var(--gradient-primary);
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.srv-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--clr-text-main);
}

.srv-card p {
  color: var(--clr-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.srv-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.equipment-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

@media (max-width: 768px) {
  .equipment-pills {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .equipment-pills {
    grid-template-columns: 1fr;
  }
}

.equipment-pills .pill {
  background: var(--clr-bg-light);
  color: var(--clr-primary-dark);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(0, 116, 206, 0.1);
  transition: var(--transition);
  cursor: default;
}

.equipment-pills .pill:hover {
  background: var(--clr-primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 116, 206, 0.2);
}

.whyus-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.equip-list {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 576px) {
  .equip-list {
    grid-template-columns: 1fr;
  }
}

.whyus-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--clr-white);
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.whyus-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.whyus-item i {
  color: var(--clr-secondary);
  font-size: 1.25rem;
}

.whyus-item span {
  font-weight: 600;
  color: var(--clr-text-main);
}

@media (max-width: 992px) {

  .srv-intro-grid,
  .srv-dual-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .srv-intro-images {
    margin-top: 2rem;
  }
}

/* Bouncy Button Animation */
.bouncy-btn {
  animation: bounce-subtle 2s infinite ease-in-out;
}

@keyframes bounce-subtle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 576px) {
  .maintenance-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .products-sidebar .category-list {
    display: none;
    margin-top: 1rem;
  }

  .products-sidebar .category-list.show-on-mobile {
    display: block;
  }

  .products-sidebar h2.sidebar-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0;
  }

  .products-sidebar h2.sidebar-title::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
  }

  .products-sidebar h2.sidebar-title.open::after {
    content: '\f077';
  }
}

bouncy-btn {
  animation: bounce-subtle 2s infinite ease-in-out;
}

@keyframes bounce-subtle {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 576px) {
  .maintenance-ctas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
    text-align: center;
  }
}

@media (max-width: 992px) {
  .products-sidebar .category-list {
    display: none;
    margin-top: 1rem;
  }

  .products-sidebar .category-list.show-on-mobile {
    display: block;
  }

  .products-sidebar h2.sidebar-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 0;
  }

  .products-sidebar h2.sidebar-title::after {
    content: '\f078';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1rem;
  }

  .products-sidebar h2.sidebar-title.open::after {
    content: '\f077';
  }
}

@media (max-width: 768px) {
  .story-mission {
    grid-template-columns: 1fr !important;
  }
  .employee-award-card {
    grid-column: auto !important;
  }
}

/* Core Values Grid */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.core-value-card {
  background: var(--clr-white);
  color: var(--clr-text-main);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  border: 1px solid rgba(0, 116, 206, 0.1);
  transition: var(--transition);
}

.core-value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.cv-icon {
  font-size: 1.35rem;
  margin-bottom: 0;
  color: var(--clr-primary);
  width: 42px;
  height: 42px;
  min-width: 42px;
  background: rgba(0, 116, 206, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: var(--transition);
  border: 1px solid rgba(0, 116, 206, 0.15);
}

.core-value-card:hover .cv-icon {
  transform: scale(1.08) rotate(6deg);
  background: var(--clr-primary);
  color: var(--clr-white);
}

.core-value-card h4 {
  font-size: 1.25rem;
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  color: #0b1f40;
  font-weight: 800;
}

.core-value-card p {
  color: var(--clr-text-main);
  opacity: 0.85;
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0;
}

/* Global Partners Grid */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.partner-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  color: #e2e8f0;
  transition: var(--transition);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.partner-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--clr-secondary);
  color: var(--clr-white);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(90, 173, 25, 0.2);
}

/* Leadership Team Section */
.leadership-section {
  padding: 5rem 0;
  background-color: var(--clr-bg-light);
}

.team-grid {
  display: grid;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.team-grid.ceo-level {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid.chief-level {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.team-grid.head-level {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.team-grid.grouped {
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-sm);
}

.team-grid.grouped .team-card {
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: var(--clr-white);
}

.team-grid.grouped .team-card:hover {
  transform: none;
  background: var(--clr-bg-light);
  box-shadow: inset 0 0 0 2px var(--clr-primary);
  z-index: 2;
}

.team-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 116, 206, 0.3); /* clr-primary */
}

.team-card .team-photo {
  width: 150px;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--clr-bg-light);
  box-shadow: var(--shadow-sm);
}

.team-card h3 {
  color: var(--clr-text-main);
  font-size: 1.4rem;
  margin-bottom: 0.25rem;
}

.team-card .team-title {
  color: var(--clr-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-card .team-bio {
  color: var(--clr-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.btn-read-bio {
  margin-top: auto;
  align-self: center;
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--clr-primary);
  background: rgba(0, 116, 206, 0.1);
  border: 1px solid rgba(0, 116, 206, 0.2);
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-read-bio:hover {
  background: var(--clr-primary);
  color: var(--clr-white);
  border-color: var(--clr-primary);
}

.ceo-level .team-card {
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .ceo-level .team-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    padding: 3rem;
  }
  
  .ceo-level .team-card .team-photo {
    width: 200px;
    height: 200px;
    margin: 0 3rem 0 0;
    flex-shrink: 0;
  }
}

/* Modal Styles */
.bio-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bio-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.bio-modal {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}

.bio-modal-overlay.active .bio-modal {
  transform: translateY(0);
}

.bio-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.05);
  border: none;
  font-size: 1.25rem;
  color: var(--clr-text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 2;
}

.bio-modal-close:hover {
  background: var(--clr-bg-light);
  color: var(--clr-text-main);
}

.bio-modal-header {
  padding: 2.5rem 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  background: var(--clr-bg-light);
}

.bio-modal-header .team-photo {
  width: 120px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 1.25rem;
  border: 4px solid var(--clr-white);
  box-shadow: var(--shadow-sm);
}

.bio-modal-header h3 {
  font-size: 1.5rem;
  color: var(--clr-text-main);
  margin-bottom: 0.25rem;
}

.bio-modal-header .team-title {
  color: var(--clr-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bio-modal-body {
  padding: 2.5rem;
  color: var(--clr-text-light);
  line-height: 1.7;
  font-size: 1rem;
}

/* Dropdown Menus */
.nav-links li.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: var(--clr-white);
  min-width: 260px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  padding: 1rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  display: flex;
  flex-direction: column;
  list-style: none;
}

.nav-links li.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  margin: 0;
}

.dropdown-menu li a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--clr-text-main) !important;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  margin: 0;
  text-align: left;
}

.dropdown-menu li a:hover {
  background-color: rgba(0, 116, 206, 0.05);
  color: var(--clr-primary) !important;
  padding-left: 2rem;
}

.dropdown > a {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background-color: rgba(0,0,0,0.02);
    min-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0;
  }
  
  .nav-links li.dropdown:hover .dropdown-menu,
  .nav-links li.dropdown:active .dropdown-menu {
    display: block;
  }
}

/* Employee of the Year Exact Match Card */
.employee-award-horizontal {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: var(--clr-white);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0,0,0,0.05);
  gap: 1rem;
  width: 100%;
}

.award-image-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-double-border {
  border: 2px solid var(--clr-primary);
  border-radius: 12px;
  padding: 4px;
  background: var(--clr-white);
  display: inline-flex;
}

.image-double-border img {
  width: 130px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}


.award-content-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  text-align: center;
  padding: 0;
}

.award-header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.header-medal {
  font-size: 1.5rem;
  color: var(--clr-primary);
}

.medal-line-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}

.medal-line-wrapper .line {
  height: 1px;
  background: rgba(0,0,0,0.15);
  flex: 1;
  max-width: 30px;
}

.award-title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.award-title {
  color: #0b1f40; /* Dark blue/navy */
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0;
}

.award-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 0.25rem 0 0.5rem 0;
  gap: 0.5rem;
}

.award-divider .line {
  height: 1px;
  background: rgba(0,0,0,0.15);
  flex: 1;
}

.award-divider .diamond {
  width: 7px;
  height: 7px;
  background: var(--clr-secondary);
  transform: rotate(45deg);
}

.award-person {
  margin-bottom: 0.75rem;
}

.person-name {
  color: #0b1f40;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.2px;
}

.person-title-badge {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.award-quote-box {
  background: var(--clr-white);
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0.75rem 1rem;
  border-radius: 12px;
  text-align: center;
  width: 100%;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.quote-icon-left, .quote-icon-right {
  color: var(--clr-secondary);
  font-size: 1.1rem;
  align-self: flex-start;
}

.quote-icon-right {
  align-self: flex-end;
}

.award-quote-box p {
  font-style: italic;
  color: #333;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
  flex: 1;
}

@media (max-width: 768px) {
  .employee-award-horizontal {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.5rem;
  }
  
  .image-border img {
    width: 100%;
    height: 300px;
  }
}