/* CRITICAL: Ensure all content sections are visible */
.services, .about, .presence, .partners, .testimonials, .contact {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* CRITICAL: Make reveal elements visible by default */
.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.reveal-left {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.reveal-right {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* CRITICAL: Ensure all main content is visible */
main, section, .hero, .services, .about, .presence, .partners, .testimonials, .contact {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* CSS Variables (Design System) */
:root {
  /* Colors - GKS Charter */
  --primary-color: #003087; /* GKS Blue - Main backgrounds */
  --secondary-color: #DC143C; /* GKS Logistics Red - CTAs and accents */
  --accent-color: #DC143C; /* GKS Logistics Red - Unified with secondary */
  --neutral-100: #FFFFFF; /* White - Main elements (text, cards) */
  --neutral-200: #F8F9FA;
  --neutral-300: #E9ECEF;
  --neutral-400: #DEE2E6;
  --neutral-500: #ADB5BD;
  --neutral-600: #6C757D;
  --neutral-700: #495057;
  --neutral-800: #343A40;
  --neutral-900: #212529;
  
  /* Service Colors */
  --air-color: #1E90FF;
  --sea-color: #006994;
  --land-color: #2E8B57;
  --storage-color: #FF8C00;
  
  /* Status Colors */
  --success-color: #28A745;
  --error-color: #DC3545;
  --warning-color: #FFC107;
  --info-color: #17A2B8;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 50px;
  
  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* General Styles */
body {
  font-family: 'Roboto', Arial, sans-serif;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 1.6;
  color: var(--neutral-800);
  font-size: 16px; /* Prevents zoom on iOS */
  padding-bottom: 70px; /* Space for mobile bottom nav */
}

/* Skip to Content Link */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-color);
  color: white;
  padding: 8px;
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: 10000;
  transition: var(--transition-base);
}

.skip-to-content:focus {
  top: 6px;
}

/* Page Loader - Modern Liquid Design */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  background: linear-gradient(135deg, #001a4d 0%, #003087 50%, #004bad 100%);
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Animated Background Mesh */
.loader-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1E90FF, transparent);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #CC3333, transparent);
  bottom: -250px;
  right: -250px;
  animation-delay: -7s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #E55A5A, transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(100px, -100px) scale(1.1);
  }
  66% {
    transform: translate(-100px, 100px) scale(0.9);
  }
}

/* Main Loader Container */
.loader-container {
  position: relative;
  z-index: 2;
  text-align: center;
}

/* Logo Container with Liquid Effect */
.logo-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
}

/* Circular Progress Ring */
.progress-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  width: 220px;
  height: 220px;
}

.progress-ring-circle {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 4;
}

.progress-ring-progress {
  fill: none;
  stroke: url(#gradient);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 690;
  stroke-dashoffset: 690;
  animation: progress 3s ease-out forwards;
  filter: drop-shadow(0 0 10px rgba(30, 144, 255, 0.8));
}

@keyframes progress {
  to {
    stroke-dashoffset: 0;
  }
}

/* Liquid Morphing Logo */
.liquid-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 40px rgba(30, 144, 255, 0.4),
    0 0 80px rgba(30, 144, 255, 0.2),
    inset 0 0 40px rgba(255, 255, 255, 0.3);
  animation: liquidPulse 3s ease-in-out infinite, materialize 1.5s ease-out;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes materialize {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    filter: blur(20px);
  }
  50% {
    filter: blur(5px);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes liquidPulse {
  0%, 100% {
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  25% {
    border-radius: 45% 55% 52% 48% / 48% 50% 50% 52%;
    transform: translate(-50%, -50%) scale(1.02);
  }
  50% {
    border-radius: 52% 48% 45% 55% / 55% 52% 48% 45%;
    transform: translate(-50%, -50%) scale(0.98);
  }
  75% {
    border-radius: 48% 52% 55% 45% / 45% 48% 52% 55%;
    transform: translate(-50%, -50%) scale(1.01);
  }
}

.logo-content {
  text-align: center;
  animation: fadeIn 2s ease-out 0.5s both;
}

.logo-content img {
  width: 70px;
  height: 70px;
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 1px;
}

/* Shimmer Effect */
.shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.6),
    transparent
  );
  animation: shimmer 3s infinite;
  border-radius: 50%;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

/* Particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 3s infinite ease-in-out;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) translateX(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) translateX(var(--tx));
  }
}

/* Loading Text */
.loading-text {
  color: white;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out 1s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Progress Percentage */
.progress-percentage {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  animation: fadeIn 1s ease-out 1.2s both;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 2px;
}

/* Loading Message */
.loading-message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight: 400;
  animation: fadeIn 1s ease-out 1.4s both;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
  height: 1.5rem;
}

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

/* Route Lines */
.route-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.route-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 150px;
  background: linear-gradient(to top, transparent, rgba(30, 144, 255, 0.3), transparent);
  transform-origin: bottom center;
  animation: lineGlow 3s ease-in-out infinite;
}

.route-line:nth-child(1) { transform: rotate(0deg); animation-delay: 0s; }
.route-line:nth-child(2) { transform: rotate(45deg); animation-delay: 0.2s; }
.route-line:nth-child(3) { transform: rotate(90deg); animation-delay: 0.4s; }
.route-line:nth-child(4) { transform: rotate(135deg); animation-delay: 0.6s; }
.route-line:nth-child(5) { transform: rotate(180deg); animation-delay: 0.8s; }
.route-line:nth-child(6) { transform: rotate(225deg); animation-delay: 1s; }
.route-line:nth-child(7) { transform: rotate(270deg); animation-delay: 1.2s; }
.route-line:nth-child(8) { transform: rotate(315deg); animation-delay: 1.4s; }

@keyframes lineGlow {
  0%, 100% {
    opacity: 0.2;
  }
  50% {
    opacity: 0.6;
  }
}

* {
  box-sizing: border-box;
}

img, .slider-track, .hero-slide img {
  max-width: 100%;
  height: auto;
}

/* Global container - only for index page */
.hero .container,
.services .container,
.about .container,
.presence .container,
.partners .container,
.testimonials .container,
.contact .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Enhanced Typography Hierarchy */
h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  color: var(--primary-color);
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: -0.3px;
}

h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.75rem;
  line-height: 1.4;
}

h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--neutral-800);
  font-size: 1.25rem;
  line-height: 1.5;
}

p {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--neutral-700);
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  background: var(--secondary-color);
  color: var(--neutral-100);
  border-radius: 50px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  min-height: 44px; /* Better touch target */
  min-width: 44px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(220, 20, 60, 0.3);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(220, 20, 60, 0.5);
  background: #C5112D;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--secondary-color);
  color: var(--secondary-color);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--neutral-100);
  border-color: var(--secondary-color);
}

.shade-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* Floating CTA Button */
.floating-cta {
  position: fixed;
  bottom: 120px;
  right: 20px;
  background: linear-gradient(45deg, #1E90FF, #003087);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 25px rgba(30, 144, 255, 0.4);
  z-index: 6000;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: none;
  min-height: 48px;
  min-width: 48px;
  opacity: 1;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.floating-cta.active {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(30, 144, 255, 0.6);
  background: linear-gradient(45deg, #003087, #1E90FF);
  border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 480px) {
  .floating-cta {
    bottom: 100px;
    right: 15px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Animations */
/* Keyframe Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* --- New Loader Keyframe Animations --- */


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes bounceUp {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-1px);
  }
}

/* Scroll Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* Focus Visible Styles */
*:focus-visible {
  outline: 2px solid #1E90FF;
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* High Contrast Support */
@media (prefers-contrast: high) {
  .btn {
    border: 2px solid currentColor;
  }
  
  .card {
    border: 2px solid var(--neutral-300);
  }
  
  .hero-content {
    background: rgba(0, 0, 0, 0.9);
  }
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1E90FF, #003087);
  width: 0%;
  transition: width 0.3s ease;
  z-index: 1001;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}

.header.scrolled::after {
  width: 100%;
}

.header.header-hidden {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Standardized Header Logo Link - Back to left position */
.header-logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}

/* Remove underline on hover for the logo link specifically */
.header-logo-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

/* Style for the logo image within the header */
.header-logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.header-logo-image:hover {
  transform: scale(1.1);
}

/* Style for the "GKS" part of the text */
.header-logo-link .gks-text {
  color: var(--primary-color, #003087);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
}

/* Style for the "LOGISTICS" part of the text */
.header-logo-link .logistics-text {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin: 0;
}

.nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav ul li a {
  color: #FFFFFF;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem 0;
  position: relative;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #1E90FF;
  transition: width 0.3s ease;
}

.nav ul li a:hover::after,
.nav ul li a.active::after {
  width: 100%;
}

.header.scrolled .nav ul li a {
  color: #333333;
}

.nav ul li a:hover {
  color: var(--secondary-color);
}

.nav ul li a.active {
  color: #CC3333;
}

.language-toggle {
  display: flex;
  align-items: center;
}

#languageToggle {
  background: linear-gradient(45deg, #1E90FF, #003087);
  border: none;
  border-radius: var(--radius-full);
  width: 60px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  min-height: 48px;
  min-width: 60px;
}

#languageToggle i {
  color: #FFFFFF;
  font-size: 1rem;
}

.lang-text {
  font-size: 0.8rem;
  font-weight: 700;
}

#languageToggle:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

.menu-toggle {
  display: none;
  background: #003087;
  border: none;
  font-size: 1.5rem;
  color: #FFFFFF;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 48px;
  min-width: 48px;
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  position: relative;
}

.menu-toggle:hover {
  color: #FFFFFF;
  background: #003087;
  text-decoration: underline;
  text-decoration-color: #CC3333;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.header.scrolled .menu-toggle {
  color: #FFFFFF;
  background: #003087;
}

/* Navigation Dropdown Styles - Modern & Professional */
.nav-item-dropdown {
  position: relative;
}

.nav-link-dropdown {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.5rem 0.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border-radius: 8px;
}

/* Subtle indicator underline */
.nav-link-dropdown::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #1E90FF, transparent);
  transition: transform 0.3s ease;
}

.nav-link-dropdown:hover {
  color: #1E90FF;
  transform: translateY(-1px);
  background: rgba(30, 144, 255, 0.1);
}

.nav-link-dropdown:hover::before {
  transform: translateX(-50%) scaleX(1);
}

.header.scrolled .nav-link-dropdown {
  color: #333333;
}

.header.scrolled .nav-link-dropdown:hover {
  color: #003087;
  background: rgba(0, 48, 135, 0.08);
}

.header.scrolled .nav-link-dropdown::before {
  background: linear-gradient(90deg, transparent, #003087, transparent);
}

/* Modern dropdown arrow icon with animation - MORE VISIBLE */
.nav-link-dropdown::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.75rem;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55), color 0.3s ease;
  opacity: 1;
  color: #1E90FF;
  background: rgba(30, 144, 255, 0.15);
  padding: 4px 6px;
  border-radius: 4px;
  margin-left: 4px;
}

.header.scrolled .nav-link-dropdown::after {
  color: #003087;
  background: rgba(0, 48, 135, 0.12);
}

.nav-item-dropdown:hover .nav-link-dropdown::after,
.nav-item-dropdown.active .nav-link-dropdown::after {
  transform: rotate(180deg);
  opacity: 1;
  background: rgba(30, 144, 255, 0.25);
}

.header.scrolled .nav-item-dropdown:hover .nav-link-dropdown::after,
.header.scrolled .nav-item-dropdown.active .nav-link-dropdown::after {
  background: rgba(0, 48, 135, 0.2);
}

/* Modern Dropdown Menu Container - Enhanced */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px) scale(0.96);
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 
    0 25px 80px rgba(0, 48, 135, 0.2),
    0 15px 40px rgba(0, 0, 0, 0.12),
    0 0 0 1px rgba(0, 48, 135, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  padding: 1.5rem 1.25rem;
  min-width: 260px;
  width: max-content;
  max-width: 500px;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1001;
  list-style: none;
  margin: 0;
  margin-top: 1rem;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 48, 135, 0.1);
}

