/* 
   GLOBAL STYLES & RESETS
   */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand Colors */
  --navy-dark: #142952;
  --blue-vibrant: #0066cc;
  --white: #ffffff;
  --light-gray: #f1f5f9;
  --deep-gray: #1f2937;
  --text-dark: #111827;
  --text-gray: #6b7280;

  /* Typography */
  --font-heading: "Poppins", sans-serif;
  --font-body: "Inter", sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
  padding-top: 120px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: var(--spacing-sm);
  line-height: 1.7;
}

a {
  color: var(--blue-vibrant);
  text-decoration: none;
  transition: all var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Submenu Enhancements */
.nav-menu .has-submenu {
  position: relative;
}

.nav-menu .has-submenu > a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.5rem;
  vertical-align: middle;
  border-top: 4px solid currentColor;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  transition: transform 0.3s ease;
}

.nav-menu .has-submenu.active > a::after,
.nav-menu .has-submenu:hover > a::after {
  transform: rotate(180deg);
}

/* Desktop Submenu Styles */
@media (min-width: 769px) {
  .nav-menu .submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 260px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    padding: 0.75rem 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin: 0;
  }

  .nav-menu .has-submenu:hover .submenu,
  .nav-menu .has-submenu.active .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu .submenu li {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }

  .nav-menu .submenu li a {
    padding: 0.6rem 1.25rem;
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    transition: background 0.25s ease, color 0.25s ease;
    border: none;
  }

  .nav-menu .submenu li a::after {
    display: none;
  }

  .nav-menu .submenu li a:hover {
    background: rgba(0, 102, 204, 0.08);
    color: var(--blue-vibrant);
  }
}

/* Mobile Submenu Styles */
@media (max-width: 768px) {
  .nav-menu .submenu {
    display: none;
    list-style: none;
    padding-left: 1rem;
    margin: 0;
    background: rgba(0, 102, 204, 0.03);
  }

  .nav-menu .has-submenu.active .submenu {
    display: block;
  }

  .nav-menu .submenu li {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }

  .nav-menu .submenu li a {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    display: block;
    color: var(--text-dark);
    border-left: 3px solid transparent;
  }

  .nav-menu .submenu li a:hover,
  .nav-menu .submenu li a.active {
    background: rgba(0, 102, 204, 0.08);
    color: var(--blue-vibrant);
    border-left-color: var(--blue-vibrant);
  }

  .nav-menu .has-submenu > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}
/* 
   SECTIONS - GENERAL SPACING
  */
section {
  padding: 4rem 0;
  overflow-x: hidden;
}

section:first-of-type {
  margin-top: 70px;
}


/* 
   UTILITY CLASSES
   */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-vibrant) 0%, #0052a3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-highlight {
  color: var(--blue-vibrant);
}

.section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue-vibrant);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--spacing-sm);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto var(--spacing-lg);
}

.section-title {
  margin-bottom: var(--spacing-sm);
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-gray);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--blue-vibrant);
  color: var(--white);
}

.btn-primary:hover {
  background: #0052a3;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--blue-vibrant);
  border-color: var(--blue-vibrant);
}

.btn-secondary:hover {
  background: var(--blue-vibrant);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--blue-vibrant);
}

.btn-white:hover {
  background: var(--light-gray);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--blue-vibrant);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.5rem;
  font-size: 0.875rem;
}

.btn-full {
  width: 100%;
}

/* Links */
.link-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--blue-vibrant);
  font-weight: 600;
  transition: all var(--transition-normal);
}

.link-arrow:hover {
  transform: translateX(5px);
}

/* 
   TOP HEADER - CONTACT INFO
    */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(135deg, #142952 0%, #0a1628 100%);
  color: var(--white);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 102, 204, 0.2);
  backdrop-filter: blur(10px);
}

.top-header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.top-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.top-link:hover {
  color: #64b5f6;
  transform: translateY(-2px);
}

.top-link .icon {
  font-size: 1rem;
  display: inline-flex;
}

.top-link .text {
  display: inline;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--white);
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.social-link:hover {
  background: rgba(100, 181, 246, 0.2);
  border-color: rgba(100, 181, 246, 0.5);
  color: #64b5f6;
  transform: translateY(-3px);
}

