/* =========================================================
   TM ENVIRO GROUP - PROJECTS PAGE
========================================================= */


/* =========================================================
   1. GLOBAL RESET AND VARIABLES
========================================================= */

:root {
    --primary-green: #16a661;
    --medium-green: #0d7f4d;
    --dark-green: #073a31;
    --deep-green: #052b25;
    --light-green: #43e990;

    --white: #ffffff;
    --off-white: #f5f9f6;
    --light-bg: #edf6f1;

    --text-dark: #17372c;
    --text-grey: #5b6c64;

    --border-light: rgba(15, 142, 79, 0.16);

    --shadow-soft:
        0 12px 30px rgba(10, 70, 42, 0.10);

    --shadow-medium:
        0 20px 48px rgba(7, 58, 49, 0.18);

    --container-width: 1250px;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    width: 100%;
    overflow-x: hidden;

    background: var(--off-white);
    color: var(--text-dark);

    font-family:
        "Segoe UI",
        Tahoma,
        Geneva,
        Verdana,
        sans-serif;

    line-height: 1.6;
}


img {
    max-width: 100%;
}


a {
    color: inherit;
}


.container {
    width: 100%;
    max-width: var(--container-width);

    margin: 0 auto;
    padding: 0 20px;
}


/* =========================================================
   2. HEADER AND NAVIGATION
========================================================= */

.site-header,
header {
    position: relative;
    z-index: 1000;

    width: 100%;

    background:
        linear-gradient(
            135deg,
            #139b59 0%,
            #087948 50%,
            #075d3c 100%
        );

    border-bottom:
        1px solid rgba(255, 255, 255, 0.16);

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.18);
}


.header-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;
}


.main-navigation {
    width: 100%;
}


.main-navigation ul,
nav ul {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 8px;

    list-style: none;
}


.main-navigation ul li,
nav ul li {
    position: relative;
}


.main-navigation ul li a,
nav ul li a {
    position: relative;

    display: block;

    padding: 17px 18px;

    color: rgba(255, 255, 255, 0.94);

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;

    transition:
        color 0.3s ease,
        background-color 0.3s ease;
}


.main-navigation ul li a::after,
nav ul li a::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 9px;

    width: 0;
    height: 2px;

    background: #a7ffd0;

    border-radius: 20px;

    transform: translateX(-50%);

    transition: width 0.3s ease;
}


.main-navigation ul li a:hover,
.main-navigation ul li a.active,
nav ul li a:hover,
nav ul li a.active {
    color: #ffffff;

    background-color:
        rgba(255, 255, 255, 0.10);

    border-radius: 7px;
}


.main-navigation ul li a:hover::after,
.main-navigation ul li a.active::after,
nav ul li a:hover::after,
nav ul li a.active::after {
    width: calc(100% - 35px);
}

/* =========================================================
   CLIENT LOGO GRID
========================================================= */

.clientele-section {
    position: relative;

    padding: 85px 0 95px;

    background:
        radial-gradient(
            circle at 10% 15%,
            rgba(28, 181, 102, 0.08),
            transparent 26%
        ),
        radial-gradient(
            circle at 90% 80%,
            rgba(28, 181, 102, 0.07),
            transparent 26%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #eef7f2 100%
        );

    overflow: hidden;
}


.clientele-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(12, 112, 66, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(12, 112, 66, 0.018) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    pointer-events: none;
}


.clientele-section .section-heading {
    position: relative;
    z-index: 2;

    margin-bottom: 48px;
}


.clientele-section .section-heading h1 {
    color: #153c2e;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(42px, 6vw, 64px);
    font-weight: 650;
    line-height: 1.2;
}


.client-logo-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(6, minmax(0, 1fr));

    gap: 28px 22px;
}


.client-logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 13px;

    text-align: center;
}


.client-logo-circle {
    position: relative;

    width: 145px;
    height: 145px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5faf7
        );

    border:
        1px solid rgba(15, 142, 79, 0.16);

    border-radius: 50%;

    box-shadow:
        0 12px 30px rgba(8, 84, 49, 0.10);

    overflow: hidden;

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.client-logo-circle::before {
    content: "";

    position: absolute;
    inset: 5px;

    border:
        1px dashed rgba(23, 169, 93, 0.22);

    border-radius: 50%;

    pointer-events: none;
}


