@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap");

/*==================================================
                ROOT VARIABLES
==================================================*/

:root{
    --green-900:#174f1f;
    --green-800:#1f6329;
    --green-700:#2e7d32;
    --green-600:#4c9633;
    --green-100:#edf4dc;
    --cream:#f7f8ed;
    --text:#171717;
    --muted:#4c4c4c;
    --line:#dce3c6;
    --white:#ffffff;

    --shadow:0 18px 45px rgba(30,80,32,.14);

    --radius:16px;
}

/*==================================================
                    RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:"DM Sans",sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

img{
    display:block;
    width:100%;
}

/*==================================================
                COMMON CLASSES
==================================================*/

.site-container{

    width:min(92%,1280px);
    margin:auto;

}

.section-space{

    padding:80px 0;

}

.section-heading{

    text-align:center;
    margin-bottom:60px;

}

.eyebrow{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:8px;

    color:var(--green-700);

    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;

    margin-bottom:10px;

}

.section-heading h2,
.why-content h2{

    font-size:42px;
    font-weight:800;
    line-height:1.1;
    color:#111;

}

.heading-decoration{

    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    margin-top:15px;

    color:var(--green-700);

}

.heading-decoration span{

    width:60px;
    height:2px;

    background:#bfd38d;

}

.heading-decoration i{

    font-size:13px;

}

/*==================================================
                SERVICES SECTION
==================================================*/

.services-section{

    padding-top:70px;
    padding-bottom:85px;

}

.services-grid{
    
    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.service-card{

    position:relative;

    overflow:hidden;

    background:#fff;

    border:1px solid #e3e6d7;

    border-radius:16px;

    box-shadow:0 8px 28px rgba(0,0,0,.06);

    transition:.45s;

}

.service-card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow);

}

.service-image{

    height:250px;

    overflow:hidden;

}

.service-image img{

    height:100%;

    object-fit:cover;

    transition:.6s;

}

.service-card:hover .service-image img{

    transform:scale(1.08);

}

.service-icon{

    position:absolute;

    left:50%;

    top:218px;

    transform:translateX(-50%);

    width:70px;

    height:70px;

    border-radius:50%;

    background:#f2f8e9;

    color:var(--green-700);

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:28px;

    border:4px solid #fff;

    transition:.4s;

}

.service-card:hover .service-icon{

    background:var(--green-700);

    color:#fff;

    transform:translateX(-50%) rotate(12deg);

}

.service-content{

    padding:60px 24px 30px;

    text-align:center;

    min-height:200px;

}

.service-content h3{

    font-size:20px;

    color:var(--green-900);

    margin-bottom:15px;

    font-weight:700;

}

.service-content p{

    font-size:14px;

    color:#555;

    line-height:1.8;

    max-width:260px;

    margin:auto;

}

/*==================================================
                WHY CHOOSE SECTION
==================================================*/

.why-section{

    background:
    radial-gradient(circle at 90% 10%,rgba(223,232,185,.45),transparent 22%),
    linear-gradient(90deg,#f7f8ed 0%,#fbfcf6 50%,#f2f5df 100%);

    padding:90px 0;

}

.why-layout{

    display:grid;

    grid-template-columns:1.4fr 1fr .65fr;

    align-items:center;

    gap:60px;

}

/* IMAGE */

.why-image-wrap{

    position:relative;

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 15px 40px rgba(19,61,25,.15);

}

.why-image-wrap>img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.8s;

}

.why-image-wrap:hover img{

    transform:scale(1.05);

}

/* EXPERIENCE BOX */

