* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #003d7a;
  --secondary-blue: #0066cc;
  --accent-blue: #0077cc;
  --light-blue: #e6f2ff;
  --text-dark: #1a1a1a;
  --text-light: #6c757d;
  --border-color: #e0e0e0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --gold-gradient: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  --gold-dark: #b8860b;
  --safety-orange: #ff7e00;
  --safety-yellow: #ffcc00;
  --glass-bg: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: #f8f9fa;
  letter-spacing: -0.01em;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Clean Apple-style Header with More Blur */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s var(--transition-smooth);
}

/* Modern Navigation Bar */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 1400px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 32px;
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.06),
    0 2px 12px rgba(255, 255, 255, 0.35) inset;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.4) inset;
  top: 16px;
}

.navbar-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 72px;
}

.navbar-left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.navbar-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
  color: rgba(20, 20, 20, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  position: relative;
  line-height: 1.4;
}

.nav-link:hover {
  color: rgba(20, 20, 20, 1);
}

.nav-link.active {
  color: rgba(20, 20, 20, 1);
  font-weight: 500;
}

.navbar-right {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 24px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  color: rgba(20, 20, 20, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.btn-login:hover {
  color: rgba(20, 20, 20, 1);
  background: rgba(0, 0, 0, 0.03);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 18px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 18px rgba(0, 61, 122, 0.18);
}

.btn-cta:hover {
  background: var(--secondary-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 61, 122, 0.25);
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  transition: all 0.3s ease;
}

.hamburger:hover {
  background: rgba(0, 102, 204, 0.05);
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 60px;
  right: 16px;
  width: 320px;
  max-height: calc(100vh - 76px);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  z-index: 1001;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 28px;
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.08),
    0 4px 16px rgba(255, 255, 255, 0.35) inset;
  opacity: 0;
  transform: translateY(-10px);
  visibility: hidden;
}

.mobile-drawer.active {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mobile-logo h1 {
  font-size: 18px;
  font-weight: 700;
  color: rgba(20, 20, 20, 0.9);
  margin: 0;
}

.mobile-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: rgba(20, 20, 20, 0.6);
  font-size: 16px;
  transition: all 0.25s ease;
}

.mobile-close:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: scale(1.05);
}

.mobile-nav-menu {
  flex: 1;
  padding: 20px 24px;
  overflow-y: auto;
}

.mobile-nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  display: block;
  padding: 14px 16px;
  color: rgba(20, 20, 20, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.25s ease;
}

.mobile-nav-link:hover {
  background: rgba(0, 0, 0, 0.03);
  color: rgba(20, 20, 20, 1);
}

.mobile-nav-link.mobile-cta {
  background: var(--primary-blue);
  color: white;
  font-weight: 600;
  margin-top: 12px;
  text-align: center;
  padding: 14px 24px;
  box-shadow: 0 6px 18px rgba(0, 61, 122, 0.18);
}

.mobile-nav-link.mobile-cta:hover {
  background: var(--secondary-blue);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 61, 122, 0.25);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 1024px) {
  .navbar {
    width: 94%;
    top: 16px;
  }

  .navbar-nav {
    display: none;
  }

  .navbar-right .btn-login {
    display: none;
  }

  .navbar-right .btn-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .navbar-container {
    padding: 0 24px;
    height: 64px;
  }

  .mobile-drawer {
    top: 52px;
    right: 12px;
    max-height: calc(100vh - 68px);
  }
}

@media (max-width: 768px) {
  .navbar {
    width: 96%;
    top: 12px;
    border-radius: 24px;
  }

  .navbar-container {
    padding: 0 20px;
    height: 60px;
    gap: 16px;
  }

  .mobile-drawer {
    width: 280px;
    right: 8px;
    top: 48px;
    max-height: calc(100vh - 60px);
    border-radius: 24px;
  }

  .mobile-drawer-header {
    padding: 16px 20px;
  }

  .mobile-nav-menu {
    padding: 16px 20px;
  }
}

@media (max-width: 480px) {
  .navbar {
    width: 98%;
    top: 10px;
    border-radius: 20px;
  }

  .navbar-container {
    padding: 0 16px;
    height: 56px;
  }

  .logo-text h1 {
    font-size: 18px;
  }

  .logo-text span {
    font-size: 9px;
  }

  .mobile-drawer {
    width: calc(100% - 32px);
    right: 16px;
    top: 44px;
    max-height: calc(100vh - 54px);
  }
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-blue);
  transition: all 0.3s var(--transition-smooth);
  flex-shrink: 0;
}

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

.logo img {
  height: 40px;
  margin-right: 15px;
  transition: all 0.3s var(--transition-smooth);
}

.logo-text h1 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  transition: all 0.3s var(--transition-smooth);
  background: linear-gradient(135deg,
      var(--primary-blue),
      var(--secondary-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
}

.navbar.scrolled .logo-text h1 {
  font-size: 20px;
}

.logo-text span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  transition: all 0.3s var(--transition-smooth);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Clean Navigation */
nav {
  display: flex;
  align-items: center;
  margin-left: 60px;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  padding: 4px 0;
  opacity: 0.8;
}

nav ul li a:hover {
  color: var(--primary-blue);
  opacity: 1;
}

nav ul li a.active {
  color: var(--primary-blue);
  opacity: 1;
  font-weight: 600;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-blue);
  transition: all 0.3s var(--transition-smooth);
  transform: translateX(-50%);
}

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

/* Mobile Menu Toggle */
/* Modern Hero Section with Safety Theme */
.hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72) 0%, rgba(230, 242, 255, 0.48) 48%, rgba(255, 247, 214, 0.45) 100%),
    radial-gradient(circle at center,
      #e6f2ff 0%,
      #cee1f1 25%,
      #e9edf0 50%,
      #daebfa 75%,
      #e3f3ff 100%);
  padding: 140px 0 80px;
  overflow: hidden;
}

.hero-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-content {
  width: 100%;
  max-width: 980px;
  z-index: 2;
  text-align: center;
  position: relative;
  min-width: 0;
}