.client-logo-circle img {
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    filter:
        saturate(0.95)
        contrast(1.03);

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}


.client-logo-card:hover .client-logo-circle {
    transform: translateY(-8px);

    border-color:
        rgba(24, 168, 95, 0.42);

    box-shadow:
        0 20px 42px rgba(8, 84, 49, 0.18),
        0 0 24px rgba(24, 168, 95, 0.10);
}


.client-logo-card:hover .client-logo-circle img {
    transform: scale(1.08);

    filter:
        saturate(1.08)
        contrast(1.05);
}


.client-logo-card span {
    max-width: 155px;

    color: #284c3b;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}


/* Laptop */

@media screen and (max-width: 1200px) {

    .client-logo-grid {
        grid-template-columns:
            repeat(5, minmax(0, 1fr));
    }
}


/* Tablet */

@media screen and (max-width: 950px) {

    .client-logo-grid {
        grid-template-columns:
            repeat(4, minmax(0, 1fr));

        gap: 25px 18px;
    }


    .client-logo-circle {
        width: 130px;
        height: 130px;

        padding: 18px;
    }
}


/* Small tablet */

@media screen and (max-width: 720px) {

    .clientele-section {
        padding: 65px 0 75px;
    }


    .client-logo-grid {
        grid-template-columns:
            repeat(3, minmax(0, 1fr));
    }


    .client-logo-circle {
        width: 120px;
        height: 120px;

        padding: 16px;
    }
}


/* Mobile */

@media screen and (max-width: 520px) {

    .client-logo-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 24px 14px;
    }


    .client-logo-circle {
        width: 125px;
        height: 125px;
    }


    .client-logo-card span {
        font-size: 12px;
    }
}


/* Very small mobile */

@media screen and (max-width: 350px) {

    .client-logo-circle {
        width: 110px;
        height: 110px;

        padding: 14px;
    }
}

/* =========================================================
   4. PROJECTS HERO SECTION
========================================================= */

.projects-hero {
    position: relative;

    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 90px 20px 120px;

    background:
        linear-gradient(
            rgba(4, 50, 38, 0.68),
            rgba(4, 43, 34, 0.88)
        ),
        url(
            "https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=85"
        );

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;

    overflow: hidden;
}


.projects-hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(64, 243, 150, 0.20),
            transparent 35%
        );

    pointer-events: none;
}


.projects-hero::after {
    content: "";

    position: absolute;

    left: -5%;
    bottom: -80px;

    width: 110%;
    height: 150px;

    background: var(--off-white);

    border-radius:
        50% 50% 0 0 /
        100% 100% 0 0;

    border-top:
        2px solid rgba(67, 233, 144, 0.72);

    box-shadow:
        0 -10px 30px
        rgba(47, 228, 136, 0.18);
}


.projects-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(6, 75, 57, 0.16),
            rgba(3, 35, 28, 0.26)
        );
}


.projects-hero-content {
    position: relative;
    z-index: 3;

    width: 100%;
    max-width: 950px;

    margin: 0 auto;

    text-align: center;
}


