@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
  --primary-color: #4a91cd;
  --secondary-color: #e9edf5;
  --dark-color: #2f190b;
  --text-color: #333;
  --border-color: #ddd;
  --footer-color: #f7f7f9;
  --heading-underline-color: #4a91cd;
  --blue-light: #17ace4;
  --blue-dark: #1976d2;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-sm-4 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-sm-6 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-sm-8 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-md-4 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

.col-md-6 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .col-sm-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
}

@media (min-width: 768px) {
  .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Navbar */
.navbar {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  position: relative;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  padding: 5px 0;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  max-width: 100%;
}

.navbar-toggler {
  display: none;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 10px;
  position: relative;
  z-index: 2;
}

.navbar-toggler img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.navbar-toggler.active img {
  transform: rotate(90deg);
}

.navbar-collapse {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.navbar-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin-left: 10px;
  position: relative;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  padding: 10px 15px;
  display: block;
  transition: color 0.3s;
  font-size: 14px;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-item.active .nav-link {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

/* Home banner */
.home-banner {
  width: 100%;
  height: 400px;
  background-position: center;
  background-size: cover;
  position: relative;
}

/* Common sections */
.homeAbout_wrapper,
.overview_wrapper {
  padding: 50px 0;
}

.overview_wrapper__lightB {
  background-color: #fff;
}

.overview_wrapper__mission {
  background-color: var(--secondary-color);
  padding: 50px 0;
}

.heading_common {
  font-size: 32px;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  color: var(--dark-color);
}

.heading_common::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--heading-underline-color);
}

/* Our Efforts Section */
.our_efforts__card {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.our_efforts__card h5 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark-color);
  position: relative;
  padding-left: 15px;
}

.our_efforts__card h5::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background-color: var(--primary-color);
  margin: auto;
  height: 80%;
}

.our_efforts__card p {
  text-align: justify;
}

/* Mission vision cards */
.mv_card {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Model of Change */
.model_of_changeWrapper img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

/* Key Results Table */
.key-results-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 14px;
}

.key-results-table th,
.key-results-table td {
  padding: 10px 15px;
  text-align: center;
  border: 1px solid #fff;
}

.key-results-table th {
  background-color: #f8971d;
  color: #fff;
}

.key-results-table tr:nth-child(odd) td {
  background-color: var(--blue-light);
  color: #fff;
}

.key-results-table tr:nth-child(even) td {
  background-color: #45c1f4;
  color: #fff;
}

.key-results-table tr:last-child td {
  font-weight: bold;
}

/* Leadership Message Cards */
.mfl_card {
  background-color: #fff;
  padding: 30px;
  margin-bottom: 40px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.mfl_card h6 {
  font-size: 22px;
  margin-bottom: 20px;
  color: var(--dark-color);
  font-weight: 600;
}

.mfl_card p {
  margin-bottom: 20px;
  text-align: justify;
}

.mv_card__img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.mv_card__img img {
  max-width: 100%;
  height: auto;
  border: 5px solid var(--secondary-color);
}

/* Team Section */
.team_card__wrapper {
  display: flex;
  flex-wrap: wrap;
}

.flex_col {
  display: flex;
  margin-bottom: 30px;
}

.team_card {
  background-color: #fff;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.team_card__img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  display: block;
}

.team_card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team_card .name {
  font-size: 20px;
  margin-bottom: 10px;
  text-align: center;
}

.team_card .name a {
  color: var(--dark-color);
  text-decoration: none;
}

.team_card .post {
  font-size: 14px;
  margin-bottom: 15px;
  text-align: center;
  color: var(--dark-color);
  font-weight: normal;
}

.team_card .post span {
  display: block;
  margin-bottom: 5px;
  color: var(--primary-color);
}

.team_card .about {
  text-align: center;
  font-size: 14px;
}

/* Partners Section */
.partners_card__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.partners_card {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
  width: 100%;
  text-decoration: none;
}

.partners_card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Advisory Board */
.partners_cardadv {
  margin-bottom: 30px;
}

.abm_card {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.abm_card h5 {
  margin: 15px 0 10px;
  color: var(--dark-color);
  font-size: 18px;
}

.abm_card p {
  font-size: 14px;
  color: #666;
}

/* Contact section */
.contact_us__wrapper {
  padding: 50px 0;
  background-color: var(--secondary-color);
}

.contact_us__info {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.contact_us__card {
  width: 100%;
}

.contact_us__cardData {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  color: var(--text-color);
  padding: 25px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.contact_us__cardData:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  color: var(--text-color);
}

.contact_us__icon {
  background: var(--secondary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact_us__icon img {
  width: 24px;
  height: 24px;
}

.contact_us__content {
  flex: 1;
}

.contact_us__content h5 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-color);
}

.contact_us__content p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-color);
}

@media (min-width: 576px) {
  .contact_us__info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .contact_us__info {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .contact_us__wrapper {
    padding: 30px 0;
  }

  .contact_us__info {
    margin-top: 20px;
    gap: 15px;
  }

  .contact_us__cardData {
    padding: 20px;
  }

  .contact_us__icon {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .contact_us__icon img {
    width: 20px;
    height: 20px;
  }

  .contact_us__content h5 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .contact_us__content p {
    font-size: 13px;
  }
}

/* Footer */
.footer_wrapper {
  background-color: var(--footer-color);
  padding: 30px 0;
}

.footer_wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin-bottom: 20px;
}

.footer_wrapper ul li {
  margin: 5px 10px;
}

.footer_wrapper ul li a {
  color: var(--text-color);
  text-decoration: none;
}

.footer_wrapper ul li a:hover {
  color: var(--primary-color);
}

.copyright {
  text-align: center;
  font-size: 14px;
}

@media (max-width: 991px) {
  .navbar .container {
    position: relative;
  }

  .navbar-toggler {
    display: block;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar-brand {
    margin-right: auto;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: #fff;
    transition: right 0.3s ease;
    z-index: 1;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  }

  .navbar-collapse.active {
    right: 0;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    padding: 80px 20px 20px;
    background: #fff;
  }

  .nav-item {
    margin: 0;
    width: 100%;
  }

  .nav-link {
    padding: 12px 20px;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }

  body.nav-open {
    overflow: hidden;
  }
}

@media (max-width: 576px) {
  .navbar-brand img {
    height: 40px;
  }
}
