:root {
  --brand-blue: #002d53;
  --brand-blue-dark: #001a33;
  --brand-blue-light: #0047a3;
  --brand-blue-700: #042443;
  --brand-yellow: #fdc300;
  --brand-yellow-light: #ffdc5a;
  --brand-red: #e30613;
  --brand-cyan: #00b4d8;
  --brand-teal: #00a8a8;
  --text: #102132;
  --text-light: #ffffff;
  --muted: #5c6b7a;
  --bg: #ffffff;
  --surface: #f6f8fb;
  --gradient-primary: linear-gradient(135deg, #002d53 0%, #0047a3 50%, #00b4d8 100%);
  --gradient-hero: linear-gradient(135deg, rgba(0, 45, 83, 0.95) 0%, rgba(0, 71, 163, 0.85) 50%, rgba(0, 180, 216, 0.75) 100%);
  --ring: rgba(242, 194, 0, .35);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow: 0 10px 30px rgba(0, 0, 0, .15);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .25);
  --shadow-float: 0 15px 35px rgba(0, 45, 83, .2);
}

* { box-sizing: border-box; }
html, body { height: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #000a1e;  /* Dark blue to prevent white gaps */
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1200px, 94%);
  margin-inline: auto;
}

/* Enhanced Header with Glass Effect */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: linear-gradient(180deg, rgba(0, 45, 83, 0.98) 0%, rgba(0, 45, 83, 0.92) 100%);
  backdrop-filter: saturate(1.5) blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, .1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(0, 29, 53, 0.98) 0%, rgba(0, 29, 53, 0.95) 100%);
  box-shadow: 0 8px 40px rgba(0, 0, 0, .15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand-logo {
  height: 42px;
  transition: transform 0.3s ease;
}

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

.site-nav ul {
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  transition: color 0.3s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-yellow);
  transition: width 0.3s ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a.btn {
  color: var(--text);
}

.site-nav a.btn::after {
  display: none;
}

/* Enhanced Hero Section with Dynamic Effects */
.hero {
  position: relative;
  margin-top: 74px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transform: scale(1.1);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1.1); }
  100% { transform: scale(1.15); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(0, 29, 53, 0.95) 0%, 
    rgba(0, 45, 83, 0.85) 25%,
    rgba(0, 71, 163, 0.75) 50%, 
    rgba(0, 180, 216, 0.65) 100%);
  z-index: 1;
}

/* Animated particles background */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(253, 195, 0, 0.6);
  border-radius: 50%;
  animation: particleFloat 15s infinite linear;
}

@keyframes particleFloat {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px);
    opacity: 0;
  }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 15s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 18s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; animation-duration: 14s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; animation-duration: 16s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; animation-duration: 13s; }
.particle:nth-child(7) { left: 70%; animation-delay: 1s; animation-duration: 17s; }
.particle:nth-child(8) { left: 80%; animation-delay: 3s; animation-duration: 15s; }
.particle:nth-child(9) { left: 90%; animation-delay: 5s; animation-duration: 14s; }
.particle:nth-child(10) { left: 95%; animation-delay: 7s; animation-duration: 16s; }

.hero-split-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0;
  position: relative;
  z-index: 3;
}

/* Enhanced Text Box with Glow */
.hero-text-box {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.1) 0%, 
    rgba(255, 255, 255, 0.05) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 50px;
  box-shadow: 
    0 25px 70px rgba(0, 0, 0, 0.3),
    inset 0 0 30px rgba(255, 255, 255, 0.05);
  animation: heroSlideIn 1s ease-out;
  position: relative;
  overflow: hidden;
}

.hero-text-box::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    var(--brand-yellow), 
    transparent, 
    var(--brand-cyan), 
    transparent, 
    var(--brand-yellow));
  border-radius: 30px;
  opacity: 0.3;
  animation: borderGlow 3s linear infinite;
  background-size: 400% 400%;
}

@keyframes borderGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes heroSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 14px;
  color: var(--brand-yellow);
  margin: 0 0 12px;
}

.title-yellow {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 20px;
}

.hero-col .sub {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 30px;
}

/* Enhanced Floating Boxes with 3D Effect */
.floating-boxes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 45px;
  perspective: 1000px;
}

.floating-box {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.12) 0%, 
    rgba(255, 255, 255, 0.06) 100%);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.3s);
  transform-style: preserve-3d;
  position: relative;
  overflow: hidden;
}

