/* Menu links and language switcher – same color everywhere */
.header-wrapper .main-menu li a,
.header-wrapper .main-menu .btn-wrapper a,
.header-wrapper .main-menu .lang-switcher-wrapper .lang-btn,
.header-wrapper .main-menu .lang-switcher-wrapper .lang-sep {
  color: #fff;
}
/* Custom styles moved from index.html <style> block */
.testimonial-items{
   box-shadow: none !important;
}
.founding-section .found-items .found-content h6{
   text-transform: none;
}

/* Partners section styles */
.for-partners__list{
   color: #fff;
   text-align: left;
   margin: 50px 0 110px 0;
}
.for-partners__list li{
   font-size: 24px;
   line-height: 1.5;
   font-weight: 600;
   list-style: disc;
   padding: 10px 0;
}

/* Optimized grid styles */
.for-partners__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 50px 0;
}

.for-partners__item {
  position: relative;
  background: rgba(255,255,255,0.10);
  border: 2px solid #fff;
  border-radius: 18px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  padding: 32px 18px 24px 18px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,0.10);
  backdrop-filter: blur(2px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.for-partners__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 30px 0 rgba(0,0,0,0.15);
}

.for-partners__check {
  position: absolute;
  top: -21px;
  left: 8px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.for-partners__text {
  width: 100%;
  display: block;
  font-weight: 700;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
}

.for-partners__bottom-text {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 32px 0 16px 0;
  text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.for-partners__btn-center {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.cmn--border, .cmn--btn, .cmn--menu{
  text-transform: none;
}

/* Responsive styles */
@media (max-width: 991px) {
  /* Mobile menu: dark text for menu links and language switcher (same color) */
  .header-wrapper .main-menu li a,
  .header-wrapper .main-menu .lang-switcher-wrapper .lang-btn,
  .header-wrapper .main-menu .lang-switcher-wrapper .lang-sep {
    color: var(--head-color, #121315);
  }
  .header-wrapper .main-menu li i {
    color: var(--head-color, #121315);
  }

  .for-partners__grid {
    grid-template-columns: 1fr;
  }
  
  .for-partners__list li {
    font-size: 20px;
  }
  
  .for-partners__text {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .for-partners__list li {
    font-size: 18px;
  }
  
  .for-partners__text {
    font-size: 18px;
  }
  
  .for-partners__bottom-text {
    font-size: 18px;
  }
} 
/* Project Details Section Styles */
.project-details-section {
  background-color: #fff;
}

.project-details-content h3 {
  color: #000;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
}

.project-details-content h4 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 500;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  margin-bottom: 1rem;
  background-color: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.benefit-item i {
  font-size: 3rem;
  color: var(--theme-one);
  margin-right: 1.5rem;
  min-width: 60px;
  text-align: center;
}

.benefit-item span {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .project-details-content h3 {
      font-size: 1.5rem;
  }
  
  .project-details-content h4 {
      font-size: 1.2rem;
  }
  
  .benefit-item {
      padding: 1rem;
  }
  
  .benefit-item i {
      font-size: 2.4rem;
      margin-right: 1rem;
      min-width: 48px;
  }
  
  .benefit-item span {
      font-size: 1.2rem;
  }
} 