@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #1c1c1c;
    color: #fff;
}


html,
body {
    width: 100%;
    overflow-x: hidden;
}

/* ================================================================================================================================= */
/* ========================= */
/* HERO SECTION */
/* ========================= */
.about-hero {
    position: relative;
    height: 100vh;
    margin-top: 80px;

    background-image: url("/assets/images/banners/service-section.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    /* ✅ vertical center */
    justify-content: center;
    /* ✅ horizontal center */

    overflow: hidden;
}

/* ========================= */
/* OVERLAY */
/* ========================= */
.about-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.549));
    z-index: 1;
}

/* ========================= */
/* BREADCRUMB */
/* ========================= */
.breadcrumb {
    position: relative;
    z-index: 2;
    /* ✅ overlay वर */

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 22px;
    border-radius: 40px;

    /* 🔥 gradient */
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(20, 20, 20, 0.5) 40%,
            rgba(40, 40, 40, 0) 100%);

    color: #fff;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;

    border: 1px solid rgba(255, 255, 255, 0.08);

    /* ✨ glass effect */
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.06);

    transition: all 0.3s ease;
    margin-bottom: 80px;
}

/* ========================= */
/* HOVER */
/* ========================= */
.breadcrumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(158, 255, 198, 0.088);
}

/* ========================= */
/* ICON */
/* ========================= */
.home-icon i {
    color: #9effc7;
    font-size: 14px;
    transition: 0.3s;
}

.breadcrumb:hover .home-icon i {
    transform: scale(1.2);
}

/* ========================= */
/* TEXT */
/* ========================= */
.breadcrumb-text {
    color: #bbb;
    letter-spacing: 0.5px;
    transition: 0.3s;
}

.breadcrumb-text:hover {
    color: #9effc7;
    cursor: pointer;
}

.breadcrumb-active {
    color: #fff;
    font-weight: 500;
}

.arrow {
    color: #777;
    font-size: 16px;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */
@media (max-width: 992px) {
    .about-hero {
        height: 80vh;
    }
}

@media (max-width: 768px) {

    .about-hero {
        height: 60vh;
        padding: 0 15px;
    }

    .breadcrumb {
        font-size: 12px;
        padding: 8px 14px;
        gap: 6px;
    }

    .arrow {
        font-size: 14px;
    }
}

/* ========================================================================================================= */

/* ================= SK SERVICES SECTION ================= */

.sk-services-section {
    position: relative;
    padding: clamp(72px, 8vw, 120px) 6%;
    background: #fff;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

.sk-services-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(800px 300px at 10% 0%, rgba(65, 134, 110, 0.1), transparent 64%),
        radial-gradient(700px 260px at 94% 12%, rgba(15, 23, 42, 0.06), transparent 62%);
    z-index: -1;
}

.sk-services-section>* {
    position: relative;
    z-index: 1;
}

.sk-services-shell {
    width: min(1280px, 100%);
    margin: 0 auto;
}

/* BADGE */
.sk-services-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(65, 134, 110, 0.1), rgba(123, 214, 177, 0.15));
    color: #336959;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 24px;
    border: 1px solid rgba(65, 134, 110, 0.16);
    box-shadow: 0 14px 30px rgba(65, 134, 110, 0.1);
}

.sk-services-badge i {
    font-size: 18px;
}

/* HEADING */
.sk-services-heading {
    font-size: clamp(30px, 4.6vw, 50px);
    font-weight: 700;
    line-height: 1.22;
    color: #000000;
    margin-bottom: clamp(34px, 5vw, 64px);
    letter-spacing: -0.02em;
}