.floating-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(180deg, 
    rgba(253, 195, 0, 0.1) 0%, 
    transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.floating-box:hover {
  transform: translateY(-15px) rotateX(-5deg) scale(1.05);
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.18) 0%, 
    rgba(255, 255, 255, 0.1) 100%);
  border-color: rgba(253, 195, 0, 0.4);
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.3),
    0 0 50px rgba(253, 195, 0, 0.1);
}

.floating-box:hover::before {
  opacity: 1;
}

@keyframes float {
  0%, 100% { 
    transform: translateY(0) rotateX(0); 
  }
  50% { 
    transform: translateY(-12px) rotateX(2deg); 
  }
}

.floating-box-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, 
    rgba(253, 195, 0, 0.3) 0%, 
    rgba(253, 195, 0, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  transition: all 0.3s ease;
}

.floating-box:hover .floating-box-icon {
  transform: rotateZ(360deg) scale(1.1);
  background: linear-gradient(135deg, 
    var(--brand-yellow) 0%, 
    var(--brand-yellow-light) 100%);
}

.floating-box h3 {
  background: linear-gradient(135deg, 
    var(--brand-yellow) 0%, 
    var(--brand-yellow-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px;
}

.floating-box p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  margin: 0;
  line-height: 1.4;
}

/* Hero Stats Counter */
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  flex: 1;
}

.hero-stat-value {
  font-size: 32px;
  font-weight: 900;
  background: linear-gradient(135deg, 
    var(--brand-yellow) 0%, 
    var(--brand-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  animation: countUp 2s ease-out;
}

.hero-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 5px 0 0;
}

@keyframes countUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Wave Section Transitions */
.wave-transition {
  position: relative;
  height: 120px;
  width: 100%;
  overflow: hidden;
}

.wave-transition svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.wave-transition.blue-to-white svg path {
  fill: #ffffff;
}

.wave-transition.white-to-blue svg path {
  fill: #0e3356;
}

.wave-transition.blue-to-cyan svg path {
  fill: #00b4d8;
}

/* Enhanced Buttons */
.btn {
  appearance: none;
  border: 2px solid transparent;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-light) 100%);
  color: var(--text);
  box-shadow: 0 8px 20px rgba(253, 195, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(253, 195, 0, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
}

.cta-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* Enhanced Media Cards */
.media-card {
  background: linear-gradient(145deg, rgba(0, 45, 83, 0.1), rgba(0, 180, 216, 0.1));
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  position: relative;
  transition: all 0.3s ease;
  max-height: 500px;
}

.media-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(253, 195, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.media-card:hover {
  transform: scale(1.02);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
}

.media-card:hover::before {
  opacity: 1;
}

.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.media-card.tall {
  height: 420px;
}

.media-card.tall img {
  height: 100%;
  object-fit: cover;
}

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

/* Enhanced Floating Stats */
.floating-stat {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: rgba(15, 58, 102, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, .4);
  animation: slideInRight 0.8s ease-out 0.5s both;
}

.floating-stat.enhanced {
  display: flex;
  gap: 15px;
  align-items: center;
  background: linear-gradient(135deg, 
    rgba(15, 58, 102, 0.98) 0%, 
    rgba(0, 45, 83, 0.95) 100%);
}

.stat-icon {
  font-size: 32px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stat-content {
  flex: 1;
}

.stat-bar {
  width: 150px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 8px 0;
  overflow: hidden;
}

.stat-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, 
    var(--brand-yellow) 0%, 
    var(--brand-cyan) 100%);
  border-radius: 3px;
  animation: fillBar 2s ease-out 1s both;
}

@keyframes fillBar {
  from { width: 0; }
}

.stat-detail {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  margin: 0;
}

/* Hero Showcase Badge */
.hero-showcase {
  position: relative;
}

.showcase-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, 
    var(--brand-yellow) 0%, 
    var(--brand-yellow-light) 100%);
  padding: 8px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 20px rgba(253, 195, 0, 0.4);
  animation: bounceIn 1s ease-out 0.8s both;
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.badge-icon {
  font-size: 18px;
}

.badge-text {
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
}

/* Hero Badge Float */
.hero-badge-float {
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 12px 20px;
  animation: floatBadge 4s ease-in-out infinite;
}

@keyframes floatBadge {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(10px); }
}

.badge-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.badge-content span:first-child {
  color: var(--brand-yellow);
  font-weight: 700;
  font-size: 12px;
}

