.logo-text {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: #ffea70;
  text-transform: uppercase;
  text-shadow: 0 4px 20px rgba(255, 234, 112, 0.4);
  line-height: 0.8;
}

.logo-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: white;
  letter-spacing: 0.06em;
  margin-top: 0.1rem;
  opacity: 0.92;
}

.sv-service-card {
  background: white;
  border-radius: 1.2rem; /* was 1.5rem → ~20% smaller */
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08); /* was 0 20px 40px */
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sv-service-card:hover {
  transform: translateY(-13px); /* was -16px */
  box-shadow: 0 24px 56px rgba(0, 48, 135, 0.15); /* was 0 30px 70px */
}

.sv-image-wrapper {
  position: relative;
  height: 256px; /* was 320px → 20% reduction */
  overflow: hidden;
}

.sv-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sv-service-card:hover .sv-service-image {
  transform: scale(1.1); /* was 1.12 → slight reduction for balance */
}

.sv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 48, 135, 0.6), transparent 60%);
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.sv-service-card:hover .sv-overlay {
  opacity: 0.6;
}

/* Animations – reduced distances and delays slightly */
.animate-fade-up {
  opacity: 0;
  transform: translateY(48px); /* was 60px */
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animation-delay-100 {
  transition-delay: 0.08s;
} /* was 0.1s */
.animation-delay-200 {
  transition-delay: 0.16s;
} /* was 0.2s */
.animation-delay-300 {
  transition-delay: 0.24s;
} /* was 0.3s */

/* Text animation classes */
.sv-slide-title,
.sv-slide-subtitle {
  transition: all 0.8s ease-out;
}
.opacity-100 {
  opacity: 1 !important;
}
.translate-y-0 {
  transform: translateY(0) !important;
}

.sv-value-card {
  background: white;
  border-radius: 1.2rem; /* was 1.5rem */
  padding: 2.4rem 1.6rem; /* was 3rem 2rem */
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08); /* was 0 20px 40px */
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.sv-value-card:hover {
  transform: translateY(-13px); /* was -16px */
  box-shadow: 0 24px 56px rgba(0, 48, 135, 0.15); /* was 0 30px 70px */
}

.sv-icon-wrapper {
  width: 72px; /* was 90px */
  height: 72px; /* was 90px */
  margin: 0 auto 1.6rem; /* was 2rem */
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffea7033, #00308722);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.sv-value-card:hover .sv-icon-wrapper {
  transform: scale(1.12) rotate(5deg); /* was 1.15 */
  background: linear-gradient(135deg, #ffea70, #003087);
  box-shadow: 0 8px 24px rgba(255, 234, 112, 0.4); /* was 0 10px 30px */
}

.sv-value-icon {
  font-size: 2.8rem; /* was 3.5rem */
  transition: all 0.5s ease;
}

.sv-value-card:hover .sv-value-icon {
  transform: scale(1.15); /* was 1.2 */
}

/* Scroll animations – reduced translate distance */
.animate-fade-up {
  opacity: 0;
  transform: translateY(48px); /* was 60px */
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animation-delay-100 {
  transition-delay: 0.08s;
}
.animation-delay-200 {
  transition-delay: 0.16s;
}
.animation-delay-300 {
  transition-delay: 0.24s;
}

/* Hexagon shape – slightly smaller */
.hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hexagon-inner {
  clip-path: polygon(
    50% 3.2%,
    96.8% 27%,
    96.8% 73%,
    50% 96.8%,
    3.2% 73%,
    3.2% 27%
  );
}

/* Entrance animation – reduced scale/translate */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(80px) rotate(-8deg);
  } /* was 0.6 / 100px / -10deg */
  60% {
    opacity: 0.8;
    transform: scale(1.06) translateY(-12px) rotate(4deg);
  } /* was 1.08 / -15px / 5deg */
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
  }
}

.animate-float-in {
  opacity: 0;
  animation: floatIn 1.4s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Pulse glow – reduced scale */
@keyframes pulse-slow {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.12);
  } /* was 1.15 */
}
.animate-pulse-slow {
  animation: pulse-slow 12s infinite ease-in-out;
}
.delay-1000 {
  animation-delay: 1s;
}

