/* About Us Page Styles */

/* ===== HERO SECTION ===== */
.about-hero {
    background: linear-gradient(135deg, #FF6B35, #00BCD4);
    background-image: 
        linear-gradient(135deg, rgba(255, 107, 53, 0.85), rgba(0, 188, 212, 0.85)),
        url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1920&h=400&fit=crop&auto=format');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: white;
    text-align: center;
    margin-top: 80px;
    padding: 80px 0 60px;
    min-height: 350px;
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 132, 61, 0.7);
}

.about-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.about-hero h1 {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.about-hero p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.section-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== WHY WE ARE BEST SECTION ===== */
.why-best-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #00843d;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-card h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.feature-card p {
    font-family: 'Poppins', sans-serif;
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== OUR STORY SECTION ===== */
.our-story-section {
    padding: 5rem 0;
    background: #f7fafc;
    position: relative;
    z-index: 1;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
    text-align: left;
}

.story-text h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.story-text p {
    font-family: 'Poppins', sans-serif;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: rgba(0, 123, 255, 0.9);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: rgba(0, 123, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
}

.story-images {
    position: relative;
}

.image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.story-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* ===== NEW STATISTICS SECTION (TOGO STYLE) ===== */
.stats-section-new {
    padding: 5rem 0;
    background: #f8f9fa;
    position: relative;
    z-index: 1;
    text-align: center;
}

.stats-section-new .stats-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-section-new .stats-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto 4rem;
    line-height: 1.6;
}

.stats-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card-new {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #e53e3e;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.stat-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(229, 62, 62, 0.15);
}

.stat-number-new {
    font-family: 'Manrope', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label-new {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
    line-height: 1.4;
}

/* ===== TEAM SECTION (TOGO STYLE) ===== */
.team-section {
    padding: 5rem 0;
    background: #ffffff;
    position: relative;
    z-index: 1;
    text-align: center;
}

.team-header {
    text-align: center;
    margin-bottom: 4rem;
}

.team-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e53e3e;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.team-header h2 {
    font-family: 'Manrope', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.team-header p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #718096;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.team-member {
    background: transparent;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 280px;
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-image {
    position: relative;
    overflow: hidden;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 3px solid #f0f0f0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.team-member:hover .member-image {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    transform: scale(1.02);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.08);
}

.member-info {
    text-align: center;
    padding: 0;
}

.member-info h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.3rem;
}

.member-role {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #718096;
    font-weight: 400;
    margin: 0;
}

.team-cta {
    text-align: center;
    margin-top: 3rem;
}

.meet-team-btn {
    padding: 14px 35px;
    background: transparent;
    border: 2px solid #e53e3e;
    color: #e53e3e;
    border-radius: 30px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.meet-team-btn:hover {
    background: #e53e3e;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(229, 62, 62, 0.3);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 0;
    background: #f7fafc;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.testimonial-rating i {
    color: #ffd700;
    font-size: 0.9rem;
}

.testimonial-text {
    font-family: 'Poppins', sans-serif;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.2rem;
}

.author-info p {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #718096;
}

/* ===== FOOTER ===== */
.footer {
    background: #2d3748;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-logo .logo-img {
    height: 40px;
}

.footer-logo .logo-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
        color: #ffffff !important;

}

.footer-section p {
    font-family: 'Poppins', sans-serif;
    color: #cbd5e0 !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e0;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    font-family: 'Inter', sans-serif;
}

.contact-info i {
    color: #667eea;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    color: #cbd5e0;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Landscape & Desktop Small (769px - 1024px) */
@media (max-width: 1024px) {
    .about-hero h1 {
        font-size: 3.5rem;
    }
    
    .about-hero p {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .story-text h2 {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card-new {
        padding: 2rem 1.5rem;
    }
    
    .stat-number-new {
        font-size: 2.2rem;
    }
    
    .team-grid {
        gap: 3rem;
        justify-content: center;
    }
    
    .member-image {
        width: 200px;
        height: 200px;
    }
    
    .team-header h2 {
        font-size: 2.4rem;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.5rem;
    }
}

/* Tablet Portrait (481px - 768px) */
@media (max-width: 768px) {
    .about-hero {
        margin-top: 80px;
        padding: 60px 0 50px;
        min-height: 300px;
    }
    
    .about-hero h1 {
        font-size: 2.8rem;
        margin-top: 0;
    }
    
    .about-hero p {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .why-best-section,
    .our-story-section,
    .team-section,
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .stats-section {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .story-content {
        gap: 2rem;
    }
    
    .story-text h2 {
        font-size: 1.8rem;
    }
    
    .story-text h3 {
        font-size: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .stat-card-new {
        padding: 2rem 1.5rem;
    }
    
    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }
    
    .member-image {
        width: 180px;
        height: 180px;
    }
    
    .team-header h2 {
        font-size: 2.2rem;
    }
    
    .team-header p {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

/* Mobile (320px - 480px) */
@media (max-width: 480px) {
    .about-hero {
        margin-top: 80px;
        padding: 40px 0 30px;
        min-height: 250px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
        margin-top: 0;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .about-hero .hero-content {
        padding: 1rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .why-best-section,
    .our-story-section,
    .team-section,
    .testimonials-section {
        padding: 2rem 0;
    }
    
    .stats-section {
        padding: 3rem 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 1.5rem;
    }
    
    .story-text h2 {
        font-size: 1.6rem;
    }
    
    .story-text h3 {
        font-size: 1.3rem;
    }
    
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-section-new {
        padding: 3rem 0;
    }
    
    .stats-section-new .stats-header h2 {
        font-size: 1.8rem;
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-card-new {
        padding: 1.5rem 1rem;
    }
    
    .stat-number-new {
        font-size: 1.8rem;
    }
    
    .team-header h2 {
        font-size: 1.8rem;
    }
    
    .team-header p {
        font-size: 0.95rem;
    }
    
    .member-image {
        width: 160px;
        height: 160px;
    }
    
    .team-grid {
        gap: 2rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Active navigation state */
.nav-menu a.active {
    color: #667eea;
    font-weight: 600;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Animation for stats when they come into view */
.stat-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.stat-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-card-new {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    border: 2px solid #e53e3e;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
}

.stat-card-new.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for feature cards */
.feature-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.feature-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for team members */
.team-member {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.team-member.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Animation for testimonials */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.testimonial-card.animate {
    opacity: 1;
    transform: translateY(0);
}