/* About Us Page Styles */

/* Custom CSS Variables */
:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #1e40af;
    --accent-orange: #f97316;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-gray: #f3f4f6;
    --border-color: #e5e7eb;
}

/* Global Styles */
.about-us-container {
    /*font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
    line-height: 1.6;
    color: var(--text-dark);
}

/* Hero Section */
.hero-section {
    padding: 80px 0 60px;
    background: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 40px;
    letter-spacing: -0.025em;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* What We Do Section */
.what-we-do-section {
    padding: 80px 0;
    background: var(--light-gray);

}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.feature-list li {
    position: relative;
    padding: 15px 0 15px 30px;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--accent-orange);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* Why BizPrint Section */
.why-bizprint-section {
    padding: 80px 0;
    background: var(--white);

}

/* Meet Our Founder Section */
.founder-section {
    padding: 80px 0;
    background: var(--light-gray);

}

.founder-image-container {
    margin-bottom: 30px;
}

.founder-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-gray);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.founder-content {
    padding-left: 20px;
}

.founder-quote {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--primary-blue);
    border-left: 4px solid var(--accent-orange);
    padding: 20px 0 20px 25px;
    margin: 30px 0;
    background: var(--light-gray);
    border-radius: 0 8px 8px 0;
}

.founder-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--accent-orange);
    line-height: 1;
    margin-right: 10px;
}

/* Footer CTA Section */
.footer-cta-section {
    padding: 80px 0;
    background: var(--primary-blue);
}

.cta-button {
    display: inline-block;
    background: var(--accent-orange);
    color: var(--white);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
}

.cta-button:hover {
    background: #ea580c;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .founder-content {
        padding-left: 0;
        margin-top: 30px;
    }
    
    .founder-image {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 767.98px) {
    .hero-section,
    .what-we-do-section,
    .why-bizprint-section,
    .founder-section,
    .footer-cta-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .founder-image {
        width: 180px;
        height: 180px;
    }
    
    .cta-button {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section,
    .what-we-do-section,
    .why-bizprint-section,
    .founder-section,
    .footer-cta-section {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .founder-image {
        width: 150px;
        height: 150px;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
}

/* Animation and Hover Effects */
.hero-title,
.section-title {
    animation: fadeInUp 0.8s ease-out;
}

.section-text {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/*.feature-list li {*/
/*    animation: fadeInLeft 0.6s ease-out both;*/
/*}*/

.feature-list li {
    animation: fadeInUp 0.6s ease-out both;
}

.feature-list li:nth-child(1) { animation-delay: 0.1s; }
.feature-list li:nth-child(2) { animation-delay: 0.2s; }
.feature-list li:nth-child(3) { animation-delay: 0.3s; }

.founder-image {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.founder-quote {
    animation: fadeInRight 0.8s ease-out 0.6s both;
}

.cta-button {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

/* Keyframe Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Print Styles */
@media print {
    .about-us-container {
        color: #000;
    }
    
    .hero-title,
    .section-title {
        color: #000;
    }
    
    .footer-cta-section {
        background: #fff !important;
    }
    
    .cta-button {
        background: #ccc !important;
        color: #000 !important;
        border: 1px solid #000;
    }
}