.sk-services-heading span {
    background: linear-gradient(135deg, #2f6f59, #41866e 55%, #7bd6b1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* GRID */
.sk-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
}

/* CARD */
.sk-service-card {
    position: relative;
    min-height: 430px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(65, 134, 110, 0.18);
    box-shadow:
        0 18px 46px rgba(12, 18, 28, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.35) inset;
    transition:
        transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
    cursor: pointer;
    background: #0f172a;
}

.sk-service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background:
        linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.34) 50%, transparent 70%),
        linear-gradient(180deg, rgba(125, 233, 190, 0.08), rgba(65, 134, 110, 0.03));
    opacity: 0;
    transform: translateX(-25%);
    transition: opacity 0.45s ease, transform 0.65s ease;
    pointer-events: none;
    z-index: 2;
}

.sk-service-card::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: linear-gradient(90deg, #2f6f59, #7bd6b1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    z-index: 4;
}

/* IMAGE */
.sk-service-card img {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    display: block;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease;
}

/* OVERLAY CARD */
.sk-service-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    padding: 28px;
    background: linear-gradient(180deg,
            rgba(3, 7, 18, 0),
            rgba(3, 12, 9, 0.84) 34%,
            rgba(3, 12, 9, 0.94));
    color: #fff;
    text-align: left;
    transition: padding 0.35s ease, background 0.35s ease;
    z-index: 3;
}

.sk-service-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #d7f7e8;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
}

/* BUTTON */
.sk-service-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-height: 42px;
    padding: 11px 18px;
    border-radius: 999px;
    background: #fff;
    color: #111827;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.sk-service-btn:hover {
    background: #41866e;
    border-color: #41866e;
    color: #fff;
}

/* ICON + HEADING IN ONE LINE */
.sk-service-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    margin-bottom: 10px;
    text-align: left;
}

.sk-service-title h4 {
    font-size: clamp(20px, 2vw, 24px);
    margin: 0;
    color: #fff;
    line-height: 1.35;
}

.sk-service-overlay p {
    max-width: 34ch;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    line-height: 1.55;
}

.sk-service-card.active,
.sk-service-card:focus-visible {
    border-color: rgba(123, 214, 177, 0.58);
    box-shadow:
        0 28px 64px rgba(12, 18, 28, 0.18),
        0 18px 44px rgba(65, 134, 110, 0.16);
}

.sk-service-card.active::after {
    transform: scaleX(1);
}

.sk-service-card:focus-visible {
    outline: 2px solid #41866e;
    outline-offset: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .sk-service-card:hover {
        transform: translateY(-10px);
        border-color: rgba(65, 134, 110, 0.52);
        box-shadow:
            0 30px 64px rgba(12, 18, 28, 0.24),
            0 0 0 1px rgba(125, 233, 190, 0.26),
            0 1px 0 rgba(255, 255, 255, 0.7) inset;
    }

    .sk-service-card:hover::before {
        opacity: 1;
        transform: translateX(0);
    }

    .sk-service-card:hover img {
        transform: scale(1.06);
        filter: saturate(1.05) contrast(1.04);
    }

    .sk-service-card:hover .sk-service-overlay {
        background: linear-gradient(180deg,
                rgba(3, 7, 18, 0),
                rgba(3, 12, 9, 0.78) 30%,
                rgba(3, 12, 9, 0.96));
        padding-bottom: 34px;
    }
}

.sk-services-detail {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    max-width: 940px;
    margin: clamp(24px, 4vw, 38px) auto 0;
    padding: clamp(18px, 2.4vw, 24px);
    text-align: left;
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff, #f5fbf8);
    border: 1px solid rgba(65, 134, 110, 0.2);
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
}

.sk-services-detail-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #41866e;
    color: #ffffff;
    box-shadow: 0 16px 30px rgba(65, 134, 110, 0.26);
}

.sk-services-detail-icon i {
    font-size: 24px;
}

.sk-services-detail span {
    display: block;
    margin-bottom: 4px;
    color: #41866e;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.sk-services-detail h3 {
    margin: 0 0 6px;
    color: #111827;
    font-size: clamp(20px, 2vw, 24px);
    font-weight: 800;
}

