﻿.about-hero {
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    background: #111;
}

.about-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.15) 100% );
}

.min-vh-50 {
    min-height: 650px;
}

.about-pill {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    backdrop-filter: blur(6px);
    color: white;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: .9rem;
}

.about-stat-card {
    background: white;
    border-radius: 20px;
    padding: 35px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    transition: all .25s ease;
}

    .about-stat-card:hover {
        transform: translateY(-5px);
    }

.about-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0d6efd;
    line-height: 1;
}

.about-stat-label {
    margin-top: 12px;
    color: #666;
    font-weight: 500;
}

.about-intro {
    max-width: 720px;
}

.about-feature-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,.06);
    transition: all .25s ease;
}

    .about-feature-card:hover {
        transform: translateY(-8px);
    }

    .about-feature-card img {
        height: 260px;
        width: 100%;
        object-fit: cover;
    }

.logo-wall img {
    max-height: 55px;
    opacity: .7;
    transition: all .25s ease;
    filter: grayscale(100%);
}

    .logo-wall img:hover {
        opacity: 1;
        filter: grayscale(0%);
        transform: scale(1.05);
    }

.about-check-list div {
    margin-bottom: 5px;
}

.about-hero-modern {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at top left, rgba(13,110,253,.12), transparent 35%), radial-gradient(circle at bottom right, rgba(0,180,255,.10), transparent 30%), linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .5;
}

.hero-glow-1 {
    width: 400px;
    height: 400px;
    background: #0d6efd;
    top: -150px;
    left: -100px;
}

.hero-glow-2 {
    width: 350px;
    height: 350px;
    background: #00b4ff;
    bottom: -150px;
    right: -100px;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    line-height: 1.05;
    letter-spacing: -2px;
}

.hero-highlight {
    display: block;
    color: #0d6efd;
}

.hero-subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.2rem;
}

.about-pill-dark {
    background: rgba(13,110,253,.08);
    border: 1px solid rgba(13,110,253,.12);
    color: #0d6efd;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: .9rem;
    font-weight: 600;
}

.mini-stat {
    background: white;
    border-radius: 20px;
    padding: 24px 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,.05);
}

    .mini-stat strong {
        display: block;
        font-size: 2rem;
        line-height: 1;
        color: #0d6efd;
        margin-bottom: 10px;
    }

    .mini-stat span {
        color: #666;
        font-weight: 500;
    }

.about-top {
    background: #fff;
}

.about-mini-title {
    display: inline-block;
    background: #eef5ff;
    color: #0d6efd;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: .9rem;
    font-weight: 600;
}

.about-quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}


.quick-stat {
    background: #e9b046;
    border-radius: 10px;
    padding: 18px 22px;
    min-width: 150px;
}

    .quick-stat strong {
        display: block;
        font-size: 1.8rem;
        line-height: 1;
        color: #fff;
        margin-bottom: 8px;
    }

    .quick-stat span {
        color: #fff;
        font-size: .95rem;
    }

@media (max-width: 768px) {

    .quick-stat strong {
        font-size: 1.4rem;
    }


    .quick-stat {
        min-width: 50px;
    }
}

.about-image-grid img {
    width: 100%;
    object-fit: cover;
}

.about-video-wrap {
    position: relative;
}

.about-video {
    width: 100%;
    border-radius: 10px;
    display: block;
    object-fit: cover;
    background: #000;
}

.about-video-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(233,176,70,.75);
    color: white;
    padding: 12px 18px;
    border-radius: 100px;
    font-size: .95rem;
    font-weight: 600;
    backdrop-filter: blur(6px);
}

.design-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    max-height: 280px;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
}

.design-image {
    width: 100%;
    height: 280px!important;
    object-fit: cover;
    transition: transform .5s ease;
}

.design-image-wrap:hover .design-image {
    transform: scale(1.03);
}

.design-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 135deg, rgba(0,0,0,.15), rgba(0,0,0,0) 45% );
    pointer-events: none;
}
.goblue {
    color: #2a4294;
}
.stdlink {
    color: #0b5ea8;
    text-decoration: none;
}