/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  padding: 1rem 2rem;
}
.logo {
  color: #fff;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(to right, #007bff, #00c6ff);
  color: white;
}
.hero button {
  margin-top: 20px;
  padding: 10px 20px;
  background: #fff;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

/* Sections */
section {
  padding: 60px 20px;
  text-align: center;
}
.services {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  background: linear-gradient(to right, #108bAA, #108bAA);
  padding: 40px 20px;
}
.service-card {
  background: #000;
  padding: 15px;
  width: 25%;
  border-radius: 8px;
  border: 2px solid #007bff;
  box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
  transition: all 0.3s ease;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
  border-color: #0056b3;
}

.service-card h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.1em;
}

.service-card p {
  font-size: 0.9em;
  color: #fff;
}

.features {
  background: #f4f9ff;
  padding: 60px 20px;
  color: #09293b;
}

.features h2 {
  margin-bottom: 16px;
  color: #004b80;
}

.section-intro {
  max-width: 720px;
  margin: 0 auto 36px;
  font-size: 1rem;
  color: #23506f;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1140px;
  margin: 0 auto;
}

.feature-box {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid rgba(0, 123, 255, 0.12);
  box-shadow: 0 14px 32px rgba(0, 123, 255, 0.08);
  text-align: left;
}

.feature-box h3 {
  margin-bottom: 12px;
  color: #007bff;
}

.feature-box p {
  color: #455c75;
  line-height: 1.7;
}

.service-images {
  padding: 40px 20px;
  text-align: center;
}

.image-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.image-gallery img {
  width: 300px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.image-gallery img:hover {
  transform: scale(1.05);
}

/* Contact */
.contact form {
  display: flex;
  flex-direction: column;
  width: 300px;
  margin: auto;
}
.contact input, .contact textarea, .contact button {
  margin: 10px 0;
  padding: 10px;
}

.success-message {
  background: #4caf50;
  color: white;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin: 0 auto;
  width: 300px;
  font-size: 1.1em;
}

/* About Section */
.about {
  background: #f9f9f9;
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}

.about h3 {
  color: #007bff;
  margin-top: 30px;
  margin-bottom: 15px;
  text-align: left;
}

.about-list {
  list-style: none;
  text-align: left;
}

.about-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.6;
}

.about-list li:last-child {
  border-bottom: none;
}

/* Footer */
footer {
  background: #222;
  color: #fff;
  text-align: center;
  padding: 20px;
}
