:root {
    --primary: #6a1b9a;
    --secondary: #e84393;
    --accent: #4caf50;
    --light: #f5f5f5;
    --dark: #333;
    --text: #444;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

.section-title {
    font-weight: 700;
    font-size: 3rem;
    text-align: unset;
    padding-bottom: 0px;
    position: relative;
    margin-bottom: 30px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary);
}

.card-hover {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: white;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}


.highlight-box {
    background: linear-gradient(to right, rgba(106, 27, 154, 0.1), rgba(255, 152, 0, 0.1));
    border-left: 4px solid var(--secondary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 8px 8px 0;
}

/* Testimonial Carousel */
.testimonial-carousel {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 60px 0;
    margin: 60px 0;
}

.testimonial-item {
    padding: 30px;
    text-align: center;
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 40px;
    color: rgba(106, 27, 154, 0.2);
    position: absolute;
}

.testimonial-text:before {
    top: -20px;
    left: -10px;
}

.testimonial-text:after {
    bottom: -40px;
    right: -10px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.testimonial-role {
    color: var(--text);
    font-size: 0.9rem;
}




.icon-box {
    background: linear-gradient(135deg, var(--primary), var(--accent));

}

/* .card-hover {
    transition: all 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}
 */



.partner-logo {
    height: 60px;
    margin-bottom: 20px;
    object-fit: contain;
    transition: var(--transition);
}

/* Donor Wall */
.donor-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
}

.donor-logo {
    height: 80px;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
}

.donor-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Mentor Cards */
.mentor-card {
    background: var(--white);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    text-align: center;
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.mentor-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
    margin: 0 auto 20px;
}

.card-body {
    margin-bottom: 30px;
}


.card-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Impact Gallery */
.impact-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.impact-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    transition: var(--transition);
}

.impact-image:hover {
    transform: scale(1.05);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    .hero-section h1 {
        font-size: 2.4rem;
    }

    .section {
        padding: 60px 0;
    }

    .donor-wall {
        gap: 20px;
    }

    .donor-logo {
        height: 60px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 0;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .partner-card,
    .mentor-card {
        padding: 20px;
    }
}