.experience-badge{

    position:absolute;

    left:25px;

    bottom:25px;

    width:190px;

    min-height:145px;

    padding:18px;

    display:grid;

    grid-template-columns:auto 1fr;

    column-gap:12px;

    align-items:center;

    color:#fff;

    background:linear-gradient(145deg,#2e7d32,#174f1f);

    border:2px solid rgba(255,255,255,.75);

    border-radius:14px;

    box-shadow:0 12px 25px rgba(0,0,0,.22);

}

.experience-badge i{

    grid-row:span 2;

    font-size:34px;

}

.experience-badge strong{

    font-size:42px;

    line-height:1;

}

.experience-badge small{

    font-size:14px;

    font-weight:600;

    line-height:1.5;

}

/* CONTENT */

.why-content .eyebrow{

    justify-content:flex-start;

}

.why-content h2{

    font-size:30px;

    line-height:1.15;

    margin-bottom:18px;

}

.why-content h2 span{

    color:var(--green-700);
    font-size:30px;

}

.why-intro{

    font-size:16px;

    color:#555;

    line-height:1.8;

    margin-bottom:24px;

}

/* LIST */

.why-list{

    list-style:none;

    display:grid;

    gap:15px;

    padding:0;

}

.why-list li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    font-size:16px;

    line-height:1.6;

    color:#222;

}

.why-list i{

    color:var(--green-700);

    margin-top:4px;

    font-size:18px;

}

/* STATS PANEL */

.stats-panel{

    background:#fffef8;

    border:1px solid #dfe8c7;

    border-radius:18px;

    padding:30px 22px;

    display:grid;

    gap:28px;

    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.stat-item{

    display:flex;

    align-items:center;

    gap:16px;

}

.stat-icon{

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#edf4dc;

    color:var(--green-700);

    font-size:24px;

    flex-shrink:0;

}

.stat-item strong{

    display:block;

    font-size:34px;

    color:var(--green-900);

    line-height:1;

    margin-bottom:6px;

}

.stat-item small{

    font-size:14px;

    color:#444;

}


/*==================================================
                RECENT PROJECTS
==================================================*/

.projects-section{

    padding:30px 0;

}

.projects-section .section-heading{

    margin-bottom:55px;

}

.projects-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.project-card{

    position:relative;

    overflow:hidden;

    height:280px;

    border-radius:16px;

    box-shadow:0 12px 30px rgba(0,0,0,.10);

    cursor:pointer;

    transition:.4s;

}

.project-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.project-card:hover img{

    transform:scale(1.1);

}

.project-overlay{

    position:absolute;

    left:0;

    bottom:0;

    width:100%;

    padding:18px;

    background:linear-gradient(to top,rgba(0,0,0,.80),transparent);

    transition:.4s;

}

.project-overlay h3{

    color:#fff;

    font-size:20px;

    font-weight:700;

    text-align:center;

    margin:0;

}

.project-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}

/*==================================================
                REVEAL ANIMATION
==================================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:

    opacity .8s ease,

    transform .8s ease;

}

.reveal.is-visible{

    opacity:1;

    transform:translateY(0);

}

/*==================================================
                TABLET
==================================================*/

@media(max-width:991px){

.site-container{

    width:92%;

}

.section-space{

    padding:70px 0;

}

.section-heading h2,

.why-content h2{

    font-size:42px;

}

.services-grid{

    grid-template-columns:repeat(2,1fr);

    gap:28px;

}

.service-image{

    height:240px;

}

.service-icon{

    top:208px;

}

.why-layout{

    grid-template-columns:1fr;

    gap:40px;

}

.why-image-wrap img{

    height:380px;

}

.stats-panel{

    grid-template-columns:repeat(3,1fr);

    gap:20px;

}

.projects-grid{

    grid-template-columns:repeat(2,1fr);

}

.project-card{

    height:250px;

}

}

/*==================================================
                MOBILE
==================================================*/