/* Underline expand – shorter width */
@keyframes expand {
  from {
    width: 0;
  }
  to {
    width: 6.4rem;
  } /* was 8rem → 20% smaller */
}
.animate-expand {
  animation: expand 1.2s ease-out forwards;
}

/* Slide background pattern – reduced distance */
@keyframes slide-slow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 96px 96px;
  } /* was 120px → ~20% smaller */
}
.animate-slide-slow {
  animation: slide-slow 40s linear infinite;
}

:root {
  --primary: #003087;
  --primary-dark: #001f5a;
  --accent: #ffea70;
  --light: #f8f9fa;
  --gray: #6b7280;
  --dark: #111827;
  --bg: #f9fafb;
  --text: #1f2937;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 3.2vw, 2.8rem); /* was clamp(1.5rem, 4vw, 3.5rem) */
}

/* Hero / Banner */
.hero {
  min-height: 56vh; /* was 70vh → ~20% reduction */
  background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
  display: flex;
  align-items: center;
  padding: 6.4rem 0 4.8rem; /* was 8rem 0 6rem */
  position: relative;
  margin-top: 60px; /* was 75px */
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 234, 112, 0.12) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(2.8rem, 7.2vw, 5.2rem); /* was 3.5rem, 9vw, 6.5rem */
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.2rem; /* was 1.5rem */
  line-height: 1.05;
}

.hero p.lead {
  font-size: clamp(1.12rem, 2.8vw, 1.52rem); /* was 1.4rem, 3.5vw, 1.9rem */
  max-width: 640px; /* was 800px */
  color: var(--gray);
  margin-bottom: 2.4rem; /* was 3rem */
}

/* Section Titles */
.section-title {
  font-size: clamp(2.24rem, 5.6vw, 4rem); /* was 2.8rem, 7vw, 5rem */
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2rem; /* was 2.5rem */
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px; /* was -12px */
  left: 50%;
  transform: translateX(-50%);
  width: 112px; /* was 140px */
  height: 5px; /* was 6px */
  background: linear-gradient(90deg, var(--accent), #facc15);
  border-radius: 3px;
}

/* About Text Block */
.about-intro {
  padding: 2.4rem 0; /* was 3rem 0 */
  background: white;
}

/* Alternating paragraph + image blocks */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 4rem; /* was 5rem */
  margin-top: 64px; /* was 80px */
}

.about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem; /* was 3rem */
  align-items: center;
}

@media (min-width: 992px) {
  .about-block {
    grid-template-columns: 1fr 1fr;
  }

  .about-block.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
  }

  .about-block.reverse .text,
  .about-block.reverse .image-wrapper {
    direction: ltr;
  }
}

.about-block .text {
  padding: 1.2rem; /* was 1.5rem */
}

.about-block .text h3 {
  font-size: clamp(1.44rem, 2.8vw, 1.92rem); /* was 1.8rem, 3.5vw, 2.4rem */
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem; /* was 1.2rem */
}

.about-block .text p {
  font-size: clamp(0.88rem, 1.76vw, 1.04rem); /* was 1.1rem, 2.2vw, 1.3rem */
  color: #4b5563;
  line-height: 1.8;
}

.about-block .image-wrapper {
  border-radius: 1rem; /* was 1.2rem */
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 48, 135, 0.12); /* was 0 20px 50px */
  transition: all 0.5s ease;
}

.about-block .image-wrapper:hover {
  transform: translateY(-10px); /* was -12px */
  box-shadow: 0 28px 72px rgba(0, 48, 135, 0.22); /* was 0 35px 90px */
}

.about-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* Vision */
.vision {
  padding: 0.8rem 0; /* was 1rem 0 */
  background: white;
  text-align: center;
}

.vision h2 {
  font-size: clamp(2rem, 4.8vw, 3.6rem); /* was 2.5rem, 6vw, 4.5rem */
  color: var(--primary);
  margin-bottom: 1.6rem; /* was 2rem */
}

.vision p {
  font-size: clamp(1.04rem, 2.4vw, 1.28rem); /* was 1.3rem, 3vw, 1.6rem */
  max-width: 704px; /* was 880px */
  margin: 0 auto;
  font-weight: 500;
  color: var(--primary);
}

