/* 
   About Page Styles
*/

/* General About Page */
.about-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
}

.about-page section {
    padding: 80px 0;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.text-primary {
    color: #0d6efd;
}

.bg-light {
    background-color: #f8f9fa;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    gap: 12px;
    color: #0a58ca;
}

.mt-4 {
    margin-top: 30px;
}

/* Font Inter + Playfair được load async từ header.php — không cần @import ở đây */

/* ========================================
   Hero Section V2 — Cinematic Full-Width
   ======================================== */
.about-hero-v2 {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 0 !important;
}

/* Full Background */
.about-hero-v2__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 1;
    transform: scale(1.05);
    animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}

/* Gradient Overlay */
.about-hero-v2__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(10, 15, 40, 0.75) 0%,
            rgba(10, 15, 40, 0.5) 40%,
            rgba(10, 15, 40, 0.7) 80%,
            rgba(10, 15, 40, 0.9) 100%);
    z-index: 2;
}

/* Floating Particles */
.about-hero-v2__particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.about-hero-v2__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.about-hero-v2__particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.about-hero-v2__particles span:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 1s;
    animation-duration: 9s;
    width: 6px;
    height: 6px;
}

.about-hero-v2__particles span:nth-child(3) {
    left: 55%;
    top: 15%;
    animation-delay: 2s;
    animation-duration: 11s;
}

.about-hero-v2__particles span:nth-child(4) {
    left: 75%;
    top: 45%;
    animation-delay: 3s;
    animation-duration: 8s;
    width: 5px;
    height: 5px;
}

.about-hero-v2__particles span:nth-child(5) {
    left: 85%;
    top: 75%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.about-hero-v2__particles span:nth-child(6) {
    left: 45%;
    top: 80%;
    animation-delay: 5s;
    animation-duration: 6s;
    width: 3px;
    height: 3px;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.7;
    }

    50% {
        transform: translateY(-15px) translateX(-10px);
        opacity: 0.5;
    }

    75% {
        transform: translateY(-40px) translateX(20px);
        opacity: 0.8;
    }
}

/* Center Content */
.about-hero-v2__center {
    position: relative;
    z-index: 5;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 60px;
}

/* Badge */
.about-hero-v2__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.about-hero-v2__badge i {
    font-size: 14px;
    color: #60a5fa;
}

/* Title */
.about-hero-v2__title {
    font-family: 'Inter', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.text-glow {
    background: linear-gradient(135deg, #60a5fa 0%, #34d399 50%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Description */
.about-hero-v2__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0 auto 40px;
    max-width: 620px;
}

/* Actions */
.about-hero-v2__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.about-hero-v2__btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff !important;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-hero-v2__btn-primary::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;
}

.about-hero-v2__btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.55);
}

.about-hero-v2__btn-primary:hover::before {
    left: 100%;
}

.about-hero-v2__btn-primary i {
    transition: transform 0.3s ease;
}

.about-hero-v2__btn-primary:hover i {
    transform: translateX(5px);
}

.about-hero-v2__btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 30px;
    border-radius: 14px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.about-hero-v2__btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff !important;
    transform: translateY(-2px);
}

.about-hero-v2__btn-ghost i {
    font-size: 18px;
    color: #60a5fa;
    transition: transform 0.3s ease;
}

.about-hero-v2__btn-ghost:hover i {
    transform: scale(1.15);
}

/* ========================================
   Glass Stat Cards — Bottom Bar
   ======================================== */
.about-hero-v2__glass-stats {
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px 60px;
}

