:root {
  --primary: #555454; /* Black */
  --primary-dark: #333333; /* Darker Black */
  --secondary: #666666; /* Gray */
  --accent: #999999; /* Lighter Gray */
  --success: #006400; /* Dark Green for success, can be adjusted to gray if needed */
  --dark: #000000; /* Black */
  --dark-light: #1a1a1a; /* Slightly lighter black */
  --gray-100: #f5f5f5; /* Very light gray */
  --gray-200: #e0e0e0; /* Light gray */
  --gray-300: #cccccc; /* Medium light gray */
  --gray-400: #b3b3b3; /* Medium gray */
  --gray-500: #999999; /* Medium dark gray */
  --gray-600: #808080; /* Darker gray */
  --gray-700: #666666; /* Even darker gray */
  --gray-800: #333333; /* Very dark gray */
  --gray-900: #1a1a1a; /* Almost black */
  --white: #ffffff; /* White */
  --gradient-primary: linear-gradient(
    135deg,
    #333333 0%,
    #1a1a1a 100%
  ); /* Dark gray to black gradient */
  --gradient-secondary: linear-gradient(
    135deg,
    #666666 0%,
    #333333 100%
  ); /* Medium gray to dark gray gradient */
  --gradient-accent: linear-gradient(
    135deg,
    #999999 0%,
    #666666 100%
  ); /* Light gray to medium gray gradient */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

/* Dark theme */
body.dark {
  background: var(--dark);
  color: var(--white);
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--gray-200);
  z-index: 1000;
  transition: all 0.3s ease;
}

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

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
  text-decoration: none;
  background-color: #333333;
  padding: 15px;
  object-fit: contain;
  height: 55px;
  width: 140px;
  border-radius: 10px;
  border: 1px solid #333333;
}

.logo i {
  font-size: 2rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  list-style: none;
  z-index: 105;
  position: relative;
}

.dropdown-menu {
  position: relative;
  list-style: none;
  z-index: 50;
}

.nav-link {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 15px;
}

.theme-toggle {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--gray-600);
  cursor: pointer;
  transition: color 0.3s ease;
}

.theme-toggle:hover {
  color: var(--primary);
}

.crew-header {
  padding: 10px 0 40px;
  margin-top: 80px;
  background: var(--white);
}
.crew-header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}
.crew-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3rem);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 5px;
}
.crew-description {
  color: var(--gray-600);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
}

/* Hero Section */
.hero {
  min-height: 100vh; 
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    #333333 0%,
    #1a1a1a 100%
  ); /* Dark gray to black gradient */
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #1a1a1a; /* Almost black */
  opacity: 0.1;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 1200px;
}

.hero h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-hero {
  padding: 16px 32px;
  font-size: 1.1rem;
}

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

.btn-white:hover {
  background: var(--gray-100);
}

/* Stats */
.stats {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--gray-200);
}

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

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

.stat-item {
  text-align: center;
  border-right: 2px solid #11111136;
}

.stat-number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-label {
  font-weight: 600;
  color: var(--gray-600);
  margin-top: 8px;
}

/* Services */
.services {
  padding: 120px 0;
  background: var(--gray-50);
}

/* Services carousel tweaks */
.services .swiper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px 48px;
}

.services .swiper-slide {
  height: auto;
}

.services .swiper-button-prev,
.services .swiper-button-next {
  color: var(--gray-800);
}

.services .swiper-pagination-bullet {
  background: var(--gray-400);
  opacity: 1;
}

.services .swiper-pagination-bullet-active {
  background: var(--primary);
}

/* Make the center card larger */
.services .swiper-slide .service-card {
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.services .swiper-slide-active .service-card {
  transform: scale(1.08);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-subtitle {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 16px;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 0 8px;
  }
  .service-card {
    padding: 24px 12px;
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 4px;
  }
  .service-card {
    padding: 16px 8px;
  }
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  transition: box-shadow 0.2s;
}

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

.service-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 24px;
}

.service-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.service-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.service-features li i {
  color: var(--success);
  font-size: 0.8rem;
}

/* Portfolio */
.portfolio {
  padding: 120px 0;
  background: var(--white);
}

.portfolio-filters {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 12px 24px;
  background: transparent;
  border: 2px solid var(--gray-300);
  border-radius: 8px;
  color: var(--gray-600);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.portfolio-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  background: var(--white);
}

.portfolio-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.portfolio-image {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 0.9;
}

.portfolio-link {
  color: var(--white);
  font-size: 1.5rem;
  text-decoration: none;
}

.portfolio-content {
  padding: 24px;
}

.portfolio-category {
  color: var(--primary);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.portfolio-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 12px;
}

.portfolio-description {
  color: var(--gray-600);
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  padding: 120px 0;
  background: var(--gray-900);
  color: var(--white);
  text-align: center;
}

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

.cta-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 24px;
}

.cta-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* Partners Section */
.partners {
  background: #333333;
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* .partners::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at center, rgba(255,255,255,0.12), rgba(255,255,255,0) 60%);
    pointer-events: none;
} */

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

.partners .section-title {
  color: #fff;
}

.partners .section-description {
  color: rgba(255, 255, 255, 0.85);
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 20px auto 0 auto;
  max-width: 1000px;

  .fab {
    height: 100px;
  }
}

.partner-card {
  background: #ffffff;
  border: 2px solid rgba(43, 41, 41, 0.904);
  border-radius: 14px;
  padding: 22px 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: #333333;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}

.partner-card i {
  font-size: 1.6rem;
}

.partner-name {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.partner-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .partner-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .partner-logos {
    grid-template-columns: 1fr;
  }
}

/* Footer */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 80px 0 40px;
}

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

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

.footer-column h3 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  margin-bottom: 24px;
}

