/* ======================================== */
/* SERVICES HERO BANNER - Green + Black Texture */
/* ======================================== */


.services-hero-banner {
    position: relative;
    padding: 140px 0 160px 0;
    min-height: 650px;
    display: flex;
    align-items: center;
    
    background: 
        /* Blue floating orbs */
        radial-gradient(circle at 15% 20%, rgba(41, 128, 185, 0.15) 0px, transparent 120px),
        radial-gradient(circle at 85% 80%, rgba(52, 152, 219, 0.12) 0px, transparent 150px),
        radial-gradient(circle at 50% 50%, rgba(41, 128, 185, 0.08) 0px, transparent 200px),
        
        /* Light green glowing spots */
        radial-gradient(circle at 25% 70%, rgba(144, 238, 144, 0.12) 0px, transparent 100px),
        radial-gradient(circle at 75% 30%, rgba(152, 251, 152, 0.10) 0px, transparent 90px),
        radial-gradient(circle at 10% 40%, rgba(144, 238, 144, 0.08) 0px, transparent 80px),
        
        /* White subtle shine */
        radial-gradient(circle at 60% 15%, rgba(255, 255, 255, 0.06) 0px, transparent 120px),
        radial-gradient(circle at 30% 90%, rgba(255, 255, 255, 0.04) 0px, transparent 100px),
        
        /* Diagonal subtle lines */
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 30px,
            rgba(255, 255, 255, 0.02) 30px,
            rgba(255, 255, 255, 0.02) 31px,
            transparent 31px,
            transparent 60px
        ),
        
        /* Main gradient - Dark Green to Light Green with Blue touch */
        linear-gradient(145deg, 
            #0a1f2e 0%,        /* Deep dark blue-green */
            #0d3b2a 15%,       /* Dark green */
            #1a5c3a 30%,       /* Medium dark green */
            #2d7a4a 45%,       /* Rich green */
            #4a9e5e 60%,       /* Medium green */
            #7acd8a 75%,       /* Light green */
            #a8e6b8 90%,       /* Lighter green */
            #c8f0d8 100%       /* Very light green */
        );
    
    background-size: 
        auto,
        auto,
        auto,
        auto,
        auto,
        auto,
        auto,
        auto,
        cover;
    
    overflow: hidden;
}

.services-hero-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(83, 158, 16, 0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.services-hero-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.services-hero-banner .container {
    position: relative;
    z-index: 1;
}

/* ======================================== */
/* CONTENT STYLING - LEFT ALIGN            */
/* ======================================== */

.services-hero-content {
    max-width: 800px;
    margin: 0;
    margin-left: 40px;
}

.services-hero-left {
    text-align: left !important;
}

/* ======================================== */
/* TAG - "WHAT WE DO"                      */
/* ======================================== */

.services-hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #8cff66;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding: 6px 16px;
    border: 1px solid rgba(140, 255, 102, 0.3);
    border-radius: 50px;
    background: rgba(140, 255, 102, 0.08);
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}

/* ======================================== */
/* MAIN TITLE                              */
/* ======================================== */

.services-hero-title {
    font-family: "Inter", sans-serif;
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    text-align: left;
}

/* ======================================== */
/* DESCRIPTION                              */
/* ======================================== */

.services-hero-subtext {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0;
    margin-bottom: 10px;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    text-align: left;
}

/* ======================================== */
/* RIGHT SIDE - Image with Black Circle    */
/* ======================================== */

.services-hero-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.services-hero-image-circle {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.services-hero-image-circle::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    border: 2px solid rgba(140, 255, 102, 0.15);
    animation: servicesCircleGlow 3s ease-in-out infinite;
}

.services-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

@keyframes servicesCircleGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

/* ======================================== */
/* SERVICES INTRO SECTION                  */
/* ======================================== */

.services-intro-section {
    background: #ffffff;
    padding: 80px 0 90px 0;
    border-bottom: 1px solid rgba(83, 158, 16, 0.08);
}

.services-intro-image {
    padding-right: 40px;
}

.services-intro-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.services-intro-content {
    padding-left: 20px;
}

.services-intro-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #539E10;
    text-transform: uppercase;
    margin-bottom: 15px;
    padding: 6px 16px;
    border: 1px solid rgba(83, 158, 16, 0.25);
    border-radius: 50px;
    background: rgba(83, 158, 16, 0.06);
}