/* Premium Golden Badge with Glowing Effect */
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  background: var(--gold-gradient);
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeIn 0.8s var(--transition-smooth) 0.2s forwards;
  box-shadow: 0 4px 15px rgba(255, 217, 0, 0.445),
    0 0 20px rgb(184, 182, 182), inset 0 1px 0 rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
  transform: scale(0.9);
  transition: all 0.3s var(--transition-bounce);
}

.hero-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: shimmer 2s infinite;
}

.hero-badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 215, 0, 0.3),
      transparent);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-badge:hover {
  transform: scale(1);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6),
    0 0 30px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.hero-badge:hover::after {
  opacity: 1;
}

.hero-badge i {
  margin-right: 8px;
  font-size: 16px;
}

.hero-badge span {
  display: inline;
}

.hero-badge-separator {
  margin: 0 5px;
}

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

.hero-title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.04;
  color: var(--primary-blue);
  max-width: 950px;
  margin: 0 auto 28px;
  animation: slideInLeft 0.8s var(--transition-smooth) 0.4s forwards;
  letter-spacing: 0;
  background: linear-gradient(135deg, #002f63 0%, var(--secondary-blue) 58%, #005b99 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
}

.hero-title span {
  display: inline;
}

.hero-title::after {
  content: "";
  display: block;
  width: min(260px, 54vw);
  height: 5px;
  margin: 24px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--safety-yellow), var(--secondary-blue), transparent);
  box-shadow: 0 10px 28px rgba(0, 102, 204, 0.18);
}

.hero-description {
  font-size: 19px;
  line-height: 1.75;
  color: var(--primary-blue);
  font-weight: 500;
  max-width: 830px;
  margin: 0 auto 30px;
  animation: fadeIn 0.8s var(--transition-smooth) 0.6s forwards;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
  animation: slideInUp 0.8s var(--transition-smooth) 0.8s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 14px 28px;
  background-color: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s var(--transition-bounce);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 61, 122, 0.2);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-blue);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 61, 122, 0.3);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 28px;
  background-color: transparent;
  color: var(--primary-blue);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s var(--transition-bounce);
  border: 2px solid var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 61, 122, 0.15);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 61, 122, 0.3);
}

/* Simplified Safety Features */
.safety-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px auto 0;
  max-width: 920px;
  animation: fadeIn 0.8s var(--transition-smooth) 1s forwards;
}

.safety-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.3s var(--transition-smooth);
  text-align: left;
  padding: 22px 20px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(240, 247, 255, 0.7) 100%);
  border: 1.5px solid rgba(0, 102, 204, 0.15);
  box-shadow: 0 8px 32px rgba(0, 61, 122, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  min-height: 100px;
}

.safety-feature:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 102, 204, 0.35);
  box-shadow: 0 20px 50px rgba(0, 61, 122, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(230, 242, 255, 0.8) 100%);
}

.safety-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 61, 122, 0.12) 0%, rgba(0, 102, 204, 0.08) 50%, rgba(255, 204, 0, 0.15) 100%);
  border: 2px solid rgba(0, 102, 204, 0.18);
  box-shadow: 0 4px 16px rgba(0, 61, 122, 0.1);
}

.safety-feature-icon i {
  font-size: 24px;
  color: var(--primary-blue);
  transition: all 0.3s var(--transition-smooth);
}

.safety-feature:hover .safety-feature-icon i {
  color: var(--secondary-blue);
  transform: scale(1.15) rotate(5deg);
}

.safety-feature-text {
  flex: 1;
}

.safety-feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-blue);
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.safety-feature-text p {
  font-size: 13px;
  color: #4a5568;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

/* Hero decorative elements */
.hero-decoration {
  position: absolute;
  z-index: 1;
}

.hero-circle-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 102, 204, 0.1) 0%,
      rgba(0, 119, 204, 0.05) 50%,
      rgba(0, 153, 255, 0.02) 100%);
  top: -150px;
  right: -100px;
  animation: float 6s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(0, 102, 204, 0.1);
}

.hero-circle-2 {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(0, 119, 204, 0.08) 0%,
      rgba(0, 153, 255, 0.04) 100%);
  bottom: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite reverse;
  box-shadow: 0 0 15px rgba(0, 119, 204, 0.08);
}

.hero-shape-1 {
  position: absolute;
  width: 80px;
  height: 80px;
  top: 10%;
  right: 5%;
  animation: float 6s ease-in-out infinite;
  z-index: 1;
}

.hero-shape-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  bottom: 15%;
  left: 10%;
  animation: float 8s ease-in-out infinite reverse;
  z-index: 1;
}

.hero-shape-3 {
  position: absolute;
  width: 100px;
  height: 100px;
  top: 20%;
  left: 15%;
  animation: float 7s ease-in-out infinite;
  z-index: 1;
}

.hero-pattern-1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,50 L100,50 L100,100 L0,100 Z' fill='none' stroke='rgba(0,61,122,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 1;
}

.hero-pattern-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,0 L100,0 L100,100 L0,100 Z' fill='none' stroke='rgba(0,61,122,0.08)' stroke-width='1'/%3E%3C/svg%3E");
  opacity: 0.1;
  z-index: 1;
}

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

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

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

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

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

/* Section Animations */
.section-animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s var(--transition-smooth);
}

.section-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Enhanced Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: white;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(0, 61, 122, 0.18);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s var(--transition-smooth) 0.1s;
}

.section-header.visible .section-kicker {
  opacity: 1;
  transform: translateY(0);
}

.section-header h2 {
  font-size: 42px;
  color: var(--text-dark);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--transition-smooth);
}

.section-animate.visible .section-header h2 {
  transform: translateY(0);
  opacity: 1;
}

.section-header h2::after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.6s var(--transition-smooth) 0.3s;
}

.section-animate.visible .section-header h2::after {
  width: 80px;
}

.section-header p {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--transition-smooth) 0.4s;
}

.section-animate.visible .section-header p {
  transform: translateY(0);
  opacity: 1;
}

/* Enhanced About Section */
.about {
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e6f2ff' fill-opacity='0.4'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.3;
  z-index: 0;
}

.about-decoration {
  position: absolute;
  z-index: 1;
}