@media(max-width:767px){

.section-space{

    padding:60px 0;

}

.site-container{

    width:92%;

}

.section-heading{

    margin-bottom:35px;

}

.section-heading h2,

.why-content h2{

    font-size:34px;

}

/* SERVICES */

.services-grid{

    grid-template-columns:1fr;

    gap:28px;

}

.service-card{

    max-width:430px;

    margin:auto;

}

.service-image{

    height:260px;

}

.service-icon{

    top:228px;

    width:72px;

    height:72px;

    font-size:28px;

}

.service-content{

    min-height:auto;

    padding:58px 25px 28px;

}

.service-content h3{

    font-size:24px;

}

.service-content p{

    font-size:15px;

}

/* WHY */

.why-layout{

    grid-template-columns:1fr;

}

.why-image-wrap img{

    height:300px;

}

.experience-badge{

    width:170px;

    min-height:130px;

}

.why-content{

    text-align:center;

}

.why-content .eyebrow{

    justify-content:center;

}

.why-list{

    max-width:430px;

    margin:auto;

}

.why-list li{

    font-size:15px;

}

.stats-panel{

    grid-template-columns:1fr;

    max-width:430px;

    margin:auto;

}

/* PROJECTS */

.projects-grid{

    grid-template-columns:repeat(2,1fr);

    gap:18px;

}

.project-card{

    height:200px;

}

.project-overlay h3{

    font-size:15px;

}

}

/*==================================================
            SMALL MOBILE
==================================================*/

@media(max-width:480px){

.section-heading h2,

.why-content h2{

    font-size:30px;

}

.service-image{

    height:230px;

}

.service-icon{

    top:198px;

}

.projects-grid{

    grid-template-columns:1fr;

}

.project-card{

    height:260px;

}

.experience-badge{

    width:155px;

    min-height:120px;

}

.experience-badge strong{

    font-size:34px;

}

}

/*==================================================
        REDUCED MOTION
==================================================*/

@media(prefers-reduced-motion:reduce){

*{

    animation:none !important;

    transition:none !important;

    scroll-behavior:auto !important;

}

.reveal{

    opacity:1;

    transform:none;

}

}









/*==================================================
      MORE GARDENING SOLUTIONS — RESPONSIVE
==================================================*/

#solutions {
    width: 100%;
    padding: 80px 0;
    background: #f8faf4;
}

#solutions .section-heading {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

#solutions .section-heading h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.2;
    color: #172014;
}

#solutions .eyebrow {
    margin-bottom: 10px;
}

#solutions .services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;

    /* Inline height ko bhi override karega */
    width: 100%;
    height: auto !important;
}

#solutions .service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 34px 24px 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e9d8;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(31, 67, 20, 0.08);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

#solutions .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green-700, #4f7d32);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

#solutions .service-card:hover {
    transform: translateY(-8px);
    border-color: #bfd29f;
    box-shadow: 0 18px 38px rgba(31, 67, 20, 0.14);
}

#solutions .service-card:hover::before {
    transform: scaleX(1);
}

#solutions .service-icon {
    /* Existing absolute positioning reset */
    position: static;
    flex: 0 0 auto;
    transform: none;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    border: 1px solid #dce8cd;
    border-radius: 50%;
    background: #eff7e7;
    color: var(--green-700, #4f7d32);
    font-size: 25px;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

#solutions .service-card:hover .service-icon {
    transform: rotate(8deg) scale(1.06);
    background: var(--green-700, #4f7d32);
    color: #ffffff;
}

#solutions .service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    text-align: center;
}

#solutions .service-content h3 {
    margin: 0 0 13px;
    color: var(--green-900, #25451d);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
}

#solutions .service-content p {
    max-width: none;
    margin: 0;
    color: #5d6658;
    font-size: 14px;
    line-height: 1.75;
}

/* Laptop and small desktop */
@media (max-width: 1199px) {
    #solutions .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #solutions .service-card {
        padding: 32px 28px 28px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    #solutions {
        padding: 68px 0;
    }

    #solutions .section-heading {
        margin-bottom: 38px;
    }

    #solutions .services-grid {
        gap: 22px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #solutions {
        padding: 55px 0;
    }

    #solutions .site-container {
        width: min(92%, 560px);
    }

    #solutions .section-heading {
        margin-bottom: 32px;
    }

    #solutions .section-heading h2 {
        font-size: 30px;
    }

    #solutions .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #solutions .service-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 28px 22px 25px;
    }

    #solutions .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
        font-size: 23px;
    }

    #solutions .service-content h3 {
        font-size: 20px;
    }

    #solutions .service-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    #solutions {
        padding: 48px 0;
    }

    #solutions .section-heading h2 {
        font-size: 27px;
    }

    #solutions .eyebrow {
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    #solutions .heading-decoration span {
        width: 42px;
    }

    #solutions .service-card {
        padding: 25px 18px 23px;
        border-radius: 15px;
    }

    #solutions .service-content h3 {
        font-size: 19px;
    }

    #solutions .service-content p {
        font-size: 13.5px;
    }
}

