/* HolyCloud V3 - About Us Premium Styles */
:root {
    --hc-primary: #2563eb;
    --hc-secondary: #1e40af;
    --hc-dark: #0f172a;
    --hc-body: #64748b;
    --hc-bg-light: #f8fafc;
    --hc-glass: rgba(255, 255, 255, 0.03);
    --hc-glass-border: rgba(255, 255, 255, 0.1);
}

.about-page-v3 {
    font-family: 'Inter', sans-serif;
    color: var(--hc-dark);
}

/* Premium Hero Section */
.hero-v3 {
    position: relative;
    padding: 60px 0 100px;
    background: #1F3573;
    overflow: hidden;
}

.hero-v3::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(30, 64, 175, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.hero-v3 .container {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(37, 99, 235, 0.1);
    color: #3b82f6;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hero-title-v3 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text-v3 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Styling */
.section-v3 {
    padding: 100px 0;
}

.section-subtitle-v3 {
    color: var(--hc-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 15px;
}

.section-title-v3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--hc-dark);
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Feature Cards */
.feature-card-v3 {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card-v3:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    border-color: var(--hc-primary);
}

.feature-icon-v3 {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    color: var(--hc-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

/* Counter Cards */
.counter-card-v3 {
    background: #f8fafc;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.counter-card-v3:hover {
    background: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.counter-value-v3 {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--hc-dark);
    margin-bottom: 5px;
}

.counter-label-v3 {
    color: var(--hc-body);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
}

/* Team Styling */
.team-card-v3 {
    position: relative;
    background: #fff;
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
}

.team-card-v3:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.team-avatar-v3 {
    width: 160px;
    height: 160px;
    margin: 0 auto 30px;
    border-radius: 40px;
    overflow: hidden;
    transform: rotate(-3deg);
    transition: all 0.4s ease;
}

.team-card-v3:hover .team-avatar-v3 {
    transform: rotate(0deg) scale(1.05);
}

.team-avatar-v3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Timeline V3 */
.timeline-v3 {
    position: relative;
    padding: 50px 0;
}

.timeline-v3::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    transform: translateX(-50%);
}

.timeline-item-v3 {
    display: flex;
    justify-content: flex-end;
    padding-right: 50%;
    position: relative;
    margin-bottom: 40px;
}

.timeline-item-v3:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 50%;
}

.timeline-marker-v3 {
    width: 12px;
    height: 12px;
    background: var(--hc-primary);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.2);
}

.timeline-content-v3 {
    width: 90%;
    background: #fff;
    border: 1px solid #e2e8f0;
    padding: 30px;
    border-radius: 24px;
    margin-right: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.timeline-item-v3:nth-child(even) .timeline-content-v3 {
    margin-right: 0;
    margin-left: 40px;
}

.timeline-content-v3:hover {
    transform: translateY(-5px);
    border-color: var(--hc-primary);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.timeline-year-v3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--hc-dark);
    margin-bottom: 10px;
}

.timeline-desc-v3 {
    color: var(--hc-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .hero-title-v3 {
        font-size: 3.5rem;
    }

    .timeline-v3::before {
        left: 40px;
    }

    .timeline-item-v3 {
        justify-content: flex-start;
        padding-left: 80px;
        padding-right: 0;
    }

    .timeline-item-v3:nth-child(even) {
        padding-left: 80px;
    }

    .timeline-marker-v3 {
        left: 40px;
    }

    .timeline-content-v3 {
        margin-right: 0;
        margin-left: 0;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .hero-title-v3 {
        font-size: 2.8rem;
    }

    .section-title-v3 {
        font-size: 2.2rem;
    }
}