/* Core Values */
.values {
  padding: 6.4rem 0; /* was 8rem 0 */
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem; /* was 3rem */
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: white;
  border-radius: 1.2rem; /* was 1.5rem */
  padding: 2.8rem 2rem; /* was 3.5rem 2.5rem */
  box-shadow: 0 16px 40px rgba(0, 48, 135, 0.08); /* was 0 20px 50px */
  transition: all 0.5s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-1rem); /* was -1.2rem */
  box-shadow: 0 28px 72px rgba(0, 48, 135, 0.15); /* was 0 35px 90px */
}

.value-icon {
  font-size: 4rem; /* was 5rem */
  margin-bottom: 1.2rem; /* was 1.5rem */
  color: var(--accent);
  filter: drop-shadow(0 6px 16px rgba(255, 234, 112, 0.4)); /* was 0 8px 20px */
}

.value-title {
  font-size: 1.76rem; /* was 2.2rem */
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1rem; /* was 1.2rem */
}

.value-text {
  color: #4b5563;
  font-size: 0.96rem; /* was 1.2rem */
  line-height: 1.8;
}

/* Footer-like bottom banner */
.bottom-banner {
  background: var(--primary);
  color: white;
  padding: 4.8rem 0 3.2rem; /* was 6rem 0 4rem */
  text-align: center;
}

.bottom-banner h2 {
  font-size: clamp(2rem, 4.8vw, 3.6rem); /* was 2.5rem, 6vw, 4.5rem */
  margin-bottom: 1.2rem; /* was 1.5rem */
}

.bottom-banner p {
  font-size: clamp(1.04rem, 2.4vw, 1.28rem); /* was 1.3rem, 3vw, 1.6rem */
  max-width: 640px; /* was 800px */
  margin: 0 auto;
  opacity: 0.95;
}

/* ────────────────────────────────────────────────
   Soft Header (Call Center / About Header)
───────────────────────────────────────────────── */

.contact-header,
.about-header {
  background: linear-gradient(rgba(0, 31, 91, 0.65), rgba(0, 48, 135, 0.75)),
    url("./images/call-center.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 80vh; /* was 100vh */
  padding-top: 112px; /* was 140px */
  padding-bottom: 4rem; /* was 5rem */
  position: relative;
  color: white;
  overflow: hidden;
  margin-top: 60px; /* was 75px */
}

.header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem; /* was 4rem */
  align-items: center;
}

.header-text h1 {
  font-size: 3.84rem; /* was 4.8rem */
  font-weight: 900;
  color: #ffea70;
  margin-bottom: 1.2rem; /* was 1.5rem */
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-text .subtitle {
  font-size: 1.16rem; /* was 1.45rem */
  font-weight: 300;
  opacity: 0.92;
  max-width: 416px; /* was 520px */
}

.header-image img,
.about-header-image img {
  width: 100%;
  height: auto;
  border-radius: 13px; /* was 16px */
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45); /* was 0 20px 60px */
  transform: perspective(1000px) rotateY(8deg) rotateX(5deg);
  transition: transform 0.6s ease;
}

.about-header-image:hover img,
.header-image:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
}

/* Main content section below header */
.contact-main {
  background: #f8f9fa;
  padding: 4.8rem 0 6.4rem; /* was 6rem 0 8rem */
}

/* Contact cards */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* was 300px */
  gap: 1.6rem; /* was 2rem */
  margin-bottom: 2.4rem; /* was 3rem */
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px); /* was 12px */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px; /* was 20px */
  padding: 1.6rem 1.2rem; /* was 2rem 1.5rem */
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.25); /* was 0 8px 32px */
}

.contact-card:hover {
  transform: translateY(-13px) scale(1.04); /* was -16px */
  box-shadow: 0 19px 48px rgba(0, 48, 135, 0.4); /* was 0 24px 60px */
  background: rgba(255, 255, 255, 0.12);
}

.icon-wrapper {
  width: 72px; /* was 90px */
  height: 72px; /* was 90px */
  margin: 0 auto 1.2rem; /* was 1.5rem */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  font-size: 3.6rem; /* was 4.5rem */
  transition: transform 0.4s ease;
}