.badge-content span:last-child {
  color: rgba(255, 255, 255, 0.8);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.floating-stat .kicker {
  margin: 0 0 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.floating-stat .value {
  margin: 0;
  font-weight: 900;
  font-size: 36px;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Enhanced Sections */
.section {
  padding: 80px 0;
  position: relative;
}

.section-head {
  margin-bottom: 50px;
  text-align: center;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.section h2 {
  font-size: clamp(28px, 4vw, 42px);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 12px;
  font-weight: 800;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

/* Enhanced Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  background: linear-gradient(145deg, #ffffff, #f0f4f8);
  border: 1px solid rgba(0, 45, 83, 0.08);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, var(--brand-cyan) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 45, 83, 0.15);
}

.feature:hover::before {
  opacity: 0.05;
}

.feature .icon {
  font-size: 48px;
  margin-bottom: 20px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.feature h3 {
  color: var(--brand-blue);
  font-size: 20px;
  margin: 0 0 12px;
  font-weight: 700;
}

.feature p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Enhanced Footer */
.site-footer {
  background: linear-gradient(180deg, #001a33 0%, #002d53 100%);
  color: var(--text-light);
  padding: 15px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 0;
  right: 0;
  height: 120px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%23001a33' d='M0,40 C240,100 480,20 720,60 C960,100 1200,40 1440,80 L1440,120 L0,120 Z'/%3E%3C/svg%3E") no-repeat;
  background-size: cover;
}

.site-footer::after {
  display: none !important;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

/* Enhanced Footer Brand Section */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-logo-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.footer-logo-container {
  position: relative;
  padding: 0;
  background: transparent;
  border-radius: 0;
  border: none;
  backdrop-filter: none;
  transition: all 0.3s ease;
}

.footer-logo-container:hover {
  background: transparent;
  transform: none;
  box-shadow: none;
}

.footer-logo-container .brand-logo {
  height: 40px;
  width: auto;
  filter: brightness(1.1);
}

.footer-tagline {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-tagline .company-name {
  font-size: 20px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.footer-tagline .company-slogan {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-brand-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  max-width: 350px;
  font-size: 14px;
}

/* Quality Badges */
.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.footer-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.footer-badge:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(253, 195, 0, 0.3);
  transform: translateY(-2px);
}

.footer-badge-icon {
  color: var(--brand-yellow);
  font-size: 14px;
}

/* Enhanced Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 20px;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--brand-yellow);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.4s ease;
}

.social-icon:hover {
  border-color: var(--brand-yellow);
  transform: translateY(-5px);
  color: var(--text);
}

.social-icon:hover::before {
  width: 100%;
  height: 100%;
}

.social-icon span {
  position: relative;
  z-index: 1;
}

.footer-links h4 {
  color: var(--brand-yellow);
  font-size: 14px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--brand-yellow);
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer-nav {
  display: flex;
  gap: 24px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--brand-yellow);
}

.copy {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 960px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .floating-boxes {
    grid-template-columns: 1fr;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: var(--brand-blue);
    transform: translateY(-20px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
  }
  
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  
  .site-nav ul {
    flex-direction: column;
    gap: 16px;
    padding: 0 20px;
  }
  
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 0;
    outline: 0;
    cursor: pointer;
  }
  
  .nav-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    display: block;
    border-radius: 2px;
    transition: all 0.3s ease;
  }
  
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Additional Enhancements */
.parallax-section {
  position: relative;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.slide-in {
  animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Image Size Controls - Fix oversized images */
.hero-col.media .media-card {
  max-width: 100%;
  max-height: 450px;
}

.section-expertise .media-card {
  max-height: 420px;
}

.section-expertise .media-card img {
  height: 100%;
  object-fit: cover;
}

.section-services .media-card {
  max-height: 400px;
}

.section-services .media-card img {
  height: 100%;
  object-fit: cover;
}

.section-contact .media-card {
  max-height: 380px;
}

.section-contact .media-card img {
  height: 100%;
  object-fit: cover;
}

.section-about img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

/* Enhanced Gallery Section */
.section-gallery {
  background: linear-gradient(135deg, #0e3356 0%, #002d53 50%, #0047a3 100%);
  color: #e8f1fb;
  position: relative;
  overflow: hidden;
}

.section-gallery::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 195, 0, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }
.gallery-item:nth-child(6) { animation-delay: 0.6s; }
.gallery-item:nth-child(7) { animation-delay: 0.7s; }
.gallery-item:nth-child(8) { animation-delay: 0.8s; }

.gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(253, 195, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 29, 53, 0.9) 0%, transparent 100%);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: var(--brand-yellow);
  margin: 0 0 5px;
  font-size: 16px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 14px;
}

/* Gallery View More Button */
.gallery-more {
  text-align: center;
  margin-top: 40px;
}

.gallery-more .btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(253, 195, 0, 0.5);
  color: var(--brand-yellow);
}

/* Enhanced Branch Solutions Section */
.section-branchen {
  background: linear-gradient(180deg, #f8fafb 0%, #eef3f9 100%);
  position: relative;
}

.section-branchen::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230047a3' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.5;
  pointer-events: none;
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.branch-card {
  position: relative;
  height: 280px;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 45, 83, 0.1);
  animation: slideInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.branch-card:nth-child(1) { animation-delay: 0.1s; }
.branch-card:nth-child(2) { animation-delay: 0.2s; }
.branch-card:nth-child(3) { animation-delay: 0.3s; }
.branch-card:nth-child(4) { animation-delay: 0.4s; }
.branch-card:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.branch-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 45, 83, 0.2);
}

.branch-bg {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.7);
}

.branch-card:hover .branch-bg {
  transform: scale(1.1);
  filter: brightness(0.8);
}

.branch-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, 
    rgba(0, 45, 83, 0) 0%, 
    rgba(0, 45, 83, 0.3) 50%, 
    rgba(0, 45, 83, 0.9) 100%);
}

.branch-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  color: white;
  z-index: 2;
  transform: translateY(20px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.branch-card:hover .branch-content {
  transform: translateY(0);
}

.branch-icon {
  width: 50px;
  height: 50px;
  background: rgba(253, 195, 0, 0.9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.branch-card:hover .branch-icon {
  background: var(--brand-yellow);
  transform: scale(1.1);
}

.branch-content h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.branch-content p {
  margin: 0 0 15px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 15px;
  line-height: 1.5;
}

.branch-features {
  list-style: none;
  padding: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.branch-card:hover .branch-features {
  opacity: 1;
}

.branch-features li {
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  position: relative;
  padding-left: 20px;
}

.branch-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-yellow);
  font-weight: bold;
}

.branch-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-yellow);
  font-weight: 600;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.4s ease;
}

.branch-card:hover .branch-cta {
  opacity: 1;
  transform: translateX(0);
}

.branch-cta:hover {
  gap: 12px;
}

/* People grid */
.people-grid .person img {
  height: 160px;
  object-fit: cover;
}

/* Enhanced Contact Section */
.section-contact {
  background: linear-gradient(135deg, #0b2f54 0%, #002d53 50%, #0047a3 100%);
  position: relative;
  overflow: hidden;
}

.section-contact::before {
  content: '';
  position: absolute;
  top: -30%;
  left: -10%;
  width: 50%;
  height: 150%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.15) 0%, transparent 70%);
  animation: float 15s ease-in-out infinite;
}

.section-contact::after {
  content: '';
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 40%;
  height: 100%;
  background: radial-gradient(circle, rgba(253, 195, 0, 0.1) 0%, transparent 70%);
  animation: float 20s ease-in-out infinite reverse;
}

.contact-container {
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: start;
}

/* Enhanced Contact Form */
.contact-form-wrapper {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-form .form-row {
  margin-bottom: 24px;
  position: relative;
}

.contact-form label {
  display: block;
  color: var(--brand-yellow);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: white;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--brand-yellow);
  box-shadow: 0 0 0 4px rgba(253, 195, 0, 0.1);
  transform: translateY(-2px);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row.checkbox {
  display: flex;
  align-items: start;
  gap: 12px;
}

.form-row.checkbox input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
}

.form-row.checkbox label {
  margin-bottom: 0;
  font-weight: 400;
  text-transform: none;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.contact-form .btn-submit {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-light) 100%);
  color: var(--text);
  border: none;
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 10px 30px rgba(253, 195, 0, 0.3);
  width: 100%;
  margin-top: 10px;
}

.contact-form .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(253, 195, 0, 0.4);
}

