@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap');

/* ROOT VARIABLES */

:root {
    --primary-dark: #0B3B24;
    --black: #111111;
    --text-color: #1f1f1f;
    --light-text: #727272;
    --border-color: #dddddd;
    --font-family: "Figtree", sans-serif;
}

/* GLOBAL */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    overflow-x: hidden;
    color: var(--text-color);
}

a {
    text-decoration: none;
}

/* .container {
    max-width: 1200px;
} */

/* TOP BAR */

.top-bar {
    background: var(--primary-dark);
    padding: 10px 0;
    text-align: center;
}

.top-bar p {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.2px;
}

/* NAVBAR START */

.custom-navbar {
    background: #fff;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 99;
}


.navbar-brand {
    gap: 12px;
}

.logo-box img {
    border-radius: 8px;
    width: 65px;
}

.logo-content h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    color: var(--primary-dark);
}

.logo-content span {
    display: block;
    margin-top: 5px;
    font-size: 14px;
    color: #000;
}

.logo-content p {
    font-size: 12px;
    color: #444444;
}

/* NAV LINKS */

.navbar-nav {
    gap: 20px;
}

.nav-link {
    padding: 0 !important;
    color: #444444;
    font-size: 18px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-dark) !important;
    font-weight: 700;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
    font-size: 16px;
    font-weight: 500;
}

.phone-link svg {
    color: var(--primary-dark);
}

.estimate-btn {
    background: var(--primary-dark);
    color: #fff;
    padding: 11px 18px;
    border-radius: 8px;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.estimate-btn:hover {
    background: #000;
    color: #fff;
}

.custom-toggler {
    border: none;
    padding: 0;
    width: 42px;
    height: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    box-shadow: none !important;
}

.custom-toggler span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: 50px;
    transition: 0.3s;
    margin-left: auto;
}

/* NAVBAR END*/

/* HERO SECTION START */

.hero-section {
    position: relative;
    min-height: 760px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 750px;
    padding-top: 80px;
}

.hero-content h1 {
    color: #fff;
    font-size: 68px;
    line-height: 1.1;
    letter-spacing: -2px;
    font-weight: 300;
    margin-bottom: 22px;
}

.hero-content h1 span {
    margin-top: 20px;
}

.hero-content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

.hero-btn {
    height: 50px;
    padding: 0 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn {
    background: var(--primary-dark);
    color: #fff;
    gap: 8px;
}

.primary-btn:hover {
    background: #000;
    color: #fff;
}

.dark-btn {
    background: #000;
    color: #fff;
    gap: 8px;
}

.dark-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}

.quote-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border-top: 8px solid var(--primary-dark);
    border-bottom: 8px solid var(--primary-dark);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
    /* max-width: 470px; */
    margin-left: auto;
}

.quote-card h3 {
    font-size: 28px;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 24px;
    color: #222;
}

.quote-card h3 span {
    display: block;
    color: var(--primary-dark);
    font-weight: 600;
}


.radio-wrapper {
    display: flex;
    gap: 34px;
    margin-bottom: 24px;
}

.radio-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #000;
}

.radio-item input {
    width: 16px;
    height: 16px;
    accent-color: var(--primary-dark);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.form-control,
.form-select {
    border: none;
    border-bottom: 1px solid #d6d6d6;
    border-radius: 0;
    padding: 10px 0;
    background: transparent;
    font-size: 14px;
    color: #444;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: #999;
}

.quote-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 8px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 18px;
    margin-top: 12px;
    transition: 0.3s;
}

.quote-btn:hover {
    background: #000;
}

@media (max-width: 991px) {

    .custom-navbar {
        padding: 14px 0;
    }

    .navbar-collapse {
        background: #fff;
        padding-top: 24px;
    }

    .navbar-nav {
        gap: 18px;
        padding-bottom: 24px;
    }

    .nav-link {
        font-size: 15px;
    }

    .nav-right {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding-bottom: 20px;
    }

    .hero-section {
        padding: 80px 0;
        min-height: auto;
    }

    .hero-content {
        padding-top: 0;
        margin-bottom: 50px;
    }

    .hero-content h1 {
        font-size: 54px;
    }

    .quote-card {
        margin: 0 auto;
    }

}

