/* About Us Hero Specific Styles */

.about-hero-section {
    background-image: url('../../assets/img/aboutus.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-hero-container {
    padding-bottom: 80px; 
}

/* Content Box - Removed left border and padding */
.about-content-box {
    margin-left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.about-content-box.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-heading-mod {
    text-align: left !important;
    margin-left: 0 !important;
    margin-bottom: 30px !important;
    font-size: clamp(40px, 5vw, 80px);
}

.about-text-mod {
    text-align: left !important;
    margin-left: 0 !important;
    max-width: 100% !important;
}

.about-text-mod p {
    color: #DDDDDD;
    font-family: 'Manroperegular', sans-serif;
    font-size: clamp(16px, 1.2vw, 20px);
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.about-hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FFFFFF;
    transition: width 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 10;
}

.about-hero-section.visible .about-hero-divider {
    width: 100%;
}
.about-story-section {
    padding: 70px 0;
}
.about-story-section .story-label {
    gap: 12px;
    justify-content: flex-start; 
}
.about-purpose-section .story-label {
    gap: 12px;
    justify-content: flex-start;
}
@media (max-width: 768px) {
    .about-hero-mod {
        max-width: 100% !important;
    }
    .story-section.about-story-section{
    	padding-bottom:20px;
    }
    .story-section.about-story-section .story-desc{
    	margin-bottom:0;
    }
    .about-purpose-section .story-desc{
    	margin-bottom: 0;
    }
}