.badges-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 40px 0;
  padding: 20px 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(240, 248, 255, 0.8) 50%,
      rgba(255, 255, 255, 0.9) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  box-shadow: 0 20px 60px rgba(0, 61, 122, 0.12),
    0 10px 30px rgba(0, 102, 204, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transform: translateY(0);
  transition: all 0.4s var(--transition-smooth);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 10%,
      black 90%,
      transparent 100%);
}

.badges-track {
  display: flex;
  animation: scroll 25s linear infinite;
  width: fit-content;
  position: relative;
  z-index: 2;
}

#badgesTrackClone {
  position: absolute;
  top: 20px;
  left: 0;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.about-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(248, 252, 255, 0.6) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(0, 61, 122, 0.1);
  color: var(--primary-blue);
  font-size: 14px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 25px;
  margin: 0 15px;
  box-shadow: 0 8px 25px rgba(0, 61, 122, 0.08),
    0 4px 12px rgba(0, 102, 204, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: all 0.4s var(--transition-bounce);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.about-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 61, 122, 0.05) 0%,
      transparent 50%,
      rgba(0, 102, 204, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s var(--transition-smooth);
}

.about-badge i {
  margin-right: 10px;
}

.about-badge:hover i {
  transform: rotate(20deg) scale(1.3);
  color: var(--secondary-blue);
  filter: drop-shadow(0 2px 4px rgba(0, 102, 204, 0.3));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  position: relative;
  z-index: 2;
}

.about-content-left {
  position: relative;
  max-width: 1040px;
  margin: 0 auto;
  padding: 42px;
  border: 1px solid rgba(0, 80, 160, 0.1);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 249, 255, 0.78)),
    radial-gradient(circle at 92% 12%, rgba(0, 102, 204, 0.12), transparent 32%);
  box-shadow: 0 24px 70px rgba(15, 52, 96, 0.08);
  overflow: hidden;
}

.about-content-left::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -70px;
  left: auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 102, 204, 0.14) 0%, rgba(0, 102, 204, 0) 68%);
  border-radius: 50%;
  z-index: 0;
}

.about-content-left::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  right: auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(0, 61, 122, 0.1) 0%, rgba(0, 61, 122, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.about-header-group {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin-bottom: 28px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.14);
  color: #005bb5;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-text h2 {
  font-size: 42px;
  color: #0a1c30;
  margin-bottom: 0;
  font-weight: 700;
  transform: translateX(-30px);
  opacity: 0;
  transition: all 0.6s var(--transition-smooth) 0.3s;
  position: relative;
  line-height: 1.3;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 56px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
  border-radius: 999px;
}

.section-animate.visible .about-text h2 {
  transform: translateX(0);
  opacity: 1;
}

.about-lead {
  position: relative;
  z-index: 1;
  font-size: 18px;
  line-height: 1.8;
  color: #4a5b6f;
  margin-bottom: 30px;
  max-width: 780px;
  padding-left: 0;
}

.about-team-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.about-team-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 24px 22px 22px;
  background: linear-gradient(160deg, #ffffff 0%, #eef5ff 100%);
  border: 2px solid rgba(0, 102, 204, 0.18);
  border-top: 4px solid #0066cc;
  border-radius: 22px;
  box-shadow: 0 8px 28px rgba(0, 61, 122, 0.12), 0 2px 8px rgba(0, 102, 204, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-team-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0, 102, 204, 0.04) 0%, rgba(0, 153, 255, 0.02) 100%);
  border-radius: 20px;
  pointer-events: none;
}

.about-team-stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 48px rgba(0, 61, 122, 0.18), 0 4px 16px rgba(0, 102, 204, 0.12);
  border-color: rgba(0, 102, 204, 0.4);
  border-top-color: #0044aa;
}

.about-team-stat-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
  border-radius: 14px;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(0, 102, 204, 0.35);
}

.about-team-stat-icon i {
  font-size: 22px;
  color: #ffffff;
}

.about-team-stat-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

.about-team-stat-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}

.about-team-stat-number {
  font-size: 42px;
  font-weight: 900;
  color: #0055bb;
  line-height: 1;
  letter-spacing: -1px;
}

.about-team-stat-label {
  font-size: 13.5px;
  line-height: 1.55;
  color: #3a4e65;
  font-weight: 600;
}

.about-key-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.about-key-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(0, 102, 204, 0.11);
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 52, 96, 0.05);
  transition: all 0.3s var(--transition-smooth);
}

.about-key-point:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 102, 204, 0.16);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 52, 96, 0.06);
}

.about-key-point-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 100%);
  border-radius: 12px;
  color: var(--primary-blue);
  font-size: 18px;
}

.about-key-point-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about-key-point-text strong {
  font-size: 16px;
  font-weight: 600;
  color: #0a1c30;
  line-height: 1.4;
}

.about-key-point-text span {
  font-size: 14px;
  color: #5d7188;
  line-height: 1.5;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
  transform: translateX(-30px);
  opacity: 0;
  transition: all 0.6s var(--transition-smooth);
  position: relative;
  padding-left: 20px;
}

.about-text p::before {
  content: none;
  border-radius: 50%;
}

.about-text p.about-lead {
  padding-left: 0;
}

.about-text p:nth-child(2) { transition-delay: 0.4s; }
.about-text p:nth-child(3) { transition-delay: 0.5s; }
.about-text p:nth-child(4) { transition-delay: 0.6s; }

.section-animate.visible .about-text p {
  transform: translateX(0);
  opacity: 1;
}

.about-stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  position: relative;
  z-index: 1;
  transform: translateX(-30px);
  opacity: 0;
  transition: all 0.6s var(--transition-smooth) 0.7s;
}

.section-animate.visible .about-stats-row {
  transform: translateX(0);
  opacity: 1;
}

/* Mission & Vision inside About */
.about-mission-vision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.6s var(--transition-smooth) 0.9s;
}

.section-animate.visible .about-mission-vision {
  transform: translateY(0);
  opacity: 1;
}

.about-mv-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 247, 255, 0.72) 100%);
  border: 1px solid rgba(0, 102, 204, 0.1);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(15, 52, 96, 0.06);
  transition: all 0.3s var(--transition-smooth);
}

.about-mv-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 52, 96, 0.1);
  border-color: rgba(0, 102, 204, 0.18);
}

.about-mv-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 153, 255, 0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
  font-size: 20px;
  margin-bottom: 18px;
}

