@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
/* General Reset */

body,
html {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins" !important;
  color: #333;
  line-height: 1.6;
  background-color: #fff;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
}
.section {
  padding: 3rem 1.5rem;
  max-width: 1200px;
  margin: auto;
}
.hero {
  background: url(../images/about-us-banner.webp) center center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero h1 {
  font-size: 3.5rem;
  color: #f5a601;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
.hero p {
  font-size: 1.25rem;
  max-width: 700px;
  margin: auto;
  text-align: center;
  color: #f5a601;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* Darker overlay for better contrast */
  z-index: 1;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  align-items: center;
}
.two-col img {
  width: 100%;
  max-width: 550px;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.two-col div {
  flex: 1;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.card {
  background: white;
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  text-align: center;
  color: #0e457c ;
  font-weight: bold;
  font-size: 1.5rem;
  gap: 2rem;
}
.footer-cta {
  background: #0e457c;
  color: white;
  text-align: center;
  padding: 5rem 1.5rem;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
}
.footer-cta h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
}
.footer-cta button {
  background: white;
  color: #0e457c ;
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 9999px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.footer-cta button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}
.timeline {
  border-left: 3px solid #0e457c ;
  padding-left: 2rem;
  margin: 4rem 0;
}
.timeline-entry {
  margin-bottom: 2.5rem;
}
.timeline-entry h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: #0e457c ;
}
.timeline-entry p {
  margin: 0;
  color: #555;
}