/* 
   NAVIGATION - RESPONSIVE
   */
.navbar {
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--transition-normal);
  padding: 0;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 0;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo svg {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

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

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: var(--text-dark);
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  padding: 0.5rem 0;
  text-decoration: none;
  display: block;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue-vibrant);
  transition: width var(--transition-normal);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
/* Parent with submenu */
.nav-menu .has-submenu {
  position: relative;
}

/* Submenu container */
.nav-menu .submenu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  padding: 0.75rem 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

/* Show submenu on hover */
.nav-menu .has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Submenu links */
.nav-menu .submenu li a {
  padding: 0.6rem 1.25rem;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease;
}

/* Hover effect */
.nav-menu .submenu li a:hover {
  background: rgba(0, 102, 204, 0.08);
  color: var(--blue-vibrant);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-dark);
  transition: all var(--transition-normal);
  border-radius: 2px;
}

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

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

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

/* ===== Submenu Click Support (Mobile + Desktop) ===== */

/* Open submenu when JS adds .open */
.nav-menu .has-submenu.open > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mobile submenu positioning */
@media (max-width: 768px) {
  .nav-menu .has-submenu {
    width: 100%;
  }

  .nav-menu .submenu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: #f9fafb;
  }

  .nav-menu .has-submenu.open > .submenu {
    display: block;
  }

  .nav-menu .submenu li a {
    padding-left: 3rem;
    font-size: 0.95rem;
  }
}

/* Mobile Menu Backdrop */
.menu-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menu-backdrop.active {
  display: block;
  opacity: 1;
}

/* Mobile Responsive Menu */
@media (max-width: 768px) {
  /* Top Header */
  .top-header {
    top: 0;
    padding: 0.5rem 0;
  }

  .top-header-content {
    gap: 0.5rem;
    justify-content: center;
    flex-direction: column;
  }

  .top-left {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .top-link {
    font-size: 0.8rem;
  }

  .top-link .link-text {
    display: none;
  }

  .top-right {
    width: 100%;
    justify-content: center;
    gap: 0.75rem;
  }

  .social-link {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
  }

  /* Hamburger Button */
  .hamburger {
    display: flex;
  }

  /* Mobile Menu */
  .nav-menu {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    width: 100%;
    flex-direction: column;
    background: white;
    gap: 0;
    list-style: none;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 1rem 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    margin: 0;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    list-style: none;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 2rem;
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    border: none;
  }

  .nav-menu a::after {
    display: none !important;
  }

  .nav-menu a.active {
    background: rgba(0, 102, 204, 0.08);
    color: var(--blue-vibrant);
    border-left: 4px solid var(--blue-vibrant);
    padding-left: calc(2rem - 4px);
  }

  .nav-menu a:hover {
    background: rgba(0, 102, 204, 0.05);
  }

  /* Menu Backdrop */
  .menu-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .menu-backdrop.active {
    display: block;
    opacity: 1;
  }

  body.menu-open {
    overflow: hidden;
  }
}

/* 
   HERO SECTION
   */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 0;
  overflow: hidden;
  margin-top: 0;
  background-position: center;
  background-attachment: fixed;
  
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0a1628 100%);
  z-index: -1;
}

.hero-background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%);
  animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-text {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

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

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

.stat-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Page Hero Section */
.page-hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 4rem;
  overflow: hidden;
  margin-top: 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0a1628 100%);
}

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

.page-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(1.75rem, 5vw, 3rem);
}

.page-subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2s infinite;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-left: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg);
  margin: 0.5rem auto 0;
  animation: bounce 2s infinite;
}

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

/*
   WHY CHOOSE US SECTION
    */
   
.why-choose-us {
  padding: var(--spacing-xl) 0;
  background: var(--white);
}

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

.feature-card {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-vibrant);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.feature-card h3 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-gray);
}

/* 
   PRODUCTS PREVIEW SECTION
    */
.products-preview {
  padding: var(--spacing-xl) 0;
  background: var(--light-gray);
}