.glass-stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 20px 24px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-stat-card:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.glass-stat-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(167, 139, 250, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glass-stat-card__icon i {
    color: #93c5fd;
    font-size: 18px;
}

.glass-stat-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.glass-stat-card__info strong {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

.glass-stat-card__info span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Scroll Indicator */
.about-hero-v2__scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: scrollBounce 2s ease-in-out infinite;
}

.about-hero-v2__scroll-hint span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.scroll-line {
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
    position: relative;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: #60a5fa;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        top: 0;
        opacity: 1;
    }

    50% {
        top: 20px;
        opacity: 0.3;
    }
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(5px);
    }
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.scroll-reveal.animated {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Responsive — Cinematic Hero
   ======================================== */
@media (max-width: 1024px) {
    .about-hero-v2__glass-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .about-hero-v2__center {
        padding: 100px 16px 40px;
    }

    .about-hero-v2__title {
        font-size: 32px;
    }

    .about-hero-v2__desc {
        font-size: 15px;
    }

    .about-hero-v2__actions {
        flex-direction: column;
        width: 100%;
    }

    .about-hero-v2__btn-primary,
    .about-hero-v2__btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .about-hero-v2__glass-stats {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .glass-stat-card {
        padding: 14px 16px;
        gap: 10px;
    }

    .glass-stat-card__icon {
        width: 36px;
        height: 36px;
    }

    .glass-stat-card__info strong {
        font-size: 20px;
    }

    .about-hero-v2__scroll-hint {
        display: none;
    }
}


/* Câu Chuyện Forza (Story) */
.story-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.story-profile {
    flex: 0 0 350px;
}

.profile-card {
    background: #f8faff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
}

.profile-card img {
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto 20px;
    border: 3px solid #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.profile-card:hover img {
    transform: scale(1.1) rotate(5deg);
}

.profile-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #111;
}

.profile-card .role {
    font-size: 14px;
    color: #0d6efd;
    font-weight: 600;
    margin-bottom: 15px;
}

.profile-card .desc {
    font-size: 14px;
    color: #666;
}

.story-content {
    flex: 1;
}

.intro-text {
    font-size: 18px;
    color: #444;
    margin-bottom: 40px;
    line-height: 1.7;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -35px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0d6efd;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px #0d6efd;
}

.timeline-item .year {
    font-size: 18px;
    font-weight: 700;
    color: #0d6efd;
    display: block;
    margin-bottom: 5px;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-box {
    background: #f0f7ff;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
}

.stat-box h4 {
    font-size: 28px;
    font-weight: 800;
    color: #0d6efd;
    margin-bottom: 10px;
}

.stat-box p {
    font-size: 15px;
    color: #555;
    margin: 0;
    font-weight: 500;
}

/* Vision & Mission - Dynamic Sporty Style */
.vm-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 100px;
    position: relative;
    max-width: 100%;
}

.vm-row.reverse {
    flex-direction: row-reverse;
}

.vm-image {
    flex: 0 0 58%;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.vm-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: block;
}

.vm-row.reverse .vm-image img {
    clip-path: polygon(0 0, 92% 0, 100% 100%, 8% 100%);
}

.vm-image:hover img {
    transform: scale(1.08);
}

.vm-content {
    flex: 0 0 42%;
    margin-right: -8%;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.12);
    border-left: 6px solid #0d6efd;
    position: relative;
}

.vm-row.reverse .vm-content {
    margin-left: 0;
    margin-right: -8%;
    border-left: none;
    border-right: 6px solid #00d2ff;
}

.vm-content h3 {
    font-size: 34px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: #111;
    letter-spacing: -0.5px;
}

.vm-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.7;
}

.vm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vm-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 15px;
}

.vm-list li i {
    color: #0d6efd;
    font-size: 20px;
}

/* Vision & Mission section — overflow-x hidden ở cấp section để không clip nội dung bên trong */
.about-vision-mission {
    overflow-x: hidden;
}

/* USP Section Background Grid */
.about-usp {
    position: relative;
    background-color: #f8fbff !important;
    background-image:
        linear-gradient(rgba(13, 110, 253, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 110, 253, 0.08) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    background-position: center center;
}

/* USP */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.usp-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 4px solid transparent;
}

.usp-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    border-bottom: 4px solid #0d6efd;
}

.usp-num {
    font-size: 80px;
    font-weight: 900;
    font-style: italic;
    color: rgba(13, 110, 253, 0.08);
    position: absolute;
    top: -15px;
    right: 5px;
    line-height: 1;
    transition: transform 0.4s ease;
}

.usp-card:hover .usp-num {
    transform: scale(1.2) translate(-10px, 10px);
    color: rgba(13, 110, 253, 0.15);
}

.usp-card h4 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #111;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    font-style: italic;
}

.usp-card p {
    font-size: 15px;
    color: #555;
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

.usp-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    background: #eef6ff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    clip-path: polygon(10px 0, 100% 0, calc(100% - 10px) 100%, 0 100%);
}

.feature-item:hover {
    background: #0d6efd;
    transform: translateY(-5px) scale(1.05);
}

.feature-item i {
    font-size: 32px;
    color: #0d6efd;
    transition: color 0.4s ease, transform 0.4s ease;
}

