/* about */
.about-section {
    height: 120vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    margin-top: 100px;
}

.about-container {
    width: 100%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 0.2rem 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
    grid-template-areas:
        "left right"
        "cta cta";
}

.about-left { grid-area: left; }
.about-right { 
    grid-area: right; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
}

/* Stack text blocks in columns */
.text-column { display: flex; flex-direction: column; gap: 1.5rem; }

/* Simplified text blocks */
.text-column .text-block { opacity: 1; transform: translateY(0); transition: all 0.3s ease; }

.section-header {
    text-align: left;
}

.about-section .main-title {
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -1px;
    /* letter-spacing: -1px; */
    position: relative;
    opacity: 1;
    transform: translateY(0);
    text-transform: uppercase;
}

.about-section .highlight {
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
}

.stats-grid {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
    flex-wrap: wrap;
    align-self: flex-end;
}

.stat-card {
    flex: 1;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    position: relative;
    transition: all 0.6s ease;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, red, green);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.3rem;
    color: #ff0000;
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    /* letter-spacing: 0.5px; */
    font-weight: 400;
    text-transform: uppercase;
}

.text-content {
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}


.text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem 2rem;
    margin-bottom: 2rem;
}

.text-block {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.text-block:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.text-block p {
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

.highlight-text {
    font-weight: 700;
    background: linear-gradient(135deg, red, green);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-section .description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 1;
    transform: translateY(0);
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, red, green);
    margin: 1.5rem 0;
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
}

.visual-element {
    position: relative;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    opacity: 1;
    transform: translateX(0);
    position: sticky;
    top: 15vh;
}


.cta-section {
    text-align: center;
    margin-top: 1rem;
    opacity: 1;
    transform: translateY(0);
    grid-area: cta;
}

.contact-btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: linear-gradient(135deg, red, green);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    /* letter-spacing: 1px; */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.contact-btn:hover::before {
    left: 100%;
}


.about-carousel {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.about-carousel.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-carousel__track {
    display: flex;
    transition: transform 1s ease;
    height: 100%;
}

.about-carousel__slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-carousel__slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.about-carousel__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 12px;
    cursor: pointer;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 1s ease;
    z-index: 2;
}

.about-carousel__btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.about-carousel__btn--prev {
    left: 15px;
}

.about-carousel__btn--next {
    right: 15px;
}

.about-carousel__dots {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 2;
}

.about-carousel__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.about-carousel__dot.active {
    background: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-section {
        padding: 8vh 5vw;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        grid-template-areas:
            "left"
            "right"
            "cta";
    }
    
    .section-header {
        text-align: center;
    }
    
    .stats-grid {
        justify-content: center;
    }
    
    .stat-card {
        min-width: 100px;
    }
    
    /* On mobile, columns naturally stack; keep spacing tight */
    .text-column { gap: 1rem; }
    
    .visual-element {
        height: 300px;
        position: relative;
        top: auto;
    }
    
}

@media (max-width: 480px) {
    .about-section {
        padding: 6vh 4vw;
    }
    
    .stats-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .stat-card {
        width: 100%;
        max-width: 200px;
    }
    
    .about-container {
        gap: 2rem;
    }
}


.about-carousel__slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}