.products-showcase {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.product-highlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.product-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image img {
  width: 100%;
  height: auto;
  transition: transform var(--transition-slow);
}

.product-highlight:hover .product-image img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--blue-vibrant);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.product-info h3 {
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.product-info p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue-vibrant);
  font-weight: 700;
}

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

.product-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-card-image {
  height: 200px;
  overflow: hidden;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-card h4 {
  padding: 1.5rem 1.5rem 0.5rem;
  color: var(--navy-dark);
}

.product-card p {
  padding: 0 1.5rem 1rem;
  color: var(--text-gray);
}

.product-card .link-arrow {
  padding: 0 1.5rem 1.5rem;
}

/* 
   TESTIMONIALS SECTION
   */
.testimonials {
  padding: var(--spacing-xl) 0;
  background: var(--white);
  position: relative;
}

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

.testimonial-track {
  display: flex;
  gap: 2rem;
  transition: transform var(--transition-slow);
}

.testimonial-card {
  min-width: 100%;
  padding: 3rem;
  background: var(--light-gray);
  border-radius: 16px;
}

.testimonial-rating {
  color: #ffb800;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--navy-dark);
}

.author-title {
  font-size: 0.875rem;
  color: var(--text-gray);
}

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

.slider-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-vibrant);
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.slider-btn:hover {
  background: var(--navy-dark);
  transform: scale(1.1);
}

/* ==========================================
   PARTNERS SECTION
   ========================================== */
.partners {
  padding: var(--spacing-lg) 0;
  background: var(--light-gray);
  text-align: center;
}

.partners-carousel {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.section-headerw {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.partners-track {
  display: flex;
  gap: 4rem;
  animation: scroll 30s linear infinite;
}

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

.partner-logo {
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity var(--transition-normal);
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.partner-logo img {
  height: 60px;
  width: auto;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 102, 204, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(0, 102, 204, 0.15) 0%, transparent 50%);
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

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

/* ==========================================
   PAGE HERO
   ========================================== */
.page-hero {
  padding: 10rem 0 6rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, #0a1628 100%);
  text-align: center;
}

.page-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  padding: var(--spacing-xl) 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 48px;
  height: 48px;
  background: var(--light-gray);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue-vibrant);
}

.contact-item h3 {
  font-size: 1.125rem;
  color: var(--navy-dark);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--text-gray);
  margin: 0;
}

.contact-item a {
  color: var(--blue-vibrant);
}

.contact-item a:hover {
  text-decoration: underline;
}

.social-links h3 {
  font-size: 1.125rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

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

.social-icons a {
  width: 48px;
  height: 48px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-dark);
  transition: all var(--transition-normal);
}

.social-icons a:hover {
  background: var(--blue-vibrant);
  color: var(--white);
  transform: translateY(-4px);
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.contact-form-wrapper {
  background: var(--light-gray);
  padding: 3rem;
  border-radius: 16px;
}

.success-message {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #10b981;
  color: var(--white);
  border-radius: 8px;
  margin-bottom: 2rem;
}

.success-message svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-weight: 600;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-vibrant);
  box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

/* ==========================================
   MAP SECTION
   ========================================== */
.map-section {
  width: 100%;
}

.map-container {
  width: 100%;
  height: 450px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
}

/* ==========================================
   SERVICES PAGE
   ========================================== */
.services-section {
  padding: var(--spacing-xl) 0;
}

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

.service-card {
  padding: 2.5rem;
  background: var(--light-gray);
  border-radius: 16px;
  transition: all var(--transition-normal);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-vibrant);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.service-card h3 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.service-card > p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-size: 0.9375rem;
}

.service-features li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue-vibrant);
  font-weight: 700;
}

.service-process {
  padding: var(--spacing-xl) 0;
  background: var(--light-gray);
}

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

.process-step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--blue-vibrant);
  font-family: var(--font-heading);
  margin-bottom: 1rem;
  opacity: 0.3;
}

.process-step h3 {
  font-size: 1.25rem;
  color: var(--navy-dark);
  margin-bottom: 0.75rem;
}

.process-step p {
  color: var(--text-gray);
}

