/* about.css */

/* Animation classes */
.feature-item, .benefit-item, .community-feature, .pricing-plan, .roi-stat, .phase-item {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.feature-item:nth-child(1), .benefit-item:nth-child(1), .community-feature:nth-child(1), .pricing-plan:nth-child(1), .roi-stat:nth-child(1) {
    transition-delay: 0.1s;
}
.feature-item:nth-child(2), .benefit-item:nth-child(2), .community-feature:nth-child(2), .pricing-plan:nth-child(2), .roi-stat:nth-child(2) {
    transition-delay: 0.2s;
}
.feature-item:nth-child(3), .benefit-item:nth-child(3), .community-feature:nth-child(3), .pricing-plan:nth-child(3), .roi-stat:nth-child(3) {
    transition-delay: 0.3s;
}
.feature-item:nth-child(4), .benefit-item:nth-child(4), .community-feature:nth-child(4), .pricing-plan:nth-child(4), .roi-stat:nth-child(4) {
    transition-delay: 0.4s;
}

.about-hero {
    background: linear-gradient(rgba(0, 30, 60, 0.8), rgba(0, 30, 60, 0.8)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 5rem 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    position: relative;
}

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

.tech-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://i.imgur.com/JWYr0Yl.png') center center no-repeat;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.section-title {
    border-bottom: 2px solid #003366;
    padding-bottom: 10px;
    color: #003366;
    margin-bottom: 20px;
}

.section-title i {
    margin-right: 10px;
    color: #003366;
}

.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 16px;
}

.feature-list i {
    margin-right: 10px;
}

.feature-card, .framework-card, .benefits-card, .stakeholder-card, .pricing-card, .contact-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border: none;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.feature-card:hover, .framework-card:hover, .benefits-card:hover, .stakeholder-card:hover, .pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.feature-item, .benefit-item, .community-feature {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    border-left: 4px solid #003366;
}

.feature-item:hover, .benefit-item:hover, .community-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.feature-item i, .benefit-item i, .community-feature i {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 15px;
    display: block;
}

.benefit-tag {
    margin-top: 10px;
    font-style: italic;
    color: #4e9d8f;
}

.framework-intro {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.phase-container {
    position: relative;
    padding: 30px 0;
}

.phase-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 50px;
}

.phase-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #003366;
    z-index: 1;
}

.phase-item {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    max-width: 200px;
}

.phase-number {
    width: 50px;
    height: 50px;
    background-color: #003366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.phase-gate {
    margin-top: 10px;
    font-weight: bold;
    color: #4e9d8f;
}

.image-container {
    margin-bottom: 20px;
    position: relative;
}

.image-container img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 10px;
    font-style: italic;
    color: #666;
    text-align: center;
}

.pricing-plan {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.pricing-plan h3 {
    color: #003366;
    margin-bottom: 15px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    font-weight: normal;
}

.pricing-features {
    list-style: none;
    padding-left: 0;
}

.pricing-features li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.pricing-features i {
    margin-right: 10px;
    color: #4e9d8f;
}

.roi-stat {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.roi-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.roi-stat i {
    font-size: 2.5rem;
    color: #003366;
    margin-bottom: 15px;
}

.roi-stat h3 {
    font-size: 2rem;
    font-weight: bold;
    color: #003366;
    margin-bottom: 10px;
}

.contact-card {
    background: linear-gradient(to right, #003366, #005792);
    color: white;
}

.contact-info {
    margin: 20px 0;
}

.contact-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-title {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.tagline {
    font-size: 1.2rem;
    margin-top: 30px;
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 1rem;
    }

    .pricing-plan, .feature-item, .benefit-item, .community-feature {
        margin-bottom: 20px;
    }

    .roi-stat {
        margin-bottom: 20px;
    }
    
    .phase-timeline {
        flex-direction: column;
        align-items: center;
    }
    
    .phase-timeline::before {
        height: 100%;
        width: 2px;
        left: 50%;
        top: 0;
    }
    
    .phase-item {
        margin-bottom: 30px;
    }
}