.about-mv-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0a1c30;
  margin-bottom: 10px;
}

.about-mv-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #5d7188;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
  transform: none !important;
  opacity: 1 !important;
  transition: none !important;
}

.about-stat-box {
  position: relative;
  padding: 22px 22px 22px 26px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(239, 247, 255, 0.72) 100%);
  border: 1px solid rgba(0, 80, 160, 0.16);
  border-radius: 14px;
  text-align: left;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(15, 52, 96, 0.08);
  transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s var(--transition-smooth), border-color 0.3s var(--transition-smooth);
}

.about-stat-box::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary-blue), var(--secondary-blue));
}

.about-stat-box::after {
  content: "";
  position: absolute;
  width: 82px;
  height: 82px;
  right: -32px;
  bottom: -36px;
  border-radius: 50%;
  background: rgba(0, 102, 204, 0.08);
}

.about-stat-box:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 80, 160, 0.28);
  box-shadow: 0 20px 44px rgba(15, 52, 96, 0.14);
}

.about-stat-box .about-stat-number {
  position: relative;
  z-index: 1;
  font-size: 42px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 4px;
  line-height: 0.95;
  letter-spacing: 0;
}

.about-stat-box .about-stat-label {
  position: relative;
  z-index: 1;
  font-size: 11px;
  color: #536b86;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.4;
}

.decoration {
  position: absolute;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
}

.decoration-1 {
  width: 60px;
  height: 60px;
  top: -20px;
  right: -20px;
  animation: float 6s ease-in-out infinite;
}

.decoration-2 {
  width: 40px;
  height: 40px;
  bottom: 30px;
  left: -20px;
  animation: float 8s ease-in-out infinite reverse;
}

.decoration-3 {
  width: 30px;
  height: 30px;
  top: 40%;
  right: -15px;
  animation: float 7s ease-in-out infinite;
}

.service-card ul {
  list-style: none;
  margin-top: 12px;
  padding: 0;
}

.service-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
}

.service-card ul li::before {
  content: "•";
  color: var(--primary-blue);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Why Choose Us Section */
.why-choose {
  padding: 50px 0;
  background-color: #ffffff;
}

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

.feature-box {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(248, 252, 255, 0.7) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 10px 40px rgba(0, 61, 122, 0.08),
    0 4px 15px rgba(0, 102, 204, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  padding: 40px;
  transition: all 0.4s var(--transition-bounce);
  text-align: center;
  transform: translateY(30px);
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(0, 61, 122, 0.03) 0%,
      rgba(0, 102, 204, 0.02) 100%);
  z-index: 1;
  pointer-events: none;
}

.feature-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg,
      rgba(0, 61, 122, 0.2) 0%,
      rgba(0, 102, 204, 0.1) 50%,
      rgba(0, 153, 255, 0.05) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s var(--transition-smooth);
  pointer-events: none;
}

.feature-box:nth-child(1) { transition-delay: 0.1s; }
.feature-box:nth-child(2) { transition-delay: 0.2s; }
.feature-box:nth-child(3) { transition-delay: 0.3s; }
.feature-box:nth-child(4) { transition-delay: 0.4s; }

.section-animate.visible .feature-box {
  transform: translateY(0);
  opacity: 1;
}

.feature-box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 61, 122, 0.15),
    0 8px 25px rgba(0, 102, 204, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(230, 242, 255, 0.8) 100%);
}

.feature-box:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg,
      rgba(0, 61, 122, 0.08) 0%,
      rgba(0, 102, 204, 0.05) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s var(--transition-bounce);
  position: relative;
  z-index: 2;
  border: 2px solid rgba(0, 61, 122, 0.15);
  box-shadow: 0 8px 20px rgba(0, 61, 122, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.feature-box:hover .feature-icon {
  transform: scale(1.15) rotate(10deg);
  background: linear-gradient(135deg,
      rgba(0, 61, 122, 0.15) 0%,
      rgba(0, 102, 204, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(0, 61, 122, 0.25),
    0 8px 20px rgba(0, 102, 204, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 102, 204, 0.3);
}

.feature-icon i {
  font-size: 36px;
  color: var(--primary-blue);
  transition: all 0.4s var(--transition-bounce);
  filter: drop-shadow(0 2px 4px rgba(0, 61, 122, 0.1));
}

.feature-box:hover .feature-icon i {
  color: var(--secondary-blue);
  transform: scale(1.2);
  filter: drop-shadow(0 4px 8px rgba(0, 102, 204, 0.2));
}

.feature-box h3 {
  color: var(--primary-blue);
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
  transition: all 0.4s var(--transition-smooth);
  position: relative;
  z-index: 2;
  letter-spacing: 0.5px;
}

.feature-box:hover h3 {
  color: var(--secondary-blue);
  transform: translateY(-2px);
  text-shadow: 0 2px 8px rgba(0, 102, 204, 0.15);
}

.feature-box p {
  color: var(--text-light);
  position: relative;
  z-index: 2;
  line-height: 1.7;
  font-size: 15px;
  transition: all 0.4s var(--transition-smooth);
}

.feature-box:hover p {
  color: var(--text-dark);
}

/* Services Section */
.services {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Services Tabs */
.services-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--border-color);
  border-radius: 30px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  transition: all 0.3s var(--transition-smooth);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: 0 8px 20px rgba(0, 61, 122, 0.2);
  transform: translateY(-2px);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  min-height: 400px;
  justify-content: center;
}

.service-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 255, 0.92) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  border: 1px solid rgba(0, 102, 204, 0.12);
  box-shadow: 0 22px 55px rgba(15, 52, 96, 0.1);
  padding: 40px 30px;
  transition: all 0.4s var(--transition-smooth);
  border-top: 4px solid var(--primary-blue);
  transform: translateY(0);
  opacity: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  align-self: stretch;
}

.service-card.hidden {
  display: none;
}

.service-card.fade-in {
  animation: fadeInUp 0.5s var(--transition-smooth) forwards;
}

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

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-thumb {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 180px;
  margin-bottom: 20px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fbff 0%, #e8f1fb 100%);
  border: 1px solid rgba(0, 102, 204, 0.12);
  box-shadow: 0 16px 36px rgba(15, 52, 96, 0.1);
}

