/* Additional CSS for About Page */
.about-hero {
    min-height: 60vh;
    background: url('image/banner2.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 4.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem auto;
    max-width: 800px;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--dark-gray);
    border-radius: 10px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--light-gray);
}

.tabs-container {
    max-width: 800px;
    margin: 3rem auto;
    background: var(--dark-gray);
    border-radius: 10px;
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    background: #333;
}

.tab-btn {
    flex: 1;
    padding: 1rem;
    background: none;
    border: none;
    color: var(--light-gray);
    cursor: pointer;
    transition: background 0.3s;
}

.tab-btn.active {
    background: var(--primary-color);
    color: var(--dark-color);
}

.tab-content {
    display: none;
    padding: 2rem;
}

.tab-content.active {
    display: block;
}

.team-image {
    width: 150px;
    border-radius: 50%;
    float: left;
    margin-right: 1rem;
}

.accordion-item {
    border-bottom: 1px solid #444;
    margin-bottom: 1rem;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    cursor: pointer;
    background: #333;
    border-radius: 5px;
    transition: background 0.3s;
}

.icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.grid {
    grid-template-columns: repeat(2, 1fr);
}
.miniicon {
    color: var(--primary-color);
    margin-right: 1rem;
}
.size {
    max-width: 600px; margin: auto; text-align: left; list-style: none;
}   
.com {
    display: block; margin: 1rem auto
}
.accordion-header:hover {
    background: var(--primary-color);
    color: var(--dark-color);
}

.accordion-header i {
    transition: transform 0.3s;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: var(--dark-gray);
    padding: 0 1rem;
}

.accordion-body.active {
    max-height: 500px;
    padding: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--dark-gray);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 1rem;
    object-fit: cover;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 3rem auto;
    position: relative;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: -3rem;
    width: 2px;
    background: var(--primary-color);
}

.timeline-marker {
    position: absolute;
    left: 15px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
}

.timeline-content {
    margin-left: 50px;
    background: var(--dark-gray);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.inspirations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.inspiration-card {
    background: rgba(240, 165, 0, 0.1);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid var(--primary-color);
}

.footer {
    background: #020202;
    padding: 3rem 2rem 1rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: var(--font-header);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--light-gray);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-contacts {
    text-align: left;
}

.footer-contacts p {
    margin-bottom: 0.5rem;
    color: var(--light-gray);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1rem;
    color: #777;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}