/*================================================ ABOUT TGMF CSS ======================================*/

.about-section{
    background:linear-gradient(180deg,#ffffff,#f6f8ff);
    padding:90px 0;
}

/* ===================== ABOUT PREMIUM ENHANCEMENTS ===================== */

/* PARALLAX IMAGE WRAPPER */
.about-img{
    border-radius:20px;
    overflow:hidden;
    position:relative;
    height:100%;
    min-height:320px;
    box-shadow:0 25px 60px rgba(0,0,0,0.15);
}

.about-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 0.6s ease;
    will-change: transform;
}

/* subtle zoom */
.about-img:hover img{
    transform:scale(1.08);
}

/* GRADIENT OVERLAY */
.about-img::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(135deg, rgba(79,70,229,0.25), transparent 60%);
}

/* FLOATING BADGE */
.about-badge{
    position:absolute;
    bottom:20px;
    left:20px;
    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);
    padding:10px 16px;
    border-radius:30px;
    font-weight:700;
    font-size:13px;
    box-shadow:0 8px 20px rgba(0,0,0,0.2);
    opacity:0;
    transform:translateY(10px);
    animation:fadeBadge 0.8s ease forwards;
    animation-delay:0.4s;
}

@keyframes fadeBadge{
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* GLASS CONTENT PANEL */
.about-content{
    background:rgba(255,255,255,0.7);
    backdrop-filter:blur(14px);
    border-radius:18px;
    padding:30px;
    box-shadow:0 20px 45px rgba(0,0,0,0.08);
    border:1px solid rgba(255,255,255,0.4);
}

/* COUNTERS */
.about-stats{
    display:flex;
    gap:25px;
    margin-top:20px;
    flex-wrap:wrap;
}

.about-stat{
    text-align:center;
}

.about-stat h4{
    font-weight:800;
    color:var(--primary);
    margin-bottom:2px;
}

.about-stat p{
    font-size:13px;
    color:#555;
    margin:0;
}

/* ===================== MISSION VISION ADVANCED ===================== */

.mv-card{
    background:#fff;
    border-radius:18px;
    padding:35px 30px;
    text-align:center;
    position:relative;
    overflow:hidden;
    border:1px solid rgba(0,0,0,0.05);
    transition:0.35s ease;
    height:100%;
}

.mv-card:hover{
    transform:translateY(-10px) scale(1.03);
    box-shadow:0 25px 60px rgba(0,0,0,0.12);
    border-color:rgba(79,70,229,0.25);

    background:linear-gradient(
        135deg,
        rgba(79,70,229,0.06),
        rgba(6,182,212,0.06)
    );
}

.mv-card::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(120deg,transparent,rgba(79,70,229,0.1),transparent);
    transition:0.5s;
}

.mv-card:hover::before{
    left:100%;
}

/* ICON */
.mv-icon{
    font-size:45px;
    color:var(--primary);
    margin-bottom:15px;
    transition:0.3s;
}

.mv-card:hover .mv-icon{
    transform:scale(1.25) rotate(6deg);
}

/* TITLE */
.mv-card h5{
    font-weight:800;
    color:var(--primary);
    margin-bottom:10px;
}

/* TEXT */
.mv-card p{
    color:#555;
}

/* subtle divider */
.mv-card hr{
    width:50px;
    height:3px;
    border:none;
    margin:12px auto;
    background:linear-gradient(135deg,#4f46e5,#06b6d4);
}

/* glass cards */
.glass-card{
    background:rgba(255,255,255,0.75);
    backdrop-filter:blur(12px);
    border-radius:18px;
    padding:25px;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    border:1px solid rgba(0,0,0,0.05);
    transition:0.35s;
    height:100%;
}

.glass-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,0.12);
}

.glass-card i{
    font-size:36px;
    color:var(--primary);
}
