/* About Page Specific Styles */

/* Hero Section */
.about-hero {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/bg2.avif') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-label {
    display: inline-block;
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #999;
    margin-bottom: 3rem;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #ff0000);
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* Our Story Section */
.our-story {
    background: #0a0a0a;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 30px;
    bottom: -30px;
    width: 2px;
    background: linear-gradient(to bottom, #ff0000, transparent);
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 900;
    color: #ff0000;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #ff0000;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 0, 0, 0.2);
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.timeline-content p {
    color: #999;
    line-height: 1.6;
}

.story-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2), transparent);
}

/* Mission & Vision */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mv-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mv-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
}

.mv-icon {
    margin-bottom: 2rem;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}

.mv-card p {
    color: #999;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.value-number {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.value-card p {
    color: #999;
    line-height: 1.6;
}

/* Facilities Section */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.facility-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.facility-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.facility-card:hover .facility-image img {
    transform: scale(1.1);
}

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    transform: translateY(60%);
    transition: transform 0.3s ease;
}

.facility-card:hover .facility-overlay {
    transform: translateY(0);
}

.facility-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.facility-overlay p {
    color: #999;
    font-size: 0.95rem;
}

/* Team Details */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 0, 0, 0.3);
}

.member-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.member-social {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-member:hover .member-social {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    flex: 1;
    padding: 0.5rem;
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 0.85rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #ff0000;
}

.member-info {
    padding: 2rem;
}

.member-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.member-role {
    display: block;
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.member-info p {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.member-stats .stat {
    text-align: center;
}

.member-stats .stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 0.25rem;
}

.member-stats .stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
}

/* Achievements */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
    border-color: rgba(255, 0, 0, 0.3);
}

.achievement-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.achievement-card:hover .achievement-icon {
    filter: grayscale(0);
}

.achievement-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.achievement-card p {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.achievement-year {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 0, 0.1);
    color: #ff0000;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Why Choose Us */
.why-grid {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.why-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 0, 0, 0.3);
    transform: translateX(10px);
}

.why-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 0, 0, 0.2);
    line-height: 1;
}

.why-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.why-content p {
    color: #999;
    line-height: 1.6;
}

/* Community Section */
.community-content {
    margin-top: 3rem;
}

.community-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.feature-item {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-item p {
    color: #999;
    line-height: 1.6;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.stat-box .stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #ff0000;
    margin-bottom: 0.5rem;
}

.stat-box .stat-number::after {
    content: '+';
}

.stat-box .stat-label {
    color: #999;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a0000 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('image/bg.jpg') center/cover;
    opacity: 0.1;
}
section {
    padding: 4rem 0;
}
.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.cta-label {
    display: inline-block;
    color: #ff0000;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    color: #999;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .story-content {
        grid-template-columns: 1fr;
    }

    .story-image {
        order: -1;
    }

    .values-grid,
    .facilities-grid,
    .team-grid,
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .community-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mv-grid,
    .values-grid,
    .facilities-grid,
    .team-grid,
    .achievements-grid,
    .community-stats {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }

    .timeline-year {
        font-size: 1.5rem;
    }

    .why-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .why-number {
        font-size: 3rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-features {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .mv-card,
    .value-card,
    .achievement-card {
        padding: 1.5rem;
    }

    .stat-box {
        padding: 2rem 1rem;
    }

    .stat-box .stat-number {
        font-size: 3rem;
    }
    .community-features {
       display: flex;
       flex-direction: column;
       align-items: center;
    }
    .feature-item {
        flex-direction: column;
        align-items: center;
    }
    .feature-icon {
        font-size: 3rem;
    }
}