/* Service Details Page Styles */

/* Hero Section / Breadcrumb */
.page-heading {
    margin-top: 100px;
    /* Accounts for the fixed header */
    background-image: url(../images/services-left-image.png);
    /* Fallback or specific bg */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-heading:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(69, 98, 237, 0.9);
    /* #4562ed with opacity */
    background: linear-gradient(135deg, rgba(69, 98, 237, 0.95) 0%, rgba(82, 215, 252, 0.9) 100%);
    /* #4562ed to #52d7fc */
    z-index: 1;
}

.page-heading .header-text {
    position: relative;
    z-index: 2;
}

.page-heading .header-text h2 {
    font-size: 50px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.page-heading .header-text h2 em {
    font-style: normal;
    color: #52d7fc;
    /* Cyan highlight - though on cyan gradient it might need contrast, sticking to white mostly */
    /* Let's make the em white and the main text slightly off-white or vice versa for contrast on this gradient */
    color: #fff;
    text-decoration: underline;
    text-decoration-color: #52d7fc;
}

.page-heading .header-text p {
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto;
}

/* Breadcrumb Links */
.page-heading .header-text .breadcrumb-links {
    margin-top: 30px;
}

.page-heading .header-text .breadcrumb-links a {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    margin: 0 10px;
    transition: all 0.3s;
}

.page-heading .header-text .breadcrumb-links a:hover {
    color: #52d7fc;
}

.page-heading .header-text .breadcrumb-links span {
    color: rgba(255, 255, 255, 0.7);
}


/* Service Content - Modern & Eye Catching */
.service-details {
    padding: 100px 0;
    position: relative;
}

.service-details .section-heading {
    margin-bottom: 60px;
}

.service-details .section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #4562ed;
}

.service-details .section-heading h2 em {
    font-style: normal;
    color: #52d7fc;
}

.service-details .section-heading .line-dec {
    width: 60px;
    height: 3px;
    background-color: #52d7fc;
    margin: 20px 0;
}

.service-content-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 40px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f0f0f0;
}

.service-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(69, 98, 237, 0.1);
    border-color: #52d7fc;
}

.service-content-card i {
    font-size: 48px;
    color: #4562ed;
    margin-bottom: 25px;
    display: inline-block;
}

.service-content-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
}

.service-content-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

/* Sidebar / CTA */
.service-sidebar {
    position: sticky;
    top: 120px;
}

.service-cta {
    background: #4562ed;
    /* background: linear-gradient(135deg, #4562ed 0%, #3a52c7 100%); */
    background-image: url(../images/contact-bg.png);
    background-size: cover;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
}

.service-cta h4 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.service-cta p {
    color: #fff;
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-cta .btn-white {
    background-color: #fff;
    color: #4562ed;
    padding: 12px 30px;
    border-radius: 30px;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s;
}

.service-cta .btn-white:hover {
    background-color: #52d7fc;
    color: #fff;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: center;
}

.features-list li i {
    color: #52d7fc;
    margin-right: 15px;
    font-size: 18px;
}