* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-dark:  #1B4332;
    --green-mid:   #2d6a4f;
    --green-light: #eef5f1;
    --silver:      #A8C5B5;
    --text-dark:   #1a1a1a;
    --text-muted:  #777;
    --border:      #e0e0e0;
}

body {
    font-family: 'Inter', sans-serif;
}

/* ── TOP BAR ── */
.jc-topbar {
    background: var(--green-dark);
    padding: 8px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.jc-topbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.jc-topbar-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #a8d5be;
    font-size: 12px;
    font-weight: 500;
}

.jc-topbar-item strong {
    color: #fff;
    font-weight: 600;
}

.jc-topbar-sep {
    color: #2d6a4f;
    font-size: 14px;
}

.jc-topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.rating-stars {
    color: #FFD700;
    font-size: 11px;
    letter-spacing: 1px;
}

/* ── NAVBAR ── */
.jc-nav {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 0 !important;
    height: 74px;
}

.jc-nav .container-xl {
    height: 100%;
    display: flex;
    align-items: center;
}

/* ── BRAND / LOGO ── */
.jc-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.jc-logo-ring {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.jc-logo-ring::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 14px;
    border: 2px solid var(--silver);
}

.jc-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 2px;
}

.jc-brand-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--text-dark);
    letter-spacing: 2.5px;
}

.jc-brand-main span {
    color: var(--green-dark);
}

.jc-brand-sub {
    font-size: 9.5px;
    color: #7a9e8e;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

/* ── NAV LINKS ── */
.jc-link {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.3px;
    padding: 8px 15px;
    border-radius: 8px;
    transition: all 0.18s;
    position: relative;
    display: block;
}

.jc-link:hover {
    color: var(--green-dark);
    background: var(--green-light);
}

.jc-link.active {
    color: var(--green-dark);
}

.jc-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 15px;
    right: 15px;
    height: 2.5px;
    background: var(--green-dark);
    border-radius: 2px;
}

/* ── CONTACT CTA BUTTON ── */
.jc-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green-dark);
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    padding: 11px 24px;
    border-radius: 9px;
    border: 2px solid var(--green-dark);
    transition: all 0.18s;
    margin-left: 8px;
}

.jc-cta:hover {
    background: #fff;
    color: var(--green-dark) !important;
}

/* ── MOBILE TOGGLER ── */
.jc-toggler {
    border: none;
    background: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    cursor: pointer;
}

.tog-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: all 0.2s;
}

/* ── MOBILE STYLES ── */
@media (max-width: 991px) {
    .jc-topbar {
        justify-content: center;
        text-align: center;
    }
    .jc-topbar-right {
        display: none;
    }
    .jc-nav {
        height: auto;
        padding: 12px 0 !important;
    }
    .navbar-nav {
        padding: 12px 0;
        gap: 4px !important;
    }
    .jc-link.active::after {
        display: none;
    }
    .jc-cta {
        margin-left: 0;
        justify-content: center;
        margin-top: 8px;
    }
}
/* ── HERO SECTION ── */
.first-section {
    /* min-height: 800px; */
    background-color: #1B4332;
    /* background-image: url('../images/bg-image.jpg'); */
    /* background-size: cover;
    background-position: center; */
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute; inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(
        45deg, #fff 0px, #fff 1px,
        transparent 1px, transparent 40px
    );
    pointer-events: none;
}

.hero-circle-1 {
    position: absolute;
    width: 550px; height: 550px;
    border-radius: 50%; background: #2d6a4f;
    right: -80px; top: -80px;
    opacity: 0.45; pointer-events: none;
}

.hero-circle-2 {
    position: absolute;
    width: 280px; height: 280px;
    border-radius: 50%; background: #245c3e;
    left: -60px; bottom: -60px;
    opacity: 0.4; pointer-events: none;
}

.hero-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 100px 28px 80px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #a8d5be;
    font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 6px 18px; border-radius: 50px;
    margin-bottom: 28px;
}

