
body{
  background:#CDECF5;#D0F0F7
}

.background-container {
  background-image: url(imagem/team.jpg);
  background-size: cover;
  background-position: center;
  position: relative; /* Important! */
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center; .text-box {
  position: relative; /* optional */
  z-index: 2;         /* keep content above overlay */
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 15px;
}
 
  justify-content: center;
  overflow: hidden;
}
.overlay {
  position: absolute; /* NEW */
  top: 0;             /* NEW */
  left: 0;            /* NEW */
  width: 100%;
  height: 100%;       /* NEW */
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  z-index: 1;         /* Ensure it's above background */
}


.overlay {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height:100vh;
}


.text-box {
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 15px;
}
.text-box h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.text-box p {
  font-size: 0.70rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: white;
}


@media (max-width: 768px) {
  .text-box h1 {
    font-size: 2rem;
  }

  .text-box p {
    font-size: 0.95rem;
  }

  .text-box .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .text-box h1 {
    font-size: 1.5rem;
    margin-top:10px;
  }

  .text-box p {
    font-size: 0.50rem;
  }

  .text-box .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}


/* Responsive styles */
.background-container {
  padding-bottom: 80px;
}

.greenbox {
  margin-top: 0;
}
.background-container {
  padding-top: 100px; /* Ensure space for fixed navbar */
}


.hero-btn{
    display: inline-block;
    text-decoration:none;
    color:white;
    border:1px solid white;
    padding:12px 34px;
    font-size: 13px;
    background:transparent;
    position:relative;
    cursor:pointer;
    margin:20px;
}
.hero-btn:hover{
    border:1px solid #a3d15c;
    background:#a3d15c;
    transition:1s;
    text-decoration: none;
    color:white;
}
.hero-btn a{
    text-decoration: none;
}
/*.greenbox{
  background:#a3d15c;
  padding-bottom:20px;
  padding-top:20px;
  padding:15px;

}*/
.greenbox {
    background-color: #2e7d32; /* Deep green */
    color: white;
  }

  .greenbox h3 {
    font-weight: bold;
  }

  .greenbox p {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  @media (max-width: 576px) {
    .greenbox {
      padding: 2rem 1rem;
    }

    .greenbox h3 {
      font-size: 1.5rem;
    }

    .greenbox p {
      font-size: 1rem;
    }
  }
.facilities{
    width:80%;
    margin:auto;
    text-align:center;
    padding-top:100px;
}
.facilities-col{
    flex-basis:31%;
    border-radius:10px;
    margin-bottom:60px;
    text-align:left;
  

}
.facilities-col img{
    width:100%;
    border-radius:10px;

}
.facilities-col p{
    padding:0;

}
.facilities-col h3{
    margin-top:16px;
    margin-bottom:15px;
    text-align:left;
}

.impact-card {
  position: relative;
  background-image: url(imagem/6f68507d55c2c3a87bd49611a558667d.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  color: white;
  max-width: 900px;
  margin: 0 auto;
  height: 100%;
  min-height: 400px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}


.h3{
  color:green;
}

.overlay1{
  background-color: rgba(0, 128, 0, 0.5);  
  padding:40px;
  height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.overlay h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.overlay p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.profile {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.profile img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid white;
}

.profile-details {
  font-size: 0.95rem;
}

@media (max-width: 576px) {
  .overlay {
    padding: 20px;
  }

  .overlay h2 {
    font-size: 1.6rem;
  }

  .overlay p {
    font-size: 1rem;
  }

  .profile {
    flex-direction: column;
    align-items: flex-start;
  }
}
 .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 20px;
      text-align: center;
    }

    .section h1 {
      font-size: 2.8rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #2e003e;
      position: relative;
    }

    .section h1::after {
      content: '';
      display: inline-block;
      width: 60px;
      height: 4px;
      background-color: #f7d300;
      border-radius: 4px;
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }

    .section p.description {
      font-size: 1.1rem;
      color: #444;
      margin-bottom: 50px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .highlight {
      display: inline-block;
      padding: 5px 10px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.95rem;
      margin: 0 5px;
    }

    .highlight.green {
      background-color: #d9fce1;
      color: #097c3c;
    }

    .highlight.yellow {
      background-color: #fff4c4;
      color: #9c8100;
    }

    .highlight.purple {
      background-color: #f0e4ff;
      color: #6f42c1;
    }

    .cards {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }

    .card {
      background: white;
      border-radius: 16px;
      padding: 30px 25px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.08);
      flex: 1 1 300px;
      max-width: 350px;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
    }

    .icon-circle {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 24px;
      color: white;
    }

    .purple-bg { background-color: #6f42c1; }
    .green-bg { background-color: #28a745; }
    .yellow-bg { background-color: #f7d300; color: #333; }

    .card h3 {
      font-size: 1.3rem;
      font-weight: 600;
      color: #2e003e;
      margin-bottom: 15px;
    }

    .card p {
      font-size: 0.97rem;
      line-height: 1.6;
      color: #555;
    }

    @media (max-width: 768px) {
      .section h1 {
        font-size: 2rem;
      }

      .card {
        padding: 25px 20px;
      }

      .cards {
        flex-direction: column;
        align-items: center;
      }
    }
 .faq-section {
      max-width: 700px;
      margin: 0 auto;
    }

    .faq-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
      font-weight: 700;
    }

    .explore-btn {
      display: inline-flex;
      align-items: center;
      background-color: white;
      color: #5a189a;
      border: 2px solid #cba8f5;
      padding: 10px 20px;
      border-radius: 30px;
      font-weight: 600;
      cursor: pointer;
      text-decoration: none;
      margin-bottom: 30px;
      transition: all 0.3s ease;
    }

    .explore-btn:hover {
      background-color: #f3e8ff;
    }

    .explore-btn i {
      margin-left: 10px;
    }

    .accordion-item {
      background-color: #fff6d6;
      border: 1px solid #e6d9b3;
      border-radius: 10px;
      margin-bottom: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .accordion-header {
      padding: 16px 20px;
      font-weight: 600;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #2e003e;
    }

    .accordion-header:hover {
      background-color: #fff1b5;
    }

    .accordion-content {
      padding: 0 20px 16px;
      display: none;
      color: #333;
      font-size: 0.95rem;
    }

    .accordion-item.active .accordion-content {
      display: block;
    }

    .accordion-item .arrow {
      transition: transform 0.3s ease;
    }

    .accordion-item.active .arrow {
      transform: rotate(180deg);
    }
    .footer{
    width:100%;
    text-align:center;
    padding:30px 0;
    border-radius: 10px;
    background:black;
    color:white;
    
}
.footer h4{
    margin-bottom:25px;
    margin-top:20px;
    font-weight: 600;

}
.icons .fab{
    
    margin:0 13px;
    cursor:pointer;
    padding:18px 0;
}
.vid{
    width:90%;
    border-radius:10px;

}
