/* About Page Styles */
.about-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../IMG/spacejoy-9M66C_w_ToM-unsplash.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* color: var(--white); */
    text-align: center;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero h1 {
    /* font-size: 3rem; */
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero p.lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

/* Our Story Section */
#our-story {
    background-color: var(--white);
}

#our-story h3 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

#our-story p.lead {
    font-size: 1.1rem;
    color: var(--primary-dark);
    font-weight: 500;
}

#our-story .stats {
    margin-top: 2rem;
}

#our-story .stat-box {
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: all 0.3s ease;
}

#our-story .stat-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

#our-story .stat-box h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    padding-bottom: 0;
}

#our-story .stat-box h3::after {
    display: none;
}

/* Mission & Vision Section */
#our-vision {
    padding: 5rem 0;
    background-color: var(--light-color);
}

/* Card Styles */
.card {
    border-radius: 10px;
    transition: all 0.3s ease;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

/* Background Icon */
.icon-bg {
    position: absolute;
    top: -15px;
    left: 30px;
    z-index: 0;
    color: rgba(38, 94, 151, 0.05);
    transition: all 0.5s ease;
    font-size: 120px;
}

.card:hover .icon-bg {
    transform: scale(1.1);
    color: rgba(38, 94, 151, 0.1);
}



/* Animations */
.pulse-animation {
    animation: pulse 2s infinite ease-in-out;
}

.bullseye-animation {
    animation: bullseye 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); ; }
    70% { transform: scale(1.08); ; }
    100% { transform: scale(1); ; }
}

@keyframes bullseye {
    0% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(10deg); }
    100% { transform: scale(1); }
}

/* Card Content */
.card-body {
    position: relative;
    z-index: 2;
}

.card-body h3 {
    font-weight: 700;
    color: var(--primary-dark);
}

.card-body p {
    position: relative;
    z-index: 2;
}


/* Values Section */
.value-card {
    background-color: var(--white);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
    position: relative;
}


.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Badr City Section */
.badr-city h2 {
    /* color: var(--white); */
    position: relative;
    padding-bottom: 1rem;
}

.badr-city h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

.badr-city ul li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}


.cta-section{
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../IMG/pexels-a-darmel-7641859.jpg);
}   




/* Responsive Styles */
@media (max-width: 991.98px) {
    .about-hero {
        padding-top: 80px;
        text-align: center;
    }
    
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    
    #our-story, #our-vision, .badr-city {
        padding: 3rem 0;
    }
}

@media (max-width: 767.98px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .about-hero p.lead {
        font-size: 1rem;
    }
    
    .value-card {
        margin-bottom: 1.5rem;
    }
    
    .cta-Section h2 {
        font-size: 1.75rem;
    }
    
}