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

body {
  font-family: 'Inter', sans-serif;
  background: #f4f7fc;
  color: #1e2a3e;
  overflow-x: hidden;
}

:root {
  --primary-dark: #0b2b5e;
  --primary-accent: #e97132;
  --primary-light: #fdf2e9;
  --gray-soft: #f8fafe;
  --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.08);
  --border-glass: 1px solid rgba(255, 255, 255, 0.3);
}

/* Custom scroll */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #e9edf2;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-accent);
  border-radius: 10px;
}

/* Hero with glassmorphism */
.hero {
  background: linear-gradient(125deg, var(--primary-dark) 0%, #1e4a6e 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 24px 120px;
  border-radius: 0 0 48px 48px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(233, 113, 50, 0.25), transparent);
  border-radius: 50%;
  animation: float 8s infinite ease-in-out;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 217, 102, 0.2), transparent);
  border-radius: 50%;
  animation: float 10s infinite ease-in-out reverse;
}
@keyframes float {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.05);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}
.hero-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 2;
}
.hero-left {
  flex: 1.2;
  min-width: 280px;
  backdrop-filter: blur(2px);
}
.hero-left h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffe6b3, #ffb347);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-left p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 32px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: left;
}
.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffd966;
}
.stat-label {
  font-size: 0.8rem;
  opacity: 0.8;
}
.cta-button {
  background: var(--primary-accent);
  color: white;
  border: none;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.cta-button:hover {
  background: #c4511a;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}
.hero-right {
  flex: 0.9;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border-radius: 40px;
  padding: 40px 32px;
  text-align: center;
  border: var(--border-glass);
  box-shadow: var(--shadow-glass);
}
.hero-right i {
  font-size: 3rem;
  color: #ffd966;
  margin-bottom: 16px;
}
.hero-right h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: white;
}

/* Clients logos */
.clients-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 24px;
  text-align: center;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 60%;
  height: 3px;
  background: var(--primary-accent);
  border-radius: 3px;
}
.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 30px;
  margin-top: 48px;
}
.logo-card {
  background: white;
  border-radius: 28px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
  border: 1px solid #e9edf2;
  cursor: default;
  padding-bottom: 15px;
}
.logo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-accent);
}
.logo-card i {
  font-size: 2.8rem;
  color: var(--primary-accent);
  margin-bottom: 14px;
}
.logo-card img {
  height: 50px;
  width: 120px;
  color: var(--primary-accent);
  margin-bottom: 11px;
  margin-top: 14px;
}
.logo-card span {
  font-weight: 600;
  color: var(--primary-dark);
  display: block;
  font-size: 1rem;
}

/* Benefits */
.benefits-section {
  background: white;
  padding: 80px 24px;
  border-radius: 48px 48px 0 0;
  margin-top: 40px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.02);
}
.benefits-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 35px;
}
.benefit-card {
  background: var(--gray-soft);
  border-radius: 32px;
  padding: 32px 28px;
  transition: 0.25s;
  border: 1px solid #eff3f8;
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-accent), #ffd966);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.benefit-card:hover::before {
  transform: scaleX(1);
}
.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(233, 113, 50, 0.3);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
}
.benefit-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.benefit-icon i {
  font-size: 30px;
  color: var(--primary-accent);
}
.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}
.benefit-card p {
  color: #4a5b7a;
  line-height: 1.5;
}

/* ===== TESTIMONIALS SLIDER (NEW) ===== */
.testimonials-section {
  max-width: 1200px;
  margin: 60px auto 40px;
  padding: 0 24px;
  text-align: center;
}
.testimonial-slider-container {
  position: relative;
  background: white;
  border-radius: 48px;
  padding: 40px 30px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.05);
  margin-top: 40px;
  overflow: hidden;
}
.testimonial-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial-card {
  flex: 0 0 100%;
  padding: 20px;
  text-align: center;
}
.stars i {
  color: #ffb800;
  font-size: 1.2rem;
  margin: 0 2px;
}
.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.5;
  color: #1e2a3e;
  margin: 20px 0;
  font-style: italic;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}
.client-name {
  font-weight: 700;
  color: var(--primary-dark);
  margin-top: 16px;
}
.client-title {
  font-size: 0.85rem;
  color: #5b6e8c;
}
/* navigation arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #e9edf2;
  border-radius: 60px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.2s;
}
.slider-arrow:hover {
  background: var(--primary-accent);
  color: white;
  border-color: var(--primary-accent);
}
.arrow-prev {
  left: 20px;
}
.arrow-next {
  right: 20px;
}
/* dots */
.dots-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.dot {
  width: 10px;
  height: 10px;
  background: #cbd5e1;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.2s;
}
.dot.active {
  width: 28px;
  background: var(--primary-accent);
}

/* Footer */
.footer {
  background: var(--primary-dark);
  color: white;
  padding: 60px 24px 30px;
  border-radius: 48px 48px 0 0;
  margin-top: 80px;
}
.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
}
.footer-col {
  flex: 1;
  min-width: 180px;
}
.footer-col h4 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}
.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 1.8;
  transition: 0.2s;
}
.footer-col a:hover {
  color: var(--primary-accent);
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.social-links a {
  background: rgba(255, 255, 255, 0.1);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.social-links a:hover {
  background: var(--primary-accent);
  transform: translateY(-3px);
}
.copyright {
  text-align: center;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
}

/* Animation */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .hero-left h1 {
    font-size: 2.2rem;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
  }
  .arrow-prev {
    left: 5px;
  }
  .arrow-next {
    right: 5px;
  }
}
