.profile-wrapper {
    max-width: 1328px;
    margin: 40px auto;
}

/* LEFT CARD */
.profile-card {
    background: #fff;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid #eee;
}

/* PROFILE IMAGE */
.profile-img {
    background: #9f9a9b;
    position: relative;
    width: 100%;
    height: 350px;
    border-radius: 6px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* FAVORITE ICON CENTER FIX */
.favorite-icon {
    position: absolute;
    top: 10px;
    right: 10px;

    width: 36px;
    height: 36px;

    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
}

.favorite-icon i {
    font-size: 19px;
}

/* INFO */
.profile-info {
    margin-top: 12px;
}

.name {
    font-size: 30px;
    font-weight: 600;
}

.rating {
    font-size: 14px;
    color: #666;
    margin: 6px 0 12px;
}

.rating-team-member {
    font-size: 14px;
    color: #666;
    margin: 0px;
}

.rating span {
    color: #161212;
    font-size: 18px;
    font-weight: 400;
}

.star-img{
    display:block;
}

.text-style{
    font-size:18px; font-weight:400;
}

.manage-gap{
    display:flex; align-items:center; gap:3px;
}
/* BUTTON */
.book-btn {
    background: #161212;
    color: #fff;
    font-size: 16px;
    padding: 10px;
    border-radius: 8px;
    font-weight: 500;
    font-family: 'Causten-medium' !important;
}

.book-btn:hover {
    background: #333;
}

/* RIGHT SIDE */
.profile-details {
    background: #fff;
    border-radius: 16px;
    padding: 4px 20px 20px 20px;
    border: 1px solid #eee;
}

.service-accordion .accordion-item .accordion-button
{
    font-size: 20px !important;
    font-weight: 500 !important;
}


/* TABS WRAPPER */
.custom-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #E5E5E5; /* light full line */
    margin: 0 -20px 20px;
   padding: 0 20px 0 30px;
}

/* TAB LINK */
.custom-tabs .nav-link {
    border: none;
    background: none;
    color: #161212;
    font-size: 20px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    padding: 12px 0;
}

/* ACTIVE TAB TEXT */
.custom-tabs .nav-link.active {
    color: #9A8D7E;
    font-weight: 600;
}

/* SMALL DARK LINE FIX */
.custom-tabs .nav-link.active::after {
    content: "";
    position: absolute;
    left: -15px;
    right: -15px;
    bottom: -1px;
    height: 1.5px;
    background: #988787;
    border-radius: 2px;
}



/* ABOUT tab -----------------------------------------------------------------------------------------------------------------*/
.about-section h5 {
    font-size: 24px;
    font-weight: 600;
}

.about-section p {
    font-size: 20px;
    font-weight: 400;
    color: #71717A;
    line-height: 1.3;
}

/* INFO BLOCK */
.info-block {
    margin-top: 18px;

}

.info-block h6 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
}


/* TAGS */
.tag {
    font-family: 'Causten-medium' !important;
    display: inline-block;
    background: #D5D2CC;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 6px;
    margin-right: 6px;
    color: #161212;
    margin-bottom: 8px;
}

/* PORTFOLIO */
.portfolio-header {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
}

/* Title */
.portfolio-header h5 {
    font-family: 'Causten', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 24px;
    letter-spacing: -0.01em; /* -1% convert */
    text-align: left;
    margin: 0;
}

/* Link (See All) */
.portfolio-header a {
    font-family: 'Causten', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: -0.01em;
    text-align: right;
    color: #397FF1;
    text-decoration: none;
}

/* FIXED GRID (KEEP BOOTSTRAP) */
 .portfolio-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 6px;
    width: 100%;
    max-width: 205px;
    height: 150px;
}

.portfolio-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.portfolio-overlay img {
    width: 28.85px;
    height: 23.63px;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);

    opacity: 0;
    transition: 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay img {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}




/* overlay (no dark bg) */
.portfolio-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    transition: 0.3s ease;
}

/* hover effect */
.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}



