/* 
 * Partners Section Styles - Based on Reference Image
 * Features side-by-side organization layout with handshake icon
 */

.partners-section {
  background: linear-gradient(
      rgba(240, 240, 245, 0.9),
      rgba(240, 240, 245, 0.9)
    ),
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPgogIDxkZWZzPgogICAgPHBhdHRlcm4gaWQ9InBhdHRlcm4iIHg9IjAiIHk9IjAiIHdpZHRoPSI0MCIgaGVpZ2h0PSI0MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgcGF0dGVyblRyYW5zZm9ybT0icm90YXRlKDQ1KSI+CiAgICAgIDxsaW5lIHgxPSIwIiB5MT0iMCIgeDI9IjQwIiB5Mj0iNDAiIHN0cm9rZT0iIzFhMWY1YyIgc3Ryb2tlLXdpZHRoPSIwLjUiIHN0cm9rZS1vcGFjaXR5PSIwLjA1Ii8+CiAgICA8L3BhdHRlcm4+CiAgPC9kZWZzPgogIDxyZWN0IHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjcGF0dGVybikiLz4KPC9zdmc+");
  padding: 80px 0;
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(26, 31, 92, 0.1);
}

.partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(26, 31, 92, 0.03);
  border-radius: 0 0 0 100%;
}

.partners-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 150px;
  height: 150px;
  background: rgba(230, 181, 74, 0.03);
  border-radius: 0 100% 0 0;
}

.partners-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Organization columns */
.organization-column {
  width: 45%;
  text-align: center;
  padding: 20px;
}

/* Organization titles */
.organization-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  text-align: center;
}

/* Organization descriptions */
.organization-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
}

/* Organization logos */
.organization-logo {
  max-width: 250px;
  margin: 0 auto 20px;
  display: block;
}

/* Handshake icon in the middle */
.handshake-container {
  position: relative;
  width: 10%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.handshake-icon {
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(26, 31, 92, 0.2);
}

.handshake-icon i {
  font-size: 40px;
  color: white;
}

/* Initiative title at the bottom */
.initiative-title-container {
  text-align: center;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.initiative-launch-text {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 500;
}

.initiative-name {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.initiative-name::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1.5px;
}

/* Country flag */
.country-flag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 50px;
  /*  height: 50px; */
  border-radius: 50%;
  /*  overflow: hidden; */
  border: 2px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.country-flag img {
  width: 100%;
  /*  height: 100%;
  object-fit: cover; */
}

/* Responsive styles */
@media (max-width: 991.98px) {
  .partners-container {
    flex-direction: column;
  }

  .organization-column {
    width: 100%;
    margin-bottom: 40px;
  }

  .handshake-container {
    width: 100%;
    margin: 20px 0 40px;
  }

  .initiative-name {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {
  .partners-section {
    padding: 50px 0;
  }

  .organization-title {
    font-size: 1.5rem;
  }

  .organization-description {
    font-size: 1rem;
  }

  .handshake-icon {
    width: 80px;
    height: 80px;
  }

  .handshake-icon i {
    font-size: 30px;
  }

  .initiative-name {
    font-size: 2rem;
  }

  .initiative-launch-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .organization-title {
    font-size: 1.3rem;
  }

  .handshake-icon {
    width: 60px;
    height: 60px;
  }

  .handshake-icon i {
    font-size: 24px;
  }

  .initiative-name {
    font-size: 1.8rem;
  }

  .country-flag {
    width: 40px;
    /* height: 40px; */
  }
}