@media (max-width: 767px) {

    .top-bar p {
        font-size: 10px;
        line-height: 1.5;
    }

    .logo-content {
        display: none;
    }

    .hero-content h1 {
        font-size: 40px;
        line-height: 1;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-buttons {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .hero-btn {
        width: 100%;
    }

    .quote-card {
        padding: 24px 20px;
    }

    .radio-wrapper {
        flex-wrap: wrap;
        gap: 18px;
    }

}

/* HERO SECTION END */

/* TRUST STRIP START */

.trust-strip {
    background: #FAFAFA;
    border-top: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
}

.trust-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.trust-item {
    width: 25%;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-right: 1px solid #DEDEDE;
    padding: 0 20px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.trust-item h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    color: #1d1d1d;
    line-height: 1;
}


@media(max-width:991px) {

    .trust-wrapper {
        flex-wrap: wrap;
    }

    .trust-item {
        width: 50%;
        border-bottom: 1px solid #dddddd;
        justify-content: left;
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(3) {
        border-bottom: none;
    }

    .services-row {
        border: none;
        row-gap: 10px;
    }
}

@media(max-width:767px) {

    .trust-item {
        width: 100%;
        border-right: none;
        justify-content: flex-start;
        padding: 0 25px;
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .trust-item h4 {
        font-size: 13px;
    }

}

/* TRUST STRIP END */

/* SERVICE SECTION START */

.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 48px;
}

.section-tag {
    display: block;
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 500;
    color: #111;
    margin-bottom: 18px;
}

.services-heading h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -1.8px;
    font-weight: 700;
}

.services-heading h2 span {
    display: block;
}

.services-description {
    padding-top: 30px;
}

.services-description p {
    margin: 0;
    color: #444444;
    font-size: 16px;
    line-height: 1.75;
    font-weight: 400;
}

.services-row {
    border: 1px solid #dcdcdc;
}

.service-card {
    background: #fff;
    border-right: 1px solid #dcdcdc;
    height: 100%;
}

.col-lg-4:last-child .service-card {
    border-right: none;
}

.service-image {
    padding: 10px;
}

.service-image img {
    width: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 10px 18px 20px;
}

.service-content h3 {
    margin: 0 0 12px;
    color: #111;
    font-size: 26px;
    line-height: 1.02;
    letter-spacing: -0.5px;
    font-weight: 500;
}

.service-content p {
    margin: 0;
    color: #444444;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    min-height: 64px;
}

.service-btn {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 45px;
    padding: 0 14px;
    border-radius: 7px;
    background: var(--primary-dark);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.service-btn i {
    font-size: 16px;
    transition: 0.3s;
}

.service-btn:hover {
    background: #000;
    color: #fff;
}

.service-btn:hover i {
    transform: translateX(3px);
}

@media(max-width:991px) {

    .services-section {
        padding: 75px 0;
    }

    .services-top {
        flex-direction: column;
        gap: 28px;
    }

    .services-heading,
    .services-description {
        width: 100%;
    }

    .services-heading h2 {
        font-size: 42px;
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid #dcdcdc;
    }

    .col-lg-4:last-child .service-card {
        border-bottom: none;
    }

}

@media(max-width:767px) {

    .services-heading h2 {
        font-size: 34px;
    }

    .services-description p {
        font-size: 14px;
        line-height: 1.8;
    }

    .service-image img {
        height: 240px;
    }

    .service-content {
        padding: 8px 16px 18px;
    }

    .service-content h3 {
        font-size: 22px;
        line-height: 1.15;
    }

}

/* SERVICE SECTION END */

/* ABOUT SECTION START */

.about-installation-section {
    padding: 90px 0;
    background: #F4F5F4;
    overflow: hidden;
}

.about-content {
    padding-top: 6px;
}

.about-content h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.8px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content h2 span {
    display: block;
}

.about-content p {
    margin: 0 0 18px;
    color: #444444;
    font-size: 16px;
    line-height: 1.9;
    font-weight: 400;
}

.about-list {
    margin: 24px 0 28px;
    padding-left: 18px;
}

.about-list li {
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 6px;
}

.about-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-btn {
    height: 40px;
    padding: 0 16px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.primary-btn {
    background: var(--primary-dark);
    color: #fff;
}

.primary-btn:hover {
    background: #000;
    color: #fff;
}

.dark-btn {
    background: #000;
    color: #fff;
}

.dark-btn:hover {
    background: var(--primary-dark);
    color: #fff;
}


.about-images-wrap {
    position: relative;
    min-height: 520px;
}

.main-about-image {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    margin-left: auto;
}

.main-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.client-box {
    position: absolute;
    top: -65px;
    right: -42px;
    width: 160px;
    height: 145px;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.client-box::before {
    content: "";
    position: absolute;
    inset: 10px;
    background: #083d24;
    border-radius: 12px;
}

.client-box h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #fff;
    font-size: 50px;
    line-height: 1;
    font-weight: 500;
    margin-top: 18px;
    text-align: center;
}

.client-box p {
    position: relative;
    z-index: 2;
    margin: 6px 0 0;
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.small-about-image {
    position: absolute;
    left: -50px;
    bottom: -65px;
    width: 176px;
    height: 176px;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    padding: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.small-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}


@media(max-width:1199px) {

    .about-content h2 {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    .about-installation-section {
        padding: 40px 0;
    }

    .about-content {
        margin-bottom: 50px;
    }

    .about-content h2 {
        font-size: 42px;
    }

    .about-images-wrap {
        min-height: 470px;
    }

    /* Consolidated from bottom-of-file override: keep client-box pinned
       inside its wrapper on tablet/mobile instead of overflowing off the card */
    .client-box {
        top: 0;
        right: 0;
    }

}

@media(max-width:767px) {

    .about-content h2 {
        font-size: 34px;
        line-height: 1;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-buttons {
        flex-wrap: wrap;
    }

    .client-box {
        height: 125px;
        right: 0;
    }

    .client-box h3 {
        font-size: 34px;
        margin-top: 20px;
    }

    .client-box p {
        font-size: 11px;
    }

}

/* ABOUT SECTION END */

/* WHY SECTION START  */
.why-choose-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-image {
    border-radius: 22px;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-content {
    padding-left: 10px;
}

.why-content h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.8px;
    font-weight: 700;
    margin-bottom: 20px;
}

.why-description {
    margin: 0 0 38px;
    color: #444444;
    font-size: 16px;
    line-height: 1.9;
    max-width: 620px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 34px;
    row-gap: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    height: 30px;
    min-width: 30px;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.feature-icon i {
    color: #fff;
    font-size: 14px;
    line-height: 1;
}

.feature-text h4 {
    margin: 0 0 7px;
    color: #000;
    font-size: 21px;
    line-height: 1.2;
    font-weight: 500;
}

.feature-text p {
    margin: 0;
    color: #000;
    font-size: 15px;
    line-height: 1.5;
}

@media(max-width:1199px) {

    .why-content h2 {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    .why-choose-section {
        padding: 80px 0;
    }

    .why-image {
        margin-bottom: 50px;
    }

    .why-content {
        padding-left: 0;
    }

    .why-content h2 {
        font-size: 42px;
    }

}

@media(max-width:767px) {

    .why-content h2 {
        font-size: 34px;
        line-height: 1;
    }

    .why-description {
        font-size: 14px;
        line-height: 1.8;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-text h4 {
        font-size: 17px;
    }

    .feature-text p {
        font-size: 14px;
    }

}

/* WHY SECTION END  */

/* AREAS SECTION START */
.areas-section {
    padding: 90px 0;
    background: #F4F5F4;
}


.areas-top {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 42px;
    flex-flow: wrap;
}

.areas-heading h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.8px;
    font-weight: 700;
    margin-bottom: 20px;

}

.areas-heading h2 span {
    display: block;
}

.areas-btn-wrap {
    padding-top: 22px;
}

.areas-btn {
    height: 42px;
    padding: 0 18px;
    border-radius: 7px;
    background: var(--primary-dark);
    ;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: 0.3s;
}

.areas-btn i {
    font-size: 13px;
    transition: 0.3s;
}

.areas-btn:hover {
    background: #000;
    color: #fff;
}

.areas-btn:hover i {
    transform: translateX(3px);
}

.county-box {
    border: 1px solid #AAAAAA;
    border-radius: 18px;
    padding: 28px 40px 32px;
    height: 100%;
}

.county-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 35px;
}

.county-title i {
    color: var(--primary-dark);
    ;
    font-size: 28px;
    line-height: 1;
}

.county-title h3 {
    margin: 0;
    color: var(--primary-dark);
    ;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.county-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.county-grid ul {
    margin: 0;
    padding-left: 18px;
    list-style: disc;
}

.county-grid ul li {
    color: #555555;
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 12px;
    margin-bottom: 12px;
    border-bottom: 1px solid #e1e1e1;
}


@media(max-width:991px) {

    .areas-section {
        padding: 80px 0;
    }

    .areas-top {
        /* flex-direction: column; */
        margin-bottom: 36px;
    }

    .areas-btn-wrap {
        padding-top: 0;
    }

    .areas-heading h2 {
        font-size: 42px;
    }

    .small-about-image {
        left: 0;
        bottom: -4px;
    }

}

@media(max-width:767px) {

    .areas-heading h2 {
        font-size: 34px;
        line-height: 1;
    }

    .county-box {
        padding: 24px 24px 28px;
    }

    .county-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .county-title h3 {
        font-size: 22px;
    }

    .county-grid ul li {
        font-size: 15px;
    }

}

/* AREAS SECTION END */

/* GALLERY SECTION START */
.gallery-section {
    padding: 90px 0;
    background: #000000;
    overflow: hidden;
}


.gallery-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 26px;
}

.gallery-tag {
    color: #ffffff;
    display: block;
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 18px;
}

.gallery-heading h2 {
    color: #ffffff;
    margin: 0;
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.8px;
    font-weight: 700;
    margin-bottom: 20px;
}

.gallery-btn-wrap {
    padding-top: 22px;
}

.gallery-btn {
    height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: 0.3s;
}

.gallery-btn i {
    transition: 0.3s;
    font-size: 13px;
}

.gallery-btn:hover {
    background: #ffffff;
    color: #000;
}

.gallery-btn:hover i {
    transform: translateX(3px);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 320px 320px 320px;
    gap: 10px;
}


.gallery-item {
    position: relative;
    overflow: hidden;
    display: block;
    background: #111;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.45s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}


.large-item {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.top-right {
    grid-column: 3 / 5;
    grid-row: 1 / 2;
}

.small-item-1 {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.small-item-2 {
    grid-column: 4 / 5;
    grid-row: 2 / 3;
}

.bottom-left-1 {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

.bottom-left-2 {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.bottom-right {
    grid-column: 3 / 5;
    grid-row: 3 / 4;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    padding: 30px;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-image {
    max-width: 92%;
    max-height: 92%;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

.close-modal {
    position: absolute;
    top: 28px;
    right: 36px;
    color: #fff;
    font-size: 44px;
    cursor: pointer;
    line-height: 1;
}

@keyframes zoomIn {

    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

}


@media(max-width:991px) {

    .gallery-section {
        padding: 80px 0;
    }

    .gallery-top {
        flex-direction: column;
        gap: 3px;
        align-items: flex-start;
        margin-bottom: 35px;
    }


    .gallery-btn-wrap {
        padding-top: 0;
    }

    .gallery-heading h2 {
        font-size: 42px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: 260px 260px 220px 220px 220px;
    }

    .large-item {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    .top-right {
        grid-column: 1 / 3;
        grid-row: 2 / 3;
    }

    .small-item-1 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }

    .small-item-2 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }

    .bottom-left-1 {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .bottom-left-2 {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }

    .bottom-right {
        grid-column: 1 / 3;
        grid-row: 5 / 6;
    }

}

@media(max-width:767px) {

    .gallery-heading h2 {
        font-size: 34px;
        line-height: 1;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
    }

    .gallery-item {
        height: 260px;
    }

    /* NOTE: the mobile .close-modal size override used to live here, but a
       later *unconditional* .close-modal rule (in the gallery-page-section
       block below) was overriding it every time because it appeared further
       down in the file at equal specificity. Moved to the very end of the
       stylesheet so it always wins on small screens for BOTH lightbox
       instances. See "GLOBAL MOBILE OVERRIDES (must stay last)" at bottom. */

}

/* GALLERY SECTION END */

/* FULL SERVICE SECTION START */
.full-service-section {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.service-top-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 34px;
}

.service-left {
    width: 46%;
}

.service-left h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -0.8px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-left h2 span {
    display: block;
}

.service-right {
    width: 50%;
    padding-top: 10px;
}

.service-right p {
    margin: 0;
    color: #444444;
    font-size: 15px;
    line-height: 1.95;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #E3E3E3;
    border-left: 1px solid #E3E3E3;

}

.service-box {
    min-height: 320px;
    padding: 34px 28px 34px 28px;
    border-right: 1px solid #E3E3E3;
    border-bottom: 1px solid #E3E3E3;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-icon {
    width: 75px;
    height: 75px;
    margin-bottom: 18px;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.service-box h3 {
    text-transform: uppercase;
    margin: 0 0 12px;
    color: #111;
    font-size: 26px;
    line-height: 1.02;
    letter-spacing: -0.5px;
    font-weight: 500;

}

.service-box p {
    margin: 0;
    color: #000;
    font-size: 15px;
    line-height: 1.5;
}

@media(max-width:1199px) {

    .service-left h2 {
        font-size: 48px;
    }

}

@media(max-width:991px) {

    .full-service-section {
        padding: 80px 0;
    }

    .service-top-wrap {
        flex-direction: column;
        gap: 28px;
    }

    .service-left,
    .service-right {
        width: 100%;
    }

    .service-left h2 {
        font-size: 42px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:767px) {

    .service-left h2 {
        font-size: 34px;
        line-height: 1;
    }

    .service-right p {
        font-size: 14px;
        line-height: 1.8;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-box {
        min-height: auto;
        padding: 28px 22px;
    }

    .service-box h3 {
        font-size: 20px;
    }

    .service-box p {
        max-width: 100%;
        font-size: 14px;
    }

}

/* FULL SERVICE SECTION END */

/* TESTIMONIAL SECTION START */

.testimonial-section {
    background-color: #F4F5F4;
}

img.testi-image {
    width: 100%;
    height: 100%;
}

/* TESTIMONIAL SECTION END */


/* CTA SECTION START */
.cta-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
}


.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 48, 27, 0.88) 0%,
            rgba(0, 48, 27, 0.72) 40%,
            rgba(0, 48, 27, 0.82) 100%);

    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.cta-content h2 {
    margin: 0 auto;
    color: #ffffff;
    font-size: 65px;
    letter-spacing: -0.8px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 670px;
    /* line-height: 85px; */
}


.cta-content p {
    margin: 0 auto 34px;
    max-width: 760px;
    color: #ffffff;
    font-size: 20px;
    line-height: 1.45;
    font-weight: 400;
}

.cta-content p span {
    display: block;
}


.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* BUTTON */

.cta-btn {
    height: 58px;
    padding: 0 28px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 500;
    transition: 0.3s;
}


.white-btn {
    background: #ffffff;
    color: #111;
}

.white-btn:hover {
    background: #000;
    color: #fff;
}


.dark-btn {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.dark-btn:hover {
    background: var(--primary-dark);
    color: #ffffff;
}

.cta-btn i {
    font-size: 22px;
    transition: 0.3s;
}

.white-btn:hover i {
    transform: translateX(3px);
}

@media(max-width:1199px) {

    .cta-content h2 {
        font-size: 58px;
    }

}

@media(max-width:991px) {

    .cta-section {
        padding: 90px 0 100px;
    }

    .cta-content h2 {
        font-size: 48px;
    }

    .cta-content p {
        font-size: 18px;
    }

    .cta-btn {
        height: 54px;
        font-size: 20px;
    }

}

@media(max-width:767px) {

    .cta-section {
        padding: 75px 0 85px;
    }

    .cta-content h2 {
        font-size: 36px;
        line-height: 1;
    }

    .cta-content p {
        font-size: 16px;
        line-height: 1.7;
    }

    .cta-content p span {
        display: inline;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        max-width: 320px;
        font-size: 18px;
        height: 52px;
    }

}

/* CTA SECTION END */

/* FOOTER START */

.main-footer {
    background: #000000;
    padding: 90px 0 20px;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.35fr 0.7fr 1fr;
    gap: 90px;
    padding-bottom: 42px;
}

.footer-brand .logo-content h5 {
    color: #fff;
    font-size: 24px;
}

.footer-brand .logo-content span {
    color: #fff;
}


.footer-about p {
    max-width: 430px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
}

.logo-content-para {
    margin-top: 20px;
}


.footer-rating {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 26px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 3px;
}

.rating-stars i {
    color: #f2d335;
    font-size: 22px;
    line-height: 1;
}

.footer-rating span {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}


.footer-links-wrap h3,
.footer-contact h3 {
    margin: 0 0 34px;
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    letter-spacing: -1px;
    font-weight: 700;
}


.footer-links-wrap ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links-wrap ul li {
    margin-bottom: 20px;
}

.footer-links-wrap ul li:last-child {
    margin-bottom: 0;
}

.footer-links-wrap ul li a {
    color: rgba(255, 255, 255, 0.86);
    font-size: 18px;
    font-weight: 400;
    transition: 0.3s;
}

.footer-links-wrap ul li a:hover {
    font-weight: 600;
    padding-left: 5px;
}

.footer-contact ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.footer-contact ul li i {
    color: #0a7a47;
    font-size: 18px;
    line-height: 1;
    margin-top: 3px;
}

.footer-contact ul li a,
.footer-contact ul li span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

.footer-contact ul li a:hover {
    color: #0a7a47;
}


.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom span {
    margin: 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    font-weight: 400;
}

@media(max-width:1199px) {

    .footer-top {
        gap: 60px;
    }

    .footer-links-wrap h3,
    .footer-contact h3 {
        font-size: 36px;
    }

}

@media(max-width:991px) {

    .main-footer {
        padding: 70px 0 28px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .footer-about p {
        max-width: 100%;
    }

}

@media(max-width:767px) {

    .main-footer {
        padding: 60px 0 24px;
    }

    .footer-logo img {
        max-width: 240px;
    }

    .footer-links-wrap h3,
    .footer-contact h3 {
        font-size: 30px;
        margin-bottom: 24px;
    }

    .footer-about p {
        font-size: 14px;
        line-height: 1.9;
    }

    .footer-rating {
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-rating span {
        font-size: 14px;
    }

    .footer-links-wrap ul li a,
    .footer-contact ul li a,
    .footer-contact ul li span {
        font-size: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}

/* FOOTER END */


/* ========================ABOUT PAGE CSS START =========================== */

/* ABOUT HERO SECTION START */

.about-hero-section {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
}


.about-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.80) 40%,
            rgba(0, 0, 0, 0.84) 100%);

    z-index: 1;
}


.about-hero-section .container {
    position: relative;
    z-index: 2;
}


.about-floating-left {
    position: relative;
    width: 100%;
    min-height: 250px;
}


.floating-image {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-top {
    width: 170px;
    height: 170px;
    margin-left: 20px;
}

.image-bottom {
    width: 145px;
    height: 145px;
    margin-top: 40px;
    margin-left: 50px;
}


.about-hero-content {
    max-width: 720px;
    padding-left: 10px;
}

.about-breadcrumb {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
}

.about-breadcrumb a {
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 32px;
    opacity: 0.9;
}

.about-hero-content h1 {
    margin: 0 0 20px;
    color: #ffffff;
    font-size: 70px;
    line-height: 0.92;
    letter-spacing: -3px;
    font-weight: 700;
}

.about-hero-content p {
    margin: 0;
    max-width: 720px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 18px;
    line-height: 1.85;
    font-weight: 400;
}


.about-right-image {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    overflow: hidden;
    margin-left: auto;
    margin-right: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media(max-width:1199px) {

    .about-hero-content h1 {
        font-size: 64px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

}

@media(max-width:991px) {

    .about-hero-section {
        padding: 70px 0;
    }

    .about-hero-content {
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }

    .about-hero-content p {
        margin: 0 auto;
    }

    .about-hero-content h1 {
        font-size: 54px;
    }

}

@media(max-width:767px) {

    .about-hero-section {
        padding: 60px 0;
    }

    .about-breadcrumb {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .about-hero-content h1 {
        font-size: 42px;
        line-height: 1;
        letter-spacing: -1.5px;
    }

    .about-hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

}

/* ABOUT HERO SECTION END */

/* ABOUT FEATURE SECTION START */
.about-feature-section {
    padding: 110px 0;
    background: #F4F5F4;
    overflow: hidden;
}

.about-feature-content h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -1.8px;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-feature-content h2 span {
    display: block;
}

.about-feature-content p {
    margin: 0 0 18px;
    color: #444444;
    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
}

.about-feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    margin: 28px 0 26px;
    gap: 16px;
}

.about-feature-item {
    height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border: 1px solid #E8E8E8;
    border-radius: 6px;
    color: #444444;
    font-size: 18px;
    font-weight: 400;
}

.feature-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-dark);
    display: block;
    min-width: 6px;
}

.about-feature-btn {
    height: 42px;
    padding: 0 18px;
    background: var(--primary-dark);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s;
}

.about-feature-btn:hover {
    background: #000;
    color: #ffffff;
}

.about-feature-btn i {
    font-size: 14px;
    transition: 0.3s;
}

.about-feature-btn:hover i {
    transform: translateX(3px);
}


.about-feature-images {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    justify-content: flex-end;
}


.about-feature-left-images {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-feature-small-image {
    border-radius: 14px;
    overflow: hidden;
}

.about-feature-small-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-feature-right-image {
    border-radius: 14px;
    overflow: hidden;
    margin-top: 50px;
}

.about-feature-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-feature-client-box {
    position: absolute;
    top: -6px;
    right: -35px;
    width: 165px;
    height: 144px;
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.client-inner-box {
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.client-inner-box h3 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 46px;
    line-height: 1;
    font-weight: 500;
}

/* TEXT */

.client-inner-box p {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1199px) {

    .about-feature-content h2 {
        font-size: 46px;
    }

    .about-feature-small-image {
        width: 210px;
    }

    .about-feature-right-image {
        width: 210px;
    }

}

@media(max-width:991px) {

    .about-feature-section {
        padding: 75px 0 85px;
    }

    .about-feature-content {
        max-width: 100%;
        margin-bottom: 50px;
    }

    .about-feature-content h2 {
        font-size: 40px;
    }

    .about-feature-images {
        justify-content: center;
        align-items: self-end;
    }

    /* Consolidated from bottom-of-file override */
    .about-feature-small-image {
        width: 100%;
    }

    .about-feature-right-image {
        width: 100%;
        height: 360px;
        margin-top: 0;
    }

    .process-item:nth-child(odd) {
        border-right: 1px solid #ddd;
    }

}

@media(max-width:767px) {

    .about-feature-section {
        padding: 65px 0 75px;
    }

    .about-feature-content h2 {
        font-size: 34px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .about-feature-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-feature-list {
        grid-template-columns: 1fr;
    }

    .about-feature-item {
        border-right: none !important;
    }

    .about-feature-item:not(:last-child) {
        border-bottom: 1px solid #e4e4e4 !important;
    }

    .about-feature-images {
        flex-direction: column;
        align-items: center;
    }

    .about-feature-left-images {
        width: 100%;
    }

    .about-feature-small-image,
    .about-feature-right-image {
        width: 100%;
    }

    .about-feature-right-image {
        height: 360px;
    }

    .about-feature-client-box {
        right: 10px;
        top: -15px;
    }

    .client-inner-box h3 {
        font-size: 36px;
    }

    .about-feature-right-image img {
        width: 100%;
    }

    .process-item:nth-child(odd) {
        border-right: none;
    }

}

/* ABOUT FEATURE SECTION END */

/* PROCESS SECTION START */
.process-section {
    padding: 90px 0;
    background: #fff;
    overflow: hidden;
}

.process-heading {
    margin-bottom: 65px;
}

.process-heading h2 {
    margin: 0;
    color: var(--primary-dark);
    font-size: 50px;
    line-height: 0.95;
    letter-spacing: -1.8px;
    font-weight: 700;
}

.process-heading h2 span {
    display: block;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.process-item {
    text-align: center;
    padding: 0 26px;
    border-right: 1px solid #dddddd;
}

.border-remove {
    border-right: none;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0px auto 25px;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.process-item h3 {
    margin: 0 0 12px;
    color: #000;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.3px;
}

.process-item p {
    margin: 0 auto;
    max-width: 195px;
    color: #444444;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

@media(max-width:1199px) {

    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 45px;
    }

    .process-item:nth-child(3) {
        border-right: none;
    }

}

@media(max-width:991px) {

    .process-section {
        padding: 80px 0;
    }

    .process-heading h2 {
        font-size: 44px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item:nth-child(2),
    .process-item:nth-child(4) {
        border-right: none;
    }

}

@media(max-width:767px) {

    .process-heading h2 {
        font-size: 34px;
        line-height: 1;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .process-item {
        border-right: none;
        padding: 0;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        border-radius: 12px;
        padding: 30px;
    }

    .process-item p {
        max-width: 260px;
    }

}

@media(max-width:768px) {

    .process-item:nth-child(odd) {
        border-right: none;
    }

}

/* PROCESS SECTION END */

/* ABOUT WHY SECTION START */
.about-why-section {
    padding: 90px 0;
    background: #000000;
    overflow: hidden;
}

.about-why-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    margin-bottom: 28px;
}

.about-why-left {
    width: 48%;
}

.about-why-tag {
    color: #ffffff;
    display: block;
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 500;
    margin-bottom: 18px;
}

.about-why-left h2 {
    color: #ffffff;
    margin: 0;
    font-size: 48px;
    line-height: 0.95;
    letter-spacing: -0.8px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-why-left h2 span {
    display: block;
}

.about-why-right {
    width: 44%;
    padding-top: 18px;
}

.about-why-right p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
}

.about-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}


.about-why-card {
    background: #ffffff;
    border-radius: 14px;
    min-height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 0 45px;
}

.about-why-icon {
    width: 40px;
    height: 35px;
    min-width: 20px;
    background: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-why-icon i {
    color: #ffffff;
    font-size: 13px;
    line-height: 1;
}

.about-why-content h3 {
    margin: 0 0 7px;
    color: #000;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.about-why-content p {
    margin: 0;
    color: #000;
    font-size: 15px;
    line-height: 1.5;
    max-width: 248px;
    font-weight: 400;
}

@media(max-width:1199px) {

    .about-why-left h2 {
        font-size: 46px;
    }

}

@media(max-width:991px) {

    .about-why-section {
        padding: 72px 0 82px;
    }

    .about-why-top {
        flex-direction: column;
        gap: 24px;
    }

    .about-why-left,
    .about-why-right {
        width: 100%;
    }

    .about-why-right {
        padding-top: 0;
    }

    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-why-left h2 {
        font-size: 40px;
    }

}

@media(max-width:767px) {

    .about-why-section {
        padding: 62px 0 72px;
    }

    .about-why-left h2 {
        font-size: 34px;
        line-height: 1;
        letter-spacing: -1px;
    }

    .about-why-right p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-why-grid {
        grid-template-columns: 1fr;
    }

    .about-why-card {
        min-height: auto;
        padding: 24px 18px;
    }

}

@media (max-width:600px) {

    .about-why-card {
        justify-content: left;
    }

}

/* ABOUT WHY SECTION END */


/* Added By Kousik */

/* SERVICES PAGE SECTION START */

.services-page-section {
    padding: 90px 0;
    background: #F4F5F4;
}

.services-page-heading {
    max-width: 850px;
    margin: 0 auto 60px;
}

.services-page-heading h2 {
    color: var(--primary-dark);
    font-size: 50px;
    line-height: .95;
    letter-spacing: -1.5px;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-page-heading h2 span {
    display: block;
}

.services-page-heading p {
    color: #444444;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
}

.service-page-card {
    background: #fff;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    transition: .35s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, .05);
}

.service-page-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .12);
}

.service-page-image {
    height: 250px;
}

.service-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-page-content {
    padding: 28px;
}

.service-page-content h3 {
    color: #111;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-page-content p {
    color: #444444;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media(max-width:991px) {

    .services-page-section {
        padding: 80px 0;
    }

    .services-page-heading h2 {
        font-size: 42px;
    }
}

@media(max-width:767px) {

    .services-page-heading {
        margin-bottom: 40px;
    }

    .services-page-heading h2 {
        font-size: 34px;
        line-height: 1;
    }

    .services-page-heading p {
        font-size: 14px;
    }

    .service-page-image {
        height: 220px;
    }

    .service-page-content {
        padding: 22px;
    }

    .service-page-content h3 {
        font-size: 20px;
    }
}

/* SERVICES PAGE SECTION END */


/* ================================= */
/* ================================= */
/* ================================= */
/* ================================= */
/* ================================= */

.areas-served-page-section {
    padding: 90px 0;
    background: #F4F5F4;
}

.areas-served-heading {
    max-width: 850px;
    margin: 0 auto 60px;
}

.areas-served-heading h2 {
    color: var(--primary-dark);
    font-size: 50px;
    font-weight: 700;
    line-height: .95;
    margin-bottom: 20px;
}

.areas-served-heading h2 span {
    display: block;
}

.areas-served-heading p {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
}

.area-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: .3s;
}

.area-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-dark);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.area-card i {
    font-size: 34px;
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: block;
}

.area-card h3 {
    margin: 0;
    font-size: 22px;
    color: #111;
    font-weight: 600;
}

@media(max-width:767px) {

    .areas-served-page-section {
        padding: 70px 0;
    }

    .areas-served-heading h2 {
        font-size: 34px;
        line-height: 1;
    }

    .areas-served-heading p {
        font-size: 14px;
    }

    .area-card h3 {
        font-size: 18px;
    }
}

/* ======================== */
/* ======================== */
/* ======================== */
/* ======================== */

.gallery-page-section {
    background: #F4F5F4;
}

.gallery-page-heading h2 {
    color: var(--primary-dark);
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}

/* Scoped to the gallery landing page so this no longer collides with the
   homepage .gallery-item / .gallery-modal / .close-modal rules above,
   which use the same class names for a different lightbox layout. */

.gallery-page-section .gallery-item {
    display: block;
    overflow: hidden;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.gallery-page-section .gallery-item img {
    width: 100%;
    /* height: 320px; */
    object-fit: cover;
    transition: .4s ease;
}

.gallery-page-section .gallery-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 991px) {
    .gallery-page-heading h2 {
        font-size: 42px;
    }

    .gallery-page-section .gallery-item img {
        height: 280px;
    }
}

@media (max-width: 767px) {
    .gallery-page-heading h2 {
        font-size: 34px;
    }

    .gallery-page-section .gallery-item img {
        height: 240px;
    }
}

.gallery-page-section .gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-page-section .gallery-modal.active {
    display: flex;
}

.gallery-page-section .gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.gallery-page-section .close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}


/* ========================== */
/* ==========================
   CONTACT PAGE
========================== */

.contact-page-section {
    padding: 100px 0;
    background: #f4f5f4;
}

/* Heading */

.contact-page-heading {
    max-width: 850px;
    margin: 0 auto 70px;
}

.contact-tag,
.contact-small-tag {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.contact-page-heading h2,
.contact-content h2 {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-dark);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.contact-page-heading p,
.contact-content p {
    color: #555;
    line-height: 1.9;
    font-size: 16px;
}

/* Cards */

.contact-info-card {
    background: #fff;
    border-radius: 18px;
    padding: 35px 25px;
    text-align: center;
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
    transition: .35s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .10);
}

.contact-info-card i {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: #fff;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.contact-info-card a {
    color: #555;
    text-decoration: none;
    transition: .3s;
    word-break: break-word;
}

.contact-info-card a:hover {
    color: var(--primary-dark);
}

.contact-info-card p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* Left Content */

.contact-content {
    margin-bottom: 35px;
}

/* Map */

.map {
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.map iframe {
    width: 100%;
    height: 350px;
    display: block;
    border: none;
}

/* Form */

.contact-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .06);
}

.form-heading h3 {
    font-size: 34px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.form-heading p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-form-box .form-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #111;
    margin-bottom: 8px;
}

.contact-form-box .form-control,
.contact-form-box .form-select {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 14px 18px;
    min-height: 55px;
    box-shadow: none;
}

.contact-form-box textarea.form-control {
    min-height: 150px;
    resize: none;
}

.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, .05);
}

.contact-form-box .btn {
    height: 58px;
    border-radius: 10px;
    border: none;
    background: var(--primary-dark);
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    transition: .3s;
}

.contact-form-box .btn:hover {
    transform: translateY(-2px);
    opacity: .9;
}

/* Responsive */

@media (max-width: 991px) {

    .contact-page-section {
        padding: 80px 0;
    }

    .contact-page-heading h2,
    .contact-content h2 {
        font-size: 44px;
    }

    .contact-form-box {
        padding: 35px;
    }
}

@media (max-width: 767px) {

    .contact-page-section {
        padding: 70px 0;
    }

    .contact-page-heading {
        margin-bottom: 45px;
    }

    .contact-page-heading h2,
    .contact-content h2 {
        font-size: 34px;
        letter-spacing: -1px;
    }

    .contact-form-box {
        padding: 25px;
    }

    .contact-info-card {
        min-height: auto;
    }

    .map iframe {
        height: 280px;
    }
}

/* ======================= */

/* ===================================
   SERVICE DETAILS PAGE
=================================== */
.service-details-section {
    padding: 90px 0;
    background: #F4F5F4;
}

/* CONTENT */

.service-content {
    background: #fff;
    padding: 40px;
    /* border-radius: 18px; */
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.service-content h1 {
    color: var(--primary-dark);
    font-size: 52px;
    line-height: 1;
    letter-spacing: -1.5px;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-content h2 {
    color: var(--primary-dark);
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-content h3 {
    color: var(--primary-dark);
    font-size: 24px;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 10px;
}

.service-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.9;
    margin-bottom: 20px;
}

.service-content ul {
    margin-bottom: 30px;
    padding-left: 20px;
}

.service-content ul li {
    color: #444;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* FAQ */

.faq-section {
    background: #fff;
    padding: 40px;
    border-radius: 18px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.faq-section h2 {
    color: var(--primary-dark);
    font-size: 34px;
    font-weight: 700;
}

.accordion-item {
    border: 1px solid #e3e3e3;
    margin-bottom: 12px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    font-size: 18px;
    font-weight: 600;
    color: #111;
    background: #fff;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-dark);
    color: #fff;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-body {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

/* SIDEBAR */

.service-sidebar {
    position: sticky;
    top: 30px;
}

.sidebar-card {
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.sidebar-card h3 {
    color: var(--primary-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 18px;
}

.sidebar-card p {
    color: #555;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-list li {
    border-bottom: 1px solid #ececec;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list li a,
.service-list li {
    display: block;
    color: #444;
    padding: 12px 0;
    font-size: 16px;
    transition: .3s;
}

.service-list li a:hover {
    color: var(--primary-dark);
    padding-left: 8px;
}

/* RESPONSIVE */

@media (max-width: 991px) {

    .service-details-section {
        padding: 80px 0;
    }

    .service-sidebar {
        position: relative;
        top: auto;
        margin-top: 40px;
    }

    .service-content h1 {
        font-size: 42px;
    }

    .service-content h2,
    .faq-section h2 {
        font-size: 30px;
    }
}

@media (max-width: 767px) {

    .service-details-section {
        padding: 70px 0;
    }

    .service-content,
    .faq-section,
    .sidebar-card {
        padding: 25px;
    }

    .service-content h1 {
        font-size: 34px;
    }

    .service-content h2,
    .faq-section h2 {
        font-size: 26px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .service-content p,
    .service-content ul li,
    .accordion-body {
        font-size: 14px;
    }

    .accordion-button {
        font-size: 16px;
    }

    .sidebar-card h3 {
        font-size: 24px;
    }
}

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg-video,
.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-video {
    object-fit: cover;
}

.hero-bg-image {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}



/* ========================== */

.blog-page-section {
    padding: 100px 0;
}

.blog-page-heading {
    max-width: 800px;
    margin: 0 auto;
}

.blog-page-heading h2 {
    font-size: 56px;
    font-weight: 700;
    margin: 20px 0;
    color: var(--black);
}

.blog-page-heading h2 span {
    color: var(--primary-dark);
}

.blog-page-heading p {
    color: var(--light-text);
    font-size: 18px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--border-color);
    transition: all .35s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.blog-card::before {
    content: "";
    display: block;
    height: 4px;
    background: var(--primary-dark);
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-dark);
    box-shadow: 0 15px 40px rgba(11, 59, 36, .15);
}

.blog-image {
    display: block;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
    color: var(--light-text);
    font-size: 14px;
}

.blog-meta i {
    color: var(--primary-dark);
    margin-right: 6px;
}

.blog-content h3 {
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-content h3 a {
    text-decoration: none;
    color: var(--black);
    transition: color .3s ease;
}

.blog-content h3 a:hover {
    color: var(--primary-dark);
}

.blog-content p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-dark);
    transition: all .3s ease;
}

.blog-btn:hover {
    color: var(--primary-dark);
    letter-spacing: .5px;
}

.blog-btn i {
    transition: transform .3s ease;
}

.blog-btn:hover i {
    transform: translateX(5px);
}


/* =========================== */

.single-blog-section {
    padding: 100px 0;
}

.single-blog-wrapper {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.single-blog-image {
    margin-bottom: 40px;
    border-radius: 16px;
    overflow: hidden;
}

.single-blog-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--light-text);
    font-size: 15px;
}

.single-blog-meta i {
    color: var(--primary-dark);
    margin-right: 6px;
}

.single-blog-title {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--black);
    font-weight: 700;
}

.single-blog-content {
    color: var(--text-color);
    font-size: 18px;
    line-height: 1.9;
}

.single-blog-content h2 {
    font-size: 38px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: var(--black);
}

.single-blog-content h3 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--black);
}

.single-blog-content p {
    margin-bottom: 25px;
}

.single-blog-content ul,
.single-blog-content ol {
    padding-left: 25px;
    margin-bottom: 25px;
}

.single-blog-content li {
    margin-bottom: 10px;
}

.single-blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 30px 0;
}

/* Table Styling */

.single-blog-content table {
    width: 100%;
    margin: 30px 0;
    border-collapse: collapse;
    background: #fff;
    overflow: hidden;
    border-radius: 10px;
    display: block;
    overflow-x: auto;
}

.single-blog-content table th,
.single-blog-content table td {
    border: 1px solid #dcdcdc;
    padding: 14px 18px;
    text-align: left;
}

.single-blog-content table th {
    background: var(--primary-dark);
    color: #fff;
    font-weight: 600;
}

.single-blog-content table tr:nth-child(even) {
    background: #f8f8f8;
}

/* Blockquote */

.single-blog-content blockquote {
    background: #f8f8f8;
    border-left: 5px solid var(--primary-dark);
    padding: 25px;
    margin: 30px 0;
    font-style: italic;
}

/* Links */

.single-blog-content a {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Navigation */

.blog-navigation {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.blog-navigation a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.blog-navigation a:hover {
    opacity: .8;
}

/* ================ */

.error-404-section {
    padding: 120px 0;
    background: #f8f8f8;
}

.error-404-content {
    background: #fff;
    padding: 70px 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
}

.error-code {
    display: block;
    font-size: 140px;
    line-height: 1;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.error-404-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}

.error-404-content p {
    max-width: 600px;
    margin: 0 auto 35px;
    color: var(--light-text);
    font-size: 18px;
    line-height: 1.8;
}

.error-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.theme-btn {
    display: inline-block;
    background: var(--primary-dark);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.theme-btn:hover {
    color: #fff;
    transform: translateY(-3px);
}

.theme-btn-outline {
    display: inline-block;
    border: 2px solid var(--primary-dark);
    color: var(--primary-dark);
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

.theme-btn-outline:hover {
    background: var(--primary-dark);
    color: #fff;
}

.error-search form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.error-search input[type="search"] {
    flex: 1;
    height: 55px;
    border: 1px solid var(--border-color);
    padding: 0 20px;
    border-radius: 50px 0 0 50px;
    outline: none;
}

.error-search input[type="submit"] {
    border: none;
    background: var(--primary-dark);
    color: #fff;
    padding: 0 25px;
    border-radius: 0 50px 50px 0;
}

@media (max-width: 767px) {

    .error-404-content {
        padding: 50px 25px;
    }

    .error-code {
        font-size: 90px;
    }

    .error-404-content h1 {
        font-size: 32px;
    }
}

.wpcf7-not-valid-tip:not(:nth-child(1)):not(:nth-child(2)) {
    display: none;
}

.wpcf7-response-output {
    color: #ffffff;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}


@media (max-width:992px) {

    .single-blog-wrapper {
        padding: 35px;
    }

    .single-blog-title {
        font-size: 30px;
    }

    .single-blog-content {
        font-size: 17px;
    }

    .single-blog-content h2 {
        font-size: 32px;
        margin-top: 40px;
    }

    .single-blog-content h3 {
        font-size: 24px;
        margin-top: 30px;
    }

    .single-blog-section {
        padding: 40px 0;
    }
}

@media (max-width:768px) {

    .single-blog-wrapper {
        padding: 25px;
        border-radius: 15px;
    }

    .single-blog-meta {
        gap: 12px;
        font-size: 14px;
    }

    .single-blog-title {
        font-size: 26px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .single-blog-content {
        font-size: 16px;
        line-height: 1.8;
    }

    .single-blog-content h2 {
        font-size: 28px;
        margin-top: 35px;
        margin-bottom: 15px;
    }

    .single-blog-content h3 {
        font-size: 22px;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .single-blog-content table th,
    .single-blog-content table td {
        padding: 12px;
        font-size: 14px;
        white-space: nowrap;
    }

    .blog-navigation {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width:600px) {

    .hero-buttons {
        flex-direction: column;
    }

    .single-blog-wrapper {
        padding: 20px;
    }

    .single-blog-title {
        font-size: 22px;
    }

    .single-blog-meta {
        flex-direction: column;
        gap: 8px;
    }

    .single-blog-content {
        font-size: 15px;
    }

    .single-blog-content h2 {
        font-size: 24px;
    }

    .single-blog-content h3 {
        font-size: 20px;
    }

    .single-blog-content ul,
    .single-blog-content ol {
        padding-left: 20px;
    }

    .single-blog-content blockquote {
        padding: 20px;
        font-size: 15px;
    }

    .error-search form {
        flex-direction: column;
        gap: 10px;
    }

    .error-search input[type="search"] {
        border-radius: 50px;
    }

    .error-search input[type="submit"] {
        border-radius: 50px;
        height: 46px;
    }
}


/* =========================================================================
   GLOBAL MOBILE OVERRIDES (must stay last on purpose)
   -------------------------------------------------------------------------
   Fixes applied here:

   1. .nav-right no longer force-hidden on tablet/mobile. The original file
      had "@media (max-width:992px){ .nav-right{ display:none; } }" at the
      very end of the stylesheet, which — because it came after the earlier,
      correct ".nav-right{flex-direction:column;...}" rule at the same
      breakpoint — silently won the cascade and hid the phone number AND the
      "Get Estimate" button on every tablet/phone visit. That's now removed;
      nav-right stacks vertically instead, matching the earlier intended rule.

   2. .close-modal gets its smaller mobile size here, guaranteed to be the
      last word in the cascade so it can never be silently overridden again
      by any earlier or later unconditional rule (this was the exact bug
      affecting the homepage gallery lightbox before).
========================================================================= */

@media (max-width: 767px) {

    .close-modal {
        top: 16px;
        right: 20px;
        font-size: 38px;
    }

    .gallery-page-section .close-modal {
        top: 16px;
        right: 20px;
        font-size: 38px;
    }

}

/* Extra-small phones (≤480px): tighten the largest headings a bit further
   so they don't crowd on narrow screens. Additive only — nothing above
   is changed, this just narrows a few sizes one step more. */

@media (max-width: 480px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .cta-content h2 {
        font-size: 30px;
    }

    .services-heading h2,
    .about-content h2,
    .why-content h2,
    .areas-heading h2,
    .gallery-heading h2,
    .service-left h2,
    .about-feature-content h2,
    .process-heading h2 {
        font-size: 28px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .error-code {
        font-size: 64px;
    }
}