#main-section {
    display: flex;
    height: 100vh;
    background-image: url('../static/splash.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
#about-section .right-column h2 {
    font-size: 1.75rem;
    font-weight: 200;
    margin: 15px 0;
}
#about-section .right-column h3, ul {
    line-height: 1.5;
    font-size: 1.3rem;
    font-weight: 200;
}
#services-section {
    color: white;
    font-weight: 100;
}
#partners-section .partner {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}
#partners-section .scrolling-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: left;
    background-color: var(--secondary-color);
    color: white;
    z-index: 1;
    padding: 10rem;
}
#partners-section .scrolling-content h2 {
    margin: 0.5rem 0;
    font-size: 2.5rem;
    font-weight: 200;
    margin: 15px 0;
}
#partners-section .scrolling-content h3 {
    margin: 0;
    line-height: 1.5;
    font-size: 1.3rem;
    font-weight: 200;
}
#partner1 {
    background-image: url('../static/partners/partner1.png');
}
#partner2 {
    background-image: url('../static/partners/partner2.png');
}
#partner3 {
    background-image: url('../static/partners/partner3.png');
}
#partner4 {
    background-image: url('../static/partners/partner4.png');
}
#partner5 {
    background-image: url('../static/partners/partner5.png');
}
#partner6 {
    background-image: url('../static/partners/partner6.png');
}
#partner7 {
    background-image: url('../static/partners/partner7.png');
}
#partner8 {
    background-image: url('../static/partners/partner8.png');
}
#partner10 {
    background-image: url('../static/partners/partner10.png');
}
#leadership-section .profile-text {
    display: flex;
    align-items: flex-start;
    margin: 40px;
}
#leadership-section .profile-img-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1rem;
    width: 20%;
}
#leadership-section .profile-img {
    max-width: 100px;
    margin-top: 20px;
    margin-bottom: 10px;
    border-radius: 50%;
    border: 1px solid black;
}
#leadership-section .profile-img-container h3,
#leadership-section .profile-img-container h4 {
    margin: 1px;
}
#leadership-section .profile-img-container h5 {
    margin: -1rem;
}
#leadership-section .profile-img-container h4 {
    margin-bottom: 20px;
    font-weight: 100;
}
#leadership-section p {
    flex: 1;
}
.contact-container {
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    max-width: 800px;
    width: 100%;
}
.contact-container h2 {
    color: white;
}
.contact-container form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-container input, textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-container input:focus, textarea:focus {
    border-color: #0077ff;
    box-shadow: 0 0 0 3px rgba(0, 119, 255, 0.2);
    outline: none;
}
.contact-container #response {
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
    color: green;
}
.contact-container .social-follow {
    margin-top: 2rem;
    text-align: center;
}
.social-follow a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #0077b5;
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    padding-bottom: 25px;
}
.contact-container .social-follow a:hover {
    color: #005582;
}
.contact-container img {
    width: 30px;
    height: 30px;
}

@media (max-width: 1024px) {
    #leadership-section .profile-text {
        flex-direction: column;
        align-items: center;
        text-align: left;
    }
    #leadership-section .profile-img {
        margin: 0 0 20px 0;
    }
    #leadership-section .profile-img-container h3, h4 {
        text-align: center;
    }
}
@media (max-width: 768px) {
    #partners-section .scrolling-content {
        padding: 2rem;
    }
}

/* CAROUSEL */

#review-section {
  background-color: var(--primary-color);
  display: flex;
  justify-content: center;
  padding: 4rem 1rem;
}

#review-section .testimonial-wrapper {
  width: 100%;
  position: relative;
}

#review-section .testimonial-slider {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 400px;
}

#review-section .testimonial {
  display: none;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  width: 85%;
}

#review-section .testimonial img {
  max-width: 40%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  flex-shrink: 0;
}

#review-section .testimonial .text-block {
  flex: 1;
}

#review-section .testimonial h4 {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
}

#review-section .testimonial h4::before {
  content: "“";
  font-size: 3rem;
  color: #f1c40f;
  position: absolute;
  left: -2rem;
  top: -1rem;
}

#review-section .testimonial h4 span {
  font-weight: 600;
  color: #000;
}

#review-section .testimonial .author {
  margin-top: 1rem;
  font-weight: 600;
  color: #9b59b6;
}

#review-section .testimonial .role {
  font-size: 0.9rem;
  color: gray;
}

#t-1:checked ~ .testimonial-slider #slide-1,
#t-2:checked ~ .testimonial-slider #slide-2 {
  display: flex;
}

#review-section .nav-dots {
  text-align: center;
  margin-top: 2rem;
}

#review-section .nav-dots label {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #ccc;
  margin: 0 6px;
  border-radius: 50%;
  cursor: pointer;
}

#t-1:checked ~ .nav-dots label[for="t-1"],
#t-2:checked ~ .nav-dots label[for="t-2"] {
  background: #0077ff;
}
#review-section input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

@media (max-width: 768px) {
  #review-section .testimonial {
    flex-direction: column;
    text-align: center;
  }

  #review-section .testimonial img {
    max-width: 60%;
    margin: 0 auto 1rem;
  }

  #review-section .testimonial h4::before {
    left: 0;
    top: -1.5rem;
  }
}
