/* Reset and global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

/* About Banner Styles */
.about-banner {
  position: relative;
  background-color: #e9f7df; /* Light green background */
  padding: 4rem 2rem; /* Adjust padding for spacing */
  text-align: center;
  margin-top: var(--header-height); /* Avoid overlapping with navbar */
}

.banner-content h1 {
  font-size: 2.5rem;
  color: #356a35; /* Primary color */
  font-weight: 700;
  margin-bottom: 1rem;
}

.banner-content p {
  font-size: 1.25rem;
  color: #3d3d3d; /* Neutral dark */
}

/* Responsive Styles */
@media (max-width: 768px) {
  .banner-content h1 {
    font-size: 2rem;
  }

  .banner-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .banner-content h1 {
    font-size: 1.75rem;
  }

  .banner-content p {
    font-size: 0.875rem;
  }
}

/* ---------------------about us section ----------------------- */

/* --------------------------achievements ------------------------- */
/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

/* Commitment Section Styles */
.commitment-section {
  padding: 4rem 2rem;
  background-color: #f9f9f9;
  text-align: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px; /* Ensures columns adjust in smaller viewports */
  text-align: center;
}

.stat-item h3 {
  font-size: 2.5rem;
  color: #6a1b9a; /* Purple color */
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    margin-bottom: 2rem;
  }
}

/* ------------------------------------eveready---------------------------- */
/* Reset and Global Styles */
/* Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
}

/* Partner Section Styles */
.partner-section {
  padding: 4rem 2rem;
  background-color: #fff; /* Set the background color to white */
}

.partner-container {
  max-width: 1400px; /* Increased the width of the container */
  margin: 0 auto;
}

.text-image-wrapper {
  display: flex;
  align-items: center;
  background-color: #fff; /* Background for the container */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden; /* Ensures rounded corners affect children */
}

.partner-text {
  flex: 1;
  padding: 2rem;
  background-color: #fff; /* Set the background color to white */
}

.partner-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 1rem;
}

.partner-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1.5rem;
}

.partner-text .btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #208245; /* Purple button */
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
}

.partner-text .btn:hover {
  background-color: #500a70; /* Darker purple */
}

.partner-image {
  flex: 1;
}

.partner-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .text-image-wrapper {
    flex-direction: column;
  }

  .partner-text {
    text-align: center;
  }

  .partner-image {
    order: -1; /* Image appears first */
  }
}

/* ---------------------------------------------------------new about */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.5;
}

.about-section {
  padding: 4rem 1rem;
  background-color: rgb(249 250 251);
}

.about-container {
  max-width: 1280px;
  margin: 0 auto;
}

.about-image {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-content {
  margin-top: 2rem;
}

.about-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: rgb(17 24 39);
  margin-bottom: 1.5rem;
  text-align: center;
}

.about-text {
  font-size: 1.125rem;
  color: rgb(55 65 81);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.services-list {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.check-icon {
  color: rgb(34 197 94);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.service-text {
  color: rgb(55 65 81);
}

@media (min-width: 1024px) {
  .services-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