.live-dot {
    width: 7px; height: 7px;
    background: #4ade80; border-radius: 50%;
    animation: blink 1.4s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 80px; color: #fff;
    letter-spacing: 4px; line-height: 1.0;
    margin-bottom: 24px;
}
.hero-title span { color: #A8C5B5; }

.hero-desc {
    color: #a8d5be;
    font-size: 17px; line-height: 1.8;
    margin: 0 auto 44px;
    max-width: 600px;
}

.hero-btns {
    display: flex; gap: 16px;
    justify-content: center;
    flex-wrap: wrap; margin-bottom: 40px;
}

.btn-white {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; color: #1B4332;
    border: 2px solid #fff;
    padding: 15px 34px;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 14px;
    border-radius: 10px; cursor: pointer;
    transition: all 0.18s; text-decoration: none;
}
.btn-white:hover { background: #eef5f1; color: #1B4332; border-color: #eef5f1; }

.btn-outline-w {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    padding: 15px 34px;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 14px;
    border-radius: 10px; cursor: pointer;
    transition: all 0.18s; text-decoration: none;
}
.btn-outline-w:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.hero-features {
    display: flex; gap: 24px;
    justify-content: center;
    flex-wrap: wrap; margin-bottom: 50px;
}
.hf-item {
    display: flex; align-items: center; gap: 8px;
    color: #a8d5be; font-size: 13px; font-weight: 600;
}
.hf-check {
    width: 20px; height: 20px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* ── HERO STAT CARDS ── */
.hero-cards {
    display: flex; gap: 14px;
    justify-content: center; flex-wrap: wrap;
}
.hc-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 20px 22px;
    text-align: center;
    flex: 1; min-width: 130px; max-width: 170px;
}
.hc-icon {
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 12px;
}
.hc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px; color: #fff;
    letter-spacing: 1px; line-height: 1; margin-bottom: 4px;
}
.hc-label {
    font-size: 10px; color: #7aab90;
    font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
/* ── CTA SECTION ── */
.cta-section {
    background: #143728;
    padding: 80px 28px;
    position: relative;
    overflow: hidden;
}

.cta-circle-1 {
    position: absolute;
    width: 400px; height: 400px;
    border-radius: 50%; background: #1b4332;
    right: -100px; top: -100px;
    opacity: 0.5; pointer-events: none;
}

.cta-circle-2 {
    position: absolute;
    width: 220px; height: 220px;
    border-radius: 50%; background: #0f2d1f;
    left: -60px; bottom: -60px;
    opacity: 0.5; pointer-events: none;
}

.cta-inner {
    padding-left: 100px;
    /* max-width: 860px; */
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
@media screen and (min-width: 992px) {
    .cta-inner { padding-left: 0px; }
    
}

.cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 58px; color: #fff;
    letter-spacing: 3px; line-height: 1.05;
    margin-bottom: 16px;
}
.cta-title span { color: #A8C5B5; }

.cta-desc {
    color: #a8d5be;
    font-size: 16px; line-height: 1.75;
    max-width: 520px;
    margin: 0 0 36px;
}

.cta-section .hero-btns{  
    display: flex; gap: 16px;
    justify-content: start;
    flex-wrap: wrap;
    margin-bottom: 2px;
}

/* ── SERVICES SECTION ── */
.svc-section {
    background: #f5f9f6;
    padding: 80px 28px;
}

.svc-header {
    text-align: center;
    margin-bottom: 52px;
}

.svc-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #e6f0eb;
    color: #1B4332;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.svc-badge-dot {
    width: 6px; height: 6px;
    background: #2d8a5e;
    border-radius: 50%;
    display: inline-block;
}

.svc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px;
    color: #1a1a1a;
    letter-spacing: 3px;
    line-height: 1.05;
    margin: 0 0 14px;
}
.svc-title span { color: #1B4332; }

.svc-sub {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1060px;
    margin: 0 auto;
}

.svc-card {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 220px;
    cursor: pointer;
}

.svc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.svc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(10, 30, 18, 0.88) 0%,
        rgba(10, 30, 18, 0.35) 55%,
        rgba(10, 30, 18, 0.08) 100%
    );
    transition: background 0.2s;
}