/* Contact Info Cards */
.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(253, 195, 0, 0.3);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-light) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(253, 195, 0, 0.3);
}

.contact-card h3 {
  color: white;
  font-size: 20px;
  margin: 0 0 15px;
  font-weight: 700;
}

.contact-card-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.contact-card-content a {
  color: var(--brand-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.contact-card-content a:hover {
  color: var(--brand-yellow-light);
  gap: 10px;
}

.contact-hours {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-hours-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.contact-hours-item strong {
  color: rgba(255, 255, 255, 0.95);
}

/* Quick Contact Buttons */
.quick-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 20px;
}

.quick-contact-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.quick-contact-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--brand-yellow);
  transform: translateY(-3px);
}

.quick-contact-btn-icon {
  font-size: 24px;
  margin-bottom: 5px;
}

.quick-contact-btn-label {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Map */
.contact-map {
  margin-top: 30px;
  border-radius: 20px;
  overflow: hidden;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.5) opacity(0.8);
  transition: filter 0.3s ease;
}

.contact-map:hover iframe {
  filter: grayscale(0) opacity(1);
}

/* Success Message */
.contact-success {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  display: none;
  animation: fadeInUp 0.5s ease;
}

.contact-success.show {
  display: block;
}

.contact-success p {
  color: white;
  margin: 0;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .quick-contact {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-card {
    padding: 20px;
  }
}

/* Hero background image */
.hero-background img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  filter: brightness(0.7);
}

