/* .services {
  padding: 120px 60px;
  text-align: center;
}

.service-cards {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #fff;
  padding: 25px;
  flex: 1;
  min-width: 250px;
  max-width: 280px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
} */
.services {
  padding: 100px 60px;
  background: #f9f9f9;
  text-align: center;
}

.services h2 {
  font-size: 2.2em;
  margin-bottom: 10px;
  color: #00695c;
}

.services .intro-text {
  font-size: 1.1em;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 280px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.card i {
  font-size: 30px;
  color: #009688;
  margin-bottom: 10px;
}

.card h3 {
  color: #333;
  margin-bottom: 10px;
}

.card p {
  font-size: 0.95em;
  color: #555;
  line-height: 1.6;
}
.cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 100px 60px;
  background: linear-gradient(to right, #e0f2f1, #f9f9f9);
  border-top: 3px solid #009688;
}

.cta-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
}

.cta-content h2 {
  font-size: 2em;
  color: #004d40;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 25px;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.cta .btn {
  background: #009688;
  color: #fff;
  padding: 12px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta .btn:hover {
  background: #00796b;
}

.cta .btn.secondary {
  background: transparent;
  border: 2px solid #009688;
  color: #009688;
}

.cta .btn.secondary:hover {
  background: #009688;
  color: #fff;
}

.cta-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.cta-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
/* General Page Styling */
body {
  font-family: 'Poppins', Arial, sans-serif;
  background-color: #f8fafc;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  background-color: #0f766e;
  color: #fff;
  padding: 40px 20px;
}

header h1 {
  margin: 0;
  font-size: 2em;
  letter-spacing: 1px;
}

header p {
  margin-top: 10px;
  font-style: italic;
}

.pricing-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
}

.pricing-section h2 {
  text-align: center;
  color: #064635;
  margin-bottom: 15px;
  border-bottom: 3px solid #0f766e;
  display: inline-block;
  padding-bottom: 5px;
}

/* Table Styling */
.table-container {
  overflow-x: auto; /* Enables horizontal scroll on mobile */
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

th, td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #ddd;
}

th {
  background-color: #0f766e;
  color: white;
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 0.5px;
}

tr:nth-child(even) {
  background-color: #f9fafb;
}

tr:hover {
  background-color: #e6fffa;
}

/* Responsive Design */
@media (max-width: 768px) {
  header h1 {
    font-size: 1.5em;
  }

  th, td {
    font-size: 0.9em;
    padding: 10px;
  }

  .pricing-section {
    padding: 0 10px;
  }

  table {
    min-width: 500px;
  }
}
.footer {
  background: #0b3c49;
  color: #fff;
  padding: 40px 20px 10px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-column h3 {
  margin-bottom: 15px;
  color: #00d1b2;
}

.footer-column p {
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.social-icons a {
  color: #fff;
  margin-right: 10px;
  font-size: 20px;
}

.social-icons a:hover {
  color: #00d1b2;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #ffffff44;
  padding-top: 10px;
  font-size: 14px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
