body {
    background-color: #ffffff !important;
    color: #1a1a1a;
}

.service-details-section {
    background-color: #ffffff;
    padding: 80px 0;
    color: #1a1a1a;
}

/* Sidebar Styling */
.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: #f8f9fa;
    border-radius: 24px;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.widget-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.widget-title::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #1c2954;
    border-radius: 50%;
    display: inline-block;
}

.service-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-menu-item {
    margin-bottom: 12px;
}

.service-menu-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background-color: #f1f1f1;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-menu-link:hover {
    background-color: #e8f2ff;
    color: #1c2954;
}

.service-menu-link.active {
    background-color: #1c2954;
    color: #fff;
}

.service-menu-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.service-menu-link:hover i {
    transform: translateX(5px);
}

/* Sidebar CTA Card (Rocket style) */
.sidebar-cta-card {
    background: linear-gradient(135deg, #1c2954 0%, #003d80 100%);
    border-radius: 24px;
    padding: 35px 25px;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(28, 41, 84, 0.2);
}

.cta-wavy-line {
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 150px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.sidebar-cta-card::before,
.sidebar-cta-card::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
    opacity: 0.6;
    animation: pulseGlow 3s infinite ease-in-out;
    z-index: 1;
}

.sidebar-cta-card::before {
    top: 55%;
    left: 25%;
    animation-delay: 0.5s;
}

.sidebar-cta-card::after {
    top: 48%;
    right: 20%;
    animation-delay: 1.5s;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.3); }
}

.sidebar-cta-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.3;
    color: #fff;
    position: relative;
    z-index: 2;
}

.rocket-img-wrap {
    width: 160px;
    height: 180px;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
}

.rocket-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: screen; /* Removes black background seamlessly */
    animation: floatingRocket 3s ease-in-out infinite;
}

@keyframes floatingRocket {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.btn-sidebar-contact {
    background-color: #ffffff;
    color: #1c2954;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(28, 41, 84, 0.3);
}

.btn-sidebar-contact:hover {
    background-color: #f8f9fa;
    transform: scale(1.05);
    color: #003d80;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.btn-sidebar-contact:hover {
    transform: scale(1.05);
    background-color: #1c2954;
}

/* Main Content Styling */
.service-main-content .hero-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.service-main-content .hero-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content-heading {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.content-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Step Cards */
.steps-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin: 50px 0 30px;
}

.steps-container {
    margin-top: 40px;
}

.step-row {
    display: flex;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 50px;
}

.step-row:nth-child(even) {
    flex-direction: row-reverse;
}

.step-content-box {
    flex: 1;
    background-color: #ffffff;
    border-radius: 30px;
    padding: 45px;
    border: 1px solid rgba(28, 41, 84, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* Continuous shine sweep animation */
.step-content-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 30%,
        rgba(28, 41, 84, 0.08) 50%,
        rgba(255, 255, 255, 0.55) 60%,
        rgba(255, 255, 255, 0) 70%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: cardShine 3.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Ensure all children render above the shine */
.step-content-box > * {
    position: relative;
    z-index: 2;
}

@keyframes cardShine {
    0% {
        left: -100%;
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    60% {
        left: 150%;
        opacity: 1;
    }
    61%, 100% {
        left: 150%;
        opacity: 0;
    }
}

/* Stagger shine delays for each step card */
.step-row:nth-child(1) .step-content-box::before { animation-delay: 0s; }
.step-row:nth-child(2) .step-content-box::before { animation-delay: 1.2s; }
.step-row:nth-child(3) .step-content-box::before { animation-delay: 2.4s; }

.step-content-box:hover {
    border-color: rgba(28, 41, 84, 0.25);
    box-shadow: 0 16px 48px rgba(28, 41, 84, 0.12), 0 2px 8px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

/* On hover, speed up the shine */
.step-content-box:hover::before {
    animation-duration: 1s;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0) 25%,
        rgba(28, 41, 84, 0.12) 45%,
        rgba(255, 255, 255, 0.75) 55%,
        rgba(255, 255, 255, 0) 70%,
        transparent 100%
    );
}

.step-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1c2954;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
    text-align: right;
}

.step-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #e8f2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1c2954;
    font-size: 1.5rem;
    border: 1px solid rgba(28, 41, 84, 0.2);
    flex-shrink: 0;
}

.step-content-box h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 0;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.step-content-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1.05rem;
}

.step-image-box {
    flex: 1;
    border-radius: 30px;
    overflow: hidden;
}

.step-image-box img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

@media (max-width: 991px) {
    .step-row, .step-row:nth-child(even) {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-num {
        text-align: left;
    }
}

/* FAQ Section Adjustment */
.service-faq-section {
    padding: 60px 0;
}

.service-faq-section .faq-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
}

.faq-item-styled {
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 20px;
}

.faq-question-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.faq-question-wrap:hover {
    color: #1c2954;
}

.faq-icon-arrow {
    width: 24px;
    height: 24px;
    background-color: #1c2954;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.faq-answer-content {
    padding: 15px 0 0 40px;
    color: #555;
    line-height: 1.7;
    display: none;
}

.faq-item-styled.active .faq-answer-content {
    display: block;
}

.faq-item-styled.active .faq-icon-arrow i {
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .service-sidebar {
        position: static;
        margin-bottom: 60px;
    }
    
    .step-card {
        flex-direction: column;
        padding: 30px;
    }
    
    .step-img-wrap {
        width: 100%;
    }
    
    .content-heading {
        font-size: 2.2rem;
    }
}