.sk-services-detail p {
    margin: 0;
    color: #5f6b7a;
    font-size: 14px;
    line-height: 1.7;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .sk-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sk-service-card img {
        min-height: 390px;
    }

    .sk-services-heading {
        font-size: 38px;
    }
}

@media (max-width: 720px) {
    .sk-services-section {
        padding: 76px 20px;
    }

    .sk-services-grid {
        grid-template-columns: 1fr;
    }

    .sk-service-card {
        min-height: 360px;
        border-radius: 22px;
    }

    .sk-service-card img {
        min-height: 360px;
    }

    .sk-service-overlay {
        padding: 24px;
    }

    .sk-services-detail {
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .sk-services-heading {
        font-size: 30px;
    }

    .sk-service-overlay {
        padding: 22px 20px;
    }

    .sk-service-overlay h4 {
        font-size: 18px;
    }

    .sk-services-badge {
        font-size: 12px;
        padding: 9px 14px;
    }

    .sk-services-detail {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sk-services-detail-icon {
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sk-service-card,
    .sk-service-card::before,
    .sk-service-card::after,
    .sk-service-card img,
    .sk-service-overlay {
        transition: none !important;
    }
}

/* ================================================================================================== */
/* =====================================================
   WORKING PROCESS – FULL SECTION CSS (IMAGE MATCH)
===================================================== */

.wp-section {
    position: relative;
    min-height: 100vh;
    background: url("/assets/images/banners/service-banner-2.jpg") center/cover no-repeat;
    overflow: hidden;
}

/* OVERLAY */
.wp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.85),
            rgba(0, 0, 0, 0.552),
            rgba(0, 0, 0, 0.85));
    z-index: 1;
}

.wp-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(900px 380px at 8% 18%, rgba(255, 255, 255, 0.07), transparent 60%),
        radial-gradient(780px 320px at 85% 74%, rgba(121, 243, 145, 0.08), transparent 64%);
}

/* CONTAINER */
.wp-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: auto;
    padding: 120px 3% 0;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: flex-start;
}

/* =====================================================
   LEFT CONTENT
===================================================== */

.wp-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 26px;
    border-radius: 40px;
    background: linear-gradient(120deg,
            rgba(0, 0, 0, 0.251) 0%,
            rgba(0, 0, 0, 0.258) 40%,
            rgba(60, 137, 75, 0.315) 75%,
            rgba(121, 243, 145, 0.177) 100%);
    color: #dcffe5;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.wp-left h2 {
    font-size: 42px;
    line-height: 1.4;
    color: #fff;
    margin-bottom: 60px;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.wp-left h2 span {
    color: #73b69f;
}

/* =====================================================
   WHITE FLOATING CARD
===================================================== */

.wp-card {
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(249, 252, 250, 0.95) 100%);
    border-radius: 40px;
    padding: 35px 25px 35px;
    border: 1px solid rgba(93, 140, 112, 0.2);
    box-shadow:
        0 40px 60px rgba(0, 0, 0, 0.22),
        0 1px 0 rgba(255, 255, 255, 0.82) inset;
    position: relative;
    top: -10px;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.35s ease;
}

.wp-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(ellipse 75% 50% at 50% 0%, rgba(121, 243, 145, 0.16), transparent 70%);
    transition: opacity 0.45s ease;
}

@media (hover: hover) and (pointer: fine) {
    .wp-card:hover {
        transform: translateY(-6px);
        border-color: rgba(86, 146, 106, 0.38);
        box-shadow:
            0 48px 76px rgba(0, 0, 0, 0.28),
            0 0 0 1px rgba(134, 182, 76, 0.16),
            0 1px 0 rgba(255, 255, 255, 0.9) inset;
    }

    .wp-card:hover::before {
        opacity: 1;
    }
}

/* GRID */
.wp-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 35px;
    row-gap: 40px;
}

/* ITEM */
.wp-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 8px 10px;
    border-radius: 16px;
    transition: transform 0.35s ease, background 0.35s ease;
}