/* Touch devices par unwanted hover movement prevent karein */
@media (hover: none) {
    #solutions .service-card:hover {
        transform: none;
    }

    #solutions .service-card:hover .service-icon {
        transform: none;
    }
}












/*==================================================
              FAQ SECTION
==================================================*/

#faqs {
    width: 100%;
    padding: 80px 0;
    background: #f8faf4;
}

#faqs .section-heading {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

#faqs .section-heading h2 {
    margin: 0;
    color: #172014;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
}

#faqs .eyebrow {
    margin-bottom: 10px;
}

#faqs .services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    height: auto !important;
    gap: 24px;
}

#faqs .service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 34px 24px 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e9d8;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(31, 67, 20, 0.08);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

#faqs .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green-700, #4f7d32);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

#faqs .service-card:hover {
    transform: translateY(-8px);
    border-color: #bfd29f;
    box-shadow: 0 18px 38px rgba(31, 67, 20, 0.14);
}

#faqs .service-card:hover::before {
    transform: scaleX(1);
}

/* Existing absolute icon positioning reset */
#faqs .service-icon {
    position: static;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    transform: none;
    border: 1px solid #dce8cd;
    border-radius: 50%;
    background: #eff7e7;
    color: var(--green-700, #4f7d32);
    font-size: 25px;
    transition:
        color 0.35s ease,
        transform 0.35s ease,
        background-color 0.35s ease;
}

#faqs .service-card:hover .service-icon {
    color: #ffffff;
    background: var(--green-700, #4f7d32);
    transform: rotate(8deg) scale(1.06);
}

#faqs .service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    text-align: center;
}

#faqs .service-content h3 {
    margin: 0 0 13px;
    color: var(--green-900, #25451d);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

#faqs .service-content p {
    max-width: none;
    margin: 0;
    color: #5d6658;
    font-size: 14px;
    line-height: 1.75;
}

/*==================================================
              SMALL LAPTOP
==================================================*/

@media (max-width: 1199px) {
    #faqs .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #faqs .service-card {
        padding: 32px 28px 28px;
    }
}

/*==================================================
                  TABLET
==================================================*/

@media (max-width: 991px) {
    #faqs {
        padding: 65px 0;
    }

    #faqs .section-heading {
        margin-bottom: 38px;
    }

    #faqs .services-grid {
        gap: 22px;
    }
}

/*==================================================
                  MOBILE
==================================================*/

@media (max-width: 767px) {
    #faqs {
        padding: 55px 0;
    }

    #faqs .site-container {
        width: min(92%, 560px);
    }

    #faqs .section-heading {
        margin-bottom: 32px;
    }

    #faqs .section-heading h2 {
        font-size: 30px;
    }

    #faqs .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #faqs .service-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0;
        padding: 28px 22px 25px;
    }

    #faqs .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
        font-size: 23px;
    }

    #faqs .service-content h3 {
        font-size: 20px;
    }

    #faqs .service-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/*==================================================
                SMALL MOBILE
==================================================*/

@media (max-width: 480px) {
    #faqs {
        padding: 48px 0;
    }

    #faqs .section-heading h2 {
        font-size: 27px;
    }

    #faqs .eyebrow {
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    #faqs .heading-decoration span {
        width: 42px;
    }

    #faqs .service-card {
        padding: 25px 18px 23px;
        border-radius: 15px;
    }

    #faqs .service-icon {
        width: 56px;
        height: 56px;
        font-size: 21px;
    }

    #faqs .service-content h3 {
        font-size: 19px;
    }

    #faqs .service-content p {
        font-size: 13.5px;
    }
}