.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(245, 250, 255, 0.92) 100%);
}

.service-card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-light);
}

.service-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--secondary-blue);
  font-size: 12px;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0.24) 42%,
      rgba(255, 255, 255, 0.02) 100%);
  z-index: 1;
}

.service-card:nth-child(1) { transition-delay: 0.1s; }
.service-card:nth-child(2) { transition-delay: 0.2s; }
.service-card:nth-child(3) { transition-delay: 0.3s; }
.service-card:nth-child(4) { transition-delay: 0.4s; }
.service-card:nth-child(5) { transition-delay: 0.5s; }
.service-card:nth-child(6) { transition-delay: 0.6s; }

.section-animate.visible .service-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 61, 122, 0.2);
  background: rgba(255, 255, 255, 0.35);
  border-top-color: var(--secondary-blue);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.4s var(--transition-bounce);
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 61, 122, 0.1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(10deg);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(0, 61, 122, 0.2);
}

.service-icon i {
  font-size: 36px;
  color: var(--primary-blue);
  transition: all 0.3s var(--transition-smooth);
}

.service-card:hover .service-icon i {
  color: var(--secondary-blue);
}

.service-card h3 {
  color: var(--text-dark);
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 600;
  transition: color 0.3s var(--transition-smooth);
  position: relative;
  z-index: 2;
  line-height: 1.35;
  min-height: 52px;
  display: flex;
  align-items: flex-start;
}

.service-card:hover h3 {
  color: var(--primary-blue);
}

.service-card p {
  color: var(--text-light);
  position: relative;
  z-index: 2;
  line-height: 1.65;
  font-size: 14px;
  margin-bottom: 16px;
  display: -webkit-box;
  line-clamp: 4;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card ul {
  list-style: none;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 10px;
}

.service-card ul li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-light);
}

.services-grid:has(.service-card:not(.hidden):only-child) {
  grid-template-columns: minmax(320px, 420px);
}

@media (max-width: 1024px) {
  .services-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 4px 18px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
  }

  .services-grid::-webkit-scrollbar {
    height: 8px;
  }

  .services-grid::-webkit-scrollbar-track {
    background: rgba(0, 102, 204, 0.08);
    border-radius: 999px;
  }

  .services-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 102, 204, 0.28);
    border-radius: 999px;
  }

  .service-card {
    flex: 0 0 min(380px, 82vw);
    scroll-snap-align: start;
    max-width: none;
    min-height: 100%;
  }

  .services-grid:has(.service-card:not(.hidden):only-child) {
    display: flex;
    justify-content: center;
    overflow-x: hidden;
    padding-bottom: 0;
  }

  .services-grid:has(.service-card:not(.hidden):only-child) .service-card {
    flex-basis: min(420px, 100%);
  }
}

@media (max-width: 768px) {
  .services-grid {
    gap: 16px;
    padding: 4px 2px 16px;
  }

  .service-card {
    flex: 0 0 86vw;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .service-card h3 {
    min-height: auto;
    font-size: 20px;
  }

  .service-card p {
    font-size: 14px;
    line-clamp: unset;
    -webkit-line-clamp: unset;
    overflow: visible;
    margin-bottom: 18px;
  }

  .service-thumb {
    height: 160px;
    margin-bottom: 20px;
    border-radius: 16px;
  }

  .service-thumb img {
    padding: 14px;
  }
}

@media (max-width: 480px) {
  .service-card {
    flex: 0 0 90vw;
    padding: 24px 18px;
  }

  .service-thumb {
    height: 150px;
  }
}

/* Process Section */
.process {
  padding: 50px 0;
  background-color: #ffffff;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  width: calc(33.33% - 20px);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.5s var(--transition-smooth);
}

.process-step:nth-child(1) { transition-delay: 0.1s; }
.process-step:nth-child(2) { transition-delay: 0.2s; }
.process-step:nth-child(3) { transition-delay: 0.3s; }
.process-step:nth-child(4) { transition-delay: 0.4s; }
.process-step:nth-child(5) { transition-delay: 0.5s; }
.process-step:nth-child(6) { transition-delay: 0.6s; }

.section-animate.visible .process-step {
  transform: scale(1);
  opacity: 1;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -30px;
  width: 30px;
  height: 2px;
  background-color: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--transition-smooth) 0.7s;
}

.section-animate.visible .process-step::after {
  transform: scaleX(1);
}

.process-step:nth-child(3n)::after {
  display: none;
}

.process-number {
  width: 80px;
  height: 80px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: all 0.3s var(--transition-bounce);
}

.process-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  z-index: -1;
}

.process-step:hover .process-number {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 6px 20px rgba(0, 61, 122, 0.2);
}

.process-step h3 {
  color: var(--text-dark);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
  transition: color 0.3s var(--transition-smooth);
}

.process-step:hover h3 {
  color: var(--primary-blue);
}

.process-step p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 15px;
  transition: transform 0.3s var(--transition-smooth);
}

.process-step:hover p {
  transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 28px;
  border: 1px solid rgba(0, 61, 122, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s var(--transition-smooth);
}

.testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(0, 61, 122, 0.1);
  transform: translateY(-4px);
}

.testimonial-icon {
  margin-bottom: 16px;
}

.testimonial-icon i {
  font-size: 20px;
  color: var(--primary-blue);
  opacity: 0.3;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.testimonial-author-simple {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author-simple strong {
  font-size: 14px;
  color: var(--primary-blue);
  font-weight: 600;
}

.testimonial-author-simple span {
  font-size: 12px;
  color: var(--text-light);
}

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

  .testimonial-card {
    padding: 24px;
  }
}

/* Projects Section */
.projects {
  padding: 50px 0;
  background-color: #ffffff;
}

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

.project-card {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(248, 252, 255, 0.7) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 2px solid transparent;
  box-shadow: 0 10px 40px rgba(0, 61, 122, 0.08),
    0 4px 15px rgba(0, 102, 204, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
  transition: all 0.4s var(--transition-smooth);
  transform: translateY(30px);
  opacity: 0;
  position: relative;
}

.project-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.1) 0%,
      rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  pointer-events: none;
}