.wp-item i {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #5c9a83, #367f63, #1d4939);
    color: #fff;
    border-radius: 14px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -26px;
    flex-shrink: 0;
    box-shadow: 0 10px 24px rgba(57, 95, 33, 0.3);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wp-item h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
}

.wp-item p {
    font-size: 14px;
    color: #6b6b6b;
    line-height: 1.5;
    max-width: 95%;
}

@media (hover: hover) and (pointer: fine) {
    .wp-item:hover {
        background: rgba(134, 182, 76, 0.08);
        transform: translateX(4px);
    }

    .wp-item:hover i {
        transform: scale(1.06);
        box-shadow: 0 14px 30px rgba(57, 95, 33, 0.38);
    }
}

/* =====================================================
   HELP BOX (BOTTOM RIGHT)
===================================================== */

.wp-help {
    position: absolute;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #5c9a83, #367f63, #1d4939);
    border-radius: 30px;
    padding: 26px 38px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #fff;
    min-width: 360px;
    box-shadow:
        0 26px 54px rgba(0, 0, 0, 0.34),
        0 1px 0 rgba(255, 255, 255, 0.2) inset;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wp-help i {
    font-size: 26px;
    color: #fff;
}

.wp-help small {
    display: block;
    font-size: 14px;
    opacity: 0.9;
}

.wp-help strong {
    font-size: 20px;
    display: block;
    margin-top: 4px;
}

@media (hover: hover) and (pointer: fine) {
    .wp-help:hover {
        transform: translateY(-3px);
        box-shadow:
            0 30px 62px rgba(0, 0, 0, 0.4),
            0 0 0 1px rgba(186, 255, 107, 0.22),
            0 1px 0 rgba(255, 255, 255, 0.22) inset;
    }
}

/* =====================================================
   PERSON IMAGE
===================================================== */

.wp-person {
    display: flex;
    align-items: flex-end;
    justify-content: end;
}

.wp-person img {
    width: 100%;
    max-width: 350px;
    position: absolute;
    bottom: 0px;
    filter: drop-shadow(0 50px 90px rgba(0, 0, 0, 0.6));
}

/* =====================================================
   RESPONSIVE (desktop base styles above are unchanged)
===================================================== */

/* Small laptop / large tablet — still 2 columns; spacing + image only */
@media (max-width: 1024px) and (min-width: 993px) {
    .wp-section {
        min-height: auto;
    }

    .wp-container {
        padding: 100px 3% 48px;
        gap: 24px;
    }

    .wp-left h2 {
        font-size: 36px;
        margin-bottom: 44px;
    }

    .wp-person img {
        max-width: 300px;
    }
}

/* Tablet — single column stack */
@media (max-width: 992px) {
    .wp-section {
        min-height: auto;
    }

    .wp-overlay {
        background: linear-gradient(165deg,
                rgba(0, 0, 0, 0.88) 0%,
                rgba(0, 0, 0, 0.62) 45%,
                rgba(0, 0, 0, 0.85) 100%);
    }

    .wp-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 88px 4% 56px;
        align-items: stretch;
    }

    .wp-left h2 {
        font-size: 34px;
        margin-bottom: 36px;
    }

    .wp-card {
        top: 0;
        padding: 40px 32px 36px;
        border-radius: 32px;
    }

    .wp-card-grid {
        grid-template-columns: 1fr;
        row-gap: 28px;
        column-gap: 0;
    }

    .wp-help {
        position: static;
        margin-top: 32px;
        width: 100%;
        max-width: 100%;
        min-width: 0;
        justify-content: center;
        text-align: center;
        right: auto;
        bottom: auto;
    }

    .wp-person {
        position: relative;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        min-height: 0;
    }

    .wp-person img {
        position: relative;
        bottom: auto;
        max-width: min(340px, 85vw);
        margin: 0 auto;
    }
}

