/* Fix Profile Picture Frame - 120x120 */
.zoo-profile-main-pic {
    width: 120px !important;
    height: 120px !important;
    overflow: hidden;
    border-radius: 50%;
    display: inline-block;
}

.zoo-profile-main-pic img {
    width: 120px !important;
    height: 120px !important;
    object-fit: cover !important;
    border-radius: 50%;
}

/* Edit Button Gradient Style */
.btn-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff !important;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-gradient:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Make buttons same size */
#btnEdit, #lnkPrint {
    padding: 0.375rem 1.5rem !important;
    font-size: 14px !important;
    min-width: 120px;
}

/* About Description - Justify text */
.about-description {
    text-align: justify !important;
    line-height: 1.8;
}

/* References Slider Styles */

.my-work {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}

.references-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
    padding: 0 60px;
}

.references-slider-container {
    overflow: visible;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
}

.references-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 30px;
    overflow: visible;
}

/* Reference Card Styling */
.reference-card {
    min-width: calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 3px solid transparent;
    flex-shrink: 0;
}

.reference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.reference-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #ffffff;
}

.reference-name {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
    margin-top: 15px;
}

.reference-title {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.reference-contact {
    padding: 20px 0;
    border-top: 1px solid #ecf0f1;
    border-bottom: 1px solid #ecf0f1;
    margin-bottom: 20px;
}

.reference-contact .phone-number {
    font-size: 16px;
    font-weight: 600;
    color: #34495e;
    margin-bottom: 8px;
}

.reference-contact .email {
    font-size: 13px;
    color: #667eea;
    margin-bottom: 0;
    word-break: break-word;
}

.reference-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.reference-link:hover {
    color: #c0392b;
    gap: 12px;
}

.reference-link i {
    font-size: 18px;
}

/* Slider Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.6);
}

.slider-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-btn-prev {
    left: 0;
}

.slider-btn-next {
    right: 0;
}

.slider-btn:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    box-shadow: none;
}

.slider-btn:disabled:hover {
    transform: translateY(-50%) scale(1);
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.indicator-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    width: 30px;
    border-radius: 6px;
}

.indicator-dot:hover {
    background: #95a5a6;
}

.indicator-dot.active:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .reference-card {
        min-width: calc(50% - 15px);
    }

    .references-slider-wrapper {
        padding: 0 50px;
    }

    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .reference-card {
        min-width: 100%;
    }

    .references-slider-wrapper {
        padding: 0 40px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .reference-card {
        padding: 30px 20px;
    }

    .reference-icon {
        width: 70px;
        height: 70px;
        font-size: 35px;
    }

    .reference-name {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .references-slider-wrapper {
        padding: 0 30px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .my-work {
        padding: 60px 0;
    }
}