.project-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  padding: 2px;
  background: linear-gradient(135deg,
      rgba(0, 61, 122, 0.5) 0%,
      rgba(0, 102, 204, 0.35) 50%,
      rgba(0, 153, 255, 0.2) 100%);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 1;
  pointer-events: none;
}

.project-card:nth-child(1) { transition-delay: 0.1s; }
.project-card:nth-child(2) { transition-delay: 0.2s; }
.project-card:nth-child(3) { transition-delay: 0.3s; }
.project-card:nth-child(4) { transition-delay: 0.4s; }
.project-card:nth-child(5) { transition-delay: 0.5s; }
.project-card:nth-child(6) { transition-delay: 0.6s; }

.section-animate.visible .project-card {
  transform: translateY(0);
  opacity: 1;
}

.project-image {
  height: 250px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s var(--transition-smooth);
}

.project-info {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.project-info h3 {
  color: var(--primary-blue);
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.project-info p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 14px;
}

/* Clients Section */
.clients {
  padding: 70px 0;
  background:
    radial-gradient(circle at top center, rgba(0, 102, 204, 0.08) 0%, rgba(0, 102, 204, 0) 34%),
    linear-gradient(180deg, #f8f9fa 0%, #eef4fa 100%);
}

.clients-showcase-intro {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.clients-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(0, 102, 204, 0.08);
  border: 1px solid rgba(0, 102, 204, 0.14);
  color: #005bb5;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.clients-showcase-intro p {
  margin: 0;
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.8;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  align-items: center;
}

.client-logo {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 22px;
  border: 1px solid rgba(0, 102, 204, 0.12);
  box-shadow: 0 18px 45px rgba(15, 52, 96, 0.08);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  transition: all 0.35s var(--transition-bounce);
  transform: scale(0.8);
  opacity: 0;
  position: relative;
  overflow: hidden;
}

.client-logo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.28) 45%,
      rgba(255, 255, 255, 0.05) 100%);
  z-index: 1;
}

.client-logo:nth-child(1) { transition-delay: 0.1s; }
.client-logo:nth-child(2) { transition-delay: 0.2s; }
.client-logo:nth-child(3) { transition-delay: 0.3s; }
.client-logo:nth-child(4) { transition-delay: 0.4s; }
.client-logo:nth-child(5) { transition-delay: 0.5s; }
.client-logo:nth-child(6) { transition-delay: 0.6s; }
.client-logo:nth-child(7) { transition-delay: 0.7s; }
.client-logo:nth-child(8) { transition-delay: 0.8s; }
.client-logo:nth-child(9) { transition-delay: 0.9s; }
.client-logo:nth-child(10) { transition-delay: 1s; }
.client-logo:nth-child(11) { transition-delay: 1.1s; }
.client-logo:nth-child(12) { transition-delay: 1.2s; }
.client-logo:nth-child(13) { transition-delay: 1.3s; }
.client-logo:nth-child(14) { transition-delay: 1.4s; }
.client-logo:nth-child(15) { transition-delay: 1.5s; }

.section-animate.visible .client-logo {
  transform: scale(1);
  opacity: 1;
}

.client-logo img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.3s var(--transition-smooth);
  position: relative;
  z-index: 2;
  opacity: 1;
}

@media (max-width: 768px) {
  .clients {
    padding: 70px 0;
  }

  .clients-showcase-intro {
    margin-bottom: 30px;
  }

  .clients-showcase-intro p {
    font-size: 15px;
    line-height: 1.7;
  }

  .clients-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .client-logo {
    min-height: 110px;
    padding: 20px;
    border-radius: 18px;
  }

  .client-logo img {
    max-height: 52px;
  }
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Unified Contact Section */
.contact-unified {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5a9e 100%);
  border-radius: 20px;
  padding: 40px;
  color: white;
}

.contact-info-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-subtitle {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 32px;
  line-height: 1.5;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-item i {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.9);
}

.detail-value {
  font-size: 14px;
  line-height: 1.5;
  color: white;
  text-decoration: none;
}

a.detail-value:hover {
  text-decoration: underline;
}

.contact-hours {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  opacity: 0.85;
}

.contact-hours i {
  font-size: 14px;
}

/* WhatsApp Card */
.whatsapp-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.whatsapp-card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-card-icon i {
  font-size: 32px;
  color: white;
}

.whatsapp-card h3 {
  font-size: 20px;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.whatsapp-card > p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 24px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s var(--transition-bounce);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}

.whatsapp-btn i {
  font-size: 20px;
}

.whatsapp-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
}

@media (max-width: 768px) {
  .contact-unified {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-card {
    padding: 32px 24px;
  }

  .whatsapp-card {
    padding: 32px 24px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: start;
  gap: 20px;
  transform: translateX(-30px);
  opacity: 0;
  transition: all 0.5s var(--transition-smooth);
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(248, 252, 255, 0.7) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(0, 61, 122, 0.1);
  box-shadow: 0 8px 24px rgba(0, 61, 122, 0.06);
}

.contact-item:nth-child(1) { transition-delay: 0.1s; }
.contact-item:nth-child(2) { transition-delay: 0.2s; }
.contact-item:nth-child(3) { transition-delay: 0.3s; }

.section-animate.visible .contact-item {
  transform: translateX(0);
  opacity: 1;
}

.contact-item i {
  font-size: 28px;
  color: var(--primary-blue);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,
      rgba(0, 61, 122, 0.1) 0%,
      rgba(0, 102, 204, 0.05) 100%);
  border-radius: 12px;
  flex-shrink: 0;
  transition: all 0.3s var(--transition-bounce);
}

.contact-item:hover i {
  transform: scale(1.15) rotate(10deg);
  color: var(--secondary-blue);
  background: linear-gradient(135deg,
      rgba(0, 102, 204, 0.15) 0%,
      rgba(0, 102, 204, 0.08) 100%);
}

/* Footer */
footer {
  background: radial-gradient(circle at center,
      #2a88ec 0%,
      #498ac0 25%,
      #6899d6 50%,
      #87a9e2 75%,
      #1f4ac2 100%);
  color: white;
  padding: 60px 0 30px;
}

/* Footer Top */
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s var(--transition-smooth);
}

.section-animate.visible .footer-top {
  transform: translateY(0);
  opacity: 1;
}

.footer-brand {
  max-width: 500px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-logo img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.15);
  padding: 6px;
}

