﻿/* Styling cho trang Giới thiệu (About Us) */
.max-w-700 {
    max-width: 700px;
}

.fs-7 {
    font-size: 0.875rem;
}

.fs-8 {
    font-size: 0.775rem;
}

/* Background Gradient & Hero */
.about-hero {
    padding: 60px 0 60px 0;
    background: linear-gradient(180deg, rgba(239, 246, 255, 0.7) 0%, rgba(255, 255, 255, 1) 100%);
}

.text-primary-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
}

/* Badge số năm kinh nghiệm */
.experience-badge {
    position: absolute;
    bottom: -2px;
    left: 120px;
    min-width: 220px;
}

/* Square & Circle Icons */
.icon-square {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Hover Animation */
.transition {
    transition: all 0.3s ease;
}

.hover-top:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}