/* Enhanced Career Section */
.section-career {
  background: linear-gradient(135deg, #0d2f51 0%, #002d53 50%, #0047a3 100%);
  color: #e8f1fb;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.section-career::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.1) 0%, transparent 70%);
  animation: float 25s ease-in-out infinite;
}

.section-career::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 50%;
  height: 120%;
  background: radial-gradient(circle, rgba(253, 195, 0, 0.08) 0%, transparent 70%);
  animation: float 30s ease-in-out infinite reverse;
}

.career-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}

.career-intro p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.7;
}

/* Career Benefits */
.career-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.career-benefit {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.career-benefit::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-yellow) 0%, var(--brand-cyan) 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.career-benefit:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.career-benefit:hover::before {
  transform: scaleX(1);
}

.career-benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(253, 195, 0, 0.2) 0%, rgba(253, 195, 0, 0.1) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.3s ease;
}

.career-benefit:hover .career-benefit-icon {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-light) 100%);
  transform: rotate(5deg) scale(1.1);
}

.career-benefit h3 {
  color: white;
  font-size: 18px;
  margin: 0 0 10px;
  font-weight: 700;
}

.career-benefit p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Career Positions Grid */
.career-positions {
  position: relative;
  z-index: 2;
}

.career-positions-header {
  text-align: center;
  margin-bottom: 40px;
}

.career-positions-header h3 {
  color: var(--brand-yellow);
  font-size: 28px;
  margin: 0 0 10px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.career-role {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.career-role::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(253, 195, 0, 0.1) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.career-role:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(253, 195, 0, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.career-role:hover::before {
  opacity: 1;
}

.career-role-header {
  display: flex;
  align-items: start;
  gap: 20px;
  margin-bottom: 20px;
}

.career-role-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-light) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.career-role-title h3 {
  margin: 0 0 5px;
  color: white;
  font-size: 22px;
  font-weight: 700;
}

.career-role-title .job-type {
  display: inline-block;
  background: rgba(0, 180, 216, 0.2);
  color: var(--brand-cyan);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-left: 10px;
}

.career-role-location {
  display: flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 15px;
}

.career-role-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

.career-role-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 25px;
}

.career-tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
}

.career-role-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.career-apply-btn {
  background: linear-gradient(135deg, var(--brand-yellow) 0%, var(--brand-yellow-light) 100%);
  color: var(--text);
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.career-apply-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(253, 195, 0, 0.3);
}

.career-posted {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

/* Career CTA Section */
.career-cta-section {
  margin-top: 60px;
  padding: 50px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.career-cta-section h3 {
  color: var(--brand-yellow);
  font-size: 28px;
  margin: 0 0 15px;
}

.career-cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0 0 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.career-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.career-cta-buttons .btn {
  padding: 14px 30px;
  font-size: 15px;
}

/* Marquee images */
.marquee .tile {
  flex: 0 0 220px;
  height: 120px;
}

.marquee .tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Two column layouts */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.two-col.feature-left {
  grid-template-columns: 1.1fr 0.9fr;
}

/* Responsive image adjustments */
@media (max-width: 960px) {
  .hero-col.media .media-card {
    max-height: 380px;
  }
  
  .section-expertise .media-card,
  .section-services .media-card,
  .section-contact .media-card {
    max-height: 350px;
  }
  
  .gallery-grid img {
    height: 180px;
  }
}

@media (max-width: 720px) {
  .hero-col.media .media-card {
    max-height: 320px;
  }
  
  .section-expertise .media-card,
  .section-services .media-card,
  .section-contact .media-card {
    max-height: 300px;
  }
  
  .gallery-grid img {
    height: 160px;
  }
  
  .two-col {
    grid-template-columns: 1fr;
  }
}