/* ==========================================
   PRODUCTS PAGE
   ========================================== */
.products-section {
  padding: var(--spacing-xl) 0;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.product-detail.reverse {
  direction: rtl;
}

.product-detail.reverse > * {
  direction: ltr;
}

.product-badge {
  display: inline-block;
  background: var(--blue-vibrant);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-detail h2 {
  font-size: 2.5rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.product-intro {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.product-detail h3 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin: 2rem 0 1rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item svg {
  width: 24px;
  height: 24px;
  color: var(--blue-vibrant);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-item span {
  color: var(--text-dark);
}

.product-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-detail-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-detail-image img {
  width: 100%;
  height: auto;
}

.product-comparison {
  padding: var(--spacing-xl) 0;
  background: var(--light-gray);
}

.comparison-table {
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--navy-dark);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* ==========================================
   PORTFOLIO PAGE
   ========================================== */
.case-studies {
  padding: var(--spacing-xl) 0;
}

.case-study-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.case-study-card.reverse {
  direction: rtl;
}

.case-study-card.reverse > * {
  direction: ltr;
}

.case-study-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.case-study-image img {
  width: 100%;
  height: auto;
}

.case-study-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--blue-vibrant);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.case-study-content h2 {
  font-size: 2rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.case-intro {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.case-study-content h3 {
  font-size: 1.25rem;
  color: var(--navy-dark);
  margin: 2rem 0 1rem;
}

.case-study-content ul {
  list-style: none;
  margin-bottom: 1.5rem;
}

.case-study-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.case-study-content ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--blue-vibrant);
  font-weight: 700;
}

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

.metric {
  text-align: center;
  padding: 1.5rem;
  background: var(--light-gray);
  border-radius: 12px;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--blue-vibrant);
  font-family: var(--font-heading);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-gray);
}

.industry-impact {
  padding: var(--spacing-xl) 0;
  background: var(--light-gray);
}

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

.industry-card {
  text-align: center;
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  transition: all var(--transition-normal);
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  font-size: 1.25rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.industry-stat {
  color: var(--blue-vibrant);
  font-weight: 600;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.company-story {
  padding: var(--spacing-xl) 0;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content p {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 1.5rem;
}

.story-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.story-image img {
  width: 100%;
  height: auto;
}

.mission-vision {
  padding: var(--spacing-xl) 0;
  background: var(--light-gray);
}

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

.mvv-card {
  padding: 2.5rem;
  background: var(--white);
  border-radius: 16px;
}

.mvv-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-vibrant);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mvv-icon svg {
  width: 32px;
  height: 32px;
  color: var(--white);
}

.mvv-card h3 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 1rem;
}

.mvv-card p {
  color: var(--text-gray);
}

.values-list {
  list-style: none;
}

.values-list li {
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.values-list strong {
  color: var(--blue-vibrant);
}

.leadership {
  padding: var(--spacing-xl) 0;
}

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

.leader-card {
  text-align: center;
  transition: all var(--transition-normal);
}

.leader-card:hover {
  transform: translateY(-8px);
}

.leader-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-card h3 {
  font-size: 1.5rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.leader-title {
  color: var(--blue-vibrant);
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-bio {
  color: var(--text-gray);
  font-size: 0.9375rem;
}

.timeline {
  padding: var(--spacing-xl) 0;
  background: var(--light-gray);
}

.timeline-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--blue-vibrant);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  background: var(--blue-vibrant);
  border: 4px solid var(--white);
  border-radius: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.timeline-year {
  text-align: right;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue-vibrant);
  font-family: var(--font-heading);
}

.timeline-content h3 {
  font-size: 1.25rem;
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: var(--text-gray);
}

.sustainability-pledge {
  padding: var(--spacing-xl) 0;
}

.pledge-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.pledge-text {
  font-size: 1.125rem;
  color: var(--text-gray);
  margin-bottom: 3rem;
}

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

.pledge-stat {
  padding: 2rem;
  background: var(--light-gray);
  border-radius: 12px;
}


/* ==========================================
   LEGAL PAGES
   ========================================== */
.legal-page {
  padding: var(--spacing-xl) 0;
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  color: var(--navy-dark);
  margin-bottom: 0.5rem;
}

.last-updated {
  color: var(--text-gray);
  font-size: 0.875rem;
  margin-bottom: 3rem;
}

.legal-content h2 {
  color: var(--navy-dark);
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  color: var(--navy-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--text-gray);
  margin-bottom: 1rem;
}

.legal-content ul {
  list-style: disc;
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.legal-content ul li {
  color: var(--text-gray);
  margin-bottom: 0.5rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: var(--spacing-lg) 0 var(--spacing-md);
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-logo svg {
  width: 40px;
  height: 40px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all var(--transition-normal);
}

.footer-social a:hover {
  background: var(--blue-vibrant);
  transform: translateY(-4px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

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

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

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.heart {
  color: #ef4444;
}

/* ==========================================
   ANIMATIONS
   ========================================== */
.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

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

.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: fadeInLeft 0.8s ease forwards;
  animation-delay: 0.3s; /* Add delay */
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 0.8s ease forwards;
}

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

/* Scroll-triggered animations */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
  animation-play-state: paused;
}

.fade-in.visible,
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  animation-play-state: running;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem;
    transition: left var(--transition-normal);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

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

  .hamburger {
    display: flex;
  }

  .product-highlight,
  .product-detail,
  .case-study-card,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-detail.reverse,
  .case-study-card.reverse {
    direction: ltr;
  }

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

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 2rem;
  }

  .timeline-container::before {
    left: 0;
  }

  .timeline-item::before {
    left: 0;
  }

  .timeline-year {
    text-align: left;
  }
}

@media (max-width: 768px) {
  :root {
    --spacing-xl: 3rem;
    --spacing-lg: 2rem;
    --spacing-md: 1.5rem;
  }

  /* Navigation */
  .navbar {
    padding: 0;
  }

  .nav-wrapper {
    padding: 0.75rem 0;
  }

  .logo {
    font-size: 1.1rem;
  }

  .logo svg {
    width: 35px;
    height: 35px;
  }

  .btn-sm {
    display: none;
  }

  /* Hero Section */
  .hero {
    min-height: auto;
    padding: 5rem 0 2rem;
    margin-top: 70px;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
  }

  .hero-buttons .btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
  }

  .hero-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .stat-item {
    text-align: center;
    padding: 1.5rem;
  }

  /* Sections */
  .features-grid,
  .services-grid,
  .products-grid,
  .industries-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  /* Section Headers */
  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* Cards */
  .feature-card,
  .service-card,
  .product-card,
  .industry-card {
    padding: 1.5rem;
  }

  /* Product Details */
  .product-detail,
  .case-study-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .product-detail-content,
  .case-study-content {
    padding: 0;
  }

  .product-detail-image,
  .case-study-image {
    margin: 0;
  }

  .product-detail-image img,
  .case-study-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrapper {
    grid-column: 1;
  }

  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-section {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

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

  .footer-bottom p {
    margin: 0;
  }

  /* Comparison Table */
  .comparison-table {
    font-size: 0.75rem;
    overflow-x: auto;
  }

  /* Forms */
  .form-group {
    margin-bottom: 1.25rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
  }

  /* Page Hero */
  .page-hero {
    padding: 4rem 0 2rem;
    margin-top: 70px;
  }

  .page-hero-content {
    padding: 0 1rem;
  }

  .page-title {
    font-size: 1.75rem;
  }

  .page-subtitle {
    font-size: 1rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1.5rem;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  /* CTA Section */
  .cta-section {
    padding: 2rem 1rem;
  }

  .cta-title {
    font-size: 1.5rem;
  }

  .cta-description {
    font-size: 1rem;
  }

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

  .cta-buttons .btn {
    width: 100%;
  }

  /* Utilities */
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1rem 0.5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --spacing-xl: 2rem;
    --spacing-lg: 1.5rem;
    --spacing-md: 1rem;
  }

  body {
    padding-top: 115px;
  }

  /* Top Header */
  .top-header {
    top: 0;
    padding: 0.4rem 0;
    z-index: 1001;
  }

  .top-header-content {
    flex-direction: column;
    gap: 0.4rem;
  }

  .top-left {
    width: 100%;
    gap: 0.5rem;
    justify-content: center;
  }

  .top-link {
    font-size: 0.75rem;
  }

  .top-link i {
    font-size: 0.85rem;
  }

  .top-link .link-text {
    display: none;
  }

  .top-right {
    width: 100%;
    gap: 0.5rem;
  }

  .social-link {
    width: 22px;
    height: 22px;
    font-size: 0.6rem;
  }

  /* Navigation Bar */
  .navbar {
    position: fixed;
    top: 48px;
    z-index: 1000;
    padding: 0;
    width: 100%;
  }

  .nav-wrapper {
    padding: 0.4rem 0;
  }

  .logo {
    font-size: 1rem;
  }

  .logo svg {
    width: 32px;
    height: 32px;
  }

  .logo span {
    display: none;
  }

  /* Mobile Menu */
  .nav-menu {
    top: 110px !important;
    max-height: calc(100vh - 110px);
  }

  .nav-menu a {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .nav-menu a.active {
    padding-left: calc(1.5rem - 4px);
  }

  .hamburger {
    display: flex !important;
  }

  .btn-sm {
    padding: 0.625rem 1rem;
    font-size: 0.85rem;
  }

  .logo {
    font-size: 0.95rem;
  }

  .logo svg {
    width: 30px;
    height: 30px;
  }

  .nav-menu {
    top: 60px !important;
  }

  /* Main Content Padding */
  body {
    padding-top: 60px;
  }

  .hero,
  .page-hero {
    margin-top: 60px;
    padding: 2rem 0 1.5rem;
  }

  .hero-title,
  .page-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .hero-subtitle,
  .page-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .hero-content,
  .page-hero-content {
    padding: 0 0.75rem;
  }

  /* Grid Items */
  .features-grid,
  .services-grid,
  .products-grid,
  .industries-grid {
    gap: 1rem;
  }

  .feature-card,
  .service-card,
  .product-card,
  .industry-card {
    padding: 1rem;
  }

  .feature-icon,
  .service-icon,
  .industry-icon {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .feature-icon svg,
  .service-icon svg,
  .industry-icon svg {
    width: 24px;
    height: 24px;
  }

  /* Typography */
  h1 {
    font-size: 1.4rem;
  }

  h2 {
    font-size: 1.25rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 0.95rem;
  }

  /* Buttons */
  .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }

  .btn-sm {
    padding: 0.5rem 1rem;
  }

  .hero-buttons,
  .cta-buttons {
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  /* Section Spacing */
  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-tag {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }

  .section-description {
    font-size: 0.95rem;
  }

  /* Product Details */
  .product-detail,
  .case-study-card {
    padding: 1rem 0;
    gap: 1rem;
  }

  .product-detail-content,
  .case-study-content {
    padding: 0;
  }

  .features-list {
    gap: 0.75rem;
  }

  .feature-item {
    gap: 0.75rem;
  }

  .feature-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }

  /* Contact Form */
  .contact-grid {
    gap: 1.5rem;
  }

  .form-group {
    margin-bottom: 1rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px;
    padding: 0.5rem;
  }

  /* Footer */
  .footer-content {
    gap: 1.5rem;
  }

  .footer-section {
    text-align: center;
  }

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

  .footer-social {
    justify-content: center;
    gap: 1rem;
  }

  .footer-social a {
    width: 30px;
    height: 30px;
  }

  .footer-bottom {
    padding: 1rem 0;
    gap: 0.75rem;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 1rem;
  }

  .testimonial-rating {
    font-size: 1rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .author-avatar {
    width: 40px;
    height: 40px;
  }

  .author-name {
    font-size: 0.9rem;
  }

  .author-title {
    font-size: 0.8rem;
  }

  /* Stats */
  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Back to top button */
  .back-to-top {
    width: 40px;
    height: 40px;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.25rem;
  }

  /* Content Sections */
  section {
    padding: 2rem 0 !important;
  }

  /* Ensure no overflow */
  .container {
    overflow-x: hidden;
  }
}