/* Custom scrollbar for dropdown */
.dropdown-menu::-webkit-scrollbar {
  width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
  background: rgba(0, 48, 135, 0.05);
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
  background: rgba(0, 48, 135, 0.2);
  border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 48, 135, 0.3);
}

/* Show dropdown on hover with smooth animation */
.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0) scale(1);
  box-shadow: 
    0 30px 100px rgba(0, 48, 135, 0.25),
    0 20px 50px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 48, 135, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* Prevent dropdown from going off-screen on smaller desktops */
@media (min-width: 769px) and (max-width: 1024px) {
  .dropdown-menu {
    min-width: 280px;
    max-width: 450px;
    left: 0;
    transform: translateX(0) translateY(-10px) scale(0.96);
  }
  
  .nav-item-dropdown:hover .dropdown-menu,
  .nav-item-dropdown:focus-within .dropdown-menu {
    transform: translateX(0) translateY(0) scale(1);
  }
  
  .dropdown-menu::before {
    left: 20%;
  }
}

/* Modern dropdown arrow pointer */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #FFFFFF;
  filter: drop-shadow(0 -3px 6px rgba(0, 48, 135, 0.1));
}

.dropdown-menu::after {
  content: '';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 13px solid rgba(0, 48, 135, 0.1);
  z-index: -1;
}

/* Modern Dropdown Items - Enhanced */
.dropdown-menu li {
  padding: 0;
  list-style: none;
  margin: 0.4rem 0;
  position: relative;
}

.dropdown-menu li:first-child {
  margin-top: 0;
}

.dropdown-menu li:last-child {
  margin-bottom: 0;
}

.dropdown-menu li a {
  color: #475569 !important;
  padding: 0.875rem 1.125rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  text-decoration: none;
  border-radius: 12px;
  overflow: visible;
  background: transparent;
  min-height: 44px;
}

/* Modern icon styling for dropdown items */
.dropdown-menu li a i {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: #64748B;
  background: rgba(0, 48, 135, 0.06);
  border-radius: 8px;
  padding: 6px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

/* Fallback for items without explicit icons - add arrow */
/* Note: Using class-based approach instead of :has() for better browser support */
.dropdown-menu li a:not(.has-icon)::before {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 600;
  font-size: 0.7rem;
  color: #94A3B8;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 48, 135, 0.05);
  border-radius: 6px;
  margin-right: -0.25rem;
}

/* Animated background gradient on hover */
.dropdown-menu li a::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, 
    rgba(0, 48, 135, 0.08) 0%, 
    rgba(30, 144, 255, 0.12) 50%,
    rgba(0, 48, 135, 0.08) 100%);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.dropdown-menu li a:hover {
  background: linear-gradient(135deg, 
    rgba(0, 48, 135, 0.08) 0%, 
    rgba(30, 144, 255, 0.12) 100%);
  color: #003087 !important;
  transform: translateX(6px);
  box-shadow: 
    0 6px 20px rgba(0, 48, 135, 0.15),
    0 2px 8px rgba(0, 48, 135, 0.1);
}

.dropdown-menu li a:hover i {
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.15) 0%, rgba(30, 144, 255, 0.2) 100%);
  color: #003087;
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 48, 135, 0.2);
}

.dropdown-menu li a:hover::before {
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.12) 0%, rgba(30, 144, 255, 0.18) 100%);
  color: #003087;
  transform: translateX(3px);
}

.dropdown-menu li a:hover::after {
  left: 0;
}

/* Optional: First item can have different styling if it's a header */
/* Remove if not needed - keeping for flexibility */

/* Ensure dropdown items are visible in scrolled state */
.header.scrolled .dropdown-menu li a {
  color: #333333 !important;
}

.header.scrolled .dropdown-menu li a:hover {
  color: #003087 !important;
}

/* Pulsing glow animation for CTA button */
@keyframes ctaPulse {
  0%, 100% {
    box-shadow: 
      0 4px 20px rgba(220, 20, 60, 0.5),
      0 2px 8px rgba(220, 20, 60, 0.3),
      0 0 0 0 rgba(220, 20, 60, 0.4),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 
      0 6px 25px rgba(220, 20, 60, 0.6),
      0 3px 10px rgba(220, 20, 60, 0.4),
      0 0 0 8px rgba(220, 20, 60, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
}

/* Modern CTA Button with Advanced Effects */
.nav-cta-button {
  background: linear-gradient(135deg, #DC143C 0%, #FF1744 50%, #DC143C 100%);
  background-size: 200% 100%;
  color: white !important;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 4px 20px rgba(220, 20, 60, 0.5),
    0 2px 8px rgba(220, 20, 60, 0.3),
    0 0 0 0 rgba(220, 20, 60, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  margin-left: 2rem;
  animation: ctaPulse 2.5s ease-in-out infinite;
}

/* Animated shine effect */
.nav-cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  transition: left 0.6s ease;
}

.nav-cta-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 
    0 10px 40px rgba(220, 20, 60, 0.6),
    0 6px 16px rgba(220, 20, 60, 0.4),
    0 0 0 0 rgba(220, 20, 60, 0),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background-position: 100% 0;
  border-color: rgba(255, 255, 255, 0.5);
  animation: none;
}

.nav-cta-button:hover::before {
  left: 100%;
}

.nav-cta-button:active {
  transform: translateY(-1px) scale(0.98);
}

.nav-cta-button::after {
  display: none !important;
}

/* Mobile Navigation */
.nav.active {
  transform: translateX(0);
}

.nav {
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Package Tracking Section */
.tracking-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.tracking-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 10% 20%, rgba(0, 48, 135, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(220, 20, 60, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.tracking-widget {
  background: white;
  border-radius: 20px;
  padding: 3rem 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.tracking-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tracking-header i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  display: block;
}

.tracking-header h3 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.tracking-header p {
  color: var(--neutral-600);
  font-size: 1rem;
}

.tracking-form {
  margin-top: 2rem;
}

.tracking-input-group {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 50px;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
  gap: 1rem;
}

.tracking-input-group > i {
  color: var(--neutral-500);
  font-size: 1.2rem;
}

.tracking-input-group input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.75rem 0.5rem;
  font-size: 1.05rem;
  outline: none;
  color: var(--neutral-800);
}

.tracking-input-group input::placeholder {
  color: var(--neutral-500);
}

.btn-track {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  white-space: nowrap;
}

.tracking-types {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

.tracking-type-option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--neutral-700);
}

.tracking-type-option input[type="radio"] {
  accent-color: var(--secondary-color);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.tracking-result {
  margin-top: 2rem;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 15px;
  border-left: 4px solid var(--secondary-color);
}

.tracking-result.success {
  border-left-color: var(--success-color);
  background: #d4edda;
}

.tracking-result.error {
  border-left-color: var(--error-color);
  background: #f8d7da;
}

/* Tracking Results */
.tracking-number-display {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.tracking-type-badge {
  background: var(--primary-color);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.tracking-timeline {
  position: relative;
  padding-left: 3rem;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  left: 1.25rem;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e9ecef;
}

.tracking-step {
  position: relative;
  padding-bottom: 2rem;
}

.tracking-step:last-child {
  padding-bottom: 0;
}

.step-marker {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: white;
  border: 3px solid var(--neutral-300);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.tracking-step.completed .step-marker {
  background: var(--success-color);
  border-color: var(--success-color);
  color: white;
}

.tracking-step.active .step-marker {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: white;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(220, 20, 60, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(220, 20, 60, 0);
  }
}

.step-content h4 {
  margin: 0 0 0.5rem 0;
  color: var(--primary-color);
  font-size: 1.15rem;
}

.step-content p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  color: var(--neutral-600);
}

.step-location, .step-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.step-location i, .step-date i {
  color: var(--secondary-color);
}

.tracking-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #e9ecef;
}

.tracking-loading, .tracking-error {
  text-align: center;
  padding: 2rem;
}

.tracking-loading i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.tracking-error i {
  font-size: 2.5rem;
  color: var(--error-color);
  margin-bottom: 1rem;
}

/* Responsive tracking section */
@media (max-width: 768px) {
  .tracking-widget {
    padding: 2rem 1.5rem;
  }
  
  .tracking-input-group {
    flex-direction: column;
    padding: 1rem;
    border-radius: 15px;
  }
  
  .tracking-input-group input {
    width: 100%;
    text-align: center;
  }
  
  .btn-track {
    width: 100%;
    justify-content: center;
  }
  
  .tracking-types {
    flex-direction: column;
    gap: 1rem;
  }
  
  .tracking-number-display {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  .tracking-actions {
    flex-direction: column;
  }
  
  .tracking-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-image: url('../assets/banner.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.hero-slider {
  height: 100%;
  position: relative;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

/* Show desktop images by default, hide mobile */
.hero-img-mobile {
  display: none;
}

.hero-img-desktop {
  display: block;
}

/* Hero content styles - only for index page */
.hero-slider .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #FFFFFF;
  padding: 2rem;
  z-index: 2;
  max-width: 800px;
  width: 90%;
}

.hero-slider .hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
  font-weight: 800;
}

.hero-slider .hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #FFFFFF;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  margin: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero-buttons .btn-secondary {
  background: transparent;
  border: 2px solid #FFFFFF;
}

.hero-buttons .btn-secondary:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

/* Hero Indicators */
.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.hero-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-indicators .indicator.active {
  background: #1E90FF;
  transform: scale(1.2);
}

.hero-indicators .indicator:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* Scroll Down Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
  cursor: pointer;
  z-index: 3;
}

.scroll-indicator:hover {
  color: #1E90FF;
}

/* Services Section */
.services {
  padding: 0;
  position: relative;
  background: #081925;
}

/* ============================================
   MODERN WELCOME SECTION - "Ultimate Design"
   ============================================ */

.services-hero {
  position: relative;
  min-height: 25vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #081925;
  padding: 1.5rem 1rem;
}

/* Floating Particles Background Animation */
.particles-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 25s;
}

.particle:nth-child(2) {
  width: 60px;
  height: 60px;
  left: 80%;
  top: 60%;
  animation-delay: 3s;
  animation-duration: 20s;
}

.particle:nth-child(3) {
  width: 100px;
  height: 100px;
  left: 50%;
  top: 80%;
  animation-delay: 6s;
  animation-duration: 30s;
}

.particle:nth-child(4) {
  width: 40px;
  height: 40px;
  left: 20%;
  top: 70%;
  animation-delay: 2s;
  animation-duration: 18s;
}

.particle:nth-child(5) {
  width: 70px;
  height: 70px;
  left: 70%;
  top: 30%;
  animation-delay: 4s;
  animation-duration: 22s;
}

.particle:nth-child(6) {
  width: 50px;
  height: 50px;
  left: 40%;
  top: 10%;
  animation-delay: 1s;
  animation-duration: 24s;
}

.particle:nth-child(7) {
  width: 90px;
  height: 90px;
  left: 90%;
  top: 85%;
  animation-delay: 5s;
  animation-duration: 28s;
}

.particle:nth-child(8) {
  width: 65px;
  height: 65px;
  left: 15%;
  top: 40%;
  animation-delay: 7s;
  animation-duration: 26s;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  25% {
    transform: translate(30px, -50px) rotate(90deg);
    opacity: 0.5;
  }
  50% {
    transform: translate(-20px, -80px) rotate(180deg);
    opacity: 0.3;
  }
  75% {
    transform: translate(50px, -30px) rotate(270deg);
    opacity: 0.6;
  }
}

/* Modern Welcome Card with Glassmorphism */
.modern-welcome-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 25px;
  padding: 2.5rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.3),
    0 0 100px rgba(30, 144, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: cardEntrance 1s ease-out;
}

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

.modern-welcome-card:hover {
  transform: translateY(-8px);
  box-shadow: 
    0 30px 80px rgba(0, 0, 0, 0.4),
    0 0 120px rgba(30, 144, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.25);
}

/* Glowing background effect */
.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(
    circle at center,
    rgba(30, 144, 255, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Corner accent decorations */
.corner-accent {
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(220, 20, 60, 0.6);
}

.corner-accent.top-left {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 10px;
}

.corner-accent.top-right {
  top: 15px;
  right: 15px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 10px;
}

.corner-accent.bottom-left {
  bottom: 15px;
  left: 15px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 10px;
}

.corner-accent.bottom-right {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 10px;
}

/* Welcome Badge */
.welcome-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(220, 20, 60, 0.2), rgba(255, 0, 0, 0.2));
  border: 1px solid rgba(220, 20, 60, 0.4);
  color: #DC143C;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  animation: badgeFloat 3s ease-in-out infinite;
  text-transform: uppercase;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Gradient Animated Text */
.gradient-text {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    90deg,
    #FFFFFF 0%,
    #DC143C 25%,
    #FFFFFF 50%,
    #1E90FF 75%,
    #FFFFFF 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease-in-out infinite;
  letter-spacing: 1px;
  line-height: 1.2;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

/* Welcome Subtitle */
.welcome-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  letter-spacing: 0.3px;
}

/* Mini Stats */
.welcome-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.welcome-stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.welcome-stat-item:hover {
  transform: translateY(-5px);
}

.stat-icon-mini {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.3), rgba(220, 20, 60, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.welcome-stat-item:hover .stat-icon-mini {
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.5), rgba(220, 20, 60, 0.5));
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.4);
}

.stat-icon-mini i {
  font-size: 1.5rem;
  color: #DC143C;
}

.welcome-stat-item .stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
}