/* TEAM SECTION */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px;
}

.team-header h5 {
    font-size: 24px;
    font-weight: 600;
}

/* NAV BUTTON */
.nav-buttons {
    display: flex;
    gap: 10px;
}

.nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;

    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn i {
    font-size: 14px;
}

/* TEAM SCROLL */
.team-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
}

.team-scroll::-webkit-scrollbar {
    display: none;
}

/* TEAM CARD */
.team-card {
    min-width: 260px;
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    border: 1px solid #eee;
}

.team-img {
    height: 200px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h6 {
    font-size: 20px;
    font-weight: 600;
}







/* ── SERVICES TAB ── ---------------------------------------------------------------------------------------------------*/

.services-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-top: 5px;
}



.services-title {
    font-size: 21px;
    font-weight: 600;
    margin: 0;
}


.service-search img {
   left:15px;
   top:17px;
}


.service-search input {
    border-radius: 8px;
    border: 1px solid #E5E5E5;
    font-size: 16px;
    width: 280px;
    height: 48px !important;
    padding-left: 2.2rem;
}

#serviceSearchInput.form-control::placeholder {
    color: #71717A !important;
    font-size: 16px;
}
#serviceSearchInput.form-control:focus{
    color: #161212 !important;
}

/* ── ACCORDION WRAPPER ── */
.service-accordion {
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
}

.service-accordion-item {
    border: none !important;
    border-bottom: 1px solid #E5E5E5 !important;
}

.service-accordion-item:last-child {
    border-bottom: none !important;
}



/* ACCORDION BUTTON (Category Header) */
.service-accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 20px;
    font-weight: 500;
    color: #161212;
    background: #fff !important;
    box-shadow: none !important;
    border: none;
    padding: 15px 17px;
    cursor: pointer;
}

/* Remove Bootstrap default arrow */
.service-accordion-btn::after {
    display: none !important;
}

/* Arrow icon */
.accordion-arrow {
    font-size: 20px;
    color: #333;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

/* ACCORDION BODY */
.service-accordion-body {
    padding: 12px 16px 16px 16px;
    background: #F5F5F3;  /* light grey background like reference */
}

/* SERVICE ITEM */
.service-accordion-body .service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: #fff;
    border: 1px solid #EBEBEB;
    border-radius: 12px;
    margin-bottom: 10px;
}

.service-accordion-body .service-item.last-item {
    margin-bottom: 0;
}
.left-card-width{
    width: 80%;
}
/* Service image */
.service-img {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Service Description Truncate */
.text-truncate-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.text-truncate-1 {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
/* Service name */
.service-name {
    font-size: 18px;
    font-weight: 600;
    color: #161212;
}

/* Service description */
.service-desc {
    font-size: 16px;
    color: #71717A;
}

/* Price */
.service-price {
    font-size: 18px;
    font-weight: 600;
    color: #161212;
    white-space: nowrap;
}

/* Duration */
.service-duration {
    font-family: 'Causten-medium' !important;
    font-weight: 500;
    font-size: 14px;
    color: #71717A;
    display: block;
    text-align: right;
}

/* ACCORDION ITEM SEPARATOR */
.service-accordion-item {
    border: none !important;
    border-bottom: 1px solid #E5E5E5 !important;
}

.service-accordion-item:last-child {
    border-bottom: none !important;
}

/* ACCORDION WRAPPER */
.service-accordion {
    border: 1px solid #E5E5E5;
    border-radius: 12px;
    overflow: hidden;
}













/* ── REVIEWS TAB -----------------------------------------------------------------------------------------------── */

/* Header */
.reviews-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-top: 5px;
}

.reviews-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    color: #161212;
}

.edit-review-btn {
    background: #C5BEB6;
    color: #161212;
    border: none;
    border-radius: 8px;
    padding: 10px 18px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    font-family: 'Causten-medium' !important;
}

.edit-review-btn:hover {
    background: #b5b1aa;
}

