/* About Page Specific Styles */

/* Hero Section - Updated without overlay and with better image positioning */
.about-hero {
    background: url('/images/about-hero.jpg');
    background-size: cover;
    background-position: center 30%; /* Adjusted to show more of the women (heads to feet) */
    background-repeat: no-repeat;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Optional: Different positioning for different screen sizes */
@media (max-width: 768px) {
    .about-hero {
        background-position: center 20%; /* Show more of the top on mobile */
        min-height: 400px;
    }
}

@media (min-width: 1200px) {
    .about-hero {
        background-position: center 20%; /* Adjust for larger screens */
    }
}

/* Add a very subtle dark overlay for text readability (optional - remove if you want pure image) */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Very subtle dark overlay - adjust opacity or remove entirely */
    pointer-events: none;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(230, 57, 70, 0.9); /* Changed to red background */
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}

/* Rest of the CSS remains the same */
.story-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bs-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.timeline-marker {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: var(--bs-primary);
    border-radius: 50%;
    margin-right: 1rem;
    position: relative;
}

.timeline-dot::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 40px;
    background: var(--bs-primary);
    left: 5px;
    top: 12px;
    opacity: 0.3;
}

.timeline-marker:last-child .timeline-dot::before {
    display: none;
}

.floating-quote {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 250px;
    border-left: 4px solid var(--bs-primary);
}

.floating-quote i {
    color: var(--bs-primary);
    font-size: 2rem;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    right: 10px;
}

.floating-quote p {
    margin-bottom: 0.5rem;
    font-style: italic;
}

.floating-quote cite {
    font-size: 0.9rem;
    color: #6c757d;
    font-style: normal;
    font-weight: 600;
}

/* Vision & Mission Cards */
.vm-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--bs-primary), #ff8a8a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(230, 57, 70, 0.15);
    border-color: transparent;
}

.vm-card:hover::before {
    transform: scaleX(1);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(197, 48, 48, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.vm-icon i {
    font-size: 2.5rem;
    color: var(--bs-primary);
}

/* Core Values Grid */
.value-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--bs-primary), #ff8a8a);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.1);
}

.value-card:hover::after {
    transform: translateX(0);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), rgba(197, 48, 48, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--bs-primary);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.value-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Who We Serve Cards */
.serve-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
    position: relative;
    overflow: hidden;
}

.serve-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.02), rgba(197, 48, 48, 0.02));
    pointer-events: none;
}

.serve-card:hover {
    transform: translateY(-5px);
    border-color: var(--bs-primary);
    box-shadow: 0 15px 35px rgba(230, 57, 70, 0.1);
}

.serve-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bs-primary), var(--bs-primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2rem;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.serve-card:hover .serve-icon {
    transform: rotate(0deg);
}

.serve-icon i {
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.serve-card:hover .serve-icon i {
    transform: rotate(0deg);
}

.serve-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.serve-card p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.serve-stats {
    display: flex;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(230, 57, 70, 0.1);
}

.serve-stats span {
    font-size: 0.9rem;
    color: #6c757d;
}

.serve-stats i {
    color: var(--bs-primary);
    margin-right: 0.3rem;
}

/* Leadership Section */
.leadership-placeholder {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-silhouette {
    text-align: center;
}

.silhouette-img {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #dee2e6, #ced4da);
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    overflow: hidden;
}

.silhouette-img::after {
    content: '👤';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    opacity: 0.3;
}

.leader-silhouette h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.leader-silhouette p {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Stats Cards */
.stat-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.1);
    border-color: var(--bs-primary);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bs-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6c757d;
    font-size: 1rem;
    font-weight: 500;
}

/* Community Approach Section */
.approach-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(230, 57, 70, 0.1);
}

.percentage-circle {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--bs-primary), #ff8a8a);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: white;
}

.percentage-circle .number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.percentage-circle .text {
    font-size: 1rem;
    opacity: 0.9;
}

.philosophy-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.philosophy-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.philosophy-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
    color: #333;
}

.philosophy-content p {
    color: #6c757d;
    margin-bottom: 0;
}

/* CTA Section */
.about-cta {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.95), rgba(197, 48, 48, 0.9)), url('/images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    border-radius: 20px;
    padding: 4rem;
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/pattern-dots.png') repeat;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-quote {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 1rem;
        max-width: 100%;
    }
    
    .about-cta {
        padding: 2rem;
    }
    
    .percentage-circle {
        width: 120px;
        height: 120px;
    }
    
    .percentage-circle .number {
        font-size: 2rem;
    }
}

/* Additional helper classes if needed */
.bg-primary-soft {
    background-color: rgba(230, 57, 70, 0.05);
}

.text-primary-dark {
    color: #C53030;
}

.border-primary-soft {
    border-color: rgba(230, 57, 70, 0.2);
}