        /* Canvas covers full hero */
        #particle-canvas {
            position: absolute;
            top: 0; left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* Text Animation */
        .hero-title {
            opacity: 0;
            animation: fadeInUp 1.5s ease forwards;
        }

        .hero-subtitle {
            opacity: 0;
            animation: fadeInUp 2s ease forwards;
            animation-delay: 0.5s;
        }

        @keyframes fadeInUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
    .img-main-div{
        background: #fff;
    height: 71px;
    width: 74px;
    border-radius: 51px;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    img{
        max-width: 80px;
        height: 42px;
        padding-top: 0px;
        justify-content: center;
        align-items: center;
    }
}    

.about-box {
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
    background: #ffffff !important;
}

/* Image zoom */
.about-box img {
    transition: transform 0.3s ease;
}

.about-box:hover img {
    transform: scale(1.1);
}