/* Mobile — typography, touch-friendly spacing */
@media (max-width: 768px) {
    .wp-container {
        padding: 72px 5% 48px;
        gap: 28px;
    }

    .wp-badge {
        font-size: 13px;
        padding: 10px 20px;
        margin-bottom: 20px;
    }

    .wp-left h2 {
        font-size: 28px;
        margin-bottom: 28px;
        line-height: 1.35;
    }

    .wp-card {
        padding: 28px 20px 24px;
        border-radius: 26px;
    }

    .wp-card-grid {
        row-gap: 22px;
    }

    .wp-item {
        gap: 16px;
        padding: 6px 4px;
        align-items: flex-start;
    }

    .wp-item i {
        width: 44px;
        height: 44px;
        font-size: 16px;
        margin-top: 0;
    }

    .wp-item h4 {
        font-size: 17px;
    }

    .wp-item p {
        font-size: 13px;
        max-width: 100%;
    }

    .wp-help {
        flex-direction: column;
        padding: 22px 20px;
        gap: 14px;
        border-radius: 24px;
    }

    .wp-help i {
        font-size: 22px;
    }

    .wp-help small {
        font-size: 13px;
    }

    .wp-help strong {
        font-size: 18px;
    }

    .wp-person img {
        max-width: min(300px, 78vw);
    }
}