.welcome-stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Dual CTA Buttons */
.welcome-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.welcome-cta-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Primary Button with Pulse */
.btn-pulse {
  background: linear-gradient(135deg, #DC143C 0%, #8B0000 100%);
  color: #FFFFFF;
  border: none;
  box-shadow: 
    0 4px 15px rgba(220, 20, 60, 0.4),
    0 0 30px rgba(220, 20, 60, 0.2);
  animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {
  0%, 100% {
    box-shadow: 
      0 4px 15px rgba(220, 20, 60, 0.4),
      0 0 30px rgba(220, 20, 60, 0.2);
  }
  50% {
    box-shadow: 
      0 6px 25px rgba(220, 20, 60, 0.6),
      0 0 50px rgba(220, 20, 60, 0.4);
  }
}

.btn-pulse:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #FF1744 0%, #C62828 100%);
  box-shadow: 
    0 8px 25px rgba(220, 20, 60, 0.6),
    0 0 50px rgba(220, 20, 60, 0.4);
}

/* Secondary Button with Glow */
.btn-glow {
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-glow:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 
    0 8px 25px rgba(255, 255, 255, 0.3),
    0 0 40px rgba(30, 144, 255, 0.3);
}

/* Keep existing compatibility */
.services-hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 1.3;
  color: #FFFFFF;
}

.services-hero-content h2 span {
  color: #FFFFFF;
  display: inline-block;
}

.services-hero-content h2 span:first-child {
  font-weight: 400;
  opacity: 0.95;
}

.services-hero-content h2 #typed-services {
  color: #FFD700;
  font-weight: 800;
}

.services-hero-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.services-hero-content .btn {
  background: #FFFFFF;
  color: var(--primary-color);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.services-hero-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: var(--secondary-color);
  color: #FFFFFF;
}

.services-content {
  padding: 4rem 0;
  position: relative;
}

.services-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 3rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.services-section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #DC143C, #1E90FF);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Service Card Images */
.service-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 12px 12px 0 0;
  margin: -2rem -2rem 1rem -2rem;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-cards .card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Each card spans 2 columns for proper alignment */
.service-cards .card {
  grid-column: span 2;
}

/* Center the last 2 cards (storage and customs) on their own row */
.service-cards .card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-cards .card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-cards .card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border-top: 4px solid #1E90FF;
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  opacity: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 400px;
}

/* Service-specific colored borders */
.service-cards .card[data-service="air"] {
  border-top-color: var(--air-color);
}

.service-cards .card[data-service="sea"] {
  border-top-color: var(--sea-color);
}

.service-cards .card[data-service="land"] {
  border-top-color: var(--land-color);
}

.service-cards .card[data-service="storage"] {
  border-top-color: var(--storage-color);
}

.service-cards .card[data-service="customs"] {
  border-top-color: #FF9500;
}

.service-cards .card.active:nth-child(odd) {
  animation: fadeInLeft 0.6s ease forwards;
}

.service-cards .card.active:nth-child(even) {
  animation: fadeInRight 0.6s ease forwards;
}

.service-cards .card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-top-width: 6px;
}

.service-cards .card:hover i {
  transform: scale(1.1) rotate(5deg);
  color: var(--primary-color);
}

.service-cards .card i {
  font-size: 3.5rem;
  color: #CC3333;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  text-align: center;
  flex-shrink: 0;
}

.service-cards .card i::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(204, 51, 51, 0.1);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease;
}

.service-cards .card:hover i::before {
  width: 100px;
  height: 100px;
  background: rgba(204, 51, 51, 0.2);
}

.service-cards .card:hover i {
  transform: scale(1.1);
}

/* Service Card Stats */
.service-card-stats {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

.service-card-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--neutral-600);
  flex: 1;
  justify-content: center;
}

.service-card-stats .stat-item i {
  font-size: 1rem;
  color: #1E90FF;
}

.service-card-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card-buttons .btn {
  flex: 1;
  min-width: 120px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card-buttons .quote-btn {
  background: #CC3333;
  color: white;
  box-shadow: 0 4px 12px rgba(204, 51, 51, 0.2);
}

.service-card-buttons .quote-btn:hover {
  background: linear-gradient(135deg, #CC3333, #992222);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(204, 51, 51, 0.35);
}

.service-card-buttons .btn-read-more {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: 600;
}

.service-card-buttons .btn-read-more:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 48, 135, 0.25);
}

.service-cards .card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  text-align: center;
  flex-shrink: 0;
}

.service-cards .card p {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 1.5rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  align-items: center;
  word-wrap: break-word;
  hyphens: auto;
  line-height: 1.5;
}

.progress-bar {
  display: none;
}

.progress-bar span {
  display: none;
}

.progress-bar .progress {
  display: none;
}

.progress-bar .progress.animate {
  display: none;
}

.btn-explore {
  display: block;
  margin: 3rem auto 0;
  text-align: center;
  max-width: 400px;
  padding: 1rem 3rem;
}

/* About Section */
.about {
  position: relative;
  background: #081925;
}

.about-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
  background-image: url('../assets/banner.png');
  background-size: cover;
  background-position: center;
  text-align: center;
  background-repeat: no-repeat;
}



/* Styling for the new Philosophy Section */
.philosophy-section {
  padding: 4rem 0;
  text-align: center;
  background: #081925;
}

.philosophy-section .section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.philosophy-section .section-header p {
  font-size: 1.1rem;
  color: #ffffff;
  margin-bottom: 3rem;
}

.philosophy-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.philosophy-card {
  background: var(--neutral-100);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border-top: 4px solid #1E90FF;
}

.philosophy-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.philosophy-card .card-icon {
  font-size: 3rem;
  color: #1E90FF;
  margin-bottom: 1.5rem;
  line-height: 1;
}

.philosophy-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #081925;
}

.philosophy-card p {
  font-size: 1rem;
  color: #081925;
  line-height: 1.6;
}

.philosophy-card .philosophy-content {
  margin-top: 1.5rem;
}

.philosophy-card .philosophy-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  transition: transform 0.2s ease;
}

.philosophy-card .philosophy-item:hover {
  transform: translateX(5px);
}

.philosophy-card .philosophy-item i {
  color: var(--primary-color);
  font-size: 1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.philosophy-card .philosophy-item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--neutral-700);
}

/* --- Philosophy Section Redesign (Vision Card) --- */

.philosophy-card.philosophy-card-vision {
  /* Use the site's primary color for a branded background */
  background: linear-gradient(135deg, var(--primary-color), #4091ba);
  color: var(--neutral-100);
  
  /* Change the top border to the accent color to pop */
  border-top-color: var(--secondary-color);
  
  /* This is the key: vertically center the content */
  display: flex;
  flex-direction: column;
  justify-content: center;
  
  /* Make the text stand out more */
  text-align: center;
}

/* Override the default colors for elements inside this card */
.philosophy-card-vision .card-icon,
.philosophy-card-vision h3,
.philosophy-card-vision p {
  color: var(--neutral-100);
}

.philosophy-card-vision .philosophy-content p {
  font-size: 1.1rem; /* Make the vision statement slightly larger */
  font-weight: 500;
  line-height: 1.7;
}

/* Make the icon stand out on the dark background */
.philosophy-card-vision .card-icon {
  color: var(--neutral-100);
  opacity: 0.9;
}

/* Legacy support for old list styles */
.philosophy-card .mission-list,
.philosophy-card .values-list {
  text-align: left;
  color: #081925;
  line-height: 1.8;
  list-style-position: inside;
  margin-top: 1rem;
  padding-left: 0;
  font-size: 0.95rem;
}

.philosophy-card .mission-list li,
.philosophy-card .values-list li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
}

.philosophy-card .values-list {
  columns: 2;
  column-gap: 1.5rem;
}

@media (max-width: 768px) {
  .philosophy-card .values-list {
    columns: 1;
  }
}

/* Strategic Axes Section */
.strategic-axes-section {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid var(--neutral-300);
}

.strategic-axes-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.strategic-axes-section .section-header h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.strategic-axes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.strategic-axis-card {
  background: var(--neutral-100);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  border-left: 4px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.strategic-axis-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-left-color: var(--secondary-color);
}

.axis-number {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), #4091ba);
  color: var(--neutral-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  box-shadow: var(--shadow-md);
}

.axis-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.strategic-axis-card p {
  font-size: 0.95rem;
  color: var(--neutral-700);
  line-height: 1.6;
  margin: 0;
}

/* Responsive adjustments for Strategic Axes */
@media (max-width: 768px) {
  .strategic-axes-section {
    margin-top: 3rem;
    padding-top: 2rem;
  }

  .strategic-axes-section .section-header h2 {
    font-size: 2rem;
  }

  .strategic-axes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .axis-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }

  .axis-icon {
    font-size: 2rem;
  }
}

/* Philosophy Accordion for Country Pages */
.philosophy-accordion-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.philosophy-accordion-section .section-badge {
  display: inline-block;
  background: var(--primary-color);
  color: var(--neutral-100);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.philosophy-accordion-section .section-header {
  margin-bottom: 3rem;
}

.philosophy-accordion {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--neutral-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
}

.accordion-item:hover {
  box-shadow: var(--shadow-lg);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  cursor: pointer;
  background: var(--neutral-100);
  border-left: 4px solid var(--primary-color);
  transition: all var(--transition-base);
  user-select: none;
}

.accordion-header:hover {
  background: var(--neutral-200);
}

.accordion-header.active {
  background: var(--neutral-200);
  border-left-color: var(--secondary-color);
}

.accordion-icon-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-color), #4091ba);
  color: var(--neutral-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.accordion-header h3 {
  font-size: 1.25rem;
  color: var(--neutral-800);
  margin: 0;
  font-weight: 600;
}

.accordion-arrow {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.accordion-header.active .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 2rem;
}

.accordion-content.active {
  max-height: 1000px;
  padding: 1.5rem 2rem 2rem;
}

.accordion-content p {
  color: var(--neutral-700);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
}

/* Values Grid in Accordion */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--neutral-200);
  border-radius: var(--radius-md);
  transition: transform var(--transition-base);
}

.value-item:hover {
  transform: translateX(5px);
}

.value-item i {
  color: var(--primary-color);
  font-size: 1rem;
  flex-shrink: 0;
}

.value-item p {
  margin: 0;
  font-weight: 500;
  color: var(--neutral-800);
  font-size: 0.95rem;
}

/* Strategic Axes List in Accordion */
.strategic-axes-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.strategic-axis-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  background: var(--neutral-200);
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
}

.strategic-axis-item:hover {
  background: var(--neutral-300);
  transform: translateX(5px);
}

.axis-number-small {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--primary-color), #4091ba);
  color: var(--neutral-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: bold;
  flex-shrink: 0;
}

