﻿
body {
    background: #ffffff;
    font-family: 'Segoe UI',sans-serif;
}

/* =========================
   ABOUT SECTION
========================= */

.modern-about {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg,#f8fbff,#ffffff);
    overflow: hidden;
}

/* GLOW EFFECT */

.about-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.18;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: #00bfff;
    top: -120px;
    left: -120px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: #00d4ff;
    bottom: -120px;
    right: -120px;
}

/* BADGE */

.about-badge {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    background: #eef7ff;
    color: #009ff2;
    font-size: 14px;
    letter-spacing: 2px;
    border: 1px solid #d9ecff;
}

/* TITLE */

.about-title {
    font-size: 65px;
    font-weight: 900;
    color: #07111f;
    line-height: 1.2;
}

    .about-title span {
        background: linear-gradient(135deg,#009ff2,#00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* SUBTITLE */

.about-subtitle {
    color: #5b6573;
    max-width: 800px;
    margin: auto;
    margin-top: 25px;
    font-size: 18px;
    line-height: 1.9;
}

/* IMAGE */

.about-image-wrapper {
    position: relative;
}

.about-main-img {
    border-radius: 30px;
    width: 100%;
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    transition: 0.5s;
}

    .about-main-img:hover {
        transform: scale(1.02);
    }

/* EXPERIENCE CARD */

.experience-card {
    position: absolute;
    bottom: 30px;
    right: -20px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 25px;
    padding: 30px;
    width: 220px;
    text-align: center;
    color: #07111f;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

    .experience-card h2 {
        font-size: 55px;
        font-weight: 900;
        color: #009ff2;
    }

/* GLASS BOX */

.glass-about-box {
    background: #ffffff;
    border: 1px solid #e9f2fb;
    border-radius: 30px;
    padding: 50px;
    color: #07111f;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

    .glass-about-box h3 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 25px;
        color: #07111f;
    }

    .glass-about-box p {
        color: #5c6773;
        line-height: 1.9;
        font-size: 16px;
    }

/* FEATURE CARD */

.feature-card {
    background: #ffffff;
    border: 1px solid #e7eef7;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,159,242,0.12);
    }

    .feature-card i {
        font-size: 42px;
        color: #009ff2;
        margin-bottom: 20px;
    }

    .feature-card h5 {
        color: #07111f;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .feature-card p {
        font-size: 14px;
        color: #5c6773;
    }

/* STATS */

.stats-box {
    background: #ffffff;
    border: 1px solid #e8eef5;
    border-radius: 25px;
    padding: 35px;
    text-align: center;
    color: #07111f;
    transition: 0.4s;
    box-shadow: 0 10px 35px rgba(0,0,0,0.05);
}

    .stats-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,159,242,0.12);
    }

    .stats-box h2 {
        color: #009ff2;
        font-size: 50px;
        font-weight: 900;
    }

/* =========================
   TABLE SECTION
========================= */

.credibility-section {
    background: #ffffff;
    padding: 120px 0;
}

.credibility-title {
    color: #07111f;
    font-size: 55px;
    font-weight: 900;
}

    .credibility-title span {
        background: linear-gradient(135deg,#009ff2,#00d4ff);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.credibility-subtitle {
    color: #5c6773;
    font-size: 18px;
    max-width: 800px;
    margin: auto;
    line-height: 1.9;
}

/* TABLE WRAPPER */

.glass-table-wrapper {
    background: #ffffff;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid #e8eef5;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

/* TABLE */

.modern-table {
    margin: 0;
    color: #07111f;
}

    .modern-table thead {
        background: linear-gradient(135deg,#009ff2,#00d4ff);
    }

        .modern-table thead th {
            padding: 22px;
            border: none;
            font-size: 16px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #fff;
        }

    .modern-table tbody tr {
        transition: 0.4s;
        border-bottom: 1px solid #eef3f8;
    }

        .modern-table tbody tr:hover {
            background: #f5fbff;
        }

    .modern-table td {
        padding: 20px;
        border: none;
        color: #4f5a66;
    }

    .modern-table tbody td:first-child {
        color: #009ff2;
        font-weight: 700;
    }

/* RESPONSIVE */

@media(max-width:991px) {

    .about-title {
        font-size: 42px;
    }

    .credibility-title {
        font-size: 38px;
    }

    .glass-about-box {
        padding: 30px;
    }

    .experience-card {
        right: 10px;
        width: 180px;
    }

    .modern-table th,
    .modern-table td {
        white-space: nowrap;
    }
}

/* =========================
   SCROLL ANIMATION
========================= */

/* =========================
   SCROLL ANIMATION
========================= */

.fade-up {
    opacity: 0;
    transform: translateY(80px);
    transition: all 1s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }