/* Modern CSS Custom Properties */
:root {
  /* Soothing Color Palette */
  --primary-color: #0ea5e9;
  --primary-dark: #0284c7;
  --primary-light: #38bdf8;
  --secondary-color: #64748b;
  --accent-color: #06b6d4;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --error-color: #ef4444;

  /* Neutral Colors */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  --font-secondary: "Poppins", sans-serif;
  --font-mono: "JetBrains Mono", "Fira Code", monospace;

  /* Font Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1),
    0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal: 1040;
  --z-popover: 1050;
  --z-tooltip: 1060;
}

/* Dark mode support - Disabled for better visibility */
/* @media (prefers-color-scheme: dark) {
  :root {
    --white: #0f172a;
    --gray-50: #1e293b;
    --gray-100: #334155;
    --gray-200: #475569;
    --gray-300: #64748b;
    --gray-400: #94a3b8;
    --gray-500: #cbd5e1;
    --gray-600: #e2e8f0;
    --gray-700: #f1f5f9;
    --gray-800: #f8fafc;
    --gray-900: #ffffff;
  }
} */

/* Reset and Base Styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--gray-900);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Performance optimizations */
.hero,
.hero::before,
.service-card,
.client-logo,
.cta-button,
.hero-cta,
.read-more-btn,
.careers-btn {
  will-change: transform;
}

.hero::before,
.mission::before,
.services::before,
.clients::before,
.careers::before,
.footer::before {
  will-change: opacity, transform;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero::before,
  .mission::before,
  .services::before,
  .clients::before,
  .careers::before,
  .footer::before {
    animation: none !important;
  }
}

/* Modern Loading Screen */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

.loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  text-align: center;
  color: var(--white);
}

.loading-logo {
  margin-bottom: var(--space-8);
  animation: logoFloat 2s ease-in-out infinite alternate;
}

.loading-logo img {
  height: 120px;
  width: auto;
  filter: brightness(0) invert(1);
}

@keyframes logoFloat {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

.loading-spinner {
  margin-bottom: var(--space-6);
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--white);
  animation: spin 1s ease-in-out infinite;
  margin: 0 auto;
}

.loading-text {
  font-family: var(--font-secondary);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.05em;
  animation: textPulse 1.5s ease-in-out infinite alternate;
}

@keyframes textPulse {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

/* Modern Header Styles */
.header {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10001;
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-lg);
}

.header.scrolled .navbar {
  padding: var(--space-2) 0;
}

.header.scrolled .logo {
  height: 60px;
}

.navbar {
  padding: var(--space-3) 0;
  transition: padding var(--transition-normal);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  z-index: 10;
}

.logo {
  height: 100px;
  width: auto;
  transition: transform var(--transition-normal),
    height var(--transition-normal);
  display: block;
  max-width: 100%;
}

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

.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-8);
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: #1e293b !important;
  font-weight: 700;
  font-size: var(--text-sm);
  transition: all var(--transition-normal);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  transition: left var(--transition-normal);
}

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

.nav-link:hover,
.nav-link.active,
.nav-link:focus {
  color: #fff !important;
  background-color: #007bff;
  transform: translateY(-1px);
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + var(--space-2));
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  border-radius: var(--radius-lg);
  padding: var(--space-4) 0;
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: all var(--transition-normal);
  list-style: none;
  border: 1px solid var(--gray-200);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-menu li {
  padding: 0;
  margin: 0 var(--space-2);
}

.dropdown-menu a {
  display: block;
  padding: var(--space-3) var(--space-4);
  color: #1e293b !important;
  text-decoration: none;
  transition: all var(--transition-fast);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.dropdown-menu a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
  opacity: 0.1;
  transition: left var(--transition-normal);
}

.dropdown-menu a:hover::before {
  left: 100%;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus {
  background: #007bff;
  color: #fff !important;
  transform: translateX(var(--space-1));
}

.cta-button {
  background: #007bff;
  color: #fff;
  padding: var(--space-3) var(--space-6);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-normal);
}

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

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Modern Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.4),
      rgba(14, 165, 233, 0.3)
    ),
    url("https://images.unsplash.com/photo-1580202064325-0872929e46f6?ixid=Mnw3MjU4M3wwfDF8c2VhcmNofDExfHxwb3J0fGVufDB8fHx8MTYzNDQ4NjY3NA&ixlib=rb-1.2.1%3Fw%3D1366&q=70&auto=format&fit=crop&w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(14, 165, 233, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(6, 182, 212, 0.2) 0%,
      transparent 50%
    );
  animation: heroGradient 8s ease-in-out infinite alternate;
}

@keyframes heroGradient {
  0% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.1) rotate(5deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 var(--space-6);
}

.hero-content h1 {
  font-family: var(--font-secondary);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 800;
  margin-bottom: var(--space-8);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--white), var(--gray-100));
  color: var(--primary-color);
  padding: var(--space-4) var(--space-8);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  transition: left var(--transition-normal);
}

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

.hero-cta:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Modern Mission Section */
.mission {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  position: relative;
  overflow: hidden;
}

.mission::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(14, 165, 233, 0.05),
    transparent
  );
  transform: rotate(15deg);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: rotate(15deg) translateY(0);
  }
  50% {
    transform: rotate(15deg) translateY(-20px);
  }
}

.mission-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.mission h2 {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-8);
  color: var(--gray-900);
  position: relative;
}

.mission h2::after {
  content: "";
  position: absolute;
  bottom: -var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: var(--radius-full);
}

.mission p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-6);
  color: var(--gray-600);
  line-height: 1.8;
  font-weight: 400;
}

.read-more-btn {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  padding: var(--space-4) var(--space-8);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--text-base);
  transition: all var(--transition-normal);
  margin-top: var(--space-4);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.read-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left var(--transition-normal);
}

.read-more-btn:hover::before {
  left: 100%;
}

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

/* Modern Services Section */
.services {
  padding: var(--space-20) 0;
  background: var(--white);
  position: relative;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(14, 165, 233, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(6, 182, 212, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-8);
  margin-top: var(--space-12);
  position: relative;
  z-index: 2;
}

.service-card {
  text-align: center;
  padding: var(--space-8);
  border-radius: var(--radius-2xl);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

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

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary-color);
}

.service-icon {
  font-size: 3.5rem;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--space-6);
  transition: transform var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
  font-family: var(--font-secondary);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--gray-900);
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--gray-600);
  line-height: 1.7;
  font-size: var(--text-base);
  font-weight: 400;
}

/* Why Choose Section */
.why-choose {
  padding: 3rem 0;
  background: #f8f9fa;
  text-align: center;
}

.why-choose h2 {
  font-size: 2.5rem;
  color: #333;
}

/* Modern Clients Section */
.clients {
  padding: var(--space-20) 0;
  background: linear-gradient(135deg, var(--gray-50), var(--white));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.clients::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(14, 165, 233, 0.03) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.clients h2 {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-12);
  color: var(--gray-900);
  position: relative;
  z-index: 2;
}

.clients h2::after {
  content: "";
  position: absolute;
  bottom: -var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  border-radius: var(--radius-full);
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-8);
  align-items: center;
  position: relative;
  z-index: 2;
}

.client-logo {
  padding: var(--space-6);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--gray-200);
}

.client-logo:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.client-logo img {
  max-width: 140px;
  height: auto;
  filter: grayscale(100%) opacity(0.7);
  transition: all var(--transition-normal);
}

.client-logo:hover img {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.05);
}

/* Modern Careers Section */
.careers {
  padding: var(--space-20) 0;
  background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.6),
      rgba(14, 165, 233, 0.4)
    ),
    url("https://images.unsplash.com/photo-1580202064325-0872929e46f6?ixid=Mnw3MjU4M3wwfDF8c2VhcmNofDExfHxwb3J0fGVufDB8fHx8MTYzNDQ4NjY3NA&ixlib=rb-1.2.1%3Fw%3D1366&q=70&auto=format&fit=crop&w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.careers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 40% 60%,
      rgba(14, 165, 233, 0.2) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(6, 182, 212, 0.15) 0%,
      transparent 50%
    );
  animation: careerGradient 10s ease-in-out infinite alternate;
}

@keyframes careerGradient {
  0% {
    opacity: 0.3;
    transform: scale(1) rotate(0deg);
  }
  100% {
    opacity: 0.6;
    transform: scale(1.05) rotate(2deg);
  }
}

.careers-content {
  position: relative;
  z-index: 2;
}

.careers h2 {
  font-family: var(--font-secondary);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: var(--space-6);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.careers p {
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.careers-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--white), var(--gray-100));
  color: var(--primary-color);
  padding: var(--space-4) var(--space-8);
  text-decoration: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: var(--text-lg);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.careers-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(37, 99, 235, 0.1),
    transparent
  );
  transition: left var(--transition-normal);
}

.careers-btn:hover::before {
  left: 100%;
}

.careers-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Modern Footer */
.footer {
  background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
  color: var(--white);
  padding: var(--space-12) 0 var(--space-4);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 70%,
      rgba(14, 165, 233, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 30%,
      rgba(6, 182, 212, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #007bff;
}

.newsletter {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 5px;
  background: #555;
  color: white;
}

.newsletter-input::placeholder {
  color: #ccc;
}

.newsletter-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}

.newsletter-btn:hover {
  background: #0056b3;
}

.footer-bottom {
  border-top: 1px solid #555;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: #ccc;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #007bff;
}

/* Page Hero Styles */
.page-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1561377916-e87f02d85b43?auto=format&fit=crop&w=1920");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* About Content Styles */
.about-content {
  padding: 5rem 0;
  background: white;
}

.about-section {
  margin-bottom: 4rem;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 1rem;
}

.about-section h3 {
  font-size: 1.8rem;
  color: #007bff;
  margin-bottom: 1.5rem;
}

.about-section h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.5rem;
}

.about-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 1.5rem;
}

.values-grid,
.offerings-grid,
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.value-item,
.offering-item,
.approach-item {
  padding: 1.5rem;
  border-left: 4px solid #007bff;
  background: #f8f9fa;
  border-radius: 5px;
}

.value-item h4,
.offering-item h4,
.approach-item h4 {
  color: #007bff;
  margin-bottom: 1rem;
}

/* Ships Gallery */
.ships-gallery {
  padding: 5rem 0;
  background: #f8f9fa;
  text-align: center;
}

.ships-gallery h2 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #333;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

/* Service Page Styles */
.service-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("https://images.unsplash.com/photo-1561377916-e87f02d85b43?auto=format&fit=crop&w=1920");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  margin-top: 80px;
}

.service-content {
  padding: 5rem 0;
  background: white;
}

.service-details {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.service-details h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #333;
}

.service-details .subtitle {
  font-size: 1.2rem;
  color: #007bff;
  margin-bottom: 2rem;
  font-weight: 600;
}

.service-details p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666;
  margin-bottom: 2rem;
}

.features-list {
  text-align: left;
  margin: 3rem 0;
}

.features-list h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 2rem;
  text-align: center;
}

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

.features-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li strong {
  color: #007bff;
  min-width: 200px;
}

/* Contact Page Styles */
.contact-content {
  padding: 5rem 0;
  background: white;
}

.contact-form-section {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #333;
}

.contact-form-section h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #666;
}

.contact-form {
  background: #f8f9fa;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #333;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #007bff;
}

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

.submit-btn {
  background: #007bff;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #0056b3;
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Career Page Styles */
.career-content {
  padding: 5rem 0;
  background: white;
}

.career-sections {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin: 3rem 0;
}

.career-section {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.career-section:hover {
  transform: translateY(-5px);
}

.career-section h3 {
  color: #007bff;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.career-section h3 i {
  margin-right: 0.5rem;
}

.career-section p {
  color: #666;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.why-join {
  margin-top: 4rem;
  text-align: center;
}

.why-join h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item {
  text-align: center;
  padding: 2rem;
  background: #f8f9fa;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

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

.benefit-item i {
  font-size: 3rem;
  color: #007bff;
  margin-bottom: 1rem;
}

.benefit-item h4 {
  color: #333;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.benefit-item p {
  color: #666;
  line-height: 1.6;
}

.job-listings {
  margin-top: 3rem;
}

.job-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-card h3 {
  color: #007bff;
  margin-bottom: 1rem;
}

.job-card .job-meta {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.job-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.apply-btn {
  background: #007bff;
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: background 0.3s ease;
  display: inline-block;
}

.apply-btn:hover {
  background: #0056b3;
}

/* Office Presence Styles */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.office-card {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.office-card:hover {
  transform: translateY(-5px);
}

.office-card h3 {
  color: #007bff;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.office-card h3 i {
  margin-right: 0.5rem;
}

.office-details p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #666;
}

.office-details strong {
  color: #333;
  display: block;
  margin-bottom: 0.5rem;
}

.contact-info {
  background: #007bff;
  color: white;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
  text-align: center;
}

.contact-info h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.application-info {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 3rem;
}

.application-info h3 {
  color: #007bff;
  margin-bottom: 1rem;
}

.application-info p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.application-info a {
  color: #007bff;
  text-decoration: none;
}

.application-info a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content h1,
  .page-hero h1 {
    font-size: 2.5rem;
  }

  .services-grid,
  .values-grid,
  .offerings-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-form {
    padding: 2rem 1rem;
  }

  .job-card .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .career-sections,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

/* Modern Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* New modern animation classes */
.service-card,
.client-logo,
.mission-content {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-card.animate-in,
.client-logo.animate-in,
.mission-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation delays */
.service-card:nth-child(1) {
  transition-delay: 0ms;
}
.service-card:nth-child(2) {
  transition-delay: 100ms;
}
.service-card:nth-child(3) {
  transition-delay: 200ms;
}
.service-card:nth-child(4) {
  transition-delay: 300ms;
}

.client-logo:nth-child(1) {
  transition-delay: 0ms;
}
.client-logo:nth-child(2) {
  transition-delay: 50ms;
}
.client-logo:nth-child(3) {
  transition-delay: 100ms;
}
.client-logo:nth-child(4) {
  transition-delay: 150ms;
}
.client-logo:nth-child(5) {
  transition-delay: 200ms;
}
.client-logo:nth-child(6) {
  transition-delay: 250ms;
}
.client-logo:nth-child(7) {
  transition-delay: 300ms;
}

.hero-cta:hover {
  animation: pulse 0.6s ease-in-out;
}

.cta-button:hover {
  animation: pulse 0.6s ease-in-out;
}

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus Styles for Accessibility */
.nav-link:focus,
.cta-button:focus,
.apply-btn:focus,
.submit-btn:focus {
  outline: 2px solid #007bff;
  outline-offset: 2px;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .hamburger {
    display: none;
  }

  .hero {
    height: auto;
    background: none;
    color: #333;
  }

  .page-hero {
    height: auto;
    background: none;
    color: #333;
  }
}

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

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