.footer-logo-text h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1.2;
}

.footer-logo-text span {
  font-size: 12px;
  opacity: 0.85;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.85;
  max-width: 420px;
}

/* Footer Social */
.footer-social {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.footer-social a {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s var(--transition-smooth);
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Footer Content */
.footer-content {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-column {
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s var(--transition-smooth);
}

.footer-column:nth-child(1) { transition-delay: 0.1s; }
.footer-column:nth-child(2) { transition-delay: 0.2s; }
.footer-column:nth-child(3) { transition-delay: 0.3s; }
.footer-column:nth-child(4) { transition-delay: 0.4s; }

.section-animate.visible .footer-column {
  transform: translateY(0);
  opacity: 1;
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  letter-spacing: 0.3px;
}

.footer-column h3::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  bottom: 0;
  left: 0;
  border-radius: 1px;
  transition: width 0.5s var(--transition-smooth) 0.3s;
}

.section-animate.visible .footer-column h3::after {
  width: 36px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.85;
}

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

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.footer-badge i {
  font-size: 10px;
}

/* Footer Links */
.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 10px;
  transform: translateX(-10px);
  opacity: 0;
  transition: all 0.3s var(--transition-smooth);
}

.footer-column ul li:nth-child(1) { transition-delay: 0.4s; }
.footer-column ul li:nth-child(2) { transition-delay: 0.5s; }
.footer-column ul li:nth-child(3) { transition-delay: 0.6s; }
.footer-column ul li:nth-child(4) { transition-delay: 0.7s; }
.footer-column ul li:nth-child(5) { transition-delay: 0.8s; }
.footer-column ul li:nth-child(6) { transition-delay: 0.9s; }

.section-animate.visible .footer-column ul li {
  transform: translateX(0);
  opacity: 1;
}

.footer-column ul li a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.25s var(--transition-smooth);
  display: inline-block;
  position: relative;
}

.footer-column ul li a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
  transition: width 0.25s var(--transition-smooth);
}

.footer-column ul li a:hover {
  color: white;
  padding-left: 4px;
}

.footer-column ul li a:hover::before {
  width: 20px;
}

/* Footer Contact List */
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-icon i {
  font-size: 13px;
  opacity: 0.9;
}

.footer-contact-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-contact-text strong {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.95;
}

.footer-contact-text span {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.75;
}

.footer-contact-text a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s;
}

.footer-contact-text a:hover {
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--transition-smooth) 0.5s;
}

.section-animate.visible .footer-bottom {
  transform: translateY(0);
  opacity: 0.85;
}

.footer-bottom-tag {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-container {
    gap: 0;
  }

  .hero-title {
    font-size: 56px;
  }

  .safety-features {
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .about-content,
  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-content-left {
    padding: 34px;
  }

  .about-key-points {
    grid-template-columns: 1fr;
  }

  .about-team-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .about-team-stat {
    padding: 22px 16px 18px;
  }

  .about-team-stat-icon {
    width: 48px;
    height: 48px;
  }

  .about-team-stat-icon i {
    font-size: 20px;
  }

  .about-team-stat-number {
    font-size: 34px;
  }

  .about-team-stat-label {
    font-size: 12px;
  }

  .about-stats-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .about-mission-vision {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 24px;
  }

  .about-mv-card {
    padding: 22px;
  }

  .about-key-points {
    gap: 14px;
  }

  .about-key-point {
    padding: 14px 16px;
  }

  .process-step {
    width: calc(50% - 20px);
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-content {
    width: 90vw;
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-badge {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 2px 6px;
    width: 100%;
    max-width: 320px;
    border-radius: 18px;
    font-size: 10px;
    line-height: 1.4;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-badge i {
    margin-right: 4px;
  }

  .hero-badge-separator {
    display: none;
  }

  .hero-title span {
    display: block;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons a {
    text-align: center;
  }

  .safety-features {
    gap: 20px;
  }

  .about {
    padding: 60px 0;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-content-left {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .about-lead {
    font-size: 16px;
  }

  .about-stats {
    gap: 14px;
  }

  .about-stats-row {
    grid-template-columns: 1fr;
  }

  .badges-container {
    margin: 30px 0;
    padding: 15px 0;
  }

  .about-badge {
    padding: 10px 18px;
    font-size: 13px;
  }

  .section-header h2 {
    font-size: 32px;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-slide {
    padding: 30px;
  }

  .testimonial-quote {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 31px;
  }

  .hero-description {
    font-size: 15px;
  }
}

/* Certificates & Accreditations Section */
.certifications {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.certifications::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23003d7a' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

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

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.cert-card {
  background: linear-gradient(135deg, var(--primary-blue) 0%, #1a5a9e 100%);
  border-radius: 18px;
  padding: 30px 24px 24px;
  border: 1px solid rgba(255, 215, 0, 0.25);
  box-shadow: 0 8px 30px rgba(0, 61, 122, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition-bounce);
  transform: translateY(30px);
  opacity: 0;
}

.cert-card:nth-child(1) { transition-delay: 0.05s; }
.cert-card:nth-child(2) { transition-delay: 0.1s; }
.cert-card:nth-child(3) { transition-delay: 0.15s; }
.cert-card:nth-child(4) { transition-delay: 0.2s; }
.cert-card:nth-child(5) { transition-delay: 0.25s; }
.cert-card:nth-child(6) { transition-delay: 0.3s; }
.cert-card:nth-child(7) { transition-delay: 0.35s; }
.cert-card:nth-child(8) { transition-delay: 0.4s; }

.section-animate.visible .cert-card {
  transform: translateY(0);
  opacity: 1;
}

.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ffd700, #ffed4e, #ffd700);
  opacity: 1;
}

.cert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 61, 122, 0.45);
  border-color: rgba(255, 215, 0, 0.5);
}

.cert-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 215, 0, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--transition-bounce);
  flex-shrink: 0;
}

.cert-card:hover .cert-card-icon {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.6);
  transform: scale(1.1) rotate(6deg);
}

.cert-card-icon i {
  font-size: 24px;
  color: #ffd700;
  transition: all 0.3s ease;
}

.cert-card-body {
  flex: 1;
}

.cert-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: 0.2px;
}

.cert-card-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin: 0;
}

.cert-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: rgba(255, 215, 0, 0.15);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.cert-card:hover .cert-card-badge {
  background: #ffd700;
  color: var(--primary-blue);
  border-color: #ffd700;
}

@media (max-width: 1100px) {
  .cert-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .cert-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .certifications {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .cert-grid {
    grid-template-columns: 1fr;
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 5px;
  transition: background 0.3s var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-blue);
}

/* Selection Color */
::selection {
  background-color: var(--primary-blue);
  color: white;
}

.hero-description-small {
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .hero-description-small {
    font-size: 13px;
    line-height: 1.6;
  }
}

.safety-feature-text p.small {
  font-size: 10px;
  line-height: 1.5;
}

@media (max-width: 600px) {
  .safety-feature-text p.small {
    font-size: 12px;
    line-height: 1.6;
  }
}

/* Large client logos */
.clients-grid--large {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}

.clients-grid--large .client-logo {
  min-height: 110px;
  padding: 20px 16px;
  border-radius: 18px;
}

.clients-grid--large .client-logo img {
  max-height: 56px;
}

/* Additional transition delays for more logos */
.client-logo:nth-child(16) { transition-delay: 1.6s; }
.client-logo:nth-child(17) { transition-delay: 1.7s; }
.client-logo:nth-child(18) { transition-delay: 1.8s; }
.client-logo:nth-child(19) { transition-delay: 1.9s; }
.client-logo:nth-child(20) { transition-delay: 2.0s; }
.client-logo:nth-child(21) { transition-delay: 2.1s; }
.client-logo:nth-child(22) { transition-delay: 2.2s; }
.client-logo:nth-child(23) { transition-delay: 2.3s; }
.client-logo:nth-child(24) { transition-delay: 2.4s; }
.client-logo:nth-child(25) { transition-delay: 2.5s; }
.client-logo:nth-child(26) { transition-delay: 2.6s; }
.client-logo:nth-child(27) { transition-delay: 2.7s; }

/* ── Marquee / Infinite-scroll logo carousel ── */
@keyframes marquee-scroll-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marquee-scroll-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.clients-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.clients-marquee-track {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  width: max-content;
}

.clients-marquee-track--left {
  animation: marquee-scroll-left 90s linear infinite;
}

.clients-marquee-track--right {
  animation: marquee-scroll-right 90s linear infinite;
}

.clients-marquee-wrapper:hover .clients-marquee-track--left,
.clients-marquee-wrapper:hover .clients-marquee-track--right {
  animation-play-state: paused;
}

.client-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 180px;
  height: 140px;
  padding: 20px 16px 14px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid rgba(0, 102, 204, 0.12);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 61, 122, 0.07);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: default;
  flex-shrink: 0;
}

.client-logo-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 16px 40px rgba(0, 61, 122, 0.14);
  border-color: rgba(0, 102, 204, 0.32);
}

