
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}


.hero {
 background-color: rgb(46, 111, 168);
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
}

.about-intro {
  padding: 80px 20px;
  text-align: center;
  margin-left:180px;
  margin-right:180px;
  border-radius: 30px;
  background-color: #b1d4d9;

}

.about-content {
  max-width: 900px;
  margin: auto;


}

.about-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}


.features {
  background: #f9f9f9;
  padding: 60px 20px;
}

.features h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.feature-box {
  background: white;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
}

.feature-box img {
  width: 60px;
  margin-bottom: 15px;
}

.feature-box h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}


.mission-vision {
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

.mission, .vision {
  background: #b1d4d9;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
}

.mission h2, .vision h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}


.cta-section {
  background:  rgb(194, 72, 113);
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-left: 180px;
  margin-right: 180px;
  border-radius: 30px;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: #e91e63;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
}

.cta-btn:hover {
  background: #c2185b;
  color: white;
}

.footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 2rem 0;
  font-family: Arial, sans-serif;
 
}

.footer-content {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h4 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #ecf0f1;
}

.footer-links {
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
display:flex;
gap: 2rem;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.footer-links li a:hover {
  color: #677e96;
}

.footer-column a {
  text-decoration: none;
  color: #ecf0f1;
}

.footer-column a:hover {
  color: #677e96;
}

.footer-bottom {
  text-align: center;
  background-color: #34495e;
  padding: 1rem;
  margin-top: 2rem;
}

.footer-bottom p {
  font-size: 1rem;
  color: #bdc3c7;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}
nav ul li a:hover {
  background-color: #3f4f60;
}
nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  transition: background 0.3s;
}
.header {
  background-color: #2c3e50;
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}
.header h1 {
  font-size: 2.5rem;
}

.hero-banner {
  background-color:  rgb(194, 72, 113);
  padding: 100px 20px;
  color: white;
  text-align: center;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}