.contact-card:hover .icon {
  transform: scale(1.15);
}

.contact-card h3 {
  font-size: 1.2rem; /* was 1.5rem */
  margin-bottom: 0.64rem; /* was 0.8rem */
  color: #ffea70;
}

.contact-link {
  font-size: 0.88rem; /* was 1.1rem */
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 0.48rem; /* was 0.6rem */
  transition: color 0.3s;
}

.contact-link:hover {
  color: #ffea70;
}

.small,
.address {
  font-size: 0.84rem; /* was 1.05rem */
  opacity: 0.85;
}

/* ────────────────────────────────────────────────
   Vision-Mission (reduced)
───────────────────────────────────────────────── */

.vision-mission {
  background: linear-gradient(135deg, #f8f9fa 0%, #eef4ff 100%);
  gap: 4rem; /* was 5rem */
  margin-top: 64px; /* was 80px */
  position: relative;
  overflow: hidden;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem; /* was 4rem */
}

@media (min-width: 992px) {
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.8rem; /* was 6rem */
  }
}

.vm-card {
  border-radius: 1.6rem; /* was 2rem */
  overflow: hidden;
  position: relative;
  box-shadow: 0 16px 56px rgba(0, 48, 135, 0.15); /* was 0 20px 70px */
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 360px; /* was 450px */
  display: flex;
  flex-direction: column;
}

.vm-card:hover {
  transform: translateY(-1.44rem) scale(1.03); /* was -1.8rem */
  box-shadow: 0 36px 96px rgba(0, 48, 135, 0.25); /* was 0 45px 120px */
}

/* Background image container */
.vm-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vm-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Overlay swipe animation */
.vm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 31, 91, 0.65) 0%,
    rgba(0, 48, 135, 0.85) 100%
  );
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
}

/* Content layer */
.vm-content {
  position: relative;
  z-index: 3;
  padding: clamp(2.4rem, 5vw, 4rem) 2rem; /* was clamp(3rem, 6vw, 5rem) */
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: center;
}

/* Animations */
.animate-image-pop {
  opacity: 0;
  transform: scale(0.7);
  animation: imagePop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes imagePop {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  60% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.animate-overlay-swipe {
  animation: overlaySwipe 1.1s ease-out 0.4s forwards;
}

@keyframes overlaySwipe {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.animate-text-slide {
  opacity: 0;
  transform: translateY(60px);
  animation: textSlide 1s ease-out 1.2s forwards;
}

@keyframes textSlide {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Vision specific */
.vision-title {
  font-size: clamp(1.8rem, 5vw, 3.6rem); /* was clamp(2.8rem, 6.3vw, 4.5rem) */
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent), #ffffff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.44rem; /* was 1.8rem */
}

/* Mission specific */
.mission-title {
  font-size: clamp(1.8rem, 5vw, 3.6rem); /* was clamp(1.8rem, 6vw, 4.2rem) */
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.44rem; /* was 1.8rem */
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .vm-card {
    min-height: 480px; /* was 600px */
  }
}

/* Hide cards initially */
.vm-card.scroll-reveal {
  opacity: 0;
  transform: translateY(48px); /* was 60px */
  transition: opacity 0.1s ease, transform 0.1s ease;
}

/* Active state */
.vm-card.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Rest of your styles (contact-header, contact-cards, etc.) reduced similarly */
.contact-header,
.about-header {
  min-height: 80vh; /* was 100vh */
  padding-top: 112px; /* was 140px */
  padding-bottom: 4rem; /* was 5rem */
  margin-top: 60px; /* was 75px */
}

.header-content {
  gap: 3.2rem; /* was 4rem */
}

.header-text h1 {
  font-size: 3.84rem; /* was 4.8rem */
  margin-bottom: 1.2rem; /* was 1.5rem */
}

.header-text .subtitle {
  font-size: 1.16rem; /* was 1.45rem */
  max-width: 416px; /* was 520px */
}

.contact-cards {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); /* was 300px */
  gap: 1.6rem; /* was 2rem */
  margin-bottom: 2.4rem; /* was 3rem */
}

.contact-card {
  padding: 1.6rem 1.2rem; /* was 2rem 1.5rem */
  border-radius: 16px; /* was 20px */
}

.contact-card h3 {
  font-size: 1.2rem; /* was 1.5rem */
}
.sv-service-card {
  background: white;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sv-service-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 70px rgba(0, 48, 135, 0.15);
}

.sv-image-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.sv-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.sv-service-card:hover .sv-service-image {
  transform: scale(1.12);
}

.sv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 48, 135, 0.6), transparent 60%);
  opacity: 0.4;
  transition: opacity 0.5s ease;
}

