   .about-card {
        background: #fff;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
        transition: 0.4s ease;
    }

    .about-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 60px rgba(6, 163, 218, 0.20);
    }

    .about-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 6px;
        height: 100%;
        background: linear-gradient(180deg, #06A3DA, #058bb8);
    }

    .about-list {
        list-style: none;
        padding-left: 0;
    }

    .about-list li {
        padding-left: 28px;
        position: relative;
        margin-bottom: 10px;
    }

    .about-list li::before {
        content: "\f00c";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        position: absolute;
        left: 0;
        color: #06A3DA;
    }

    .stat-box {
        background: #f3fbff;
        border-radius: 12px;
        padding: 15px 10px;
        border: 1px solid #cfefff;
    }

    .stat-box h5 {
        margin: 0;
        color: #06A3DA;
        font-weight: bold;
    }

    .contact-icon {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, #06A3DA, #058bb8);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .image-card {
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        height: 100%;
    }

    .image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
    }

    .image-card:hover img {
        transform: scale(1.05);
    }