.section-top.slanted {
  background: #6a11cb;
  color: white;
  padding: 100px 20px;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}
.wave-divider svg path {
  animation: waveMove 4s ease-in-out infinite alternate;
}

@keyframes waveMove {
  0% {
    d: path("M0,0 C300,100 900,0 1200,100 L1200,0 L0,0 Z");
  }
  100% {
    d: path("M0,0 C400,80 800,20 1200,90 L1200,0 L0,0 Z");
  }
}
.zigzag-divider {
  line-height: 0;
}

.zigzag-divider svg {
  display: block;
  width: 100%;
  height: 40px;
}

.custom-shape-divider-top-1753792934 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1753792934 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 150px;
}

.custom-shape-divider-top-1753792934 .shape-fill {
  fill: #198754;
}

.section-top {
  background: #198754;
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.shape-divider {
  line-height: 0;
  position: relative;
  top: -1px; /* to eliminate gap */
}

.shape-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}

.section-bottom {
  background: #4a90e2;
  padding: 100px 20px;
  text-align: center;
}

.arc-divider {
  line-height: 0;
  position: relative;
  top: -1px;
}

.arc-divider svg {
  display: block;
  width: 100%;
  height: 100px;
}
.zigzag-divider2 {
  line-height: 0;
}

.zigzag-divider2 svg {
  display: block;
  width: 100%;
  height: 40px;
  transform: rotate(180deg); /* <-- Flips it vertically */
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/*
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
  background: #f4f4f4;
  line-height: 1.6;
}*/

/* Hero Section */
.hero {
  background: linear-gradient(to right, #4bb870, #1d976c);
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeInDown 1s ease-in-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.btn {
  background: white;
  color: #1d976c;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  margin-top: 10px;
}

.btn:hover {
  background: #e0f7ef;
}

/* Wave Shape */
.wave {
  position: relative;
  height: 100px;
  background: #f4f4f4;
  clip-path: ellipse(100% 100% at 50% 0%);
  margin-top: -1px;
}

/* Cards Section */
.cards-section {
  padding: 60px 20px;
  text-align: center;
  background: white;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: #f9f9f9;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

/* Contact Section */
.contact-section {
  background: #e9f5ee;
  padding: 60px 20px;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* Footer */
.footer {
  background: #198754;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