.footer-column p,
.footer-column a {
  color: var(--gray-400);
  text-decoration: none;
  margin-bottom: 12px;
  display: block;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--white);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  background: var(--gray-800);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding-top: 24px;
  text-align: center;
  color: var(--gray-400);
}

/* Mobile Responsive */
@media (max-width: 980px) {
  .mobile-menu-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 120px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
    height: calc(100vh - 80px);
    gap: 10px;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    gap: 10px;
  }

  .nav-cta {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .portfolio-filters {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    text-align: center;
    border-right: 0;
  }
}

@media (max-width: 900px) {
  .nav-menu {
    flex-direction: column;
    align-items: center;
    position: absolute;
    left: 0;
    top: 60px;
    width: 100vw;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 0 0 22px 22px;
    padding: 38px 0 44px 0;
    z-index: 999;
    display: none;
    overflow-y: auto;
  }
  .nav-menu.active {
    display: flex;
  }
  .nav-menu > li {
    width: 90%;
    margin: 0 auto 14px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .nav-menu .nav-link,
  .nav-menu .dropdown-menu a.menu-btn {
    background: #f7f8fa;
    color: #222;
    border-radius: 18px;
    padding: 16px 0;
    margin: 0 0 10px 0;
    font-weight: 600;
    font-size: 1.13rem;
    text-align: center;
    border: none;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: background 0.18s, color 0.18s, box-shadow 0.18s;
    width: 100%;
    display: block;
    letter-spacing: 0.01em;
  }
  .nav-menu .nav-link:hover,
  .nav-menu .nav-link:focus,
  .nav-menu .dropdown-menu a.menu-btn:hover {
    background: #007aff;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 122, 255, 0.1);
  }
  .nav-menu .dropdown.active > .dropdown-menu {
    display: flex;
    /* flex-direction: row; */
    align-items: center;
  }

  .nav-menu .dropdown > .dropdown-menu {
    display: hidden;
  }

  .nav-menu .dropdown-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    background: none;
    border-radius: 0;
    padding: 0;
    opacity: 1;
    display: none;
    width: 100%;
    align-items: center;
  }

  .mobile-whatsapp {
    display: block !important;
    width: 90%;
    margin: 18px auto 0 auto;
    text-align: center;
  }
  .mobile-whatsapp .btn-dark {
    width: 100%;
    font-size: 1.13rem;
    border-radius: 18px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    justify-content: center;
    background: linear-gradient(90deg, #333333 80%, #007aff 100%);
    color: #000000;
    font-weight: 700;
    letter-spacing: 0.01em;
  }
  .desktop-whatsapp {
    /* display: none ; */
    color: #000;
    width: 40px;
    height: 40px;
    text-align: start;
    font-size: 25px;
    padding: 4px;
    border-radius: 50%;
    padding-left: 10px;
    overflow: hidden;
    position: absolute;
    right: 55px;
    animation: fromUp 0.5s ease-in;
  }

  @keyframes fromUp {
    from {
      transform: translateX(100px);
    }
    to {
      transform: translateX(0);
    }
  }
}

/* Animation Classes */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.animate {
  opacity: 1;
}

/* Page Transitions */
.page {
  min-height: 100vh;
  padding-top: 80px;
}

.page.hidden {
  display: none;
}

/* Loading Spinner */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

.loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--gray-200);
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  left: -150px;
  top: 100%;
  max-width: 520px;
  width: max-content;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
  border-radius: 12px;
  padding: 12px 0;
  z-index: 100;
  transition: opacity 0.2s;
  min-height: min-content;
  /* opacity: 0; */
}
.nav-menu .dropdown {
  position: relative;
}
.nav-menu .dropdown-menu li {
  padding: 0;
  margin: 0;
}
.nav-menu .dropdown-menu a {
  display: block;
  padding: 10px 24px;
  color: #222;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s;
  white-space: nowrap;
  text-wrap: wrap;
}
.nav-menu .dropdown-menu a:hover {
  background: #f5f5f5;
  color: var(--primary);
}
.nav-menu .dropdown:hover > .dropdown-menu,
.nav-menu .dropdown:focus-within > .dropdown-menu,
.nav-menu .dropdown.active > .dropdown-menu {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 1;
}
@media (max-width: 900px) {
  .nav-menu .dropdown-menu {
    position: static;
    min-width: 0;
    box-shadow: none;
    background: none;
    border-radius: 0;
    padding: 0;
    opacity: 0;
    display: none;
  }
  .nav-menu .dropdown:hover > .dropdown-menu,
  .nav-menu .dropdown:focus-within > .dropdown-menu,
  .nav-menu .dropdown.active > .dropdown-menu {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
    font-size: 0.8rem;
    opacity: 1;
  }
.nav-menu .dropdown.active > .dropdown-menu .nav-link{
  font-size: 0.8rem;
}
}

.testimonials {
  padding: 40px 0;
  background: var(--gradient-primary);
  color: var(--white);
}

.testimonials .section-title {
  color: var(--white);
}

.testimonials .section-description {
  color: rgba(255, 255, 255, 0.8);
}

.clients-section {
  /* background: #f9f9f9; */
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
  position: relative;
  font-weight: 700;
}

.clients-grid {
  margin: auto;
  max-width: 1100px;
}

.client-slide {
  display: grid;
  grid-template-columns: repeat(4, 240px);
  gap: 40px;
  width: 100%;
}

.client-card {
  background: #fffffff8;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.client-card img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  border-radius: 50%;
}

.client-card h3 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
}

.client-card p {
  font-size: 0.95rem;
  color: #555;
  font-style: italic;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .clients-grid {
    overflow-y: hidden;
    padding-left: 70px;
  }
  .client-card {
    padding: 20px 15px;
  }
}
