.hero-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: background-image 1s ease-in-out; /* smooth image fade */
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-content p {
  margin-top: 10px;
  font-size: 1.1rem;
}

.hero-content .btn {
  margin-top: 20px;
  padding: 10px 25px;
  font-size: 1rem;
}
/* ===== PORTFOLIO SECTION ===== */
.portfolio-section {
  background: #fff;
}

.section-title span {
  color: #ff2e63; /* same pinkish color from screenshot */
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
}

.section-subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.portfolio-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
  height: 250px;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: linear-gradient(to bottom right, #e9f0ff, #f7f3ff);
  padding: 80px 0;
}

.testimonials-section .section-title {
  font-weight: 800;
  font-size: 1.8rem;
  color: #002d5b;
  text-transform: uppercase;
}

.testimonials-section .section-subtitle {
  color: #555;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.client-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 4px solid #004aad;
  object-fit: cover;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: #333;
  font-size: 1rem;
  margin-bottom: 25px;
  line-height: 1.6;
  position: relative;
}

.testimonial-text .quote {
  color: #6ca3ff;
  font-size: 1.8rem;
  font-weight: bold;
}

.client-name {
  font-weight: 700;
  color: #002d5b;
}

.client-role {
  color: #777;
  font-size: 0.95rem;
}
/* ===== CASE STUDIES SECTION ===== */
/* .case-studies-section {
  background: linear-gradient(135deg, #eaf3ff, #fdefff);
  padding: 80px 0;
}

.case-title {
  font-weight: 800;
  color: #ff4b4b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-card {
  border-radius: 20px;
  padding: 35px 25px;
  text-align: left;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  min-height: 250px;
}

.case-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gradient-light {
  background: linear-gradient(145deg, #f8fcff, #e9f6ff);
} */

/* .gradient-blue {
  background: linear-gradient(145deg, #0090ff, #006bff);
  color: white;
} */
/* .top {
  color: rgb(72, 124, 192);
}
.case-heading {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.case-heading p {
  color: #1d1bad;
}
.highlight {
  margin-top: 10px;
  font-weight: 600;
  color: #0066ff;
}

.gradient-blue .highlight {
  color: #fff;
  opacity: 0.9;
}

.case-card .btn {
  background: #007bff;
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
}

.case-card .btn:hover {
  background: #0056d2;
} */
/* ===== BRAND PARTNERS SECTION ===== */
.brand-partners {
  background: linear-gradient(135deg, #f2f8ff, #fff3fb);
  overflow: hidden;
}

.brand-title {
  font-weight: 800;
  color: #ff4b4b;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logo-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-slide-track {
  display: flex;
  width: calc(250px * 12);
  animation: scroll 25s linear infinite;
}

.slide {
  height: 100px;
  width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.slide img {
  height: 70px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.slide img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Infinite scrolling animation */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