.svc-card:hover .svc-overlay {
    background: linear-gradient(
        to top,
        rgba(10, 30, 18, 0.95) 0%,
        rgba(10, 30, 18, 0.55) 60%,
        rgba(10, 30, 18, 0.2) 100%
    );
}

.svc-arrow {
    position: absolute;
    top: 16px; right: 16px;
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.svc-card:hover .svc-arrow { opacity: 1; }

.svc-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 18px 20px;
}

.svc-icon-wrap {
    width: 36px; height: 36px;
    background: rgba(168,197,181,0.2);
    border: 1px solid rgba(168,197,181,0.35);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.svc-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: #fff;
    letter-spacing: 1.5px;
    line-height: 1.1;
    margin: 0 0 5px;
}

.svc-desc {
    font-size: 11.5px;
    color: #a8d5be;
    line-height: 1.5;
    margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .svc-grid { grid-template-columns: repeat(2, 1fr); }
    .svc-title { font-size: 38px; }
}

@media (max-width: 480px) {
    .svc-grid { grid-template-columns: 1fr; }
}

/* ── WHY CHOOSE US ── */
.wcu-section {
    background: #fff;
    padding: 90px 28px;
}

.wcu-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.wcu-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #e6f0eb;
    color: #1B4332;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}
.wcu-badge-dot {
    width: 6px; height: 6px;
    background: #2d8a5e;
    border-radius: 50%;
    display: inline-block;
}