.client-logo-card img {
  max-width: 140px;
  max-height: 70px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.client-logo-card:hover img {
  filter: grayscale(0%);
}

/* Larger size for specific client logos */
.client-logo-card img[src*="8.33.51 PM.jpeg"],
.client-logo-card img[src*="8.34.57 PM.jpeg"],
.client-logo-card img[src*="8.35.42 PM.jpeg"],
.client-logo-card img[src*="8.36.53 PM.jpeg"],
.client-logo-card img[src*="8.48.20 PM.jpeg"],
.client-logo-card img[src*="8.48.39 PM.jpeg"],
.client-logo-card img[src*="8.48.50 PM.jpeg"],
.client-logo-card img[src*="8.50.27 PM.jpeg"],
.client-logo-card img[src*="8.50.44 PM.jpeg"],
.client-logo-card img[src*="8.50.58 PM.jpeg"],
.client-logo-card img[src*="8.52.22 PM.jpeg"],
.client-logo-card img[src*="8.53.06 PM.jpeg"],
.client-logo-card img[src*="8.54.37 PM.jpeg"],
.client-logo-card img[src*="8.55.17 PM.jpeg"] {
  max-width: 200px;
  max-height: 100px;
  transform: scale(1.25);
}

.client-name {
  font-size: 12px;
  font-weight: 600;
  color: #4a6080;
  text-align: center;
  letter-spacing: 0.3px;
  line-height: 1.3;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .client-logo-card {
    min-width: 140px;
    height: 110px;
    padding: 16px 12px 12px;
    border-radius: 14px;
  }

  .client-logo-card img {
    max-width: 110px;
    max-height: 55px;
  }

  .client-name {
    font-size: 11px;
  }

  .clients-marquee-track--left,
  .clients-marquee-track--right {
    gap: 16px;
    animation-duration: 60s;
  }
}

/* Industry Presence Section */
.industries {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 50px;
}

.industry-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 102, 204, 0.1);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: 0 8px 30px rgba(0, 61, 122, 0.06);
  transition: all 0.3s var(--transition-smooth);
}

.industry-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(0, 61, 122, 0.12);
  border-color: rgba(0, 102, 204, 0.25);
}

.industry-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 14px;
}

.industry-item span {
  font-size: 16px;
  font-weight: 600;
  color: #0f3460;
}

@media (max-width: 768px) {
  .industries {
    padding: 70px 0;
  }

  .industries-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .industry-item {
    padding: 18px 20px;
  }

  .industry-item span {
    font-size: 15px;
  }

  .clients-grid--large {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .clients-grid--large .client-logo {
    min-height: 90px;
    padding: 14px 10px;
    border-radius: 14px;
  }

  .clients-grid--large .client-logo img {
    max-height: 42px;
  }
}

/* Footer Responsive */
@media (max-width: 992px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-column--about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 48px 0 24px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
    padding-bottom: 28px;
    margin-bottom: 28px;
  }

  .footer-logo img {
    width: 44px;
    height: 44px;
  }

  .footer-logo-text h2 {
    font-size: 18px;
  }

  .footer-social {
    align-self: flex-start;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 28px;
  }

  .footer-column h3 {
    margin-bottom: 14px;
  }

  .footer-badges {
    margin-top: 12px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
    padding-top: 20px;
  }
}