.strategic-axis-item p {
  margin: 0;
  color: var(--neutral-700);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Responsive adjustments for Philosophy Accordion */
@media (max-width: 768px) {
  .philosophy-accordion-section {
    padding: 3rem 0;
  }

  .philosophy-accordion-section .section-header {
    margin-bottom: 2rem;
  }

  .accordion-header {
    padding: 1rem 1.5rem;
  }

  .accordion-icon-title {
    gap: 0.75rem;
  }

  .accordion-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .accordion-header h3 {
    font-size: 1.1rem;
  }

  .accordion-content.active {
    padding: 1rem 1.5rem 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .axis-number-small {
    width: 28px;
    height: 28px;
    font-size: 0.9rem;
  }
}

.about-timeline {
  padding: 4rem 0;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #081925 0%, #0a2540 100%);
}

.about-timeline h2 {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 800;
}

.timeline-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-bottom: 3rem;
}

/* Timeline styles - only for about page */
.about-timeline .timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 0;
}

.about-timeline .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #CC3333 0%, #FF5555 50%, #CC3333 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(204, 51, 51, 0.3);
}

.about-timeline .timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  opacity: 1;
}

.about-timeline .timeline-item.active {
  animation: fadeInUp 0.6s ease forwards;
}

.about-timeline .timeline-item.left {
  left: 0;
  text-align: right;
  padding-right: 3rem;
}

.about-timeline .timeline-item.right {
  left: 50%;
  padding-left: 3rem;
}

.about-timeline .timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 24px;
  height: 24px;
  background: #CC3333;
  border-radius: 50%;
  z-index: 1;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(204, 51, 51, 0.4);
  transition: all 0.3s ease;
}

.about-timeline .timeline-item.left::before {
  right: -15px;
}

.about-timeline .timeline-item.right::before {
  left: -15px;
}

.about-timeline .timeline-item:hover::before {
  width: 28px;
  height: 28px;
  top: 18px;
  box-shadow: 0 6px 16px rgba(204, 51, 51, 0.5);
}

.about-timeline .timeline-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  position: relative;
  border: 1.5px solid rgba(220, 20, 60, 0.15);
  transition: all 0.3s ease;
  overflow: hidden;
}

.about-timeline .timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(220, 20, 60, 0.2);
  border-color: rgba(220, 20, 60, 0.3);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff1744 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.timeline-icon {
  position: absolute;
  top: 1rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1565C0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 48, 135, 0.3);
  transition: transform 0.3s ease;
  right: -60px;
}

.about-timeline .timeline-item.left .timeline-icon {
  right: auto;
  left: -60px;
}

.about-timeline .timeline-item:hover .timeline-icon {
  transform: scale(1.1) rotate(15deg);
}

.about-timeline .timeline-content h3 {
  font-size: 1.3rem;
  margin: 0 0 0.6rem 0;
  color: var(--primary-color);
  font-weight: 700;
}

.about-timeline .timeline-content p {
  font-size: 0.9rem;
  color: var(--neutral-700);
  margin-bottom: 1rem;
  line-height: 1.5;
}

.about-timeline .timeline-content img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  filter: brightness(50%);
}

/* Growth Timeline Section - Using about-timeline styling */
.timeline-section {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, rgba(15, 32, 58, 0.95) 0%, rgba(8, 25, 37, 0.95) 100%);
  position: relative;
}

.timeline-section h2 {
  text-align: center;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.growth-timeline .timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.growth-timeline .timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #CC3333 0%, #FF5555 50%, #CC3333 100%);
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 20px rgba(204, 51, 51, 0.3);
}

.growth-timeline .timeline-item {
  position: relative;
  margin-bottom: 4rem;
  width: 50%;
  opacity: 1;
}

.growth-timeline .timeline-item.left {
  left: 0;
  text-align: right;
  padding-right: 3rem;
}

.growth-timeline .timeline-item.right {
  left: 50%;
  padding-left: 3rem;
}

.growth-timeline .timeline-item::before {
  content: '';
  position: absolute;
  top: 20px;
  width: 24px;
  height: 24px;
  background: #CC3333;
  border-radius: 50%;
  z-index: 1;
  border: 3px solid white;
  box-shadow: 0 4px 12px rgba(204, 51, 51, 0.4);
  transition: all 0.3s ease;
}

.growth-timeline .timeline-item.left::before {
  right: -15px;
}

.growth-timeline .timeline-item.right::before {
  left: -15px;
}

.growth-timeline .timeline-item:hover::before {
  width: 28px;
  height: 28px;
  top: 18px;
  box-shadow: 0 6px 16px rgba(204, 51, 51, 0.5);
}

.growth-timeline .timeline-content {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  position: relative;
  border: 2px solid rgba(220, 20, 60, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.growth-timeline .timeline-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(220, 20, 60, 0.3);
}

.growth-timeline .timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #ff1744 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(220, 20, 60, 0.3);
}

.growth-timeline .timeline-icon {
  position: absolute;
  top: 2rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #1565C0 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 48, 135, 0.25);
  transition: transform 0.3s ease;
  right: 2rem;
}

.growth-timeline .timeline-item.left .timeline-icon {
  right: auto;
  left: 2rem;
}

.growth-timeline .timeline-item:hover .timeline-icon {
  transform: scale(1.08) rotate(15deg);
}

.growth-timeline .timeline-content h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 700;
}

.growth-timeline .timeline-content p {
  font-size: 1.05rem;
  color: var(--neutral-700);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.growth-timeline .timeline-content img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  filter: brightness(50%);
}

/* Timeline Animations */
@keyframes timelineSlideIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.growth-timeline .timeline-item.timeline-visible {
  animation: timelineSlideIn 0.6s ease forwards;
}

.growth-timeline .timeline-item.active {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 48, 135, 0.2);
}

.about-stats {
  padding: 4rem 0;
  position: relative;
  background: #081925;
  display: block;
  min-height: 300px;
}

.about-stats .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  min-height: 200px;
  z-index: 1;
}

.stat {
  text-align: center;
  flex: 1;
  min-width: 160px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-lg);
}

.stat.active {
  animation: fadeInUp 0.6s ease forwards;
}

.stat-icon {
  margin-bottom: 1rem;
}

.stat-icon i {
  font-size: 2rem;
  color: #1E90FF;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.8rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.stat:hover .stat-icon i {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.3);
}

.stat h3 {
  font-size: 2.5rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 800;
}

.stat p {
  font-size: 1rem;
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: 500;
}

/* Presence Section */
.presence {
  padding: 4rem 0;
  text-align: center;
  position: relative;
  background: #081925;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.presence .slider {
  position: relative;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 100%;
  width: 100%;
}

.presence .slider::before,
.presence .slider::after {
  content: '';
  position: absolute;
  top: 0;
  width: 50px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.presence .slider::before {
  left: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.9), transparent);
}

.presence .slider::after {
  right: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.9), transparent);
}

