/* About Us Hero Section */
.about-hero-section {
    position: relative;
    width: 100%;
    height: 60vh; /* A shorter hero section for a sub-page */
    background: url('about-img1.jpg') no-repeat center center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white-color);
    padding: 0;
    background-attachment: fixed;
}
@media (max-width: 992px) {
    .about-hero-section {
        height: 40vh;
        background-attachment: scroll;
    }
} 

 

/* Story Section */
.story-section {
    padding: 80px 5%;
}

.story-section .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.story-content,
.story-image {
    flex: 1;
    min-width: 300px;
}

 

.story-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .story-section .container {
        flex-direction: column;
        text-align: center;
    }
}

/* Values Section */
.values-section {
    text-align: center;
    padding: 80px 5%;
    background: var(--light-grey);
}

.values-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--maroon-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

.values-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--maroon-color);
}

.values-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-item {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.value-item i {
    font-size: 3rem;
    color: var(--maroon-color);
    margin-bottom: 20px;
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.value-item p {
    color: #666;
    line-height: 1.7;
}

/* Founders Section */
.founders-section {
    padding: 80px 5%;
    text-align: center;
}

.founders-section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--maroon-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

.founders-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--maroon-color);
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    background: var(--white-color);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.founder-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--maroon-color);
}

.founder-info {
    text-align: center;
}

.founder-info h3 {
    font-size: 2rem;
    color: var(--dark-grey);
    margin-bottom: 5px;
}

.founder-info .founder-title {
    font-style: italic;
    color: var(--maroon-color);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .founder-card {
        padding: 20px;
    }
    .founder-info h3 {
        font-size: 1.5rem;
    }
    .a-p {
            font-size: 0.8rem;  

    }
}
