/* ========================================
   ABOUT US PAGE STYLES
   ======================================== */

.about-section {
    /* padding: 40px 0; */
}

.about-img {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.about-img img {
    width: 80%;
    height: 80%;
    border-radius: 20px;
    transition: 0.5s;
}

.about-img:hover img {
    /* transform: scale(1.05); */
}

/* Floating badge */
.about-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #ffc107;
    color: #000;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

/* Glass card */
.about-card {
    /* background: rgba(255,255,255,0.05); */
    backdrop-filter: blur(12px);
    /* border-radius: 20px; */
    padding: 30px;
    /* border: 1px solid rgba(255,255,255,0.1); */
    transition: 0.3s;
}

.about-card:hover {
    /* transform: translateY(-8px); */
    /* box-shadow: 0 20px 40px rgba(0,0,0,0.4); */
}

.about-title {
    font-weight: 700;
    font-size: 30px;
    margin-bottom: 15px;
    font-size: 36px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff9c3b, #ff3b7f, #3b82ff);
    -webkit-background-clip: text;
    color: transparent;
    letter-spacing: 1px;
}

.about-title::after {
    content: "";
    display: block;
    width: 60%;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 10px;
    background: linear-gradient(90deg, #ff9c3b, #ff3b7f);
    animation: lineMove 3s infinite alternate;
}

@keyframes lineMove {
    0% {
        width: 40%;
    }
    100% {
        width: 80%;
    }
}

.about-subtitle {
    color: #cbd5e1;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.about-desc {
    color: #cbd5e1;
    font-size: 15px;
}

/* Feature highlights */
.about-features {
    margin-top: 20px;
}

.about-features li {
    list-style: none;
    margin-bottom: 8px;
    font-size: 14px;
    color: #e2e8f0;
}

.about-features li::before {
    content: "✔";
    color: #facc15;
    margin-right: 8px;
}

/* Button */
.about-btn {
    margin-top: 20px;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
}

/* ANIMATIONS */
@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float1 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes float2 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes float3 {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* TIMELINE STYLES */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #dee2e6;
    border-radius: 2px;
}

.timeline-item {
    position: relative;
}

.timeline-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #6c757d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.timeline-content {
    background: #fff;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-left: 20px;
    width: calc(100% - 80px);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 10px;
    }

    .timeline-content {
        width: calc(100% - 70px);
        margin-left: 15px;
    }

    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
}