.services-intro-title {
    font-family: "Inter", sans-serif;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a1f06;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.services-intro-desc p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.services-intro-more {
    display: none;
}

.services-intro-more p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.services-intro-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #539E10;
    cursor: pointer;
    text-decoration: none;
    border: none;
    background: transparent;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.services-intro-toggle:hover {
    color: #2d7a1a;
}

.services-intro-toggle .toggle-icon {
    display: inline-block;
    transition: transform 0.3s ease;
    font-size: 18px;
}

/* ======================================== */
/* SERVICES OFFER SECTION - Blue/Green/Black */
/* ======================================== */

.services-offer-section {
    position: relative;
    background: #f4f9f4;
    padding: 90px 0 110px 0;
    overflow: hidden;
}

/* subtle background texture */
.services-offer-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(83, 158, 16, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.services-offer-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -150px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(15, 76, 117, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-offer-section .container {
    position: relative;
    z-index: 1;
}

.services-offer-heading {
    text-align: center;
    margin-bottom: 55px;
}

.services-offer-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #539E10;
    text-transform: uppercase;
    margin-bottom: 20px;  /* Increased gap between tag and title */
    padding: 6px 18px;
    border: 1px solid rgba(83, 158, 16, 0.3);
    border-radius: 50px;
    background: rgba(83, 158, 16, 0.07);
}

.services-offer-title {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #29e100;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

/* REMOVED - Underline line completely removed */
/* .services-offer-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -12px;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #539E10 0%, #0f4c75 100%);
} */

.services-offer-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #4a5568;
    max-width: 650px;
    margin: 24px auto 0;
}

.services-offer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    
}

.services-offer-grid .col-lg-4 {
    flex: 0 0 calc(33.333% - 19px);
    max-width: calc(33.333% - 19px);
}

/* ---- Card ---- */
.services-offer-card {
    position: relative;
    background: #ffffff;
    padding: 34px 28px 38px;
    border-radius: 18px;
    border: 1px solid #e3ece2;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    
    box-shadow: 0 3px 14px rgba(8, 21, 5, 0.05);
    text-align: left;
    overflow: hidden;
}

/* black-to-green top accent bar */
.services-offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #081505 0%, #539E10 55%, #0f4c75 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.services-offer-card:hover {
    border-color: transparent;
    box-shadow: 0 14px 40px rgba(8, 21, 5, 0.12);
    transform: translateY(-8px);
}

.services-offer-card:hover::before {
    transform: scaleX(1);
}

.services-offer-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin-bottom: 22px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(83, 158, 16, 0.12) 0%, rgba(15, 76, 117, 0.10) 100%);
    transition: all 0.35s ease;
}

.services-offer-card:hover .services-offer-card-icon {
    background: linear-gradient(135deg, #539E10 0%, #0f4c75 100%);
}

.services-offer-card-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: filter 0.35s ease;
}

.services-offer-card:hover .services-offer-card-icon img {
    filter: brightness(0) invert(1);
}

.services-offer-card-title {
    font-family: "Inter", sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #081505;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}

.services-offer-card-desc {
    font-family: "Inter", sans-serif;
    font-size: 14.5px;
    font-weight: 400;
    line-height: 1.75;
    color: #55606b;
    margin: 0;
}

/* ======================================== */
/* RESPONSIVE                              */
/* ======================================== */

@media (max-width: 991px) {
    .services-offer-grid .col-lg-4 {
        flex: 0 0 calc(50% - 14px);
        max-width: calc(50% - 14px);
    }
}

@media (max-width: 767px) {
    .services-offer-section {
        padding: 55px 0 65px 0;
    }

    .services-offer-title {
        
        font-size: 28px;
    }

    .services-offer-grid {
        gap: 18px;
    }

    .services-offer-grid .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .services-offer-card {
        padding: 26px 22px 30px;
    }
}

/* Card number badge */
.services-offer-card-number {
    position: absolute;
    top: 24px;
    right: 26px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(83, 158, 16, 0.35);
    letter-spacing: 1px;
}

/* Learn More link */
.services-offer-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #539E10;
    text-decoration: none;
    transition: gap 0.3s ease, color 0.3s ease;
}

.services-offer-card-link:hover {
    color: #0f4c75;
    gap: 10px;
}