.sv-service-card:hover .sv-overlay {
  opacity: 0.6;
}

/* Animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animation-delay-100 {
  transition-delay: 0.1s;
}
.animation-delay-200 {
  transition-delay: 0.2s;
}
.animation-delay-300 {
  transition-delay: 0.3s;
}

/* Text animation classes */
.sv-slide-title,
.sv-slide-subtitle {
  transition: all 0.8s ease-out;
}
.opacity-100 {
  opacity: 1 !important;
}
.translate-y-0 {
  transform: translateY(0) !important;
}

.sv-value-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.sv-value-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 70px rgba(0, 48, 135, 0.15);
}

.sv-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffea7033, #00308722);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.sv-value-card:hover .sv-icon-wrapper {
  transform: scale(1.15) rotate(5deg);
  background: linear-gradient(135deg, #ffea70, #003087);
  box-shadow: 0 10px 30px rgba(255, 234, 112, 0.4);
}

.sv-value-icon {
  font-size: 3.5rem;
  transition: all 0.5s ease;
}

.sv-value-card:hover .sv-value-icon {
  transform: scale(1.2);
}

/* Scroll animations */
.animate-fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.animation-delay-100 {
  transition-delay: 0.1s;
}
.animation-delay-200 {
  transition-delay: 0.2s;
}
.animation-delay-300 {
  transition-delay: 0.3s;
}

/* Hexagon shape */
.hexagon {
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hexagon-inner {
  clip-path: polygon(50% 4%, 96% 27%, 96% 73%, 50% 96%, 4% 73%, 4% 27%);
}

/* Entrance animation */
@keyframes floatIn {
  0% {
    opacity: 0;
    transform: scale(0.6) translateY(100px) rotate(-10deg);
  }
  60% {
    opacity: 0.8;
    transform: scale(1.08) translateY(-15px) rotate(5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0) rotate(0deg);
  }
}

.animate-float-in {
  opacity: 0;
  animation: floatIn 1.4s forwards cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Pulse glow background */
@keyframes pulse-slow {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}
.animate-pulse-slow {
  animation: pulse-slow 12s infinite ease-in-out;
}
.delay-1000 {
  animation-delay: 1s;
}

/* Underline expand */
@keyframes expand {
  from {
    width: 0;
  }
  to {
    width: 8rem;
  }
}
.animate-expand {
  animation: expand 1.2s ease-out forwards;
}

/* Slide background pattern */
@keyframes slide-slow {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 120px 120px;
  }
}
.animate-slide-slow {
  animation: slide-slow 40s linear infinite;
}

:root {
  --primary: #003087;
  --primary-dark: #001f5a;
  --accent: #ffea70;
  --light: #f8f9fa;
  --gray: #6b7280;
  --dark: #111827;
  --bg: #f9fafb;
  --text: #1f2937;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
}

/* Hero / Banner */
.hero {
  min-height: 70vh;
  background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  position: relative;
  margin-top: 75px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 20% 30%,
    rgba(255, 234, 112, 0.15) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hero h1 {
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.05;
}

.hero p.lead {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  max-width: 800px;
  color: var(--gray);
  margin-bottom: 3rem;
}

/* Section Titles */
.section-title {
  font-size: clamp(1.8rem, 4.3vw, 3.8rem);
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 2.3rem;
  position: relative;
  /* display: inline-block; */
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 6px;
  background: linear-gradient(90deg, var(--accent), #facc15);
  border-radius: 3px;
}

/* About Text Block */

.about-intro {
  padding: 3rem 0;
  background: white;
}

.about-intro .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
}

/* ────────────────────────────────────────────────
   Alternating paragraph + image blocks
───────────────────────────────────────────────── */

.about-content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 80px;
}

.about-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-block {
    grid-template-columns: 1fr 1fr;
  }

  .about-block.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl; /* flips order on desktop */
  }

  .about-block.reverse .text,
  .about-block.reverse .image-wrapper {
    direction: ltr; /* keeps text readable */
  }
}