.hero-small-title {
    display: inline-block;

    margin-bottom: 18px;
    padding: 8px 18px;

    color: #bdffd9;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(167, 255, 208, 0.32);

    border-radius: 30px;

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


.projects-hero h2 {
    margin-bottom: 15px;

    color: #ffffff;

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(46px, 7vw, 76px);
    font-weight: 600;
    line-height: 1.12;

    text-shadow:
        0 6px 22px rgba(0, 0, 0, 0.35);
}


.hero-title-line {
    width: 90px;
    height: 4px;

    margin: 0 auto 25px;

    background:
        linear-gradient(
            to right,
            #23cb73,
            #75f2ad
        );

    border-radius: 20px;

    box-shadow:
        0 0 20px rgba(66, 238, 146, 0.48);
}


.projects-hero-content p {
    max-width: 850px;

    margin: 0 auto;

    color:
        rgba(239, 255, 247, 0.91);

    font-size: 17px;
    line-height: 1.9;
}


.hero-scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-top: 32px;
    padding: 13px 25px;

    background:
        linear-gradient(
            135deg,
            #1fc46d,
            #0b7547
        );

    color: #ffffff;

    text-decoration: none;

    border:
        1px solid rgba(255, 255, 255, 0.20);

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 12px 25px rgba(0, 0, 0, 0.20);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.hero-scroll-btn:hover {
    transform: translateY(-4px);

    background:
        linear-gradient(
            135deg,
            #0b7547,
            #24d477
        );

    box-shadow:
        0 17px 32px rgba(0, 0, 0, 0.26);
}


/* =========================================================
   5. PROJECT INTRODUCTION
========================================================= */

.projects-introduction {
    padding: 90px 0 55px;

    background: var(--off-white);
}


.section-heading {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}


.section-subtitle {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary-green);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;

    text-transform: uppercase;
}


.section-heading h2,
.projects-section-heading h2,
.industries-heading h2 {
    color: #153c2e;

    font-size: clamp(34px, 4vw, 48px);
    font-weight: 750;
    line-height: 1.25;
}


.section-title-line {
    width: 80px;
    height: 4px;

    margin: 18px auto 23px;

    background:
        linear-gradient(
            to right,
            #15a95f,
            #5ee69d
        );

    border-radius: 20px;
}


.section-heading p {
    color: var(--text-grey);

    font-size: 16px;
    line-height: 1.85;
}


/* =========================================================
   6. PROJECTS SECTION
========================================================= */

.projects-section {
    position: relative;

    padding: 45px 0 105px;

    background:
        radial-gradient(
            circle at 8% 20%,
            rgba(33, 181, 105, 0.08),
            transparent 25%
        ),
        radial-gradient(
            circle at 92% 80%,
            rgba(33, 181, 105, 0.07),
            transparent 25%
        ),
        linear-gradient(
            180deg,
            #f5f9f6 0%,
            #edf6f1 100%
        );

    overflow: hidden;
}


.projects-section::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(11, 110, 65, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(11, 110, 65, 0.018) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    pointer-events: none;
}


.projects-section-heading {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 0.8fr;

    align-items: end;

    gap: 45px;

    margin-bottom: 50px;
}


.projects-section-heading p {
    color: var(--text-grey);

    font-size: 15.5px;
    line-height: 1.8;
}


.projects-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   7. PROJECT CARDS
========================================================= */

.project-card {
    position: relative;

    display: flex;
    flex-direction: column;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f8fcf9
        );

    border:
        1px solid rgba(14, 140, 79, 0.14);

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 14px 35px rgba(7, 74, 44, 0.10);

    transition:
        transform 0.38s ease,
        box-shadow 0.38s ease,
        border-color 0.38s ease;
}


.project-card:hover {
    transform: translateY(-10px);

    border-color:
        rgba(25, 171, 95, 0.40);

    box-shadow:
        0 26px 52px rgba(7, 74, 44, 0.20);
}


.project-image {
    position: relative;

    width: 100%;
    height: 255px;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #dcebe3,
            #cfe2d7
        );
}


.project-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.65s ease,
        filter 0.65s ease;
}


.project-card:hover .project-image img {
    transform: scale(1.08);

    filter:
        brightness(0.86)
        saturate(1.08);
}


.project-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to bottom,
            transparent 35%,
            rgba(4, 46, 34, 0.12) 62%,
            rgba(4, 46, 34, 0.62) 100%
        );

    pointer-events: none;
}


.project-category {
    position: absolute;

    top: 18px;
    left: 18px;

    padding: 8px 13px;

    background:
        rgba(5, 82, 54, 0.88);

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.20);

    border-radius: 22px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;

    text-transform: uppercase;

    backdrop-filter: blur(8px);
}


.project-number {
    position: absolute;

    right: 18px;
    bottom: 10px;

    color:
        rgba(255, 255, 255, 0.22);

    font-size: 58px;
    font-weight: 800;
    line-height: 1;
}


.project-content {
    position: relative;

    display: flex;
    flex-direction: column;
    flex-grow: 1;

    padding: 34px 24px 28px;
}