.services-offer-card-link .link-arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.3s ease;
}

/* ======================================== */
/* HOW IT WORKS SECTION - Blue/Green/White  */
/* ======================================== */

.hiw-section {
    position: relative;
    background: #ffffff;
    padding: 90px 0 100px 0;
    overflow: hidden;
}

.hiw-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(15, 76, 117, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hiw-section::after {
    content: '';
    position: absolute;
    bottom: -140px;
    left: -160px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(83, 158, 16, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hiw-section .container {
    position: relative;
    z-index: 1;
}

/* ---- Heading ---- */
.hiw-heading {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.hiw-tag {
    display: inline-block;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #0f4c75;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding: 6px 18px;
    border: 1px solid rgba(15, 76, 117, 0.25);
    border-radius: 50px;
    background: rgba(15, 76, 117, 0.06);
}

.hiw-title {
    font-family: "Inter", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
    background: linear-gradient(90deg, #0f4c75 0%, #539E10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hiw-subtitle {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #55606b;
    margin: 0;
}

/* ---- Steps grid ---- */
.hiw-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    counter-reset: step;
}

.hiw-step {
    position: relative;
    flex: 1 1 calc(25% - 21px);
    max-width: calc(25% - 21px);
    background: #ffffff;
    padding: 32px 24px 30px;
    border-radius: 18px;
    border: 1px solid #e3ecf2;
    box-shadow: 0 3px 14px rgba(5, 20, 35, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

/* connecting dashed line between steps (desktop only) */
.hiw-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 52px;
    right: -28px;
    width: 28px;
    height: 0;
    border-top: 2px dashed rgba(15, 76, 117, 0.25);
    z-index: 2;
}

/* top gradient accent bar on hover */
.hiw-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0f4c75 0%, #539E10 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s ease;
}

.hiw-step:hover {
    border-color: transparent;
    box-shadow: 0 16px 40px rgba(5, 20, 35, 0.12);
    transform: translateY(-10px);
}

.hiw-step:hover::before {
    transform: scaleX(1);
}

.hiw-step-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.hiw-step-number {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    color: rgba(15, 76, 117, 0.3);
    transition: color 0.35s ease;
}

.hiw-step:hover .hiw-step-number {
    color: rgba(83, 158, 16, 0.5);
}

.hiw-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(15, 76, 117, 0.10) 0%, rgba(83, 158, 16, 0.10) 100%);
    transition: all 0.35s ease;
}

.hiw-step:hover .hiw-step-icon {
    background: linear-gradient(135deg, #0f4c75 0%, #539E10 100%);
    transform: rotate(-6deg) scale(1.05);
}

.hiw-step-icon img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    transition: filter 0.35s ease;
}

.hiw-step:hover .hiw-step-icon img {
    filter: brightness(0) invert(1);
}

.hiw-step-title {
    font-family: "Inter", sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: #081505;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.hiw-step-desc {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.7;
    color: #55606b;
    margin: 0;
}

/* ======================================== */
/* RESPONSIVE                              */
/* ======================================== */

@media (max-width: 991px) {
    .hiw-step {
        flex: 1 1 calc(50% - 14px);
        max-width: calc(50% - 14px);
    }

    .hiw-step:nth-child(2)::after {
        display: none;
    }

    .hiw-title {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .hiw-section {
        padding: 55px 0 65px 0;
    }

    .hiw-heading {
        margin-bottom: 40px;
    }

    .hiw-title {
        font-size: 26px;
    }

    .hiw-subtitle {
        font-size: 15px;
        padding: 0 10px;
    }

    .hiw-steps {
        gap: 18px;
    }

    .hiw-step {
        flex: 1 1 100%;
        max-width: 100%;
        padding: 26px 22px 26px;
    }

    .hiw-step::after {
        display: none;
    }

    .hiw-step-title {
        font-size: 17px;
    }
}

/* ======================================== */
/* SERVICES DATA SECTION (Insights)        */
/* ======================================== */

.services-data-section {
    background: #f8fafc;
    padding: 80px 0 100px 0;
}

.services-data-image {
    padding-right: 40px;
}

.services-data-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.services-data-content {
    padding-left: 20px;
}

.services-data-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #539E10;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding: 6px 16px;
    border: 1px solid rgba(83, 158, 16, 0.25);
    border-radius: 50px;
    background: rgba(83, 158, 16, 0.06);
}

.services-data-title {
    font-family: "Inter", sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #0a1f06;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.services-data-desc p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 15px;
}

.services-data-desc p:last-child {
    margin-bottom: 0;
}

/* ======================================== */
/* SERVICES HIRE SECTION                   */
/* ======================================== */

.services-hire-section {
    background: linear-gradient(135deg, #0d3d1a 0%, #1a6b2e 40%, #2d8a3a 70%, #1a6b2e 100%);
    padding: 60px 0 70px 0;
    position: relative;
    overflow: hidden;
}

.services-hire-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.015) 0px,
            rgba(255, 255, 255, 0.015) 2px,
            transparent 2px,
            transparent 10px
        ),
        radial-gradient(ellipse at 20% 50%, rgba(140, 255, 102, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(140, 255, 102, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.services-hire-section .container {
    position: relative;
    z-index: 1;
}

.services-hire-title {
    font-family: "Inter", sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}

.services-hire-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0a1f06;
    background: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    transition: all 0.35s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.services-hire-btn:hover {
    background: #8cff66;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(140, 255, 102, 0.3);
    color: #0a1f06;
}

.services-hire-btn .btn-arrow {
    display: inline-block;
    transition: all 0.35s ease;
    font-size: 20px;
    line-height: 1;
}

.services-hire-btn:hover .btn-arrow {
    transform: translateX(6px);
}

/* ======================================== */
/* RESPONSIVE - TABLET                     */
/* ======================================== */

@media (max-width: 991px) {
    .services-hero-banner {
        padding: 80px 0 90px 0;
        min-height: 400px;
    }
    
    .services-hero-title {
        font-size: 38px;
        line-height: 1.3;
    }
    
    .services-hero-subtext {
        font-size: 16px;
        line-height: 1.7;
        max-width: 90%;
    }
    
    .services-hero-content {
        margin-left: 20px;
    }
    
    .services-hero-image-circle {
        width: 320px;
        height: 320px;
        margin: 0 auto;
    }
    
    .services-intro-image {
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .services-intro-content {
        padding-left: 0;
    }
    
    .services-intro-title {
        font-size: 32px;
    }
    
    .services-offer-grid .col-lg-4 {
        flex: 0 0 calc(50% - 12px);
        max-width: calc(50% - 12px);
    }
    
    .services-howitwork-left {
        padding-right: 0;
        padding-bottom: 40px;
    }
    
    .services-data-image {
        padding-right: 0;
        padding-bottom: 30px;
    }
    
    .services-data-content {
        padding-left: 0;
    }
    
    .services-data-title {
        font-size: 30px;
    }
    
    .services-hire-title {
        font-size: 28px;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .services-hire-section .text-lg-end {
        text-align: center !important;
    }
}

/* ======================================== */
/* RESPONSIVE - MOBILE                     */
/* ======================================== */

@media (max-width: 767px) {
    .services-hero-banner {
        padding: 60px 0 70px 0;
        min-height: 350px;
    }
    
    .services-hero-tag {
        font-size: 11px;
        letter-spacing: 1.5px;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
    
    .services-hero-title {
        font-size: 28px;
        line-height: 1.3;
        text-align: left;
    }
    
    .services-hero-subtext {
        font-size: 14px;
        line-height: 1.7;
        max-width: 100%;
        padding: 0 10px 0 0;
        text-align: left;
    }
    
    .services-hero-content {
        margin-left: 10px;
        padding: 0 10px;
    }
    
    .services-hero-image-circle {
        width: 220px;
        height: 220px;
        margin: 20px auto;
    }
    
    .services-intro-section {
        padding: 50px 0 60px 0;
    }
    
    .services-intro-title {
        font-size: 26px;
    }
    
    .services-intro-desc p {
        font-size: 14px;
    }
    
    .services-offer-section {
        padding: 50px 0 60px 0;
    }
    
    .services-offer-title {
        font-size: 28px;
    }
    
    .services-offer-subtitle {
        font-size: 16px;
        padding: 0 15px;
    }
    
    .services-offer-grid {
        gap: 16px;
    }
    
    .services-offer-grid .col-lg-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .services-offer-card {
        padding: 24px 20px 28px;
    }
    
    .services-offer-card-title {
        font-size: 18px;
    }
    
    .services-howitwork-section {
        padding: 50px 0 60px 0;
    }
    
    .services-howitwork-title {
        font-size: 28px;
    }
    
    .services-howitwork-desc {
        font-size: 15px;
    }
    
    .services-howitwork-list li {
        padding: 14px 0;
        gap: 15px;
    }
    
    .services-howitwork-list .list-icon {
        width: 44px;
        height: 44px;
    }
    
    .services-howitwork-list .list-icon img {
        width: 22px;
        height: 22px;
    }
    
    .services-howitwork-list .list-content h4 {
        font-size: 16px;
    }
    
    .services-howitwork-list .list-content p {
        font-size: 13px;
    }
    
    .services-data-section {
        padding: 50px 0 60px 0;
    }
    
    .services-data-title {
        font-size: 24px;
    }
    
    .services-data-desc p {
        font-size: 14px;
    }
    
    .services-hire-section {
        padding: 40px 0 50px 0;
    }
    
    .services-hire-title {
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .services-hire-btn {
        font-size: 14px;
        padding: 12px 28px;
        width: 100%;
        justify-content: center;
    }
}

/* ======================================== */
/* RESPONSIVE - SMALL MOBILE               */
/* ======================================== */

@media (max-width: 480px) {
    .services-hero-banner {
        padding: 50px 0 60px 0;
        min-height: 300px;
    }
    
    .services-hero-tag {
        font-size: 10px;
        letter-spacing: 1px;
        padding: 3px 10px;
    }
    
    .services-hero-title {
        font-size: 22px;
    }
    
    .services-hero-subtext {
        font-size: 13px;
    }
    
    .services-hero-content {
        margin-left: 5px;
        padding: 0 5px;
    }
    
    .services-hero-image-circle {
        width: 170px;
        height: 170px;
        margin: 15px auto;
    }
    
    .services-intro-title {
        font-size: 22px;
    }
    
    .services-offer-title {
        font-size: 24px;
    }
    
    .services-offer-card {
        padding: 20px 16px 24px;
    }
    
    .services-offer-card-title {
        font-size: 17px;
    }
    
    .services-offer-card-desc {
        font-size: 13px;
    }
    
    .services-howitwork-title {
        font-size: 24px;
    }
    
    .services-howitwork-desc {
        font-size: 14px;
    }
    
    .services-data-title {
        font-size: 20px;
    }
    
    .services-hire-title {
        font-size: 18px;
    }
    
    .services-hire-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
}/* ==========================================
   FLEXIBLE SOLUTIONS + PROJECT FORM
========================================== */

.project-solutions-section {
    position: relative;
    padding: 100px 0;
    background: #f5faf7;
    overflow: hidden;
}


/* ==========================================
   MAIN 50 / 50 CONTAINER
========================================== */

.project-solutions-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;

    width: 100%;
    max-width: 1200px;
    min-height: 650px;

    margin: 0 auto;

    overflow: hidden;

    border-radius: 300px;

    background: #ffffff;

    box-shadow: 0 20px 60px rgba(20, 80, 55, 0.10);
}


/* ==========================================
   LEFT SIDE
========================================== */

.project-solutions-content {
    padding: 65px 55px;

    background: #ffffff;
}


/* Small heading */

.project-section-tag {
    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 18px;

    color: #16845b;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1.8px;
}


.project-section-tag span {
    display: inline-block;

    width: 32px;
    height: 2px;

    background: #16845b;
}


/* Main heading */

.project-solutions-content h2 {
    max-width: 540px;

    margin: 0 0 25px;

    color: #172820;

    font-size: 42px;
    font-weight: 700;

    line-height: 1.15;
}


.project-solutions-content h2 span {
    color: #16845b;
}


/* Paragraph */

.project-solutions-content > p {
    max-width: 560px;

    margin: 0 0 15px;

    color: #68766f;

    font-size: 14px;

    line-height: 1.8;
}


/* ==========================================
   SERVICE LIST
========================================== */

.project-service-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 12px 25px;

    margin-top: 28px;
}


.project-service-item {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #40564c;

    font-size: 12px;

    font-weight: 600;
}


.project-check {
    display: flex;

    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background: #e5f5ed;

    color: #16845b;

    font-size: 11px;
    font-weight: 700;
}


/* ==========================================
   RIGHT SIDE - PROJECT CONTACT
========================================== */
