.partner-feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #ffffff;
}

.partner-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.partner-feature-card .icon i {
    font-size: 3rem;
}

form .form-label {
    font-weight: 500;
    margin-bottom: 6px;
}

form .form-control,
form .form-select {
    height: 48px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 15px;
}

form textarea.form-control {
    padding: 15px 18px;
    height: auto;
    resize: vertical;
}

.card.bg-light {
    background-color: #f9f9f9;
}

button[type="submit"] {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn-outline-primary, .btn-outline-secondary {
    padding: 10px 24px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.btn-outline-secondary:hover {
    background-color: #6c757d;
    color: #fff;
    border-color: #6c757d;
}


/* What Educators Say */

.testimonial-section {
    background: #f9f9f9;
}

.testimonial-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid #0d6efd;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-card p {
    font-style: italic;
    color: #444;
}

.testimonial-card h6 {
    font-weight: 600;
}

.section-header h1,
.section-header h4 {
    font-weight: 700;
}

@media (max-width: 576px) {
    .testimonial-card {
        margin-bottom: 1rem;
    }
}

/* testimonial */

.testimonial-scroll-wrapper {
    overflow-x: auto;
    padding-bottom: 1rem;
}

.testimonial-scroll {
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
}

.testimonial-card {
    min-width: 280px;
    max-width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 3px solid #0d6efd;
}

/* impact section */

.impact-card {
    background: #ffffff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.impact-icon {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.impact-number {
    font-size: 2.8rem;
    font-weight: 700;
}

.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* key achivements */

.achievement-card {
    background-color: #fff;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.03);
}

.achievement-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

.achievement-value {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.text-gradient {
    background: linear-gradient(90deg, #0d6efd, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.reach-card {
    transition: all 0.3s ease;
    border-radius: 16px;
}

.reach-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

/* success stories */

.story-card {
    background-color: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.03);
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.07);
}

.story-icon {
    font-size: 3rem;
    line-height: 1;
    animation: bounce 2s infinite;
}

/* Bounce animation */
@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* get in touch */

.contact-box {
    transition: all 0.3s ease-in-out;
}

.contact-box:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.contact-form .input-group-text {
    border-radius: 8px 0 0 8px;
    border-color: #dee2e6;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 0 8px 8px 0;
    border-color: #dee2e6;
    box-shadow: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.1);
}

/* map */

.map-section iframe {
  filter: grayscale(10%) contrast(1.1);
  transition: filter 0.3s ease;
}

.map-section:hover iframe {
  filter: grayscale(0%) contrast(1);
}

.map-overlay {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.map-section:hover .map-overlay {
  opacity: 1;
}

.open-map-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #0d6efd;
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  border: 2px solid transparent;
}

.open-map-btn:hover {
  background: #fff;
  color: #0d6efd;
  border-color: #0d6efd;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(13, 110, 253, 0.35);
}

/* help us form */

.feedback-card {
  transition: all 0.3s ease;
  border-radius: 1rem;
  background: #fff;
}

.feedback-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.star-rating .star {
  font-size: 2rem;
  color: #ffc107;
  margin: 0 4px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.star-rating .star:hover {
  transform: scale(1.2);
}

.btn-animated {
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
}

.btn-animated:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
}

/* my team */

  .team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
  }

  .team-img img {
    object-fit: cover;
  }

  .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #f1f1f1;
    border-radius: 50%;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .social-icon:hover {
    background-color: #0d6efd;
    color: white;
  }

  .badge {
    font-size: 0.75rem;
    font-weight: 500;
  }

  .rounded-4 {
    border-radius: 1.2rem;
  }