/* =========================
   BENEFITS / SDGs SECTION
========================= */
#Benefits .service-card-2 {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#Benefits .service-card-2:hover { transform: translateY(-10px); }

#Benefits .service-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
#Benefits .sdg-icon {
    width: 50px;
    height: 50px;
    background: #00b894;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 22px;
}

/* Responsive */
@media (max-width: 1200px) { #Benefits .col-lg-3 { flex: 0 0 50%; max-width: 50%; } }
@media (max-width: 768px) { #Benefits .col-sm-6 { flex: 0 0 100%; max-width: 100%; } }


/* =========================
   CONTACT SECTION
========================= */

#Contact {
  background-color: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 80px;
}

.contact-card {
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  padding: 30px 20px;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-card .icon i {
  font-size: 48px;
  margin-bottom: 15px;
  color: #007bff;
}

.contact-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .contact-card {
    padding: 25px 20px;
  }
  .contact-card .icon i {
    font-size: 42px;
  }
  .contact-card h4 {
    font-size: 18px;
  }
  .contact-card p {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .contact-card {
    padding: 20px 15px;
  }
  .contact-card .icon i {
    font-size: 36px;
  }
  .contact-card h4 {
    font-size: 16px;
  }
  .contact-card p {
    font-size: 14px;
  }
}


/* =========================
   WHAT WE DO / SERVICES SECTION
========================= */
#services .we-do-card {
    background: #fff;
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#services .we-do-card:hover { transform: translateY(-8px); box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
#services .we-do-card .card-content i { font-size: 28px; margin-bottom: 10px; color: #00b894; }
#services .we-do-card .card-content h5 { font-size: 18px; margin-bottom: 8px; }
#services .we-do-card .card-content p { font-size: 14px; color: #555; }

/* Responsive Grid */
@media (max-width: 1200px) { #services .col-md-3 { flex: 0 0 50%; max-width: 50%; } }
@media (max-width: 768px) { #services .col-sm-6 { flex: 0 0 100%; max-width: 100%; } }


/* =========================
   PROMOTER / TEAM SECTION
========================= */
/* TEAM SECTION */
#Team {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

/* Intro Text */
#Team .promoter-intro img {
    max-width: 80px;
}

#Team .promoter-intro p {
    font-size: 16px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto 15px;
}

#Team .promoter-intro h2 {
    font-size: 32px;
    font-weight: 700;
}

/* Promoter Profile Card */
#Team .promoter-profile {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 22px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    transition: transform 0.35s ease;
    flex-wrap: wrap;
}

#Team .promoter-profile:hover {
    transform: translateY(-5px);
}

/* Profile Image */
#Team .profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

#Team .profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Profile Info */
#Team .profile-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0b5d4b;
    margin-bottom: 5px;
}

#Team .profile-info span {
    font-size: 14px;
    font-weight: 600;
    color: #2f8f46;
    display: block;
    margin-bottom: 8px;
}

#Team .profile-info p {
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 991px) {
    #Team .promoter-profile {
        flex-direction: row;
        gap: 15px;
        padding: 15px;
    }

    #Team .profile-img {
        width: 80px;
        height: 80px;
    }

    #Team .profile-info h3 {
        font-size: 18px;
    }

    #Team .profile-info p {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    #Team .promoter-profile {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    #Team .profile-img {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    #Team .profile-info h3 {
        font-size: 18px;
    }

    #Team .profile-info p {
        font-size: 14px;
    }
}

