/* Service Details Section Styling */

/* Main Section */
.ul-service-details {
    background: #f8f9fa;
}

.ul-section-spacing {
    padding: 80px 0;
}

.ul-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Service Details Image */
.ul-service-details-img {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.ul-service-details-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.ul-service-details-img:hover img {
    transform: scale(1.05);
}

/* Service Details Text */
.ul-service-details-txt {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.ul-service-details-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.ul-service-details-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.ul-service-details-descr {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Inner Blocks */
.ul-service-details-inner-block {
    margin-top: 40px;
    margin-bottom: 40px;
}

.ul-service-details-inner-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.ul-service-details-inner-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 3px;
}

/* List Styling */
.ul-service-details-inner-block ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ul-service-details-inner-block ul li {
    padding: 15px 20px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 100%);
    border-radius: 10px;
    border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.ul-service-details-inner-block ul li:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}

.ul-service-details-inner-block ul li .title {
    font-weight: 600;
    color: #2c3e50;
    display: inline-block;
    margin-right: 5px;
}

.ul-service-details-inner-block ul li .value {
    color: #555;
}

/* Inner Block Image */
.ul-service-details-inner-block-img {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.ul-service-details-inner-block-img img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why It Matters Section */
.ul-service-details-inner-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Sidebar */
.ul-service-details-sidebar {
    position: sticky;
    top: 100px;
}

.ul-service-details-sidebar-widget {
    /* position:sticky; */
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.ul-service-details-sidebar-widget-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
}

/* Sidebar Links */
.ul-service-details-sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ul-service-details-sidebar-links li {
    margin-bottom: 10px;
}

.ul-service-details-sidebar-links li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ul-service-details-sidebar-links li a:hover,
.ul-service-details-sidebar-links li a.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(5px);
    border-color: #667eea;
}

.ul-service-details-sidebar-links li a i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.ul-service-details-sidebar-links li a:hover i {
    transform: rotate(45deg);
}

/* CTA Card */
.ul-service-details-sidebar-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white;
}

.ul-service-details-sidebar-cta .ul-service-details-sidebar-widget-title {
    color: white;
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.ul-service-details-sidebar-cta-content .contact-info {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.ul-service-details-sidebar-cta-content .contact-info.number {
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
}

.ul-service-details-sidebar-cta-content .contact-info a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ul-service-details-sidebar-cta-content .contact-info a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Button */
.ul-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #667eea;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 15px;
    border: 2px solid white;
}

.ul-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ul-btn i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.ul-btn:hover i {
    transform: rotate(45deg);
}

/* Accordion (If needed) */
.ul-accordion {
    margin-top: 20px;
}

.ul-single-accordion-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.ul-single-accordion-item:hover {
    border-color: #667eea;
}

.ul-single-accordion-item__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ul-single-accordion-item__header:hover {
    background: #f8f9fa;
}

.ul-single-accordion-item__title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.ul-single-accordion-item__header .icon {
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.ul-single-accordion-item.open .ul-single-accordion-item__header .icon {
    transform: rotate(180deg);
}

.ul-single-accordion-item__body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.ul-single-accordion-item.open .ul-single-accordion-item__body {
    padding: 0 25px 25px;
    max-height: 500px;
}

.ul-single-accordion-item__body p {
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .ul-service-details-sidebar {
        position: static;
        margin-top: 50px;
    }
}

@media (max-width: 768px) {
    .ul-section-spacing {
        padding: 50px 0;
    }
    
    .ul-service-details-txt {
        padding: 25px;
    }
    
    .ul-service-details-title {
        font-size: 2rem;
    }
    
    .ul-service-details-inner-title {
        font-size: 1.5rem;
    }
    
    .ul-service-details-sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .ul-service-details-title {
        font-size: 1.8rem;
    }
    
    .ul-service-details-descr {
        font-size: 1rem;
    }
    
    .ul-service-details-inner-block ul li {
        padding: 12px 15px;
    }
    
    .ul-service-details-sidebar-links li a {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}