/* 
 * Redesigned About Section Styles
 * Modern design to highlight the initiative's importance
 */

/* About section container */
.about-section {
  background-color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.about-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(230, 181, 74, 0.1);
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(26, 31, 92, 0.05);
  z-index: 0;
}

/* Section title with modern styling */
.about-section .section-title {
  margin-bottom: 60px;
}

.about-section .section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.about-section .title-line {
  width: 100px;
  height: 4px;
  background: var(--accent-color);
  margin: 0 auto;
  border-radius: 2px;
}

/* Initiative highlight box */
.initiative-highlight {
  background: linear-gradient(135deg, var(--primary-color) 0%, #2a307a 100%);
  border-radius: 15px;
  padding: 40px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(26, 31, 92, 0.2);
  margin-bottom: 30px;
  z-index: 1;
}

.initiative-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: rgba(230, 181, 74, 0.2);
  border-radius: 0 0 0 100%;
  z-index: -1;
}

/* Large number display */
.initiative-number {
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
  font-family: "Cairo", sans-serif;
  display: block;
  text-align: center;
}

/* Initiative title */
.initiative-title {
   color: white !important;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.initiative-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1.5px;
}

/* Initiative description */
.initiative-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: center;
}

/* About content with modern styling */
.about-content {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  border-right: 5px solid var(--accent-color);
  height: 100%;
}

.about-content .lead {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  font-weight: 600;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Country flags with improved styling */
.country-flags {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.flag-container {
  text-align: center;
  transition: all 0.3s ease;
}

.flag-container:hover {
  transform: translateY(-5px);
}

.flag-img {
  width: 60px;
  height: 60px;
 /*   object-fit: cover;*/
  border-radius: 50%;
  border: 3px solid var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.flag-img:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.flag-name {
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 600;
}

/* Organizers section with modern styling */
.organizers {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.organizers-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 25px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.organizers-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 1.5px;
}

.organizers-logos {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.logo-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.logo-item:hover {
  transform: translateY(-5px);
  border-bottom: 3px solid var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.logo-item img {
  max-height: 80px;
  margin-bottom: 15px;
}

.logo-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.logo-item p {
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #6c757d;
}

/* CTA button in the initiative highlight */
.initiative-cta {
  text-align: center;
  margin-top: 25px;
}

.btn-initiative {
  background: var(--accent-color);
  color: var(--primary-color);
  font-weight: 700;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1.1rem;
  border: none;
  box-shadow: 0 5px 15px rgba(230, 181, 74, 0.3);
  transition: all 0.3s ease;
}

.btn-initiative:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(230, 181, 74, 0.4);
  background: var(--accent-color);
  color: var(--primary-color);
}

/* Responsive styles */
@media (max-width: 1199.98px) {
  .initiative-number {
    font-size: 4.5rem;
  }
  
  .initiative-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 991.98px) {
  .initiative-number {
    font-size: 4rem;
  }
  
  .initiative-title {
    font-size: 1.5rem;
  }
  
  .about-section .section-title h2 {
    font-size: 2.5rem;
  }
  
  .initiative-highlight {
    text-align: center;
    padding: 30px;
  }
}

@media (max-width: 767.98px) {
  .initiative-number {
    font-size: 3.5rem;
  }
  
  .initiative-title {
    font-size: 1.4rem;
  }
  
  .about-section .section-title h2 {
    font-size: 2.2rem;
  }
  
  .initiative-highlight {
        text-align: center;
    padding: 25px;
    margin-bottom: 25px;
  }
  
  .about-content {
    margin-bottom: 30px;
  }
}

@media (max-width: 575.98px) {
  .initiative-number {
    font-size: 3rem;
  }
  
  .initiative-title {
    font-size: 1.3rem;
  }
  
  .about-section .section-title h2 {
    font-size: 2rem;
  }
  
  .initiative-highlight {
        text-align: center;
    padding: 20px;
  }
  
  .country-flags {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
