:root {
    --primary-gradient: linear-gradient(135deg, #6e8efb, #a777e3);
    --primary-color: #6e8efb;
    --secondary-color: #a777e3;
    --accent-color: #a777e3;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
}



.hero-section {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1553284965-83fd3e82fa5a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.2;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.about-section {
    /* padding: 100px 0; */
    background: #f8f9fa;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border-radius: 2px;
}

.section-title.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

.profile-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-bottom: 30px;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.profile-item:hover {
    background: #a777e3;
    color: white;
}

.profile-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-right: 20px;
    flex-shrink: 0;
}

.profile-item:hover .profile-icon {
    background: white;
    color: #6e8efb;
}

.mission-vision-section {
    /* padding: 100px 0; */
    background: white;
}

.vision-card,
.mission-card {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    transition: transform 0.3s ease;
}

.vision-card:hover,
.mission-card:hover {
    transform: scale(1.05);
}

.mission-list {
    list-style: none;
    padding: 0;
}

.mission-list li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
}

.mission-list li::before {
    content: "🏇";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.background-section {
    /* padding: 100px 0; */
    background: #f8f9fa;
}

.background-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.background-image:hover {
    transform: translateY(-5px);
}

.background-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.feature-badge {
    background: linear-gradient(135deg, #6e8efb, #a777e3);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin: 5px;
}

.text-gradient {
    font-weight: 700;
}

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

    .display-4 {
        font-size: 2.5rem;
    }

    .lead {
        font-size: 1.5rem;
    }

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

    .profile-card {
        padding: 25px;
    }

    .vision-card,
    .mission-card {
        padding: 25px;
        margin-bottom: 30px;
    }

    .about-section,
    .background-section,
    .mission-vision-section {
        padding: 60px 0;
    }

    .background-image img {
        height: 250px;
    }

    .profile-item {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .profile-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .feature-badge {
        display: block;
        margin: 8px 0;
        text-align: center;
    }
}

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

    .display-4 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1.25rem;
    }

    .fs-5 {
        font-size: 1rem ;
    }

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

    .profile-card {
        padding: 20px;
    }

    .vision-card,
    .mission-card {
        padding: 20px;
    }

    .mission-list li::before {
        content: "";
        position: absolute;
        left: 0;
        font-size: 1.2rem;
    }

    .about-section,
    .background-section,
    .mission-vision-section {
        padding: 50px 0;
    }

    .background-image img {
        height: 200px;
    }

    .mission-list li {
        font-size: 0.9rem;
        padding: 8px 0;
    }
}

@media (min-width: 992px) {
    /* .hero-section {
        padding: 120px 0;
    } */

    .about-section,
    .background-section,
    .mission-vision-section {
        padding: 120px 0;
    }
}