.about-block .text {
  padding: 1.5rem;
}

.about-block .text h3 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.about-block .text p {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  color: #4b5563;
  line-height: 1.8;
}

.about-block .image-wrapper {
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 48, 135, 0.12);
  transition: all 0.5s ease;
}

.about-block .image-wrapper:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 90px rgba(0, 48, 135, 0.22);
}

.about-block img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3; /* you can change this ratio */
}

/* Mobile stacking */
@media (max-width: 991px) {
  .about-block.reverse {
    direction: ltr;
  }
}

/* Vision */
.vision {
  padding: 1rem 0;
  background: white;
  text-align: center;
}

.vision h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--primary);
  margin-bottom: 2rem;
}

.vision p {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  max-width: 880px;
  margin: 0 auto;
  font-weight: 500;
  color: var(--primary);
}

/* Core Values */
.values {
  padding: 8rem 0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background: white;
  border-radius: 1.5rem;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 48, 135, 0.08);
  transition: all 0.5s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-1.2rem);
  box-shadow: 0 35px 90px rgba(0, 48, 135, 0.15);
}

.value-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  color: var(--accent);
  filter: drop-shadow(0 8px 20px rgba(255, 234, 112, 0.4));
}

.value-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--primary);
  margin-bottom: 1.2rem;
}

.value-text {
  color: #4b5563;
  font-size: 1.2rem;
  line-height: 1.8;
}

/* Footer-like bottom banner */
.bottom-banner {
  background: var(--primary);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}

.bottom-banner h2 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.5rem;
}

.bottom-banner p {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

/* ────────────────────────────────────────────────
   Soft Header (Call Center Style)
───────────────────────────────────────────────── */

.contact-header {
  background: linear-gradient(rgba(0, 31, 91, 0.65), rgba(0, 48, 135, 0.75)),
    url("./images/call-center.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 5rem;
  position: relative;
  color: white;
  overflow: hidden;
}

.about-header {
  background: linear-gradient(rgba(0, 31, 91, 0.65), rgba(0, 48, 135, 0.75)),
    url("./images/oil-and-gas-8.jpg") center center / cover no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 5rem;
  position: relative;
  color: white;
  overflow: hidden;
  margin-top: 75px;
}

.header-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

/* .about-header {
  position: relative; /* Important: makes video position relative to this 
  min-height: 100vh;
  padding-top: 200px;
  padding-bottom: 5rem;
  color: white;
  overflow: hidden;
  background: var(--primary-dark); /* fallback color while video loads 
} */

/* Video as background */
.header-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Makes it cover the area like background-size: cover */
  z-index: 1; /* Behind content but above fallback bg */
}

/* Dark overlay to make text readable (adjust opacity as needed) */
.header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 31, 91, 0.75) 0%,
    rgba(0, 48, 135, 0.85) 100%
  );
  z-index: 2;
}

/* Your content should be above the overlay */
.header-content {
  position: relative;
  z-index: 3; /* Ensures text & images are on top */
}

/* Optional: make sure images/text don't get cut off */
.about-header-image img,
.header-text {
  position: relative;
  z-index: 4;
}

.header-text h1 {
  font-size: 4.8rem;
  font-weight: 900;
  color: #ffea70;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.header-text .subtitle {
  font-size: 1.45rem;
  font-weight: 300;
  opacity: 0.92;
  max-width: 520px;
}

.header-image {
  position: relative;
}

.about-header-image {
  position: relative;
}

.header-image img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  transform: perspective(1000px) rotateY(8deg) rotateX(5deg);
  transition: transform 0.6s ease;
}

.about-header-image {
  position: relative;
}

.about-header-image img {
  width: 120%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.about-header-image:hover img {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.03);
}

/* Main content section below header */
.contact-main {
  background: #f8f9fa;
  padding: 6rem 0 8rem;
}

