/* ================== HERO SECTION ================== */
.hero {
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(135deg, #e0f7f5, #fff7f0); /* teal + peach gradient */
  margin-top: 70px;
}
.hero-content {
  background: #ffffff;
  padding: 50px;
  max-width: 800px;
  color: #222;
  margin: auto;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}
.hero-content2 {
  color: #222;
}
.hero-content:hover {
  transform: translateY(-5px);
}
.hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #00bfa6; /* teal */
  margin-bottom: 1rem;
}
.hero-title .highlight {
  color: #ff6b6b; /* coral */
}
.hero-desc {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}
.hero-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #00bfa6; /* teal */
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.3s, transform 0.2s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,191,166,0.25);
}
.hero-btn:hover {
  background: #ff6b6b; /* coral */
  color: #fff;
  transform: translateY(-3px);
}

/* ================== SERVICE BUTTONS ================== */
.hero-content2 {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.service-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}
.service-btn {
  display: inline-block;
  padding: 14px 26px;
  background: white;
  color: #111;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #00bfa6; /* teal border */
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.service-btn:hover {
  background: #00bfa6; /* teal */
  color: #fff;
  transform: scale(1.05);
}

/* ================== UNIQUE SECTION ================== */
.unique-section {
  background: #f9f9f9;
  padding: 80px 20px;
  text-align: center;
}
.unique-content {
  max-width: 900px;
  margin: auto;
  color: #333;
}
.unique-content h2 {
  font-size: 2.4rem;
  margin-bottom: 25px;
  color: #00bfa6; /* teal */
}
.unique-content p {
  font-size: 1.15rem;
  margin-bottom: 30px;
}
.unique-content ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.unique-content li {
  margin-bottom: 14px;
  padding-left: 28px;
  position: relative;
  font-size: 1.05rem;
}
.unique-content li::before {
  content: "✔";
  color: #ff6b6b; /* coral checkmark */
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ================== TESTIMONIALS ================== */
.testimonials {
  background: linear-gradient(135deg, #fff7f0, #e0f7f5); /* peach + teal */
  padding: 80px 20px;
  text-align: center;
}
.testimonials h2 {
  font-size: 2.4rem;
  margin-bottom: 40px;
  color: #00bfa6; /* teal */
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: auto;
}
.testimonial {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}
.testimonial:hover {
  transform: translateY(-5px);
}
.testimonial p {
  font-style: italic;
  margin-bottom: 15px;
  color: #444;
}
.testimonial h4 {
  font-weight: bold;
  color: #222;
}

/* ================== CLIENTS / BRANDS ================== */
.clients {
  background: #f8f9fa;
  padding: 60px 20px;
  text-align: center;
}
.clients h2 {
  font-size: 2.2rem;
  margin-bottom: 35px;
  color: #ff6b6b; /* coral */
}
.client-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.client-logos img {
  max-width: 140px;
  height: auto;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: all 0.3s ease-in-out;
}
.client-logos img:hover {
  opacity: 1;
  filter: grayscale(0);
}

/* ================== OUR SERVICES ================== */
.services-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}
.services-section h2 {
  font-size: 2.4rem;
  margin-bottom: 50px;
  color: #00bfa6; /* teal */
  font-weight: 700;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.service-card {
  background: #f9fafb;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
  border: 2px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  border-color: #ffb347; /* peach */
  background: #fff7f0;
}
.service-card i {
  font-size: 3rem;
  color: #00bfa6; /* teal icons */
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #222;
}
.service-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}
.service-card a {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #ff6b6b; /* coral button */
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.service-card a:hover {
  background: #00bfa6; /* teal */
  color: #fff;
}

/* ================== RESPONSIVENESS ================== */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-content {
    padding: 30px;
  }
  .hero-content2 {
    padding: 40px 10px;
  }
  .service-btn {
    width: 100%;
    text-align: center;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}