.project-icon {
    position: absolute;

    top: -29px;
    right: 22px;

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #18b464,
            #087344
        );

    color: #ffffff;

    border: 4px solid #ffffff;
    border-radius: 50%;

    font-size: 24px;

    box-shadow:
        0 9px 22px rgba(8, 116, 68, 0.27);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.project-card:hover .project-icon {
    transform:
        translateY(-4px)
        rotate(-5deg);

    box-shadow:
        0 13px 28px rgba(8, 116, 68, 0.36);
}


.project-content h3 {
    min-height: 58px;

    margin-bottom: 13px;
    padding-right: 36px;

    color: #153c2e;

    font-size: 21px;
    font-weight: 750;
    line-height: 1.4;
}


.project-content > p {
    margin-bottom: 22px;

    color: #5c6d64;

    font-size: 14px;
    line-height: 1.75;
}


.project-services {
    display: grid;

    gap: 10px;

    margin-top: auto;

    list-style: none;
}


.project-services li {
    display: flex;
    align-items: center;

    gap: 9px;

    color: #375548;

    font-size: 13px;
    line-height: 1.5;
}


.project-services i {
    color: var(--primary-green);

    font-size: 14px;
}


/* =========================================================
   8. INDUSTRIES SECTION
========================================================= */

.industries-section {
    position: relative;

    padding: 95px 0;

    background:
        linear-gradient(
            135deg,
            #073b31 0%,
            #052a24 100%
        );

    color: #ffffff;

    overflow: hidden;
}


.industries-section::before {
    content: "";

    position: absolute;

    top: -180px;
    left: -180px;

    width: 450px;
    height: 450px;

    background:
        radial-gradient(
            circle,
            rgba(69, 237, 146, 0.15),
            transparent 68%
        );
}


.industries-section::after {
    content: "";

    position: absolute;

    right: -180px;
    bottom: -180px;

    width: 450px;
    height: 450px;

    background:
        radial-gradient(
            circle,
            rgba(69, 237, 146, 0.11),
            transparent 68%
        );
}


.industries-heading {
    position: relative;
    z-index: 2;

    max-width: 850px;

    margin: 0 auto 45px;

    text-align: center;
}


.industries-heading .section-subtitle {
    color: #79efad;
}


.industries-heading h2 {
    margin-bottom: 15px;

    color: #ffffff;
}


.industries-heading p {
    color:
        rgba(230, 247, 238, 0.80);

    font-size: 16px;
    line-height: 1.8;
}


.industries-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


.industry-item {
    display: flex;
    align-items: center;

    gap: 15px;

    min-height: 95px;

    padding: 20px;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.12);

    border-radius: 16px;

    backdrop-filter: blur(10px);

    transition:
        transform 0.35s ease,
        background 0.35s ease,
        border-color 0.35s ease;
}


.industry-item:hover {
    transform: translateY(-6px);

    background:
        rgba(255, 255, 255, 0.11);

    border-color:
        rgba(87, 237, 155, 0.35);
}


.industry-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #26c976,
            #0a7546
        );

    color: #ffffff;

    border-radius: 50%;

    font-size: 23px;

    box-shadow:
        0 8px 20px rgba(19, 190, 103, 0.23);
}


.industry-item span {
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}


/* =========================================================
   9. PROJECT HIGHLIGHTS
========================================================= */

.project-highlights {
    padding: 55px 0;

    background:
        linear-gradient(
            180deg,
            #f7fbf8,
            #edf5f0
        );

    border-top:
        1px solid rgba(25, 171, 95, 0.10);

    border-bottom:
        1px solid rgba(25, 171, 95, 0.10);
}


.highlights-grid {
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


.highlight-item {
    display: flex;
    align-items: center;

    gap: 15px;

    padding: 20px 18px;

    background: #ffffff;

    border:
        1px solid rgba(15, 142, 79, 0.13);

    border-radius: 14px;

    box-shadow:
        0 10px 25px rgba(8, 84, 49, 0.07);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}


.highlight-item:hover {
    transform: translateY(-5px);

    border-color:
        rgba(23, 169, 93, 0.34);

    box-shadow:
        0 16px 32px rgba(8, 84, 49, 0.13);
}


.highlight-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #26c976,
            #0a7546
        );

    color: #ffffff;

    border-radius: 50%;

    font-size: 21px;

    box-shadow:
        0 8px 20px rgba(19, 190, 103, 0.23);
}