.feature-item:hover i {
    color: #fff;
    transform: rotate(15deg) scale(1.2);
}

.feature-item span {
    font-size: 15px;
    font-weight: 700;
    color: #333;
    transition: color 0.4s ease;
}

.feature-item:hover span {
    color: #fff;
}

/* ========================================
   Team Section
   ======================================== */
.about-team {
    position: relative;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    perspective: 1000px;
}

.team-card-inner {
    background: #f8fbff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(13, 110, 253, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    height: 100%;
    border: 1px solid rgba(13, 110, 253, 0.1);
    position: relative;
    overflow: hidden;
}

.team-card-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(13, 110, 253, 0.15);
    border-color: rgba(13, 110, 253, 0.3);
}

.team-avatar {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 3px solid #fff;
    overflow: hidden;
}

.team-card-inner:hover .team-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.15);
}

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

.team-card-inner h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #111;
}

.team-card-inner .role {
    font-size: 14px;
    color: #0d6efd;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card-inner .desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Achievements - Light Sporty Style */
.about-achievements {
    background-color: #f8fbff !important;
    background-image:
        linear-gradient(rgba(13, 110, 253, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 110, 253, 0.08) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    background-position: center center;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.about-achievements .section-title {
    color: #111;
    margin-bottom: 60px;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

.achievement-card {
    background: #fff;
    border: 1px solid rgba(13, 110, 253, 0.1);
    padding: 50px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
    border-bottom: 4px solid transparent;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, 0.15);
    border-bottom: 4px solid #0d6efd;
}

.achievement-card h3 {
    font-size: 65px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 15px;
    color: #0d6efd;
    line-height: 1.1;
}

.achievement-card p {
    font-size: 16px;
    font-weight: 800;
    color: #444;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Case Studies - Browser Mockup */
.about-cases {
    padding: 80px 0;
    background-color: #f4f7f6;
}

.case-swiper {
    padding: 20px 20px 80px 20px !important;
}

.browser-mockup {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.browser-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(13, 110, 253, 0.2);
}

.browser-header {
    background: #eef2f5;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dfe5ea;
}

.browser-dots {
    display: flex;
    gap: 8px;
    margin-right: 20px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.browser-dots span:nth-child(1) {
    background: #ff5f56;
}

.browser-dots span:nth-child(2) {
    background: #ffbd2e;
}

.browser-dots span:nth-child(3) {
    background: #27c93f;
}

.browser-url {
    background: #fff;
    padding: 4px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #6c757d;
    flex: 1;
    text-align: center;
    margin-right: 50px;
    /* balance out the dots */
    font-family: monospace;
    border: 1px solid #dfe5ea;
}

.browser-body img {
    width: 100%;
    display: block;
}

.case-swiper .swiper-pagination-bullet-active {
    background-color: #0d6efd;
    width: 25px;
    border-radius: 5px;
}

.case-swiper .swiper-pagination-bullet {
    transition: all 0.3s ease;
}

.case-swiper .swiper-button-next,
.case-swiper .swiper-button-prev {
    color: #fff;
    background: #0d6efd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(13, 110, 253, 0.3);
    transition: all 0.3s ease;
}

.case-swiper .swiper-button-next:hover,
.case-swiper .swiper-button-prev:hover {
    background: #0056b3;
    transform: scale(1.1);
}

.case-swiper .swiper-button-next:after,
.case-swiper .swiper-button-prev:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
}

.case-swiper .swiper-button-next:after {
    content: '\f054';
}

.case-swiper .swiper-button-prev:after {
    content: '\f053';
}

/* Partners */
.partner-swiper {
    padding: 20px 0;
}

.partner-slide {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    background: #fff;
    border-radius: 12px;
    border: 1px solid rgba(13, 110, 253, 0.1);
    height: 120px !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.partner-slide:hover {
    box-shadow: 0 15px 30px rgba(13, 110, 253, 0.1);
    transform: translateY(-5px);
    border-color: rgba(13, 110, 253, 0.3);
}

.partner-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.partner-slide:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 992px) {

    .about-hero-inner,
    .story-grid,
    .vm-row,
    .vm-row.reverse {
        flex-direction: column;
    }

    .story-profile {
        flex: auto;
        width: 100%;
    }

    .hero-title {
        font-size: 40px;
    }

    .usp-grid,
    .team-grid,
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .story-stats,
    .usp-grid,
    .team-grid,
    .achievement-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 32px;
    }
}