/* ============================================
   SERVICES REDESIGN (CLEAN & SIMPLE)
   Focuses on clarity, high-quality images, and 
   impactful value propositions.
   ============================================ */

:root {
    --sn-primary: #1a73e8;
    --sn-secondary: #52d681;
    --sn-dark: #0a1628;
    --sn-light-bg: #f8fbff;
    --sn-text: #3c4043;
    --sn-text-light: #5f6368;
}

.services-redesign-section {
    padding: 80px 0;
    color: var(--sn-text);
}

.services-hero-simple {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 100px;
}

.services-hero-simple h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--sn-dark);
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.services-hero-simple p {
    font-size: 1.25rem;
    color: var(--sn-text-light);
    line-height: 1.6;
}

/* Service Block Layout */
.service-block {
    margin-bottom: 120px;
}

.service-block:last-child {
    margin-bottom: 0;
}

/* Image Presentation (Two Images) */
.service-visuals {
    position: relative;
    padding: 20px;
}

.main-img-box {
    width: 85%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.secondary-img-box {
    position: absolute;
    bottom: -20px;
    right: 0;
    width: 60%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid #ffffff;
    z-index: 2;
    transform: perspective(1000px) rotateY(10deg);
    transition: transform 0.5s ease;
}

.service-block:hover .main-img-box {
    transform: perspective(1000px) rotateY(0deg);
}

.service-block:hover .secondary-img-box {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
}

/* Content Area */
.service-info-col {
    padding-left: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-block.reverse .service-info-col {
    padding-left: 0;
    padding-right: 50px;
}

.service-tag {
    display: inline-block;
    color: var(--sn-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.service-title-new {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--sn-dark);
    margin-bottom: 25px;
}

.service-description-para {
    font-size: 1.1rem;
    color: var(--sn-text-light);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* List Items */
.service-delivery-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-delivery-list li {
    display: flex;
    align-items: center;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--sn-dark);
}

.service-delivery-list li i {
    color: var(--sn-primary);
    margin-right: 12px;
    font-size: 1.2rem;
}

.btn-service-action {
    display: inline-block;
    background: var(--sn-primary);
    color: #ffffff;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service-action:hover {
    background: var(--sn-dark);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Global CTA */
.services-global-cta {
    border-top: 1px solid #eee;
}

.services-global-cta .btn-service-action {
    align-self: center;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 991px) {

    .service-info-col,
    .service-block.reverse .service-info-col {
        padding: 40px 0 0;
        text-align: center;
    }

    .btn-service-action {
        align-self: center;
    }

    .services-hero-simple h1 {
        font-size: 2.5rem;
    }

    .service-visuals {
        margin-bottom: 40px;
    }

    .service-delivery-list {
        grid-template-columns: 1fr;
    }
}