/* Filter & Sort Row */
.reviews-filter-row {
    display: flex;
    height: 48px;
    gap: 12px;
    justify-content: flex-end;
    margin-left: auto;
}

.filter-btn {
    display: flex;
    align-items: center;
    border: 1px solid #E4E4E7;
    border-radius: 8px;
    padding: 10px 10px;
    font-size: 16px;
    font-weight: 500;
    color: #161212;
    background: #fff;
    cursor: pointer;
    justify-content: center;
    font-family: 'Causten-medium';
}

.filter-btn:hover {
    background: #f5f5f5;
}

/* Rating Summary Box - 2 separate boxes */
.rating-summary-box {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

/* Left Score Box */
.rating-score-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #F4F3EF;
    border-radius: 8px;
    padding: 24px 30px;
    min-width: 400px;
    border: 1px solid #EBEBEB;
}

.rating-number {
    font-size: 32px;
    font-weight: 600;
    color: #161212;
    line-height: 1;
    margin-bottom: 8px;
}

.rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}

.rating-stars i {
    color: #F59E0B;
    font-size: 18px;
}

.rating-total {
    font-size: 16px;
    color: #71717A;
}

/* Right Progress Bars Box */
.rating-bars-right {
    flex: 1;
    background: #F4F3EF;
    border-radius: 8px;
    padding: 20px 24px;
    border: 1px solid #EBEBEB;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-label {
    font-size: 13px;
    color: #161212;
    min-width: 45px;
    white-space: nowrap;
}

.review-progress {
    flex: 1;
    height: 8px;
    background: #E5E5E5;
    border-radius: 10px;
    overflow: hidden;
}

.review-progress .progress-bar {
    background: #F59E0B;
    border-radius: 10px;
}

.bar-count {
    font-size: 13px;
    color: #161212;
    min-width: 35px;
    text-align: right;
}

.rating-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 6px;
}

.rating-stars i {
    color: #F59E0B;
    font-size: 18px;
}

.rating-total {
    font-size: 16px;
    color: #71717A;
}

/* Right Progress Bars */
.rating-bars-right {
    flex: 1;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
}

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bar-label {
    font-size: 16px;
    color: #161212;
    min-width: 45px;
    white-space: nowrap;
}

.review-progress {
    flex: 1;
    height: 8px;
    background: #E5E5E5;
    border-radius: 10px;
    overflow: hidden;
}

.review-progress .progress-bar {
    background: #F59E0B;
    border-radius: 10px;
}

.bar-count {
    font-size: 16px;
    color: #161212;
    min-width: 35px;
    text-align: right;
}

/* Review Card */
.review-card {
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: #F4F3EF;
}

.review-card-highlighted {
    background: #F4F3EF;
}

.review-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

/* Avatar Circle */
.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #D5D2CC;
    color: #161212;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 600;
    color: #161212;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.review-verified {
    color: #397FF1;
    font-size: 16px;
}

.reviewer-stars {
    display: flex;
    gap: 2px;
}

.reviewer-stars i {
    color: #F59E0B;
    font-size: 13px;
}

.review-date {
    font-size: 12px;
    color: #71717A;
    white-space: nowrap;
    margin-top: 2px;
}

.review-text {
    font-size: 13px;
    color: #555;
    margin: 0;
    line-height: 1.6;
}

/* Pagination */
.review-pagination {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    padding-bottom: 16px;
}

.pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;           /* pill shape */
    padding: 8px 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    width: 100%;
}

