* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}
header {
  background-color: #2d3e50;
  color: #fff;
  padding: 20px 0;
  text-align: center;
}
nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  background: #1f2a36;
}
nav ul li {
  margin: 0 15px;
}
nav ul li a {
  color: white;
  text-decoration: none;
  padding: 15px 0;
  display: inline-block;
}
nav ul li a:hover {
  color: #00d1b2;
}
.hero {
  background: url('images/Gallary2.png') no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-shadow: 2px 2px 4px #000;
}
.hero h1 {
  font-size: 3em;
}
.container {
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
}
.section {
  margin-bottom: 40px;
}
.services, .about, .contact {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.services-list li {
  list-style: none;
  margin-bottom: 15px;
  font-size: 18px;
}
.services-list li i {
  color: #2d3e50;
  margin-right: 10px;
}
.gallery img {
  width: 100%;
  max-width: 300px;
  margin: 10px;
  border-radius: 8px;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  margin-top: 10px;
  background-color: #2d3e50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
footer {
  background-color: #1f2a36;
  color: white;
  text-align: center;
  padding: 20px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

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

.service-icon {
  font-size: 4.5rem;
  margin-bottom: 15px;
  color: #2e8b57; /* greenish accent */
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2d3e50;
  margin-top: 0;
}

.about-content p {
  margin-bottom: 18px;
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

.about-content strong {
  color: #2e8b57;
}

.about blockquote {
  border-left: 4px solid #2e8b57;
  padding-left: 15px;
  font-style: italic;
  color: #555;
  margin-top: 25px;
  font-size: 1.15rem;
  background-color: #f0f9f5;
  border-radius: 5px;
}
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.value-item {
  background: #f0f9f5;
  padding: 20px 25px;
  border-left: 5px solid #2e8b57;
  border-radius: 6px;
  flex: 1 1 280px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  color: #2d3e50;
}

.value-item h3 {
  margin-bottom: 10px;
  color: #2e8b57;
  font-weight: 700;
}

.value-item p {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}
.contact-note {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #2d3e50;
  font-style: italic;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: white;
  max-width: 500px;
  margin: auto;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-card form input,
.contact-card form textarea {
  width: 100%;
  padding: 12px 15px;
  margin-top: 12px;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-card form input:focus,
.contact-card form textarea:focus {
  border-color: #2e8b57;
  outline: none;
}

.contact-card form button {
  margin-top: 18px;
  background-color: #2e8b57;
  color: white;
  font-weight: 600;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  width: 100%;
}

.contact-card form button:hover {
  background-color: #256443;
}

