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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

/* Navbar styles handled by navbar.css */

/* Hero */
.hero {
  background: url('./Images/8276b1976566f4f7e57ade0033768ca2.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 160px 1rem 10rem;
  /* Increased top padding */
  /* margin-top: 0.6px; Removed */
  /* opacity: 70%; */
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #31c0e4;
  background-color: #22222281;
  border: none;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
  color: #fafcfc;
  background-color: #22222293;
  border: none;
}

/* Services */
.services {
  padding: 4rem 2rem;
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1d4e51;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.service-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: #289999;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #555;
}

/* Testimonials */
.testimonials {
  background: #15918f;
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #E8C547;
}

.testimonials blockquote {
  font-style: italic;
  margin: 1.5rem auto;
  max-width: 700px;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 8px;
}

/* Footer */
footer {
  background: #f4f6f7;
  color: #0d3533;
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
}