/* Make cards lighter in this light section */
.contact-card {
  background: white;
  border: 1px solid rgba(0, 48, 135, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  color: #1a1a1a;
}

.contact-card h3 {
  color: #003087;
}

.contact-link {
  color: #003087;
}

.contact-link:hover {
  color: #ffea70;
}

/* Responsive: stack header on mobile */
@media (max-width: 992px) {
  .header-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .header-text .subtitle {
    margin: 0 auto;
  }
  .header-image {
    margin-top: 3rem;
  }
  .contact-header {
    padding: 120px 0 4rem;
  }
}

@media (max-width: 768px) {
  .contact-header h1 {
    font-size: 3.6rem;
  }
}
/* ────────────────────────────────────────────────
   End Soft Header (Call Center Style)
───────────────────────────────────────────────── */

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.contact-card:hover {
  transform: translateY(-16px) scale(1.04);
  box-shadow: 0 24px 60px rgba(0, 48, 135, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.5rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon {
  font-size: 4.5rem;
  transition: transform 0.4s ease;
}

.contact-card:hover .icon {
  transform: scale(1.15);
}

/* Phone vibration on hover */
.phone-icon:hover .icon {
  animation: vibrate 0.8s linear infinite;
}

@keyframes vibrate {
  0%,
  100% {
    transform: translate(0);
  }
  20% {
    transform: translate(-3px, 2px);
  }
  40% {
    transform: translate(3px, -2px);
  }
  60% {
    transform: translate(-2px, 3px);
  }
  80% {
    transform: translate(2px, -1px);
  }
}

/* Email notification pulse */
.email-icon .notification-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  background: #ff3b30;
  color: white;
  border-radius: 50%;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 4px rgba(255, 59, 48, 0.4);
  animation: pulse 2s infinite;
  opacity: 0;
  transform: scale(0);
  transition: all 0.4s ease;
}

.email-icon:hover .notification-badge {
  opacity: 1;
  transform: scale(1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 59, 48, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
  }
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #ffea70;
}

.contact-link {
  font-size: 1.1rem;
  color: white;
  text-decoration: none;
  font-weight: 500;
  display: block;
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}

.contact-link:hover {
  color: #ffea70;
}

.small,
.address {
  font-size: 1.05rem;
  opacity: 0.85;
}

/* .vision-mission {
  padding: clamp(8rem, 15vw, 12rem) 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef4ff 100%);
  position: relative;
  overflow: hidden;
} */

.vision-mission {
  /* display: flex;
  flex-direction: column; */
  background: linear-gradient(135deg, #f8f9fa 0%, #eef4ff 100%);
  gap: 5rem;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3.5rem);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .vm-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6rem;
  }
}

.vm-card {
  border-radius: 2rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 70px rgba(0, 48, 135, 0.15);
  transition: all 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.vm-card:hover {
  transform: translateY(-1.8rem) scale(1.03);
  box-shadow: 0 45px 120px rgba(0, 48, 135, 0.25);
}

/* Background image container */
.vm-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.vm-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.vision-card .vm-text {
  font-size: clamp(1.2rem, 2.2vw, 1rem);
  color: #dbdbdb;
  text-align: justify;
  line-height: 1.75;
  margin-bottom: 5px;
}

/* Overlay swipe animation */
.vm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 31, 91, 0.65) 0%,
    rgba(0, 48, 135, 0.85) 100%
  );
  z-index: 2;
  transform: scaleX(0);
  transform-origin: left;
}

/* Content layer */
.vm-content {
  position: relative;
  z-index: 3;
  padding: clamp(3rem, 6vw, 5rem) 2.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  text-align: center;
}

/* ────────────────────────────────────────────────
   Animations
───────────────────────────────────────────────── */