.presence .slider-wrapper {
  overflow: visible;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.presence .slider-track {
  display: flex;
  transition: transform 0.3s ease;
  gap: 1rem;
}

.presence .card {
  flex: 0 0 250px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Remove underlines from country card links */
.presence a.card {
  text-decoration: none;
  color: inherit;
}

.presence a.card h3,
.presence a.card p {
  color: inherit;
}

.presence .card::before {
  content: '📍';
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 1.2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.presence .card::after {
  content: 'Learn More →';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(45deg, #1E90FF, #003087);
  color: white;
  padding: 0.75rem;
  text-align: center;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.presence .card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

.presence .card:hover::before {
  opacity: 1;
}

.presence .card:hover::after {
  transform: translateY(0);
}

.presence .card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.presence .card:hover img {
  transform: scale(1.1);
  filter: brightness(0.6);
}

.presence .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #1E90FF;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-md);
}

.presence .arrow:hover {
  background: #1E90FF;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.presence .left-arrow {
  left: 5px;
}

.presence .right-arrow {
  right: 5px;
}

.presence h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
  width: 100%;
  color: #ffffff;
}

.slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.slider-wrapper {
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.card {
  flex: 0 0 240px;
  margin: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid #003087;
  transition: transform 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  border-color: #CC3333;
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
  filter: brightness(50%);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: #333333;
  font-size: 1rem;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #CC3333;
  color: #FFFFFF;
  border: none;
  padding: 1rem;
  cursor: pointer;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.arrow:hover {
  background: #B22222;
  transform: scale(1.2) translateY(-50%);
}

.left-arrow {
  left: -50px;
}

.right-arrow {
  right: -50px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background: #CCCCCC;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.slider-dots .dot.active {
  background: #CC3333;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 15px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: fadeInUp 0.3s ease;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5rem;
  color: #333333;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.modal-close:hover {
  color: #CC3333;
  transform: scale(1.2);
}

.modal-content h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #003087;
}

.modal-content p {
  font-size: 1rem;
  color: #333333;
  margin-bottom: 0.5rem;
}

.modal-content a {
  color: #CC3333;
  text-decoration: none;
}

.modal-content a:hover {
  text-decoration: underline;
}

/* Resources/Downloads Section */
.resources-section {
  padding: 3rem 0;
  background: #081925;
  position: relative;
  overflow: hidden;
}

.resources-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(30, 144, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(204, 51, 51, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.resources-header {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.resources-header .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), #4091ba);
  color: #ffffff;
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 48, 135, 0.2);
}

.resources-header h2 {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.resources-header p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Resources Grid */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Resource Card */
.resource-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.resource-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.resource-card:hover::before {
  transform: scaleX(1);
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 40px rgba(0, 48, 135, 0.15);
  border-color: var(--primary-color);
}

/* Featured Card */
.resource-card.featured {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  border-color: var(--primary-color);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, var(--secondary-color), #e55a5a);
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(204, 51, 51, 0.3);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.featured-badge i {
  font-size: 0.7rem;
}

/* Resource Icon */
.resource-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), #4091ba);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 48, 135, 0.25);
  transition: transform 0.4s ease;
}

.resource-card:hover .resource-icon {
  transform: scale(1.08) rotate(3deg);
}

.resource-icon i {
  font-size: 1.8rem;
  color: #ffffff;
}

.pdf-badge {
  position: absolute;
  bottom: -6px;
  right: -6px;
  background: var(--secondary-color);
  color: #ffffff;
  padding: 0.2rem 0.4rem;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(204, 51, 51, 0.3);
}

/* Resource Content */
.resource-content h3 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 700;
  transition: color 0.3s ease;
}

.resource-card:hover .resource-content h3 {
  color: var(--secondary-color);
}

.resource-content p {
  font-size: 0.85rem;
  color: var(--neutral-600);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.resource-meta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.resource-meta span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.8rem;
  background: var(--neutral-200);
  border-radius: var(--radius-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-700);
}

.file-size {
  color: var(--primary-color);
}

/* Resource Actions */
.resource-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.btn-resource {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  border-radius: var(--radius-lg);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-view {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-view:hover {
  background: var(--primary-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 48, 135, 0.3);
}

.btn-download {
  background: linear-gradient(135deg, var(--primary-color), #4091ba);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 48, 135, 0.2);
}

.btn-download:hover {
  background: linear-gradient(135deg, var(--secondary-color), #e55a5a);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(204, 51, 51, 0.3);
}

.btn-resource i {
  font-size: 1rem;
}

/* Responsive Design for Resources */
@media (max-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
  }
}

@media (max-width: 768px) {
  .resources-section {
    padding: 2.5rem 0;
  }

  .resources-header {
    margin-bottom: 2rem;
  }

  .resources-header h2 {
    font-size: 1.75rem;
  }

  .resources-header p {
    font-size: 0.9rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .resource-card {
    padding: 1.5rem;
  }

  .resource-icon {
    width: 55px;
    height: 55px;
  }

  .resource-icon i {
    font-size: 1.6rem;
  }

  .resource-actions {
    flex-direction: column;
  }

  .btn-resource {
    width: 100%;
  }
}

/* Partners Section */
/* Partners Marquee Section - Modern & Dynamic */
.partners-marquee {
  padding: 5rem 0 4rem;
  background: #081925;
  position: relative;
  overflow: hidden;
}

/* Animated background patterns */
.partners-marquee::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 48, 135, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(204, 51, 51, 0.08) 0%, transparent 50%);
  pointer-events: none;
  animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

.partners-marquee-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.partners-marquee-header h2 {
  font-size: 2.8rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.partners-marquee-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

/* Marquee Container */
.marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 2.5rem 0;
  z-index: 1;
}

.marquee-container::before,
.marquee-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 200px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #081925, transparent);
}

.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #081925, transparent);
}

/* Marquee Track */
.marquee-track {
  display: flex;
  gap: 3rem;
  animation: marquee 40s linear infinite;
  width: fit-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

/* Marquee Animation */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Partner Logo Items - Modern Design */
.partner-logo-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
  padding: 2rem 3rem;
  border-radius: 16px;
  box-shadow:
    0 4px 15px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 220px;
  height: 140px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.partner-logo-item::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-logo-item:hover::before {
  opacity: 1;
}

.partner-logo-item:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow:
    0 12px 30px rgba(0, 48, 135, 0.3),
    0 0 20px rgba(0, 48, 135, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  background: linear-gradient(145deg, #ffffff, rgba(255, 255, 255, 0.98));
}

.partner-logo-item img {
  max-width: 200px;
  max-height: 110px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

.partner-logo-item:hover img {
  transform: scale(1.08);
}

/* Glow effect on hover */
.partner-logo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at center, rgba(0, 48, 135, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partner-logo-item:hover::after {
  opacity: 1;
}

/* Responsive Design for Partners Marquee */
@media (max-width: 768px) {
  .partners-marquee {
    padding: 3.5rem 0 3rem;
  }

  .partners-marquee-header {
    margin-bottom: 2.5rem;
  }

  .partners-marquee-header h2 {
    font-size: 2.2rem;
  }

  .marquee-container {
    padding: 2rem 0;
  }

  .marquee-container::before,
  .marquee-container::after {
    width: 80px;
  }

  .marquee-track {
    gap: 2rem;
    animation: marquee 30s linear infinite;
  }

  .partner-logo-item {
    min-width: 180px;
    height: 110px;
    padding: 1.5rem 2rem;
  }

  .partner-logo-item img {
    max-width: 160px;
    max-height: 80px;
  }
}

/* Testimonials Section */
/* Modern Testimonials Section */
.testimonials {
  padding: 5rem 0;
  position: relative;
  background: #081925;
  overflow: hidden;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  position: relative;
}

.testimonials-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(45deg, #1E90FF, #003087);
  border-radius: 2px;
}

.testimonials-header p {
  font-size: 1.2rem;
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Testimonials Grid Container - No Scrolling */
.testimonials-scroll-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .testimonials-scroll-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-scroll-container {
    grid-template-columns: 1fr;
  }
}

.testimonials-scroll-container .testimonial-card {
  width: 100%;
  max-width: 100%;
}

/* Legacy grid support */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(45deg, #1E90FF, #003087);
}

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}


.client-details h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0 0 0.25rem 0;
}

.client-details span {
  font-size: 0.9rem;
  color: var(--neutral-600);
  font-weight: 500;
}

.rating-stars {
  display: flex;
  gap: 0.25rem;
}

.rating-stars i {
  color: #ffc107;
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.rating-stars i:hover {
  transform: scale(1.2);
}

.testimonial-content {
  position: relative;
  margin-bottom: 2rem;
}

.quote-icon {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #1E90FF, #003087);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  opacity: 0.8;
}

.testimonial-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--neutral-700);
  font-style: italic;
  margin: 0;
  padding-left: 2rem;
}


.testimonials-cta {
  text-align: center;
  padding: 3rem 0;
  background: #081925;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.testimonials-cta p {
  font-size: 1.3rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.testimonials-cta .btn {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

/* Contact Section */
.contact {
  padding: 6rem 0;
  position: relative;
  background: #081925;
  overflow: hidden;
}

.contact-container {
  text-align: center;
}

.contact h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.contact p {
  font-size: 1.5rem;
  color: #FFFFFF;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.contact-content {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 3rem;
}

.contact-image {
  flex: 0 0 350px;
  max-width: 350px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.contact-image:hover {
  transform: scale(1.05);
}

.contact-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: #FFFFFF;
  text-align: left;
}

.image-overlay h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
}

.image-overlay p {
  font-size: 1rem;
  opacity: 0.8;
}

.contact-card {
  flex: 0 0 650px;
  max-width: 650px;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(204, 51, 51, 0.1);
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease forwards;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(204, 51, 51, 0.1), transparent);
  transform: rotate(45deg);
  z-index: 0;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-row {
  display: flex;
  gap: 2rem;
}

.form-group {
  position: relative;
  flex: 1;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 10px;
  background: #F5F5F5;
  color: #333333;
  font-size: 1.1rem;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.form-group select {
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="6" viewBox="0 0 12 6"><path fill="%23CC3333" d="M0 0h12L6 6z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 1.5rem center;
  background-size: 12px;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(204, 51, 51, 0.2);
}

.form-group label {
  position: absolute;
  top: -0.75rem;
  left: 1.5rem;
  font-size: 0.9rem;
  color: #CC3333;
  background: #FFFFFF;
  padding: 0 0.5rem;
  transition: all 0.3s ease;
  pointer-events: none;
}

.form-group input:not(:placeholder-shown) + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:not([value=""]) + label,
.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group select:focus + label {
  top: -0.75rem;
  font-size: 0.9rem;
  color: #CC3333;
}

.form-group .focus-border {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(45deg, #CC3333, #E55A5A);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.form-group input:focus ~ .focus-border,
.form-group textarea:focus ~ .focus-border,
.form-group select:focus ~ .focus-border {
  width: 100%;
}

.contact-form .btn {
  align-self: center;
  padding: 1.2rem 6rem;
  font-size: 1.2rem;
  border: none;
  cursor: pointer;
  background: var(--secondary-color);
  box-shadow: 0 5px 15px rgba(220, 20, 60, 0.4);
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(220, 20, 60, 0.5);
  background: #C5112D;
}

.confirmation-block {
  margin-top: 1rem;
  padding: 1rem;
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  animation: fadeInUp 0.5s ease;
  border-left: 4px solid #CC3333;
}

.confirmation-block p {
  margin: 0;
  font-size: 1rem;
  color: #333333;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.info-item {
  display: flex;
  align-items: center;
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.2rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.info-item:hover {
  background: rgba(204, 51, 51, 0.2);
  transform: translateY(-2px);
}

.info-item i {
  font-size: 1.8rem;
  color: #CC3333;
  margin-right: 0.75rem;
  transition: transform 0.3s ease;
}

.info-item:hover i {
  transform: scale(1.2);
}

.info-item span {
  font-weight: 500;
}

/* Chatbot Container - Fixed positioning */
.chatbot-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: block;
}

/* Chatbot Toggle Button */
.chatbot-toggle {
  background: linear-gradient(45deg, #1E90FF, #003087);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 2px solid #FFFFFF;
  position: relative;
  z-index: 10000;
}

.chatbot-toggle::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(45deg, #1E90FF, #003087);
  border-radius: 50%;
  opacity: 0.3;
  animation: ping 2s infinite;
  z-index: -1;
}

.chatbot-toggle:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.chatbot-toggle i {
  font-size: 1.8rem;
  color: #FFFFFF;
}

/* Chatbot Window */
#chatbot {
  position: fixed;
  bottom: 90px;
  right: 20px;
  width: 350px;
  max-height: 500px;
  height: 500px;
  background: #FFFFFF;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 48, 135, 0.1);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 9998;
}

/* When chatbot is visible */
#chatbot[style*="display: flex"] {
  display: flex !important;
}

.chatbot-header {
  background: linear-gradient(45deg, #003087, #1E90FF);
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  flex-shrink: 0;
}

.chatbot-header h3 {
  font-size: 1.3rem;
  color: #FFFFFF;
  margin: 0;
  font-weight: 600;
}

.chatbot-messages {
  flex: 1;
  padding: 1rem;
  overflow-y: auto;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Custom scrollbar for messages */
.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}

.chatbot-messages::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.chatbot-messages::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}

.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.message {
  padding: 0.75rem 1rem;
  border-radius: 15px;
  max-width: 80%;
  font-size: 0.95rem;
  line-height: 1.4;
  word-wrap: break-word;
  animation: slideIn 0.3s ease;
}

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

.bot-message {
  background: #FFFFFF;
  color: #333333;
  align-self: flex-start;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  border-bottom-left-radius: 5px;
}

.user-message {
  background: linear-gradient(45deg, #003087, #1E90FF);
  color: #081925;
  align-self: flex-end;
  border-bottom-right-radius: 5px;
  margin-left: auto;
}

.message p {
  margin: 0;
  color: inherit;
}

/* Typing Indicator */
.typing-indicator {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 1rem;
  background: #FFFFFF;
  border-radius: 15px;
  margin: 0;
  max-width: 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background: #666;
  border-radius: 50%;
  animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
  animation-delay: -0.32s;
}

.typing-indicator span:nth-child(2) {
  animation-delay: -0.16s;
}

@keyframes typing {
  0%, 80%, 100% {
    transform: scale(0.8);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

.chatbot-input {
  display: flex;
  padding: 1rem;
  background: #FFFFFF;
  border-top: 1px solid rgba(0, 48, 135, 0.1);
  gap: 0.5rem;
  flex-shrink: 0;
}

.chatbot-input input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 10px;
  background: #F5F5F5 !important;
  font-size: 0.95rem;
  color: #333333 !important;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
}

.chatbot-input input:focus {
  outline: none;
  background: #FFFFFF !important;
  color: #333333 !important;
  box-shadow: 0 0 0 3px rgba(0, 48, 135, 0.2);
}

.chatbot-input input::placeholder {
  color: #999;
}

.chatbot-send {
  background: linear-gradient(45deg, #003087, #1E90FF);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 48, 135, 0.3);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.chatbot-send:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(0, 48, 135, 0.4);
}

.chatbot-send i {
  font-size: 1rem;
  color: #FFFFFF;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .chatbot-container {
    right: 15px;
    bottom: 90px;
  }
  
  #chatbot {
    width: 320px;
    max-height: 450px;
    height: 450px;
    right: 15px;
    bottom: 160px;
  }
  
  .chatbot-toggle {
    width: 55px;
    height: 55px;
  }
  
  .chatbot-toggle i {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .chatbot-container {
    right: 10px;
    bottom: 90px;
  }
  
  #chatbot {
    width: calc(100vw - 20px);
    max-width: 350px;
    right: 10px;
    bottom: 160px;
  }
  
  .message {
    font-size: 0.9rem;
  }
  
  .chatbot-header h3 {
    font-size: 1.1rem;
  }
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}
/* Footer */
.footer {
  background: #000000;
  color: #FFFFFF;
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 1;
  font-family: 'Roboto', sans-serif;
}

.footer .shade-overlay {
  background: rgba(0, 0, 0, 0.15);
  z-index: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo-header {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  margin-bottom: 1.5rem;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.footer-logo-img:hover {
  transform: scale(1.1);
}

.footer-logo h3 {
  font-size: 2.5rem;
  margin: 0;
  color: #FFFFFF;
  font-weight: 800;
}

.footer-gks-text {
  color: #003087;
}

.footer-logistics-text {
  color: #CC3333;
}

.footer-logo p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 400px;
}

.social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 1.4rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #1E90FF, #003087);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.social-icons a:hover::before {
  opacity: 1;
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icons a i {
  position: relative;
  z-index: 1;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-weight: 700;
  position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #1E90FF, #003087);
  border-radius: 1px;
}

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

.footer-links ul li {
  margin-bottom: 0.8rem;
}

.footer-links ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.footer-links ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #CC3333;
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::after {
  width: 100%;
}

.footer-links ul li a:hover {
  color: #CC3333;
}

.footer-contact p {
  margin-bottom: 0.8rem;
  color: #FFFFFF;
  font-size: 1rem;
}

.footer-contact p a {
  color: #FFFFFF;
  text-decoration: none;
}

.footer-contact p a:hover {
  color: #CC3333;
  text-decoration: underline;
}

/* Footer Resources Section */
.footer-resources h4 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  font-weight: 700;
  position: relative;
}

.footer-resources h4::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 2px;
  background: linear-gradient(45deg, #1E90FF, #003087);
  border-radius: 1px;
}

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

.footer-resources ul li {
  margin-bottom: 0.8rem;
}

.footer-resources ul li a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.footer-resources ul li a i {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.footer-resources ul li a:hover {
  color: #CC3333;
  transform: translateX(5px);
}

.footer-resources ul li a:hover i {
  transform: scale(1.1);
}

.footer-newsletter form {
  display: flex;
  gap: 0.6rem;
}

.footer-newsletter input {
  padding: 0.6rem;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  flex: 1;
  font-size: 1rem;
  color: #333333;
}

.footer-newsletter .btn {
  padding: 0.6rem 1.2rem;
  font-size: 1rem;
}

.footer-divider {
  height: 2px;
  background: #CC3333;
  margin: 2.5rem 0;
}

.footer-copy {
  text-align: center;
  font-size: 1rem;
  color: #FFFFFF;
  font-weight: 400;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #CC3333;
  color: #FFFFFF;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 2999;
}

.back-to-top.active {
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.back-to-top i {
  animation: bounceUp 2s infinite;
}

/* Enhanced Footer Styles */
.footer-newsletter {
  border: 2px dashed rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-top: 1rem;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 0.5rem;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, #1E90FF, #003087);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
}

.social-icons a:hover::before {
  opacity: 1;
}

.social-icons a:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.social-icons a i {
  position: relative;
  z-index: 1;
  font-size: 1.2rem;
}

.footer-links a {
  position: relative;
  transition: all 0.3s ease;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover::before {
  opacity: 1;
  left: -15px;
}

.footer-links a:hover {
  color: #1E90FF;
  transform: translateX(5px);
}


.rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.rating i {
  color: #FFD700;
  font-size: 1rem;
}

.verified-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--success-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.verified-badge i {
  font-size: 0.8rem;
}

/* Quick Contact Options */
.quick-contact-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quick-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #0a3d62;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  min-height: 48px;
  box-shadow: 0 4px 14px rgba(10,61,98,0.25);
  border: 2px solid transparent;
}

.quick-contact-btn:hover {
  background: #062a45;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(10,61,98,0.35);
}

/* WhatsApp button keeps its green */
.quick-contact-btn[href*="wa.me"] {
  background: #25d366;
  box-shadow: 0 4px 14px rgba(37,211,102,0.3);
}
.quick-contact-btn[href*="wa.me"]:hover {
  background: #1ebe5d;
}

.quick-contact-btn i {
  font-size: 1.1rem;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  background: white;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-left: 4px solid var(--info-color);
  min-width: 300px;
  max-width: 400px;
  animation: slideInFromRight 0.3s ease;
  position: relative;
}

.toast.success {
  border-left-color: var(--success-color);
}

.toast.error {
  border-left-color: var(--error-color);
}

.toast.warning {
  border-left-color: var(--warning-color);
}

.toast-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.toast-icon {
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.toast.success .toast-icon {
  color: var(--success-color);
}

.toast.error .toast-icon {
  color: var(--error-color);
}

.toast.warning .toast-icon {
  color: var(--warning-color);
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--neutral-500);
  transition: color 0.3s ease;
}

.toast-close:hover {
  color: var(--neutral-700);
}

.toast-message {
  color: var(--neutral-800);
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Mobile Bottom Navigation - Modern GKS Design */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #003087 0%, #1E90FF 100%);
  backdrop-filter: blur(20px);
  display: none;
  z-index: 1000;
  padding: 0.75rem 0 1rem 0;
  box-shadow: 0 -8px 32px rgba(0, 48, 135, 0.3);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 0.5rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 56px;
  justify-content: center;
  flex: 1;
  border-radius: 12px;
  margin: 0 0.25rem;
  position: relative;
  overflow: hidden;
}

.mobile-bottom-nav .nav-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-bottom-nav .nav-item:hover::before,
.mobile-bottom-nav .nav-item.active::before {
  opacity: 1;
}

.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
  color: #FFFFFF;
  transform: translateY(-2px);
}

.mobile-bottom-nav .nav-item.active {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.mobile-bottom-nav .nav-item i {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.mobile-bottom-nav .nav-item:hover i,
.mobile-bottom-nav .nav-item.active i {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.mobile-bottom-nav .nav-item span {
  font-size: 0.75rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.3px;
}

.mobile-bottom-nav .menu-toggle-mobile {
  background: linear-gradient(45deg, #CC3333, #E55A5A);
  color: white;
  border: none;
  cursor: pointer;
}

.mobile-bottom-nav .menu-toggle-mobile:hover {
  background: linear-gradient(45deg, #E55A5A, #CC3333);
  transform: translateY(-2px) scale(1.05);
}

/* Mobile Optimization */
/* Tablet screens */
@media (max-width: 1024px) {
  .header-logo-link .gks-text,
  .header-logo-link .logistics-text {
    font-size: 1.4rem;
  }

  .header-logo-image {
    height: 35px;
  }
}

@media (max-width: 768px) {
  /* Better touch targets */
  .btn {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* Improve readability */
  body {
    font-size: 16px;
  }
  
  /* Better spacing on mobile - only for index page sections */
  .hero .container,
  .services .container,
  .about .container,
  .presence .container,
  .testimonials .container,
  .contact .container {
    width: 95%;
    padding: 0 1rem;
  }

  /* Responsive logo text sizing */
  .header-logo-link .gks-text,
  .header-logo-link .logistics-text {
    font-size: 1.3rem;
  }

  .header-logo-image {
    height: 30px;
  }
  
  /* Better text handling on mobile */
  body {
    word-wrap: break-word;
    hyphens: auto;
  }
  
  /* Ensure all text elements handle overflow properly */
  h1, h2, h3, h4, h5, h6, p, span, div {
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  
  /* Philosophy Section Mobile Styles */
  .philosophy-section {
    padding: 3rem 0;
  }
  
  .philosophy-section .section-header h2 {
    font-size: 2rem;
  }
  
  .philosophy-section .section-header p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .philosophy-cards-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .philosophy-card {
    padding: 2rem 1.5rem;
  }
  
  .philosophy-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .philosophy-card h3 {
    font-size: 1.3rem;
  }
  
  .philosophy-card p {
    font-size: 0.95rem;
  }
  
  /* Presence Section Mobile Styles */
  .presence {
    padding: 3rem 0;
  }
  
  .presence h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .presence .slider {
    margin: 1.5rem auto;
  }
  
  .presence .slider-wrapper {
    padding: 0 10px;
  }
  
  /* Mobile Menu */
  .menu-toggle {
    display: block;
    background: #003087 !important;
    color: #FFFFFF !important;
  }

  .menu-toggle:hover {
    background: #003087 !important;
    color: #FFFFFF !important;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF !important;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 0 0 12px 12px;
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav.active {
    display: block;
    background: #FFFFFF !important;
  }

  /* Ensure header doesn't interfere with mobile nav */
  .header {
    background: #FFFFFF !important;
  }

  .nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 0;
    background: transparent !important;
  }

  .nav ul li {
    text-align: left;
    border-bottom: 1px solid rgba(0, 48, 135, 0.08);
  }

  .nav ul li:last-child {
    border-bottom: none;
  }

  .nav ul li a {
    color: #333333;
    padding: 1rem 1.5rem;
    display: block;
  }

  /* Modern Mobile Dropdown Styles */
  .nav-item-dropdown .dropdown-menu {
    position: static;
    left: auto;
    right: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #FFFFFF !important;
    border-radius: 0 0 12px 12px;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease;
    border: none;
    width: 100%;
    min-width: auto;
    max-width: none;
  }

  .nav-item-dropdown.active .dropdown-menu {
    max-height: 1000px;
    padding: 0.5rem 0 0.75rem 0;
  }

  .nav-item-dropdown.active .dropdown-menu::before {
    display: none;
  }

  .dropdown-menu li {
    border-bottom: none;
    margin: 0;
  }

  .dropdown-menu li a {
    padding: 1.125rem 1.5rem;
    font-size: 0.95rem;
    color: #003087 !important;
    border-radius: 0;
    white-space: normal;
    word-wrap: break-word;
    transition: background 0.3s ease, padding-left 0.3s ease;
  }

  .dropdown-menu li a::before {
    font-size: 0.7rem;
    flex-shrink: 0;
    background: rgba(0, 48, 135, 0.1) !important;
    color: #003087 !important;
  }

  .dropdown-menu li a:hover {
    background: rgba(0, 48, 135, 0.08) !important;
    color: #003087 !important;
    padding-left: 2rem;
    transform: none;
  }

  .dropdown-menu li a i {
    color: #003087 !important;
    background: rgba(0, 48, 135, 0.1) !important;
  }

  .nav-link-dropdown::after {
    margin-left: auto;
  }
  
  /* Modern Mobile CTA Button */
  .nav-cta-button {
    display: block;
    text-align: center;
    margin: 1rem 1.5rem;
    padding: 1.25rem 1.75rem;
    font-size: 1.05rem;
    box-shadow: 
      0 6px 20px rgba(220, 20, 60, 0.4),
      0 3px 10px rgba(220, 20, 60, 0.3),
      0 0 0 0 rgba(220, 20, 60, 0.4);
    animation: ctaPulse 2.5s ease-in-out infinite;
  }
  
  .nav-cta-button:hover {
    transform: translateY(-2px);
  }
  
  .nav-cta-button:active {
    animation: none;
  }

  .language-toggle {
    margin-left: 1rem;
  }

  /* Optimize hero section */
  .hero {
    height: 100vh;
  }

  /* Swap to mobile images on tablet and below */
  .hero-img-desktop {
    display: none;
  }

  .hero-img-mobile {
    display: block;
  }

  .hero-slider .hero-content {
    top: 65%;
    padding: 1.5rem;
  }

  .hero-slider .hero-content h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .hero-slider .hero-content p {
    font-size: 0.95rem;
  }
  
  /* Stack buttons vertically on small screens */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin: 0;
  }

  /* Services */
  .services-hero {
    min-height: 50vh;
    padding: 3rem 1.5rem;
  }

  .modern-welcome-card {
    padding: 3rem 2rem;
    border-radius: 20px;
  }

  .gradient-text {
    font-size: 2.2rem;
  }

  .welcome-subtitle {
    font-size: 1.1rem;
  }

  .welcome-stats {
    gap: 2rem;
  }

  .welcome-cta-buttons {
    flex-direction: column;
    gap: 1rem;
  }

  .welcome-cta-buttons .btn {
    width: 100%;
    padding: 0.9rem 2rem;
  }

  .services-hero-content h2 {
    font-size: 2rem;
  }

  .services-hero-content p {
    font-size: 1rem;
  }

  .services-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .service-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .service-cards .card {
    grid-column: span 1;
    min-height: auto;
  }

  /* Reset grid positioning for 4th and 5th cards on tablet */
  .service-cards .card:nth-child(4),
  .service-cards .card:nth-child(5) {
    grid-column: auto;
  }

  .service-cards .card i {
    font-size: 2.8rem;
  }

  .service-cards .card h3 {
    font-size: 1.4rem;
  }

  .service-card-buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card-buttons .btn {
    flex: 1;
    min-width: 100px;
  }

  .btn-explore {
    padding: 0.75rem 2rem;
  }

  /* About */
  .about-hero {
    height: 50vh;
  }

  .about-hero-content {
    padding: 1.5rem;
  }

  .about-hero-content h2 {
    font-size: 2rem;
  }

  .about-hero-content p {
    font-size: 1rem;
  }

  .about-timeline .timeline {
    max-width: 100%;
  }

  .about-timeline .timeline::before {
    left: 20px;
  }

  .about-timeline .timeline-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 1rem;
    text-align: left;
    margin-bottom: 2.5rem;
  }

  .about-timeline .timeline-item.left,
  .about-timeline .timeline-item.right {
    left: 0;
  }

  .about-timeline .timeline-item.left::before,
  .about-timeline .timeline-item.right::before {
    left: 8px;
    right: auto;
  }

  .timeline-icon {
    position: static;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    left: auto;
    right: auto;
  }

  .about-timeline .timeline-content {
    padding: 1.2rem;
  }

  .timeline-year {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }

  .about-timeline .timeline-content h3 {
    font-size: 1.1rem;
  }

  .about-timeline .timeline-content p {
    font-size: 0.85rem;
  }

  .about-timeline .timeline-content img {
    height: 140px;
  }

  /* Timeline Section Responsive */
  .timeline-section {
    padding: 3rem 1.5rem;
  }

  .timeline-section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }

  .timeline-section .timeline {
    max-width: 100%;
    padding: 2rem 0;
  }

  .timeline-section .timeline::before {
    left: 20px;
  }

  .timeline-section .timeline-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 1rem;
    text-align: left;
    margin-bottom: 2.5rem;
  }

  .timeline-section .timeline-item:nth-child(odd),
  .timeline-section .timeline-item:nth-child(even) {
    left: 0;
    padding-right: 1rem;
    padding-left: 3rem;
  }

  .timeline-section .timeline-item:nth-child(odd)::before,
  .timeline-section .timeline-item:nth-child(even)::before {
    left: 8px;
    right: auto;
  }

  .timeline-section .timeline-marker {
    position: static;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    left: auto;
    right: auto;
  }

  .timeline-section .timeline-content {
    padding: 1.2rem;
    min-height: auto;
  }

  .timeline-section .timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .timeline-section .timeline-content p {
    font-size: 0.95rem;
  }

  /* Growth Timeline Mobile Responsive */
  .growth-timeline .timeline {
    max-width: 100%;
  }

  .growth-timeline .timeline::before {
    left: 20px;
  }

  .growth-timeline .timeline-item {
    width: 100%;
    padding-left: 3rem;
    padding-right: 1rem;
    text-align: left;
    margin-bottom: 2.5rem;
  }

  .growth-timeline .timeline-item.left,
  .growth-timeline .timeline-item.right {
    left: 0;
  }

  .growth-timeline .timeline-item.left::before,
  .growth-timeline .timeline-item.right::before {
    left: 8px;
    right: auto;
  }

  .growth-timeline .timeline-icon {
    position: static;
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    left: auto;
    right: auto;
  }

  .growth-timeline .timeline-content {
    padding: 1.2rem;
  }

  .growth-timeline .timeline-year {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }

  .growth-timeline .timeline-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .growth-timeline .timeline-content p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
  }

  .growth-timeline .timeline-content img {
    height: 140px;
  }

  .about-stats {
    padding: 2rem 0;
  }

  .about-stats .container {
    flex-direction: column;
    gap: 1.5rem;
    min-height: auto;
  }

  .stat {
    min-width: 120px;
    padding: 1rem;
    margin: 0.5rem;
  }

  .stat h3 {
    font-size: 2.5rem;
  }

  .stat p {
    font-size: 1rem;
  }

  .stat-icon i {
    font-size: 2rem;
    padding: 0.8rem;
  }

  /* Presence */
  .card {
    flex: 0 0 200px;
  }

  .slider-wrapper {
    width: 100%;
  }

  .left-arrow {
    left: 10px;
  }

  .right-arrow {
    right: 10px;
  }

  .arrow {
    padding: 0.75rem;
    font-size: 1.25rem;
  }

  .modal-content {
    padding: 1.5rem;
    max-width: 90%;
  }

  .modal-content h3 {
    font-size: 1.5rem;
  }

  .modal-content p {
    font-size: 0.9rem;
  }

  /* Testimonials */
  /* Modern Testimonials Mobile Styles */
  .testimonials {
    padding: 3rem 0;
  }
  
  .testimonials-header h2 {
    font-size: 2.5rem;
  }
  
  .testimonials-header p {
    font-size: 1.1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .testimonial-card {
    padding: 2rem;
  }
  
  .testimonial-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  
  .testimonials-cta {
    padding: 2rem;
  }
  
  .testimonials-cta p {
    font-size: 1.1rem;
  }

  /* Contact */
  .contact {
    padding: 4rem 0;
  }

  .contact h2 {
    font-size: 2.5rem;
  }

  .contact p {
    font-size: 1.2rem;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .contact-image {
    max-width: 100%;
    flex: 0 0 300px;
  }

  .contact-image img {
    height: 400px;
  }

  .contact-card {
    padding: 2rem;
    max-width: 100%;
  }

  .form-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 0.75rem 1rem;
    font-size: 16px; /* Prevents zoom */
  }

  .contact-form .btn {
    padding: 1rem 4rem;
    font-size: 1.1rem;
  }

  .contact-info {
    flex-direction: column;
    gap: 1.5rem;
  }

  .info-item {
    width: 100%;
    justify-content: center;
  }

  /* Floating CTA */
  .floating-cta {
    bottom: 100px;
    right: 15px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }

  /* Chatbot */
  .chatbot-container {
    right: 60px;
    bottom: 20px; /* Back to original position */
  }

  #chatbot {
    width: 300px;
    height: 400px;
  }

  .chatbot-messages {
    flex: 1;
  }

  .chatbot-header h3 {
    font-size: 1.3rem;
  }

  .chatbot-input input {
    padding: 0.5rem;
    font-size: 16px; /* Prevents zoom */
  }

  .chatbot-send {
    width: 35px;
    height: 35px;
  }

  .chatbot-send i {
    font-size: 1rem;
  }

  /* Footer */
  .footer {
    padding: 3rem 0 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  
  .header-logo-image {
    height: 25px;
  }

  .header-logo-link .gks-text,
  .header-logo-link .logistics-text {
    font-size: 1.1rem;
  }
  
  .footer-logo-img {
    width: 55px;
    height: 55px;
  }
  
  .footer-logo h3 {
    font-size: 2rem;
  }
  
  .social-icons {
    justify-content: center;
  }


}

/* Very small screens */
@media (max-width: 480px) {
  .logo h1 {
    font-size: 1.2rem;
  }

  .logo-img {
    width: 40px;
    height: 40px;
  }

  .hero-slider .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .modern-welcome-card {
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
  }

  .gradient-text {
    font-size: 1.75rem;
  }

  .welcome-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }

  .welcome-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .welcome-stats {
    gap: 1.5rem;
  }

  .welcome-stat-item .stat-value {
    font-size: 1.5rem;
  }

  .welcome-stat-item .stat-label {
    font-size: 0.8rem;
  }

  .stat-icon-mini {
    width: 40px;
    height: 40px;
  }

  .stat-icon-mini i {
    font-size: 1.2rem;
  }

  .corner-accent {
    width: 20px;
    height: 20px;
  }

  .services-hero-content h2 {
    font-size: 1.75rem;
  }

  .services-section-title {
    font-size: 1.75rem;
    letter-spacing: 1px;
  }

  .contact h2 {
    font-size: 2rem;
  }
  
  /* Philosophy Section Small Mobile Styles */
  .philosophy-section {
    padding: 2rem 0;
  }
  
  .philosophy-section .section-header h2 {
    font-size: 1.8rem;
  }
  
  .philosophy-section .section-header p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .philosophy-card {
    padding: 1.5rem 1rem;
  }
  
  .philosophy-card .card-icon {
    font-size: 2rem;
  }
  
  .philosophy-card h3 {
    font-size: 1.2rem;
  }
  
  .philosophy-card p {
    font-size: 0.9rem;
  }
  
  /* Modern Testimonials Small Mobile Styles */
  .testimonials {
    padding: 2rem 0;
  }
  
  .testimonials-header h2 {
    font-size: 2rem;
  }
  
  .testimonials-header p {
    font-size: 1rem;
  }
  
  .testimonials-grid {
    gap: 1.5rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  
  .client-details h4 {
    font-size: 1.1rem;
  }
  
  .testimonial-content p {
    font-size: 1rem;
    padding-left: 1.5rem;
  }
  
  .testimonials-cta {
    padding: 1.5rem;
  }
  
  .testimonials-cta p {
    font-size: 1rem;
  }
  
  /* Presence Section Small Mobile Styles */
  .presence {
    padding: 2rem 0;
  }
  
  .presence h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }
  
  .presence .slider {
    margin: 1rem auto;
  }
  
  .presence .slider-wrapper {
    padding: 0 5px;
  }

  .presence .card {
    flex: 0 0 180px;
    padding: 1rem;
    margin: 0.5rem;
  }

  .presence .card img {
    height: 80px;
  }

  .presence .card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .presence .card p {
    font-size: 0.9rem;
  }

  .floating-cta {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
  
  .service-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-cards .card {
    min-height: auto;
    padding: 1.5rem 1rem;
  }

  .service-cards .card:nth-child(4),
  .service-cards .card:nth-child(5) {
    grid-column: auto;
  }

  .service-cards .card i {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
  }

  .service-cards .card h3 {
    font-size: 1.3rem;
  }

  .service-cards .card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .service-card-buttons {
    flex-direction: column;
  }

  .service-card-buttons .btn {
    width: 100%;
  }

  .service-card-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .service-card-stats .stat-item {
    width: 100%;
  }

  /* Hide mobile bottom navigation */
  .mobile-bottom-nav {
    display: none;
  }

  /* Remove body padding since mobile nav is hidden */
  body {
    padding-bottom: 0;
  }
}

/* Extra small screens (320px and below) */
@media (max-width: 320px) {
  .hero .container,
  .services .container,
  .about .container,
  .presence .container,
  .testimonials .container,
  .contact .container {
    width: 98%;
    padding: 0 0.5rem;
  }

  .header-logo-link .gks-text,
  .header-logo-link .logistics-text {
    font-size: 0.9rem;
  }

  .header-logo-image {
    height: 20px;
  }
  
  .hero-slider .hero-content h1 {
    font-size: 1.3rem;
  }
  
  .hero-slider .hero-content p {
    font-size: 0.85rem;
  }
  
  .service-cards .card {
    padding: 1rem 0.75rem;
  }
  
  .service-cards .card h3 {
    font-size: 1.4rem;
  }
  
  .service-cards .card p {
    font-size: 0.8rem;
  }
  
  .btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }
}

/* Extra Small Screens (320px and below) */
@media (max-width: 320px) {
  .stat {
    min-width: 100px;
    padding: 0.8rem;
    margin: 0.3rem;
  }

  .stat h3 {
    font-size: 2rem;
  }

  .stat p {
    font-size: 0.9rem;
  }

  .stat-icon i {
    font-size: 1.8rem;
    padding: 0.6rem;
  }

  .presence .card {
    flex: 0 0 150px;
    padding: 0.8rem;
    margin: 0.3rem;
  }

  .presence .card img {
    height: 60px;
  }

  .presence .card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }

  .presence .card p {
    font-size: 0.8rem;
  }

  /* Mobile bottom navigation adjustments for small screens */
  .mobile-bottom-nav {
    padding: 0.5rem 0 0.75rem 0;
  }

  .mobile-bottom-nav .nav-item {
    padding: 0.5rem 0.25rem;
    min-height: 50px;
    gap: 0.3rem;
  }

  .mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
  }

  .mobile-bottom-nav .nav-item span {
    font-size: 0.7rem;
  }

  /* Chatbot positioning for small screens */
  .chatbot-container {
    bottom: 20px; /* Back to original position */
  }
}

/* Global Layout Fixes */
/* Ensure consistent box-sizing across all elements */
*, *::before, *::after {
  box-sizing: border-box;
}

/* Fix layout shifts and broken elements */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Ensure proper spacing and alignment */
section {
  overflow-x: hidden;
}

/* Fix flex and grid layout issues */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Ensure text doesn't overflow */
h1, h2, h3, h4, h5, h6, p, a, span {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Fix responsive images in news and blog pages */
.news-card img,
.blog-card img,
.article-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Ensure consistent button sizing */
button, .btn {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Fix grid layouts on smaller screens */
@media (max-width: 768px) {
  .grid, .news-grid, .blog-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem;
  }
  
  .philosophy-cards-container {
    grid-template-columns: 1fr !important;
  }
}

/* Ensure proper z-index stacking */
.header {
  z-index: 1000;
}

.language-dropdown-menu {
  z-index: 1001;
}

.modal {
  z-index: 2000;
}

/* Fix overflow issues */
body {
  overflow-x: hidden;
}

/* Ensure footer stays at bottom */
.footer {
  margin-top: auto;
}

/* Fix news page specific layout issues */
.news-hero,
.blog-hero {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.news-content,
.blog-content {
  padding: 2rem 0;
}

/* Fix card layouts */
.card, .news-card, .blog-card, .testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-content {
  flex-grow: 1;
}

/* Ensure animations don't break layout */
.reveal, .reveal-left, .reveal-right {
  will-change: opacity, transform;
}

/* Gallery Section Styles */
.gallery {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.gallery .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery .section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
}

.gallery .section-header p {
  font-size: 1.15rem;
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 48, 135, 0.8) 0%, rgba(220, 20, 60, 0.8) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.gallery-item:hover::before {
  opacity: 1;
}

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

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

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-content {
  text-align: center;
  color: white;
  padding: 2rem;
}

.gallery-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-content p {
  font-size: 1rem;
  opacity: 0.9;
  transform: translateY(20px);
  transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-content h3,
.gallery-item:hover .gallery-content p {
  transform: translateY(0);
}

/* Responsive Gallery */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: 3rem 0;
  }
  
  .gallery .section-header h2 {
    font-size: 2rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item {
    aspect-ratio: 16 / 9;
  }
}

/* Enhanced Mobile Navigation */
@media (max-width: 992px) {
  /* Mobile menu overlay */
  .nav::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: -1;
    backdrop-filter: blur(2px);
  }

  .nav.active::before {
    opacity: 1;
    visibility: visible;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: #FFFFFF !important;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  }

  .nav.active {
    right: 0;
    background: #FFFFFF !important;
  }

  /* Ensure header doesn't interfere with mobile nav */
  .header {
    background: transparent !important;
  }

  /* Mobile menu header */
  .nav ul {
    padding: 80px 0 2rem 0;
    margin: 0;
    background: transparent !important;
  }

  /* Mobile menu items */
  .nav > ul > li {
    border-bottom: 1px solid rgba(0, 48, 135, 0.08);
    margin: 0;
  }

  .nav > ul > li:last-child {
    border-bottom: none;
  }

  /* Mobile menu links (non-dropdown) */
  .nav > ul > li > a:not(.nav-link-dropdown) {
    display: block;
    padding: 1.125rem 1.5rem;
    color: #1E293B;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav > ul > li > a:not(.nav-link-dropdown)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, #003087 0%, #1E90FF 100%);
    border-radius: 0 4px 4px 0;
    transition: height 0.3s ease;
  }

  .nav > ul > li > a:not(.nav-link-dropdown):active,
  .nav > ul > li > a:not(.nav-link-dropdown):hover {
    background: linear-gradient(90deg, rgba(0, 48, 135, 0.05) 0%, transparent 100%);
    color: #003087;
    padding-left: 2rem;
  }

  .nav > ul > li > a:not(.nav-link-dropdown):active::before,
  .nav > ul > li > a:not(.nav-link-dropdown):hover::before {
    height: 60%;
  }

  /* Mobile dropdown toggle */
  .nav-item-dropdown {
    position: relative;
  }

  .nav-item-dropdown > .nav-link-dropdown {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.125rem 1.5rem;
    color: #1E293B;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
  }

  .nav-item-dropdown > .nav-link-dropdown:hover {
    background: linear-gradient(90deg, rgba(0, 48, 135, 0.05) 0%, transparent 100%);
    color: #003087;
  }

  /* Hide desktop dropdown indicators on mobile */
  .nav-link-dropdown::before {
    content: '\f067' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 0.875rem !important;
    color: #FFFFFF !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    margin-right: 0.75rem !important;
    padding: 0.4rem 0.5rem !important;
    background: rgba(0, 48, 135, 0.2) !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 28px !important;
    min-height: 28px !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    bottom: auto !important;
    left: auto !important;
    opacity: 1 !important;
  }

  .nav-link-dropdown::after {
    display: none !important;
  }

  /* Active state - Change to minus icon and blue background */
  .nav-item-dropdown.active > .nav-link-dropdown {
    background: linear-gradient(135deg, #003087 0%, #1E90FF 100%) !important;
    color: #FFFFFF !important;
    border-radius: 12px 12px 0 0 !important;
  }

  .nav-item-dropdown.active > .nav-link-dropdown::before {
    content: '\f068' !important;
    background: rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
  }

  /* Ensure inactive dropdown links have normal border radius */
  .nav-item-dropdown:not(.active) > .nav-link-dropdown {
    border-radius: 0 !important;
  }

  /* Mobile Dropdown Menu Styles */
  .nav-item-dropdown .dropdown-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: #FFFFFF !important;
    border-radius: 0 0 12px 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease !important;
    border: none !important;
    width: 100% !important;
    min-width: auto !important;
    max-width: none !important;
  }

  .nav-item-dropdown.active .dropdown-menu {
    max-height: 2000px !important;
    padding: 0.5rem 0 0.75rem 0 !important;
    overflow: visible !important;
  }

  .nav-item-dropdown.active .dropdown-menu::before {
    display: none !important;
  }

  .nav-item-dropdown.active .dropdown-menu::after {
    display: none !important;
  }

  .dropdown-menu li {
    border-bottom: none !important;
    margin: 0 !important;
  }

  .dropdown-menu li a {
    padding: 1.125rem 1.5rem !important;
    font-size: 0.95rem !important;
    color: #003087 !important;
    border-radius: 0 !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    transition: background 0.3s ease, padding-left 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
  }

  .dropdown-menu li a::before {
    font-size: 0.7rem !important;
    flex-shrink: 0 !important;
    background: rgba(0, 48, 135, 0.1) !important;
    color: #003087 !important;
  }

  .dropdown-menu li a::after {
    display: none !important;
  }

  .dropdown-menu li a:hover {
    background: rgba(0, 48, 135, 0.08) !important;
    color: #003087 !important;
    padding-left: 2rem !important;
    transform: none !important;
  }

  .dropdown-menu li a i {
    color: #003087 !important;
    background: rgba(0, 48, 135, 0.1) !important;
  }
}

/* Interactive Dot & Line Timeline - Modern & Dynamic */
.interactive-timeline-section {
  padding: 60px 40px;
  background: #081925;
  position: relative;
  overflow: hidden;
}

.interactive-timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.interactive-timeline-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.interactive-timeline-header h2 {
  font-size: 2rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.5px;
  animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.interactive-timeline-header p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
  animation: slideInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s both;
}

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

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

.interactive-timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Content Area - Card Style */
.interactive-timeline-content {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F9FA;
  border-radius: 20px;
  padding: 35px;
  animation: fadeInScale 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  width: 100%;
  animation: fadeIn 0.6s ease-out;
}

.content-image {
  width: 100%;
  max-width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(8, 25, 37, 0.2);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}

.content-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(8, 25, 37, 0.3);
}

.content-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

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

.content-year {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #081925 0%, #0052cc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  line-height: 1;
  letter-spacing: -1px;
}

.content-location {
  font-size: 1.6rem;
  color: #1a1a1a;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.flag-emoji {
  font-size: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.flag-image {
  width: 3rem;
  height: 2rem;
  object-fit: contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 4px;
}

.dot-flag-img {
  width: 2.5rem;
  height: 1.5rem;
  object-fit: contain;
  animation: popIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 3px;
}

@keyframes popIn {
  0% {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

.content-tagline {
  font-size: 0.9rem;
  color: #888;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  font-style: italic;
  border-left: 3px solid #081925;
  padding-left: 12px;
  animation: slideInLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s both;
}

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

.content-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
  font-weight: 400;
}

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

.content-wrapper.fade-out {
  animation: fadeOut 0.35s ease-out;
}

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

/* Timeline Track and Dots */
.timeline-track-wrapper {
  position: relative;
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.timeline-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f0f0f0 0%, #d8d8d8 50%, #f0f0f0 100%);
  border-radius: 3px;
  transform: translateY(-50%);
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.timeline-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, #0052cc 50%, var(--secondary-color) 100%);
  border-radius: 3px;
  width: 0%;
  transition: width 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  box-shadow: 0 4px 16px rgba(0, 48, 135, 0.3);
}

/* Dots Container */
.timeline-dots {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
  padding: 0 20px;
}

/* Individual Dot */
.timeline-dot {
  width: 40px;
  height: 40px;
  background: white;
  border: 3px solid #d8d8d8;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  animation: dotBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.timeline-dot:hover {
  transform: scale(1.35) translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 12px 28px rgba(0, 48, 135, 0.25);
  background: rgba(0, 48, 135, 0.05);
}

.timeline-dot.active {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color) 0%, #0052cc 100%);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px rgba(0, 48, 135, 0.35);
  transform: translateY(-8px);
}

.timeline-dot.active::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: white;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

/* Flag and Label */
.dot-flag {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 2px;
  transition: transform 0.3s ease;
}

.timeline-dot:hover .dot-flag {
  transform: scale(1.2) rotate(10deg);
}

.timeline-dot.active .dot-flag {
  font-size: 1.6rem;
  animation: flagWave 0.6s ease-in-out;
}

@keyframes flagWave {
  0%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(10deg);
  }
}

.dot-label {
  position: absolute;
  bottom: -38px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-dot:hover .dot-label,
.timeline-dot.active .dot-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Responsive Design - Tablet */
@media (max-width: 768px) {
  .interactive-timeline-section {
    padding: 80px 30px;
  }

  .interactive-timeline-header h2 {
    font-size: 2rem;
  }

  .interactive-timeline-header p {
    font-size: 1rem;
  }

  .interactive-timeline-container {
    gap: 60px;
  }

  .interactive-timeline-content {
    padding: 40px 30px;
    min-height: 380px;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .content-image {
    max-width: 100%;
    height: 300px;
  }

  .content-year {
    font-size: 3rem;
  }

  .content-location {
    font-size: 1.8rem;
  }

  .content-tagline {
    font-size: 0.95rem;
  }

  .timeline-dot {
    width: 36px;
    height: 36px;
  }

  .timeline-dot.active {
    width: 44px;
    height: 44px;
  }
}

/* Responsive Design - Mobile */
@media (max-width: 600px) {
  .interactive-timeline-section {
    padding: 60px 20px;
  }

  .interactive-timeline-header h2 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .interactive-timeline-header p {
    font-size: 0.95rem;
  }

  .interactive-timeline-container {
    gap: 50px;
  }

  .interactive-timeline-content {
    padding: 30px 20px;
    min-height: 340px;
    border-radius: 16px;
  }

  /* Mobile: Vertical Timeline */
  .timeline-track-wrapper {
    flex-direction: column;
    width: auto;
    height: auto;
    gap: 0;
    padding: 30px 0;
    align-items: flex-start;
    margin-left: 15px;
  }

  .timeline-track {
    position: static;
    width: 4px;
    height: 100%;
    min-height: 420px;
    transform: none;
    background: linear-gradient(180deg, #f0f0f0 0%, #d8d8d8 50%, #f0f0f0 100%);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .timeline-fill {
    width: 100%;
    height: 0%;
    transition: height 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
  }

  .timeline-dots {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 0;
    gap: 50px;
    align-items: flex-start;
    margin-left: 15px;
  }

  .timeline-dot {
    width: 36px;
    height: 36px;
    margin-left: -24px;
  }

  .timeline-dot.active {
    width: 44px;
    height: 44px;
    margin-left: -28px;
  }

  .dot-label {
    position: static;
    opacity: 1;
    transform: none;
    background: transparent;
    color: var(--primary-color);
    padding: 0;
    margin-left: 50px;
    margin-top: -32px;
    font-size: 0.8rem;
    font-weight: 600;
    pointer-events: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .timeline-dot:hover .dot-label,
  .timeline-dot.active .dot-label {
    opacity: 1;
    transform: none;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .content-image {
    height: 240px;
  }

  .content-year {
    font-size: 2.2rem;
  }

  .content-location {
    font-size: 1.4rem;
    gap: 10px;
  }

  .flag-emoji {
    font-size: 2rem;
  }

  .content-tagline {
    font-size: 0.9rem;
    margin-top: 6px;
    padding-left: 12px;
  }

  .content-description {
    font-size: 1rem;
  }
}