.wcu-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 50px; color: #1a1a1a;
    letter-spacing: 3px; line-height: 1.05;
    margin-bottom: 16px;
}
.wcu-title span { color: #1B4332; }

.wcu-desc {
    color: #666;
    font-size: 15px; line-height: 1.75;
    margin-bottom: 32px;
    max-width: 430px;
}

.wcu-btns {
    display: flex; gap: 14px; flex-wrap: wrap;
}

.wcu-btn-call {
    display: inline-flex; align-items: center; gap: 9px;
    background: #1B4332; color: #fff;
    border: 2px solid #1B4332;
    padding: 13px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 13px;
    border-radius: 10px; text-decoration: none;
    transition: all .18s;
}
.wcu-btn-call:hover { background: #143728; border-color: #143728; color: #fff; }

.wcu-btn-outline {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: #1B4332;
    border: 2px solid #1B4332;
    padding: 13px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 13px;
    border-radius: 10px; text-decoration: none;
    transition: all .18s;
}
.wcu-btn-outline:hover { background: #1B4332; color: #fff; }

.wcu-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 36px;
}
.wcu-stat {
    background: #f5f9f6;
    border-radius: 12px;
    padding: 18px 20px;
}
.wcu-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px; color: #1B4332;
    letter-spacing: 2px; line-height: 1;
}
.wcu-stat-label {
    font-size: 12px; color: #888;
    font-weight: 600; letter-spacing: 0.5px;
    margin-top: 4px;
}

.wcu-right {
    display: flex; flex-direction: column; gap: 18px;
}

.wcu-card {
    background: #fff;
    border: 1px solid #e8f0ec;
    border-radius: 14px;
    padding: 22px;
    display: flex; gap: 18px;
    align-items: flex-start;
    transition: border-color .2s;
}
.wcu-card:hover { border-color: #a8d5be; }

.wcu-card-icon {
    width: 46px; height: 46px;
    background: #1B4332;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.wcu-card-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px; color: #a8d5be;
    letter-spacing: 1px; margin-bottom: 4px;
}
.wcu-card-title {
    font-weight: 700; font-size: 14px;
    color: #1a1a1a; margin-bottom: 5px;
}
.wcu-card-desc {
    font-size: 13px; color: #777; line-height: 1.6;
}

/* ── FOOTER ── */
.ft-section {
    background: #0d2b1c;
    padding: 64px 28px 0;
}

.ft-inner { max-width: 1060px; margin: 0 auto; }

.ft-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 52px;
}

.ft-logo-row {
    display: flex; align-items: center;
    gap: 12px; margin-bottom: 16px;
}
.ft-logo-box {
    width: 44px; height: 44px;
    background: #1B4332;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    border: 1.5px solid #2d6a4f;
}
.ft-brand-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px; color: #fff; letter-spacing: 2px;
}
.ft-brand-name span { color: #A8C5B5; }
.ft-brand-tag {
    font-size: 9px; color: #5a8a72;
    letter-spacing: 3px; font-weight: 700; text-transform: uppercase;
}

.ft-about {
    font-size: 13px; color: #5a8a72;
    line-height: 1.75; margin-bottom: 22px;
    max-width: 240px;
}

.ft-socials { display: flex; gap: 10px; }
.ft-social {
    width: 34px; height: 34px;
    background: #1B4332; border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    text-decoration: none; transition: background .18s;
}
.ft-social:hover { background: #2d6a4f; }

.ft-col-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px; color: #fff;
    letter-spacing: 2px; margin-bottom: 18px;
}

.ft-links { display: flex; flex-direction: column; gap: 10px; }
.ft-link {
    font-size: 13px; color: #5a8a72;
    text-decoration: none;
    display: flex; align-items: center; gap: 6px;
    transition: color .18s;
}
.ft-link:hover { color: #a8d5be; }

.ft-contact-item {
    display: flex; align-items: flex-start;
    gap: 10px; margin-bottom: 14px;
}
.ft-contact-icon {
    width: 30px; height: 30px;
    background: #1B4332; border-radius: 7px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; margin-top: 1px;
}
.ft-contact-text {
    font-size: 13px; color: #5a8a72; line-height: 1.5;
}
.ft-contact-text strong {
    color: #a8d5be; display: block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    margin-bottom: 2px;
}

.ft-divider { border: none; border-top: 1px solid #1B4332; margin: 0; }

.ft-bottom {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 20px 0; flex-wrap: wrap; gap: 12px;
}
.ft-copy { font-size: 12px; color: #3d6b52; }
.ft-bottom-links { display: flex; gap: 20px; }
.ft-bottom-link {
    font-size: 12px; color: #3d6b52;
    text-decoration: none; transition: color .18s;
}
.ft-bottom-link:hover { color: #a8d5be; }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .wcu-inner { grid-template-columns: 1fr; gap: 48px; }
    .ft-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 576px) {
    .ft-grid { grid-template-columns: 1fr; gap: 32px; }
    .wcu-title { font-size: 38px; }
}



/* servicepage */
/* ── SERVICES PAGE HERO ── */
.sp-hero {
    min-height: 480px;
    background-color: #1B4332;
    background-image: url('../images/services-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.sp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(8, 28, 18, 0.72);
    z-index: 1;
}
.sp-hero-pattern {
    position: absolute; inset: 0;
    opacity: 0.04;
    background-image: repeating-linear-gradient(45deg, #fff 0px, #fff 1px, transparent 1px, transparent 40px);
    pointer-events: none;
}
.sp-hero-circle1 {
    position: absolute;
    width: 420px; height: 420px;
    border-radius: 50%; background: #2d6a4f;
    right: -80px; top: -80px;
    opacity: 0.5; pointer-events: none;
}
.sp-hero-circle2 {
    position: absolute;
    width: 200px; height: 200px;
    border-radius: 50%; background: #143728;
    left: -50px; bottom: -50px;
    opacity: 0.5; pointer-events: none;
}
.sp-hero-inner {
    position: relative; z-index: 2;
    text-align: center;
    padding: 90px 28px 70px;
    width: 100%;
}
.sp-hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #a8d5be; font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 18px; border-radius: 50px; margin-bottom: 22px;
}
.sp-live-dot {
    width: 7px; height: 7px;
    background: #4ade80; border-radius: 50%;
    animation: blink 1.4s infinite;
}
.sp-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 72px; color: #fff;
    letter-spacing: 4px; line-height: 1.0; margin-bottom: 16px;
}
.sp-hero-title span { color: #A8C5B5; }
.sp-hero-desc {
    color: #a8d5be; font-size: 16px; line-height: 1.8;
    max-width: 560px; margin: 0 auto 36px;
}
.sp-hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.sp-btn-w {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: #1B4332; border: 2px solid #fff;
    padding: 13px 28px; font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 13px; border-radius: 10px; text-decoration: none;
    transition: all .18s;
}
.sp-btn-w:hover { background: #eef5f1; color: #1B4332; }
.sp-btn-o {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    padding: 13px 28px; font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 13px; border-radius: 10px; text-decoration: none;
    transition: all .18s;
}
.sp-btn-o:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.sp-breadcrumb {
    display: flex; align-items: center; gap: 8px;
    justify-content: center; margin-top: 28px;
}
.sp-breadcrumb a { font-size: 13px; color: #5a8a72; text-decoration: none; }
.sp-breadcrumb .sep { color: #2d6a4f; }
.sp-breadcrumb .current { font-size: 13px; color: #a8d5be; font-weight: 600; }

/* ── SERVICE CARDS (same as homepage, sp- prefix) ── */
.sp-svc-section { background: #f5f9f6; padding: 80px 28px; }
.sp-svc-header { text-align: center; margin-bottom: 52px; }
.sp-badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: #e6f0eb; color: #1B4332; font-size: 11px;
    font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 50px; margin-bottom: 16px;
}
.sp-badge-dot { width: 6px; height: 6px; background: #2d8a5e; border-radius: 50%; display: inline-block; }
.sp-svc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; color: #1a1a1a; letter-spacing: 3px; line-height: 1.05; margin: 0 0 14px;
}
.sp-svc-title span { color: #1B4332; }
.sp-svc-sub { color: #666; font-size: 15px; line-height: 1.7; max-width: 500px; margin: 0 auto; }
.sp-svc-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 1060px; margin: 0 auto;
}
.sp-card {
    border-radius: 14px; overflow: hidden;
    position: relative; height: 210px; cursor: pointer;
}
.sp-card-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sp-card-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,30,18,0.88) 0%, rgba(10,30,18,0.25) 60%, transparent 100%);
}
.sp-card:hover .sp-card-overlay {
    background: linear-gradient(to top, rgba(10,30,18,0.95) 0%, rgba(10,30,18,0.5) 65%, rgba(10,30,18,0.15) 100%);
}
.sp-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 18px 20px; }
.sp-card-icon {
    width: 34px; height: 34px;
    background: rgba(168,197,181,0.2);
    border: 1px solid rgba(168,197,181,0.3);
    border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.sp-card-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 19px; color: #fff; letter-spacing: 1.5px; margin: 0 0 4px;
}
.sp-card-desc { font-size: 11.5px; color: #a8d5be; line-height: 1.5; margin: 0; }

/* ── WORKING PROCESS ── */
.sp-proc-section { background: #fff; padding: 90px 28px; }
.sp-proc-inner { max-width: 1060px; margin: 0 auto; }
.sp-proc-header { text-align: center; margin-bottom: 60px; }
.sp-proc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px; color: #1a1a1a; letter-spacing: 3px; margin-bottom: 14px;
}
.sp-proc-title span { color: #1B4332; }
.sp-proc-sub { color: #666; font-size: 15px; line-height: 1.7; max-width: 560px; margin: 0 auto; }
.sp-proc-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.sp-proc-card {
    background: #fff; border: 1px solid #e8f0ec;
    border-radius: 16px; padding: 28px 22px; text-align: center;
    transition: border-color .2s;
}
.sp-proc-card:hover { border-color: #a8d5be; }
.sp-proc-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 44px; color: #e8f0ec; letter-spacing: 2px; line-height: 1; margin-bottom: 16px;
}
.sp-proc-icon {
    width: 52px; height: 52px; background: #1B4332;
    border-radius: 12px; display: flex; align-items: center;
    justify-content: center; margin: 0 auto 16px;
}
.sp-proc-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px; color: #1a1a1a; letter-spacing: 1.5px; margin-bottom: 8px;
}
.sp-proc-desc { font-size: 13px; color: #777; line-height: 1.6; }

/* ── PAGE CTA ── */
.sp-cta { background: #143728; padding: 80px 28px; position: relative; overflow: hidden; }
.sp-cta-c1 {
    position: absolute; width: 380px; height: 380px;
    border-radius: 50%; background: #1b4332;
    right: -90px; top: -90px; opacity: 0.5; pointer-events: none;
}
.sp-cta-c2 {
    position: absolute; width: 200px; height: 200px;
    border-radius: 50%; background: #0f2d1f;
    left: -50px; bottom: -50px; opacity: 0.5; pointer-events: none;
}
.sp-cta-inner { max-width: 860px; margin: 0 auto; position: relative; z-index: 2; }
.sp-cta-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: #a8d5be; font-size: 11px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    padding: 5px 16px; border-radius: 50px; margin-bottom: 22px;
}
.sp-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 56px; color: #fff; letter-spacing: 3px; line-height: 1.05; margin-bottom: 16px;
}
.sp-cta-title span { color: #A8C5B5; }
.sp-cta-desc { color: #a8d5be; font-size: 16px; line-height: 1.75; max-width: 520px; margin-bottom: 36px; }
.sp-cta-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.sp-cta-btn-w {
    display: inline-flex; align-items: center; gap: 9px;
    background: #fff; color: #1B4332; border: 2px solid #fff;
    padding: 14px 32px; font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 14px; border-radius: 10px; text-decoration: none; transition: all .18s;
}
.sp-cta-btn-w:hover { background: #eef5f1; }
.sp-cta-btn-o {
    display: inline-flex; align-items: center; gap: 9px;
    background: transparent; color: #fff;
    border: 2px solid rgba(255,255,255,0.35);
    padding: 14px 32px; font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 14px; border-radius: 10px; text-decoration: none; transition: all .18s;
}
.sp-cta-btn-o:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.sp-cta-feats {
    display: flex; gap: 24px; flex-wrap: wrap;
    margin-top: 32px; padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.sp-cta-feat { display: flex; align-items: center; gap: 8px; color: #a8d5be; font-size: 13px; font-weight: 600; }
.sp-cta-check {
    width: 20px; height: 20px; background: rgba(255,255,255,0.1);
    border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
    .sp-proc-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-hero-title { font-size: 56px; }
}
@media (max-width: 768px) {
    .sp-svc-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-hero-title { font-size: 46px; }
}
@media (max-width: 480px) {
    .sp-svc-grid { grid-template-columns: 1fr; }
    .sp-proc-grid { grid-template-columns: 1fr; }
    .sp-cta-title { font-size: 40px; }
}


/* contactus page */
.jc-contact-section {
    background: #f4f8f6;
}

/* LEFT */
.jc-contact-info {
    background: #0f3d2e;
    color: #fff;
    padding: 40px;
    border-radius: 20px;
}

.jc-contact-title {
    font-size: 36px;
    font-weight: 700;
}

.jc-contact-desc {
    opacity: 0.85;
    margin-bottom: 25px;
}

.jc-info-box div {
    margin-bottom: 10px;
    font-size: 15px;
}

/* FORM */
.jc-contact-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* INPUT */
.jc-input {
    border-radius: 12px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: 0.3s;
}

.jc-input:focus {
    border-color: #1c6b50;
    box-shadow: 0 0 0 0.15rem rgba(28,107,80,0.15);
}

/* BUTTON */
.jc-btn {
    background: #1c6b50;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.jc-btn:hover {
    background: #15543f;
}

/* gallery page */
.gallery-section {
    background: #f5f7f6;
}

/* Heading */
.gallery-title {
    font-weight: 700;
    color: #1e3d34;
}

.gallery-title span {
    color: #2e7d5b; /* dark green highlight */
}

.gallery-sub {
    color: #6c757d;
}

/* Masonry Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
}

/* Items */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
}

/* Different sizes */
.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

/* Overlay */
.gallery-item::after {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: rgba(46, 125, 91, 0.85); /* dark green overlay */
    color: #fff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 14px;
    opacity: 0;
    transition: 0.4s ease;
}

/* Hover Effect 🔥 */
.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-item:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* serving areas */
/* SERVING AREAS */
.sa-section {
    background: #f4f8f6;
    padding: 80px 0;
}

.sa-header {
    margin-bottom: 40px;
}

.sa-badge {
    display: inline-block;
    background: rgba(28,107,80,0.1);
    color: #1c6b50;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.sa-title {
    font-size: 36px;
    font-weight: 700;
}

.sa-title span {
    color: #1c6b50;
}

.sa-sub {
    max-width: 600px;
    margin: auto;
    color: #555;
    font-size: 15px;
}

/* GRID ITEMS */
.sa-item {
    background: #fff;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.sa-item:hover {
    transform: translateY(-4px);
    border-color: #1c6b50;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ICON */
.sa-icon {
    width: 24px;
    height: 24px;
    background: #1c6b50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}


/* FLOATING BUTTON BASE */
.float-btn {
    position: fixed;
    bottom: 25px;
    z-index: 999;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s;
    animation: floatUp 1s ease;
}

/* ICON IMAGE */
.float-btn img {
    width: 8vh;

}

/* LEFT (WHATSAPP) */
.whatsapp-btn {
    left: 20px;
    /* background: #25D366; */
}

/* RIGHT (CALL) */
.call-btn {
    right: 20px;
    /* background: #1c6b50; */
}

/* HOVER EFFECT */
.float-btn:hover {
    transform: scale(1.1);
}

/* PULSE ANIMATION */
.whatsapp-btn::before,
.call-btn::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.6);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* ENTRY ANIMATION */
@keyframes floatUp {
    from {
        transform: translateY(80px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* SECTION */
.hw-section {
    padding: 90px 0;
    background: #f4f8f6;
}

/* TITLE */
.hw-title {
    font-size: 40px;
    font-weight: 700;
    color: #1b4332;
}

.hw-title span {
    color: #1c6b50;
}

/* CARD */
.hw-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
    height: 100%;
}

.hw-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

/* ICON */
.hw-icon {
    width: 60px;
    height: 60px;
    background: #1c6b50;
    color: #fff;
    font-size: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* TEXT */
.hw-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #1b4332;
}

.hw-card p {
    font-size: 14px;
    color: #666;
}

/* SECTION */
.rv-section {
    padding: 90px 0;
    background: #ffffff;
}

/* HEADER */
.rv-badge {
    display: inline-block;
    background: rgba(28,107,80,0.1);
    color: #1c6b50;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.rv-title {
    font-size: 38px;
    font-weight: 700;
    margin-top: 10px;
}

.rv-title span {
    color: #1c6b50;
}

.rv-sub {
    color: #666;
    max-width: 600px;
    margin: auto;
}

/* CARD */
.rv-card {
    background: #f4f8f6;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    height: 100%;
    border: 1px solid #eee;
}

.rv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* STARS */
.rv-stars {
    color: #f4c430;
    font-size: 18px;
    margin-bottom: 10px;
}

/* TEXT */
.rv-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

/* USER */
.rv-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rv-avatar {
    width: 40px;
    height: 40px;
    background: #1c6b50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.rv-name {
    font-weight: 600;
}

.rv-city {
    font-size: 12px;
    color: #888;
}

/* formm */

.banner-form{
    /* background-color: red; */
    display: flex;justify-content: center;
}
.hero-form-box {
    width: 100%;
    max-width: 360px;
    padding: 22px;
    border-radius: 18px;
    backdrop-filter: blur(25px);
    background: rgba(255, 255, 255, 0.33);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    color: #fff;
}

/* Heading */
.hero-form-box h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.hero-form-box p {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
}

/* Inputs */
.hero-form-box input,
.hero-form-box textarea,
.hero-form-box select {
    width: 100%;
    padding: 10px 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 13px;
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.hero-form-box input::placeholder,
.hero-form-box textarea::placeholder,
 .hero-form-box select::placeholder{
    color: rgba(255,255,255,0.7);
}

/* Focus */
.hero-form-box input:focus,
.hero-form-box textarea:focus {
    background: rgba(255,255,255,0.25);
}

/* Button */
.hero-form-box button {
    width: 100%;
    padding: 11px;
    border-radius: 10px;
    border: none;
    background: #00c853;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.hero-form-box button:hover {
    background: #00e676;
    transform: translateY(-1px);
}