/* ========================================
   SINGLE CLIENT PAGE STYLES
   ======================================== */

/* Section Background */
.client-detail {
    background: linear-gradient(135deg, #f8f9ff, #eef2ff);
}

/* Image Wrapper */
.img-wrapper {
    position: relative;
    display: inline-block;
}

/* Glow Effect */
.img-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    /* background: linear-gradient(135deg, #ff9c3b, #ff3b7f, #3b82ff); */
    filter: blur(60px);
    border-radius: 50%;
    z-index: 1;
    animation: pulse 4s infinite;
}

.client-detail .container {
    min-height: 80vh;
    display: flex;
    align-items: center;   /* vertical center */
}

.info-box i {
    color: #28b9e0;
    font-size: 24px;
    font-weight: 900;
}

.client-detail .row {
    width: 100%;
    justify-content: center;
}

/* Image */
.client-img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    transition: 0.4s;
}

.client-img:hover {
    transform: scale(1.05);
}

/* Title */
.client-title {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(90deg, #28b9e0, #9250e2);
    -webkit-background-clip: text;
    color: transparent;
}

/* Info Box */
.info-box {
    background: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    font-size: 20px;
}

.info-box span {
    color: #666;
}

.info-box a {
    text-decoration: none;
    color: #3b82ff;
    font-weight: 500;
}

/* Content */
.client-content {
    color: #555;
    line-height: 1.7;
}

/* Gradient Button */
.btn-gradient {
    background: linear-gradient(90deg, #28b9e0, #9250e2);
    color: #fff;
    border: none;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-gradient:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Animation */
@keyframes pulse {
    0%,100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}