.page-btn {
    min-width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pagination-btn {
    min-width: 36px;
    height: 36px;
    border-radius: 2px;
    border: 1px solid #E5E5E5;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Arrow Buttons - Always have border-radius */
.arrow-btn {
    border-radius: 20%;
    width: 30px;
    color: #6b7280;
    font-size: 17px;
}

.arrow-btn:hover {
    background: #f8fafc;
}

/* Number Buttons - Flat by default, rounded only on hover + active */
.number-btn {
    border-radius: 6px;
}

.number-btn:hover {
    background: #f1f5f9;
    border-radius: 8px;
}

.number-btn.active {
    background: #e3d8d8;
    color: #ffffff;
    border-radius: 8px;
}

.page-dots {
    padding: 0 10px;
    color: #9ca3af;
    font-size: 16px;
    user-select: none;
    pointer-events: none;
}







/* Review MODAL CONTAINER------------------------------------------------------------------------------------------------ */
.custom-modal {
    border-radius: 16px;
    border: none;
    padding: 32px 32px 24px;
    position: relative;
    width: 100%;
}

/* CLOSE BUTTON */
.btn-close-custom {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: #000000;
    line-height: 1;
}

/* TITLE */
.modal-title-custom {
    font-size: 24px;
    font-weight: 700;
}

/* INNER BODY */
.modal-inner {
    padding: 0;
}

/* GRAY BOX */
.review-box {
    background: #F4F3EF;
    border-radius: 12px;
    padding: 15px 20px 15px;
}

/* STAR ICONS */
.rating-select a {
    color: #E0DDD5;
    font-size: 32px;
    text-decoration: none;
}

/* TEXTAREA */
.review-textarea {
    width: 100%;
    height: 90px;
    border-radius: 8px;
    border: 1px solid #E0DDD5;
    resize: none;
    font-size: 14px;
    padding: 12px 16px 12px 16px;
    background: white;
}

.review-textarea::placeholder {
    color: #9CA3AF;
}

.review-textarea:focus {
    outline: none;
    box-shadow: none;
    border-color: #d1d1d1;
}

/* Full Width Black Horizontal Line */
.modal-divider {
    border: none;
    border-top: 1px solid #C5BEB6;
    margin: 24px -32px 20px -32px;
    width: calc(100% + 64px);
}

/* Modal Footer */
.custom-modal-footer {
    border: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

/* Buttons */
.cancel-btn {
    background: #E8E5DD;
    color: #333;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 15px 12px 15px 12px;
    letter-spacing: 0.5px;
}

.submit-btn {
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    padding: 15px 12px 15px 12px;
    letter-spacing: 0.5px;
}

.cancel-btn:hover {
    background: #dcd8cf;
}

.submit-btn:hover {
    background: #636262;
}

/* Star Colors */
.rating-select a i.ti-star-filled {
    color: #F5A623 !important;
}

.rating-select a i.ti-star {
    color: #121212 !important;
}










/* filter by modal css-------------------------------------------------------------------------- */
.custom-filter-modal {
    border-radius: 20px;
    padding: 15px;
}

/* Rating item */
.rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 6px;
    cursor: pointer;

}

/* Left side (star + text) */
.rating-item .left {
    display: flex;
    align-items: center;
    gap: 4px; /* VERY SMALL GAP (like image) */
}


/* Tick icon */
.check-icon {
    display: none;
    color: #8c7b6b;
    font-size: 18px;
}

/* Show tick only when active */
.rating-item.active .check-icon {
    display: block;
}

/* Buttons */
.clear-btn {
    background: #C5BEB6;
    border-radius: 8px;
    border: none;
    color: #161212;
}

.apply-btn {
    background: #161212;
    color: #fff;
    border-radius: 8px;
    border: none;
}


.modal-footer {
    border-top: 1px solid #E4E4E7; /* horizontal line */
    padding: 15px 20px;
}







/* Modal sortBy-----------------------------------------------------------------------------------------------------------*/
.custom-sort-modal {
    border-radius: 20px;
    padding: 0;
}

/* Body spacing */
.custom-sort-modal .modal-body {
    padding: 10px 20px;
}

/* Sort items */
.sort-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 6px;
    cursor: pointer;
    font-size: 20px;
}

/* Tick */
.sort-check {
    display: none;
    color: #8c7b6b;
    font-size: 20px;
}

/* Active item */
.sort-item.active .sort-check {
    display: block;
}

/* Footer full width line */
.sort-footer {
    border-top: 1px solid #e5e5e5;
    padding: 15px 20px;
    justify-content: flex-end;
    gap: 10px;
}

/* Buttons */
.sort-clear-btn {
    background: #C5BEB6;
    border-radius: 8px;
    border: none;
    color: #161212;
}

.sort-apply-btn {
    background: #161212;
    color: #fff;
    border-radius: 8px;
    border: none;
}
.btn-close {
    filter: invert(1) brightness(0); /* stronger black */
    opacity: 1;
}










/* ── PORTFOLIO LIGHTBOX about section ----------------------------------------------------------------------------── */

.portfolio-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.portfolio-lightbox.active {
    display: flex;
}

/* Box — chhota */
.portfolio-lightbox-box {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    margin: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

/* Header */
.portfolio-lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #F0F0F0;
}

.portfolio-lightbox-title {
    font-size: 14px;
    font-weight: 600;
    color: #161212;
}

.portfolio-lightbox-close {
    background: none;
    border: none;
    font-size: 18px;
    color: #555;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    display: flex;
    align-items: center;
}

.portfolio-lightbox-close:hover {
    color: #000;
}

/* Body */
.portfolio-lightbox-body {
    padding: 16px;
}

/* Slider */
.portfolio-lightbox-slider {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 14px;
    background: #f0f0f0;
}

.portfolio-lightbox-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: opacity 0.25s ease;
}

