﻿/* ============================================
   ABOUT PAGE - PROFESSIONAL & SIMPLE DESIGN
   ============================================ */

/* About Section */
.about-section {
    padding: 3rem 0;
    background: #FAFAFA;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

/* Main Content */
.about-main h1 {
    font-size: 2.5rem;
    color: #8B0000;
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.lead {
    font-size: 1.2rem;
    color: #D4AF37;
    margin-bottom: 2.5rem;
    font-weight: 500;
}

.content-block {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #E8E8E8;
}

.content-block h2 {
    font-size: 1.6rem;
    color: #8B0000;
    margin-bottom: 1rem;
    font-weight: 700;
}

.content-block p {
    color: #555555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: #F9F9F9;
    border-radius: 6px;
    border: 1px solid #EFEFEF;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #FFFFFF;
    border-color: #D4AF37;
    transform: translateX(3px);
}

.feature-item i {
    font-size: 1.5rem;
    color: #8B0000;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1rem;
    color: #8B0000;
    margin-bottom: 0.3rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.85rem;
    color: #666666;
    margin: 0;
}

/* Stats Row */
.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #D4AF37;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Sidebar */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #E8E8E8;
}

.info-card h3 {
    font-size: 1rem;
    color: #8B0000;
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h3 i {
    color: #D4AF37;
    font-size: 0.95rem;
}

.info-content p {
    font-size: 0.9rem;
    color: #555555;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-content p:last-child {
    margin-bottom: 0;
}

.info-content .bengali {
    color: #D4AF37;
    font-weight: 600;
    font-size: 1rem;
}

.info-content .closed {
    color: #E74C3C;
    font-weight: 600;
}

.info-content .small {
    font-size: 0.8rem;
    color: #777777;
}

.info-content a {
    color: #D4AF37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #8B0000;
}

/* CTA Box */
.cta-box {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #D4AF37;
}

.cta-box p {
    font-size: 0.95rem;
    color: #555555;
    margin-bottom: 1rem;
    font-weight: 500;
}

.btn-primary,
.btn-outline {
    display: block;
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 0.75rem;
}

.btn-primary:last-child,
.btn-outline:last-child {
    margin-bottom: 0;
}

.btn-primary {
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
    color: #FFFFFF;
    box-shadow: 0 3px 10px rgba(139, 0, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    color: #8B0000;
    border: 2px solid #8B0000;
}

.btn-outline:hover {
    background: #8B0000;
    color: #FFFFFF;
}

/* CTA Section */
.cta-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #8B0000 0%, #A52A2A 100%);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #FFFFFF;
}

.cta-content h2 {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta-buttons .btn-outline:hover {
    background: #FFFFFF;
    color: #8B0000;
}

.cta-buttons .btn-primary {
    background: #FFFFFF;
    color: #8B0000;
    border: 2px solid #FFFFFF;
}

.cta-buttons .btn-primary:hover {
    background: transparent;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-sidebar {
        order: -1;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .stat-box {
        padding: 1.25rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 2rem 0;
    }

    .about-main h1 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .content-block {
        padding: 1.5rem;
    }

    .content-block h2 {
        font-size: 1.4rem;
    }

    .stats-row {
        gap: 0.75rem;
    }

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-item i {
        margin: 0 auto 0.75rem;
    }

    .cta-section {
        padding: 2.5rem 0;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-main h1 {
        font-size: 1.75rem;
    }

    .lead {
        font-size: 0.95rem;
    }

    .content-block {
        padding: 1.25rem;
    }

    .content-block h2 {
        font-size: 1.2rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
    }

    .stat-box {
        padding: 1rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .cta-section {
        padding: 2rem 0;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}
