/* ================= HERO ================= */
.hero {
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(135deg, #0288d1, #00bcd4);
  color: #fff;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  animation: fadeDown 1.2s ease-in-out;
}

.hero p {
  margin-top: 15px;
  font-size: 1.2rem;
  animation: fadeUp 1.2s ease-in-out;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================= SERVICES ================= */
.services {
  padding: 80px 8%;
  background: linear-gradient(135deg, #0288d1, #00bcd4);
  text-align: center;
}

.services h2 {
  font-size: 2.5rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #fff;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 25px;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* FIXED ICON CIRCLE */
.service-card .icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0288d1;
  font-size: 28px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e3f2fd;
}

/* ================= TESTIMONIALS ================= */
.testimonials {
  padding: 80px 8%;
  background: #fff;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 700;
  color: #0d47a1;
}

.testi-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testi-card {
  background: #f9f9f9;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: floatTesti 6s ease-in-out infinite;
}

@keyframes floatTesti {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-6px); }
}

.testi-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.testi-card p {
  font-style: italic;
  margin-bottom: 15px;
  color: #444;
}

.testi-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: #0d47a1;
}

.testi-card span {
  font-size: 0.9rem;
  color: #777;
}

/* ================= FOOTER ================= */
.footer {
  background: #0d47a1;
  color: #fff;
  text-align: center;
  padding: 25px;
  margin-top: 50px;
}

.footer p {
  font-size: 0.9rem;
}