@media (max-width: 576px) {
    .wp-left h2 {
        font-size: 24px;
    }

    .wp-person {
        display: none;
    }

    .wp-card {
        padding: 22px 16px 20px;
        border-radius: 22px;
    }

    .wp-item h4 {
        font-size: 16px;
    }

    .wp-item p {
        font-size: 13px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .wp-container {
        padding: 60px 5% 40px;
        gap: 22px;
    }

    .wp-badge {
        font-size: 12px;
        padding: 8px 16px;
        gap: 8px;
    }

    .wp-left h2 {
        font-size: 22px;
        margin-bottom: 22px;
    }

    .wp-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .wp-item i {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .wp-help {
        padding: 18px 16px;
    }

    .wp-help small {
        font-size: 11px;
    }

    .wp-help strong {
        font-size: 16px;
    }
}

/* =============================================================================================== */

/* Section Container */
.warranty-section {
    padding: 120px 20px;
    /* Using system fonts that look clean like the image */
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
}

.warranty-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

/* --- Header Styling --- */
.header-content {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 40px;
    background: linear-gradient(90deg,
            rgba(120, 255, 120, 0.35),
            rgba(120, 255, 120, 0.15));
    color: #014d43;
    border: 1px solid rgba(1, 77, 67, 0.12);
    /* Dark green text */
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.badge-icon {
    margin-right: 8px;
    font-size: 18px;
    line-height: 1;
}

.main-title {
    color: #000000;
    /* Dark green header */
    font-size: 42px;
    font-weight: 600;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.highlight-text {
    display: block;
    /* Forces the second part to a new line */
    color: #41866e;
    /* Lighter green highlight */
}

.description {
    color: #666666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 16px;
}

/* --- Grid Layout --- */
.cards-grid {
    display: grid;
    /* Create 3 equal columns */
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 20px;
}

/* --- Individual Card Styling --- */
.warranty-card {
    border-radius: 20px;
    overflow: hidden;
    /* Ensures gradient and header respect corners */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #1d49397b;
    display: flex;
    flex-direction: column;
}

.card-header {
    background: linear-gradient(135deg, #5c9a83, #367f63, #1d4939);
    /* Dark green header background */
    color: #ffffff;
    padding: 25px 20px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.card-body {
    padding: 35px 40px;
    /* UPDATED GRADIENT: Smooth transition from white to pale yellowish-green */
    background: linear-gradient(to bottom, #FFFFFF 0%, #e6f7ea 100%);
    flex-grow: 1;
    /* Makes cards same height */
}

/* List Styling */
.card-body ul {
    list-style: none;
    /* Remove default bullets */
    padding: 0;
    margin: 0;
}

.card-body li {
    position: relative;
    padding-left: 30px;
    /* Space for custom bullet */
    margin-bottom: 8px;
    color: #444444;
    font-weight: 500;
    font-size: 16px;
}

/* Custom bright green bullet points */
.card-body li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    /* Adjust vertical alignment */
    width: 10px;
    height: 10px;
    background-color: #0c8a5c;
    border-radius: 50%;
}

/* --- Responsive Adjustments --- */

/* Tablets (landscape and portrait) */
@media (max-width: 1024px) {
    .cards-grid {
        /* Switch to 2 columns, 1 on bottom */
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }

    /* Center the last item if there's an odd number */
    .warranty-card:last-child {
        grid-column: auto / span 2;
        max-width: 50%;
        margin: 0 auto;
        width: 100%;
    }

    .main-title {
        font-size: 36px;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    .cards-grid {
        /* Switch to 1 column stack */
        grid-template-columns: 1fr;
    }

    /* Reset the centering fix from tablet view */
    .warranty-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    .main-title {
        font-size: 28px;
    }

    .warranty-section {
        padding: 120px 15px;
    }

    .card-body {
        padding: 30px 25px;
    }
}

/* ======================================================================================================= */


/* ================== MAIN SECTION ================== */
.service-area {
    position: relative;
    width: 100%;
    background: url("/assets/images/banners/service-banner-3.jpg") center/cover no-repeat;
    padding: 100px 3% 320px;
    color: #fff;
    margin-bottom: 150px;
    overflow: visible;
}

/* Overlay (theme-matched to section above) */
.service-area .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(0, 0, 0, 0.915) 0%,
            rgba(0, 0, 0, 0.574)46%,
            rgba(0, 0, 0, 0.775) 100%);
    z-index: 1;
}

.service-area::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(900px 380px at 8% 12%, rgba(61, 214, 140, 0.14), transparent 62%),
        radial-gradient(700px 320px at 90% 78%, rgba(121, 243, 145, 0.08), transparent 66%);
}

/* ================== CONTENT ================== */
.content {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT */
.left {
    flex: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: linear-gradient(90deg,
            rgba(186, 255, 107, 0.2),
            rgba(121, 243, 145, 0.1));
    color: #dcffe5;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(186, 255, 107, 0.28);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    background: linear-gradient(120deg,
            rgba(0, 0, 0, 0.251) 0%,
            rgba(0, 0, 0, 0.258) 40%,
            rgba(60, 137, 75, 0.315) 75%,
            rgba(121, 243, 145, 0.177) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.left h1 {
    font-size: 30px;
    line-height: 1.4;
    font-weight: 600;
    text-shadow:
        0 2px 12px rgba(0, 0, 0, 0.55),
        0 6px 28px rgba(0, 0, 0, 0.35);
}

.left h1 span {
    color: #73b69f;
    text-shadow:
        0 2px 14px rgba(0, 0, 0, 0.5),
        0 0 24px rgba(65, 134, 110, 0.35);
}

/* RIGHT */
.right {
    flex: 1;
}

.right p {
    font-size: 15px;
    line-height: 1.8;
    color: #e0e0e0;
    padding: 16px 18px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

/* ================== MAP OVERLAP ================== */
.map-wrapper {
    position: absolute;
    left: 50%;
    bottom: -150px;
    transform: translateX(-50%);
    width: 90%;
    z-index: 3;
}

.map {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 40px;
    background: #fff url("/assets/images/projects/map.png") center/cover no-repeat;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.45) inset;
    border: 2px solid #0b4b3c;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease;
}

/* ================== PINS ================== */
.pin {
    position: absolute;
    background: linear-gradient(135deg, #0b4b3c, #14654d);
    color: #fff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    display: flex;
    gap: 8px;
    align-items: center;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(186, 255, 107, 0.26);
    box-shadow: 0 10px 24px rgba(8, 18, 32, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .map:hover {
        transform: translateY(-4px);
        box-shadow:
            0 38px 88px rgba(0, 0, 0, 0.34),
            0 0 0 1px rgba(186, 255, 107, 0.24) inset;
    }

    .pin:hover {
        transform: translate(-50%, -55%) scale(1.04);
        background: linear-gradient(135deg, #0f5f48, #1a7a5d);
        box-shadow: 0 16px 32px rgba(8, 18, 32, 0.45);
    }
}

/* Responsive Pin Positions (Percent Based) */
.pin-canada {
    top: 32%;
    left: 28%;
}

.pin-argentina {
    top: 65%;
    left: 35%;
}

.pin-france {
    top: 45%;
    left: 58%;
}

.pin-thailand {
    top: 38%;
    left: 70%;
}

/* ================== TABLET ================== */
@media (max-width: 1024px) {
    .service-area {
        padding: 88px 4% 290px;
    }

    .service-area .content {
        gap: 40px;
    }

    .service-area .left h1 {
        font-size: 32px;
    }

    .service-area .right p {
        font-size: 16px;
    }

    .service-area .map {
        height: 320px;
        border-radius: 30px;
    }

    .service-area .pin {
        font-size: 13px;
        padding: 8px 14px;
    }
}

/* ================== TABLET (STACKED) ================== */
@media (max-width: 992px) {
    .service-area {
        padding: 80px 4% 270px;
    }

    .service-area .content {
        flex-direction: column;
        align-items: stretch;
        gap: 26px;
    }

    .service-area .left,
    .service-area .right {
        width: 100%;
    }

    .service-area .left h1 {
        font-size: 28px;
        text-align: center;
    }

    .service-area .badge {
        margin-inline: auto;
    }

    .service-area .right p {
        text-align: center;
        padding: 12px 8px;
    }
}

/* ================== MOBILE ================== */
@media (max-width: 768px) {

    .service-area {
        padding: 72px 5% 245px;
    }

    .service-area .content {
        text-align: center;
        gap: 22px;
    }

    .service-area .left h1 {
        font-size: 26px;
        line-height: 1.35;
    }

    .service-area .badge {
        font-size: 13px;
        padding: 6px 14px;
    }

    .service-area .right p {
        font-size: 14px;
        line-height: 1.7;
    }

    .service-area .map-wrapper {
        width: 94%;
        bottom: -128px;
    }

    .service-area .map {
        height: 260px;
        border-radius: 24px;
        background-size: cover;
    }

    .service-area .pin {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ================== MOBILE (SMALL) ================== */
@media (max-width: 576px) {
    .service-area {
        padding: 64px 5% 225px;
        margin-bottom: 120px;
    }

    .service-area .left h1 {
        font-size: 24px;
    }

    .service-area .badge {
        font-size: 12px;
        padding: 6px 12px;
    }

    .service-area .right p {
        font-size: 13px;
        padding: 8px 2px;
    }

    .service-area .map {
        height: 232px;
        border-radius: 20px;
    }

    .service-area .pin {
        font-size: 11px;
        padding: 6px 10px;
        gap: 6px;
    }
}

/* ================== SMALL MOBILE ================== */
@media (max-width: 480px) {

    .service-area {
        padding: 58px 5% 210px;
        margin-bottom: 108px;
    }

    .service-area .left h1 {
        font-size: 22px;
    }

    .service-area .map-wrapper {
        width: 96%;
        bottom: -120px;
    }

    .service-area .map {
        height: 210px;
        border-radius: 18px;
    }

    .service-area .pin {
        border-radius: 24px;
    }

    .service-area .pin span {
        display: none;
    }
}

/* ================== LARGE SCREENS ================== */
@media (min-width: 1440px) {
    .left h1 {
        font-size: 44px;
    }

    .map {
        height: 420px;
    }
}


* {
    scroll-behavior: smooth;
}

.showcase-item,
.product-step,
.feature-card {
    will-change: transform, opacity;
}
