* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden; /* Disable horizontal scrolling */
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Hero Section */
.hero {
  background: #4E2A84;
  color: white;
  text-align: center;
  padding: 10px 0;
}





.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 1.2rem;
}

/* About Section */
.about-section {
  background: #f9f9f9;
  padding: 40px 20px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-content {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.about-image {
  flex: 1;
  max-width: 400px;
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  color: #4E2A84;
  margin-bottom: 10px;
}

.about-text p {
  margin-bottom: 20px;
}

.highlights {
  display: flex;
  gap: 15px;
}

.highlight-item {
  background: #4E2A84;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 0.9rem;
}

/* Mission & Vision Section */
.mission-vision {
  background: white;
  padding: 40px 20px;
}

.mission-vision .container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center; /* Centers cards horizontally */
}

.mission-vision .card {
  background-color: #F8F9FA; /* Light gray for card background */
  border: 1px solid #E0E0E0; /* Subtle border */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Slight shadow for depth */
  padding: 20px;
  text-align: center;
  flex: 1 1 calc(50% - 40px); /* Two cards per row on larger screens */
  max-width: 400px; /* Limit maximum width for better readability */
  transition: transform 0.3s ease;
}

.mission-vision .card:hover {
  transform: translateY(-5px); /* Slight lift on hover */
}

.mission-vision .card h3 {
  color: #4E2A84; /* Highlight color for headings */
  font-size: 20px;
  margin-bottom: 15px;
}

.mission-vision .card p {
  color: #6C6C6C; /* Muted text color for paragraphs */
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .mission-vision .card {
    flex: 1 1 100%; /* One card per row on smaller screens */
    margin: 10px 0;
  }
}

@media (max-width: 480px) {
  .mission-vision {
    padding: 20px 10px; /* Reduce padding for smaller devices */
  }

  .mission-vision .card h3 {
    font-size: 18px; /* Slightly smaller font size for headings */
  }

  .mission-vision .card p {
    font-size: 14px; /* Slightly smaller font size for paragraphs */
  }
}




.card {
  flex: 1;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
  color: #4E2A84;
}

.card p {
  font-size: 0.9rem;
}

/* Call to Action Section */
.cta {
  text-align: center;
  background: #5B3B99;
  color: white;
  padding: 20px 10px;
}

.cta h2 {
  margin-bottom: 10px;
}

.cta p {
  margin-bottom: 20px;
}

.cta-button {
  background: white;
  color: #4E2A84;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
  background: #4E2A84;
  color: white;
}