/* 1. Image pop-up (scales in with bounce) */
.animate-image-pop {
  opacity: 0;
  transform: scale(0.7);
  animation: imagePop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes imagePop {
  0% {
    opacity: 0;
    transform: scale(0.7);
  }
  60% {
    opacity: 1;
    transform: scale(1.08);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* 2. Overlay swipe (left to right reveal) */
.animate-overlay-swipe {
  animation: overlaySwipe 1.1s ease-out 0.4s forwards; /* delay after image */
}

@keyframes overlaySwipe {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}

/* 3. Text slide in from bottom */
.animate-text-slide {
  opacity: 0;
  transform: translateY(60px);
  animation: textSlide 1s ease-out 1.2s forwards; /* delay after overlay */
}

@keyframes textSlide {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Vision specific */
.vision-title {
  font-size: clamp(1.1rem, 5.2vw, 3rem);
  font-weight: 900;
  background: linear-gradient(90deg, var(--accent), #ffffff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1.8rem;
}

/* Mission specific */
.mission-title {
  font-size: clamp(1.1rem, 5.2vw, 3rem);
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 1.8rem;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .vm-card {
    aspect-ratio: auto;
    min-height: 600px;
  }
}

/* Hide cards initially */
.vm-card.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.1s ease, transform 0.1s ease;
}

/* Active state when in view */
.vm-card.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.vm-card.active .vm-bg-img {
  animation: imagePop 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* Overlay swipe (delayed after image) */
.vm-card.active .vm-overlay {
  animation: overlaySwipe 1.1s ease-out 0.4s forwards;
}

/* Text slide (delayed after overlay) */
.vm-card.active .vm-content {
  animation: textSlide 1s ease-out 1.2s forwards;
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.stagger-1 {
  transition-delay: 0.2s;
}
.stagger-2 {
  transition-delay: 0.4s;
}
.stagger-3 {
  transition-delay: 0.6s;
}
.stagger-4 {
  transition-delay: 0.8s;
}

/* Hero with background video */
.hero {
  min-height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 48, 135, 0.75),
    rgba(0, 48, 135, 0.9)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 12rem 0 8rem;
}

/* Media Layout Variations – all different */
.media-full-bg {
  position: relative;
  min-height: 80vh;
  margin: 6rem 0;
}

.media-full-bg img,
.media-full-bg video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-full-bg .content-overlay {
  position: relative;
  z-index: 3;
  padding: 6rem 2rem;
  color: white;
  text-align: center;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.4),
    rgba(0, 0, 0, 0.7)
  );
  height: 100%;
}

.media-side-by-side {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  margin: 6rem 0;
}

.media-side-by-side ul {
  padding: 5px 25px;
  font-weight: 300;
  font-size: 25px;
}

/* .media-side-by-side li {
  padding: 5px 25px;
  font-weight: 300;
  font-size: 20px;
} */

@media (min-width: 992px) {
  .media-side-by-side {
    grid-template-columns: 1fr 1fr;
  }
  .media-side-by-side.reverse {
    direction: rtl;
  }
  .media-side-by-side.reverse > * {
    direction: ltr;
  }
}

.media-centered-slider {
  margin: 6rem 0;
  text-align: center;
}

.slider-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 48, 135, 0.2);
}

.slider-placeholder {
  height: 500px;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

/* Card style for sub-sections */
.sub-service {
  background: white;
  border-radius: 1.5rem;
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 48, 135, 0.08);
  margin: 4rem 0;
}

.sub-service h3 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 20 / 10;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-3 {
  font-size: clamp(1rem, 3.5vw, 2rem);
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 200;
}

.paragraph {
  font-size: clamp(0.7rem, 2vw, 1rem);
  color: #4b5563;
  line-height: 1.5;
  text-align: justify;
}

/* Mobile menu base styles */
#mobile-menu {
  opacity: 0;
  pointer-events: none;
}

#mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger transform to X when open */
#hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

#hamburger.active span:nth-child(2) {
  opacity: 0;
}

#hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Optional: smooth fade + slide for menu items */
#mobile-menu a {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

#mobile-menu.active a {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for links */
#mobile-menu.active a:nth-child(1) {
  transition-delay: 0.1s;
}
#mobile-menu.active a:nth-child(2) {
  transition-delay: 0.2s;
}
#mobile-menu.active a:nth-child(3) {
  transition-delay: 0.3s;
}
#mobile-menu.active a:nth-child(4) {
  transition-delay: 0.4s;
}
#mobile-menu.active a:nth-child(5) {
  transition-delay: 0.5s;
}