.highlight-item strong {
    display: block;

    margin-bottom: 3px;

    color: #1d4937;

    font-size: 15px;
}


.highlight-item span {
    display: block;

    color: #718078;

    font-size: 12.5px;
    line-height: 1.5;
}


/* =========================================================
   10. PROJECT CTA
========================================================= */

.projects-cta {
    position: relative;

    padding: 95px 0;

    background:
        linear-gradient(
            rgba(8, 75, 53, 0.84),
            rgba(5, 53, 40, 0.92)
        ),
        url(
            "https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1600&q=85"
        );

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    color: #ffffff;

    text-align: center;
}


.projects-cta-overlay {
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at center,
            rgba(65, 233, 145, 0.10),
            transparent 48%
        );
}


.projects-cta-content {
    position: relative;
    z-index: 2;

    max-width: 870px;

    margin: 0 auto;
}


.projects-cta-content > span {
    display: inline-block;

    margin-bottom: 12px;

    color: #8df0b8;

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;

    text-transform: uppercase;
}


.projects-cta-content h2 {
    margin-bottom: 18px;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 48px);
    line-height: 1.25;
}


.projects-cta-content p {
    max-width: 730px;

    margin: 0 auto;

    color:
        rgba(238, 252, 245, 0.84);

    font-size: 16px;
    line-height: 1.8;
}


.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 16px;

    margin-top: 32px;
}


.primary-cta-btn,
.secondary-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    min-width: 205px;

    padding: 13px 23px;

    text-decoration: none;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}


.primary-cta-btn {
    background:
        linear-gradient(
            135deg,
            #27cb76,
            #0a7a48
        );

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.20);

    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.22);
}


.secondary-cta-btn {
    background:
        rgba(255, 255, 255, 0.08);

    color: #ffffff;

    border:
        1px solid rgba(255, 255, 255, 0.30);

    backdrop-filter: blur(8px);
}


.primary-cta-btn:hover,
.secondary-cta-btn:hover {
    transform: translateY(-4px);

    box-shadow:
        0 16px 30px rgba(0, 0, 0, 0.27);
}


.secondary-cta-btn:hover {
    background:
        rgba(255, 255, 255, 0.15);
}


/* =========================================================
   11. FOOTER
========================================================= */

.site-footer,
footer {
    position: relative;

    padding: 34px 20px;

    background:
        linear-gradient(
            135deg,
            #142d23 0%,
            #0b231b 100%
        );

    color: #ffffff;

    text-align: center;

    border-top:
        1px solid rgba(67, 233, 144, 0.22);
}


.footer-content {
    width: 100%;
    max-width: 1100px;

    margin: 0 auto;
}


.footer-content > p:first-child {
    color:
        rgba(255, 255, 255, 0.88);

    font-size: 14px;
    letter-spacing: 0.2px;
}


.social-icons {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 18px;

    margin: 18px 0;
}


