body {
    background-color: black !important;
}

.attachment__caption {
    display: none;
}

#service-details .content img {
    max-width: 100%;
    height: auto;
}

@media (min-width: 992px) {
    .sticky-lg-top {
        z-index:996 !important;
    }
}

/* Why Choose Us component styles */
.why-us-content .subtitle {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}
.why-us-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
}
.feature-box {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-box i {
    font-size: 24px;
    color: var(--accent-color);
    margin-right: 15px;
    line-height: 1;
}
.feature-box h4 {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

/* Partners component styles */
.partner-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%);
    transition: all 0.4s ease-in-out;
    opacity: 0.6;
}
.partner-logo:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}
.partner-logo {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 120px;
}

/* Problem Solutions component styles */
.problem-item {
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    border-radius: 10px;
    background: #fff;
    height: 100%;
}
.problem-item:hover {
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.15);
}
.problem-item .icon {
    width: 56px;
    height: 56px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: 0.3s;
}
.problem-item .icon i {
    color: #fff;
    font-size: 24px;
}
.problem-item:hover .icon {
    background: #fff;
    border: 1px solid var(--accent-color);
}
.problem-item:hover .icon i {
    color: var(--accent-color);
}
.problem-item .title {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}
.text-inherit {
    color: inherit;
    text-decoration: none;
}
.text-inherit:hover {
    color: var(--accent-color);
}
.problem-item .description {
    line-height: 24px;
    font-size: 14px;
}

/* Blog List component styles */
.blog-item { border: 1px solid #eee; }
.blog-item:hover { transform: translateY(-10px); box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important; }
.blog-item .transition-hover { transition: transform 0.5s ease; }
.blog-item:hover .transition-hover { transform: scale(1.1); }
.read-more i { transition: transform 0.3s ease; }
.read-more:hover i { transform: translateX(5px); }
.hover-primary:hover { color: var(--accent-color) !important; }

/* Blog Layout styles */
.transition { transition: all 0.3s ease; }
.transition-hover:hover { transform: scale(1.05); }
.post-content img { border-radius: 1rem; margin-bottom: 1.5rem; max-width: 100%; height: auto; }
.leading-relaxed { line-height: 1.8; }
.group:hover .transition-hover { transform: scale(1.1); }

/* CTA Section styles */
.cta {
    background-color: var(--accent-color);
    color: #fff;
    position: relative;
}
.cta.overlay-dark::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.cta .container {
    position: relative;
    z-index: 2;
}
.cta-btn {
    display: inline-block;
    background: #fff;
    color: var(--accent-color);
    border: 2px solid #fff;
    transition: 0.3s;
}
.cta-btn:hover {
    background: transparent;
    color: #fff;
}
.text-white-50 {
    color: rgba(255, 255, 255, 0.8) !important;
}