/* Touch-screen devices */
@media (hover: none) {
    #faqs .service-card:hover {
        transform: none;
    }

    #faqs .service-card:hover .service-icon {
        transform: none;
    }
}










/*==================================================
        COMPLETE MAINTENANCE SCOPE SECTION
==================================================*/

#maintenance-scope {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
}

#maintenance-scope .section-heading {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;
}

#maintenance-scope .section-heading h2 {
    margin: 0;
    color: #172014;
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.2;
}

#maintenance-scope .eyebrow {
    margin-bottom: 10px;
}

#maintenance-scope .services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: stretch;
    width: 100%;
    height: auto !important;
    gap: 24px;
}

#maintenance-scope .service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 34px 24px 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e9d8;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(31, 67, 20, 0.08);
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

#maintenance-scope .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--green-700, #4f7d32);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

#maintenance-scope .service-card:hover {
    transform: translateY(-8px);
    border-color: #bfd29f;
    box-shadow: 0 18px 38px rgba(31, 67, 20, 0.14);
}

#maintenance-scope .service-card:hover::before {
    transform: scaleX(1);
}

/* Purani absolute icon positioning reset */
#maintenance-scope .service-icon {
    position: static;
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin: 0 auto 22px;
    transform: none;
    border: 1px solid #dce8cd;
    border-radius: 50%;
    background: #eff7e7;
    color: var(--green-700, #4f7d32);
    font-size: 25px;
    transition:
        color 0.35s ease,
        transform 0.35s ease,
        background-color 0.35s ease;
}

#maintenance-scope .service-card:hover .service-icon {
    color: #ffffff;
    background: var(--green-700, #4f7d32);
    transform: rotate(8deg) scale(1.06);
}

#maintenance-scope .service-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
    padding: 0;
    text-align: center;
}

#maintenance-scope .service-content h3 {
    margin: 0 0 13px;
    color: var(--green-900, #25451d);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;
}

#maintenance-scope .service-content p {
    max-width: none;
    margin: 0;
    color: #5d6658;
    font-size: 14px;
    line-height: 1.75;
}

/* Small laptop */
@media (max-width: 1199px) {
    #maintenance-scope .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #maintenance-scope .service-card {
        padding: 32px 28px 28px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    #maintenance-scope {
        padding: 65px 0;
    }

    #maintenance-scope .section-heading {
        margin-bottom: 38px;
    }

    #maintenance-scope .services-grid {
        gap: 22px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    #maintenance-scope {
        padding: 55px 0;
    }

    #maintenance-scope .site-container {
        width: min(92%, 560px);
    }

    #maintenance-scope .section-heading {
        margin-bottom: 32px;
    }

    #maintenance-scope .section-heading h2 {
        font-size: 30px;
    }

    #maintenance-scope .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #maintenance-scope .service-card {
        width: 100%;
        max-width: 100%;
        min-height: auto;
        margin: 0;
        padding: 28px 22px 25px;
    }

    #maintenance-scope .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
        font-size: 23px;
    }

    #maintenance-scope .service-content h3 {
        font-size: 20px;
    }

    #maintenance-scope .service-content p {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    #maintenance-scope {
        padding: 48px 0;
    }

    #maintenance-scope .section-heading h2 {
        font-size: 27px;
    }

    #maintenance-scope .eyebrow {
        font-size: 11px;
        letter-spacing: 0.8px;
    }

    #maintenance-scope .heading-decoration span {
        width: 42px;
    }

    #maintenance-scope .service-card {
        padding: 25px 18px 23px;
        border-radius: 15px;
    }

    #maintenance-scope .service-icon {
        width: 56px;
        height: 56px;
        font-size: 21px;
    }

    #maintenance-scope .service-content h3 {
        font-size: 19px;
    }

    #maintenance-scope .service-content p {
        font-size: 13.5px;
    }
}

@media (hover: none) {
    #maintenance-scope .service-card:hover {
        transform: none;
    }

    #maintenance-scope .service-card:hover .service-icon {
        transform: none;
    }
}