/* NAV (ONLY IMAGE — NO CIRCLE) */
.portfolio-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
}

/* remove hover background */
.portfolio-lightbox-nav:hover {
    background: transparent;
    box-shadow: none;
}

/* positions */
.portfolio-lightbox-nav.prev {
    left: 10px;
}

.portfolio-lightbox-nav.next {
    right: 10px;
}

/* image control */
.portfolio-lightbox-nav img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* hover effect*/
.portfolio-lightbox-nav img:hover {
    transform: scale(1.1);
    transition: 0.2s ease;
}

/* Title */
.portfolio-lightbox-name {
    font-size: 14px;
    font-weight: 700;
    color: #161212;
    margin-bottom: 6px;
}

/* Description */
.portfolio-lightbox-desc {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Footer */
.portfolio-lightbox-footer {
    display: flex;
    justify-content: flex-end;
    padding: 12px 16px;
    border-top: 1px solid #F0F0F0;
}

.portfolio-lightbox-cancel {
    background: #D5D2CC;
    color: #161212;
    border: none;
    border-radius: 6px;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    cursor: pointer;
    text-transform: uppercase;
}

.portfolio-lightbox-cancel:hover {
    background: #c5c2bc;
}

/* RESPONSIVE DESIGN */
@media (max-width: 968px) {
    .rating-summary-box {
        flex-direction: column;
    }
}
/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .rating-summary-box {
        flex-direction: column;
        gap: 16px;
    }

    .rating-score-left {
        min-width: unset;
        width: 100%;
        padding: 30px 20px;
    }

    .rating-bars-right {
        width: 100%;
        padding: 20px;
    }

    

    .edit-review-btn {
        width: 100%;
        text-align: center;
    }

   

    .filter-btn {
        width: 100%;
    }
}

/* ── Breadcrumb ── */
.breadcrumb-custom {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 12px 8px 7px 10px;
    gap: 8px;
    font-weight: 600;
    font-size: 12px;
    color: #777;
    border-bottom: 1px solid #eee;
}

.breadcrumb-custom .active-link {
    color: #161212;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.separator{
    color: #000000;
    font-size: 15px;
}

.breadcrumb-custom .current-page {
    color: #71717A;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb-custom {
        font-size: 11px;
        overflow-x: auto;
        white-space: nowrap;
        padding: 10px 15px;
    }
    /* Services Tab Mobile Overrides */
    .services-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}
.review-text {
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}
.review-text.collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0px !important;
}
.see-more-link {
    cursor: pointer;
    color: #397FF1;
    font-weight: 500;
    font-size: 14px;
    display: block;
    margin-top: 4px;
}
