
.app-about-card {
    background: linear-gradient(135deg, #11cb5fd8 0%, #25cafcc0 100%);  
    border: none;
    color: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.3);
}

.social-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.social-icon:hover {
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
}

/* Gradient Colors */
.bg-gradient1 {
    background: linear-gradient(135deg, #08665e, #08665e);
}
.bg-gradient2 {
    background: linear-gradient(135deg, #11998e, #38ef7d);
}
.bg-gradient3 {
    background: linear-gradient(135deg, #08665e, #08665e);
}

.app-about-text {
    line-height: 1.8;
    font-size: 1rem;
    text-align: justify;         
    text-justify: inter-word;    
    word-break: break-word;  
    font-family: 'Noto Sans Bengali', 'Hind Siliguri', SolaimanLipi, sans-serif;
}

/* Responsive */
@media (max-width: 576px) {
    .app-about-card {
        padding: 20px 15px;
    }
    .app-about-card img {
        width: 100px;
        height: 100px;
    }
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}


/* Developer Page */
.dev-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff512f, #b224dd, #25adfc);
    background-clip: text;              /* standard */
    -webkit-background-clip: text;      /* WebKit fallback */
    -webkit-text-fill-color: transparent;
    color: transparent;                 /* Firefox support */
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.15);
}

.dev-designation {
    font-size: 1rem;
    color: #444;
    font-weight: 500;
    letter-spacing: 0.5px;
    font-style: italic;
    position: relative;
    display: inline-block;
    padding-bottom: 5px;
}

.dev-designation::after {
    content: "";
    position: absolute;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #ff512f, #2575fc);
    left: 25%;
    bottom: 0;
    border-radius: 2px;
}