.social-icons a {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    border:
        1px solid rgba(255, 255, 255, 0.14);

    border-radius: 50%;

    text-decoration: none;

    font-size: 18px;

    transition:
        color 0.3s ease,
        background-color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.social-icons a:hover {
    color: #ffffff;

    background: #18a85f;

    transform: translateY(-4px);

    box-shadow:
        0 8px 20px rgba(24, 168, 95, 0.30);
}


.social-icons a[aria-label*="Facebook"]:hover {
    background-color: #1877f2;
}


.social-icons a[aria-label*="X"]:hover {
    background-color: #111111;
}


.social-icons a[aria-label*="LinkedIn"]:hover {
    background-color: #0a66c2;
}


.footer-credit {
    margin-top: 5px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 12px;
}


/* =========================================================
   12. TABLET RESPONSIVE
========================================================= */

@media screen and (max-width: 1050px) {

    .projects-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .industries-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .highlights-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .projects-section-heading {
        grid-template-columns: 1fr;

        gap: 18px;
    }
}


@media screen and (max-width: 768px) {

    .header-container {
        padding: 5px 15px;
    }


    .main-navigation ul,
    nav ul {
        gap: 3px;
    }


    .main-navigation ul li a,
    nav ul li a {
        padding: 11px 12px;

        font-size: 14px;
    }


    .clientele-banner-section {
        padding: 65px 16px 75px;
    }


    .clientele-image-wrapper {
        padding: 18px;

        border-radius: 18px;
    }


    .projects-hero {
        min-height: 480px;

        padding: 75px 18px 105px;
    }


    .projects-hero-content p {
        font-size: 15px;
    }


    .projects-introduction {
        padding: 75px 0 40px;
    }


    .projects-section {
        padding: 40px 0 75px;
    }


    .industries-section {
        padding: 75px 0;
    }


    .projects-cta {
        padding: 75px 0;
    }
}


/* =========================================================
   13. MOBILE RESPONSIVE
========================================================= */

@media screen and (max-width: 600px) {

    .container {
        padding: 0 16px;
    }


    .header-container {
        padding: 8px 10px;
    }


    .main-navigation ul,
    nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);

        width: 100%;

        gap: 5px;
    }


    .main-navigation ul li a,
    nav ul li a {
        padding: 10px 7px;

        text-align: center;

        font-size: 13px;
    }


    .main-navigation ul li a::after,
    nav ul li a::after {
        bottom: 5px;
    }


    .clientele-banner-section {
        padding: 55px 12px 65px;
    }


    .clientele-banner-heading h1 {
        font-size: 38px;
    }


    .clientele-banner-heading p {
        font-size: 14px;
    }


    .clientele-image-wrapper {
        padding: 10px;

        border-radius: 14px;
    }


    .projects-hero {
        min-height: 450px;

        padding: 65px 15px 95px;
    }


    .hero-small-title {
        font-size: 11px;
        letter-spacing: 1px;
    }


    .projects-hero h2 {
        font-size: 42px;
    }


    .projects-hero-content p {
        font-size: 14px;
        line-height: 1.8;
    }


    .hero-scroll-btn {
        padding: 11px 20px;

        font-size: 13px;
    }


    .projects-introduction {
        padding: 65px 0 35px;
    }


    .section-heading h2,
    .projects-section-heading h2,
    .industries-heading h2,
    .projects-cta-content h2 {
        font-size: 31px;
    }


    .section-heading p,
    .projects-section-heading p,
    .industries-heading p,
    .projects-cta-content p {
        font-size: 14.5px;
    }


    .projects-section {
        padding: 35px 0 65px;
    }


    .projects-grid {
        grid-template-columns: 1fr;

        gap: 24px;
    }


    .project-image {
        height: 245px;
    }


    .project-content h3 {
        min-height: auto;

        font-size: 20px;
    }


    .industries-section {
        padding: 65px 0;
    }


    .industries-grid {
        grid-template-columns: 1fr;
    }


    .project-highlights {
        padding: 45px 0;
    }


    .highlights-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .projects-cta {
        padding: 65px 0;
    }


    .cta-buttons {
        flex-direction: column;
    }


    .primary-cta-btn,
    .secondary-cta-btn {
        width: 100%;
        max-width: 290px;
    }


    .site-footer,
    footer {
        padding: 30px 15px;
    }
}


/* =========================================================
   14. SMALL MOBILE
========================================================= */

@media screen and (max-width: 390px) {

    .main-navigation ul,
    nav ul {
        grid-template-columns: 1fr 1fr;
    }


    .main-navigation ul li a,
    nav ul li a {
        font-size: 12px;
    }


    .clientele-banner-heading h1 {
        font-size: 33px;
    }


    .projects-hero h2 {
        font-size: 36px;
    }


    .project-image {
        height: 220px;
    }


    .project-content {
        padding-left: 19px;
        padding-right: 19px;
    }


    .industry-item {
        min-height: 85px;
    }
}


/* =========================================================
   15. REDUCED MOTION ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }
}