/* ================================
   RESET
================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ================================
   GENERAL
================================ */

:root {
    --primary: #146c3b;
    --primary-dark: #0b4d28;
    --dark: #10251a;
    --text: #333333;
    --light: #f5f8f6;
    --white: #ffffff;
    --border: #e4e8e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section {
    padding: 90px 0;
}

.center {
    text-align: center;
}

/* =================================
   HEADER
================================= */

.header {
    width: 100%;
    height: 80px;

    background: #ffffff;

    border-bottom: 1px solid #e5e7eb;

    position: sticky;
    top: 0;
    z-index: 999;

    overflow: visible;
}


.navbar {
    width: 90%;
    max-width: 1200px;
    height: 80px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* =================================
   COMPANY LOGO
================================= */

/* =================================
   COMPANY LOGO + TEXT
================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 12px;

    height: 80px;

    text-decoration: none;

    flex-shrink: 0;
}

.company-logo {
    display: block;

    width: 65px !important;
    height: 65px !important;

    object-fit: contain;

    margin: 0;
    padding: 0;

    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;

    justify-content: center;

    line-height: 1.1;

    color: #183329;
}

.logo-text strong {
    font-size: 22px;

    font-weight: 700;

    letter-spacing: 0.3px;

    color: #183329;
}

.logo-text span {
    font-size: 14px;

    font-weight: 500;

    letter-spacing: 2px;

    color: #176b3a;

    margin-top: 4px;
}


/* =================================
   NAVIGATION
================================= */

.navigation {
    margin-left: auto;
    margin-right: 35px;
}


.nav-links {
    display: flex;
    align-items: center;

    gap: 32px;

    list-style: none;

    margin: 0;
    padding: 0;
}


.nav-links li {
    margin: 0;
}


.nav-links a {
    text-decoration: none;

    color: #263d33;

    font-size: 16px;

    font-weight: 500;

    transition: 0.3s ease;
}


.nav-links a:hover,
.nav-links a.active {
    color: #176b3a;
}


/* =================================
   GET IN TOUCH BUTTON
================================= */

.header-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    background: #176b3a;

    color: white;

    text-decoration: none;

    padding: 14px 22px;

    border-radius: 6px;

    font-size: 15px;

    font-weight: 600;

    white-space: nowrap;

    transition: 0.3s ease;
}


.header-button:hover {
    background: #0d4f2a;
}


/* =================================
   MOBILE MENU BUTTON
================================= */

.menu-toggle {
    display: none;

    background: none;

    border: none;

    font-size: 28px;

    cursor: pointer;

    color: #176b3a;
}


/* =================================
   MOBILE DESIGN
================================= */

@media (max-width: 768px) {

    .header {
        height: 70px;
    }


    .navbar {
        height: 70px;
        width: 92%;
    }


   
    .logo {
        height: 70px;
        gap: 8px;
    }

    .company-logo {
        width: 50px !important;
        height: 50px !important;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .logo-text span {
        font-size: 11px;
        letter-spacing: 1.5px;
    }


    .menu-toggle {
        display: block;
        margin-left: auto;
    }


    .header-button {
        display: none;
    }


    .navigation {
        display: none;

        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background: #ffffff;

        border-top: 1px solid #e5e7eb;

        border-bottom: 1px solid #e5e7eb;

        margin: 0;
    }


    .navigation.show {
        display: block;
    }


    .nav-links {
        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px 0;
    }


    .nav-links li {
        width: 100%;
    }


    .nav-links a {
        display: block;

        padding: 15px 5%;

        border-bottom: 1px solid #f1f1f1;
    }

}

/* ================================
   HERO
================================ */

.hero {
    background: var(--light);
}

.hero-grid {
    min-height: 550px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;
}

.hero-content {
    padding: 50px 50px 50px 0;
}

.small-title {
    display: inline-block;

    color: var(--primary);
    font-weight: bold;
    font-size: 13px;

    letter-spacing: 1px;

    margin-bottom: 15px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;

    color: var(--dark);

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;
    color: var(--primary);
}

.hero p {
    max-width: 560px;

    font-size: 17px;

    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: 550px;

    object-fit: cover;
}


/* ================================
   BUTTONS
================================ */

.btn {
    display: inline-block;

    padding: 13px 25px;

    border-radius: 5px;

    text-decoration: none;

    border: none;

    cursor: pointer;

    font-size: 15px;

    transition: 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);

    margin-left: 10px;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
}


/* ================================
   SECTION HEADINGS
================================ */

.section-heading {
    text-align: center;

    max-width: 700px;

    margin: 0 auto 50px;
}

.section-heading span {
    color: var(--primary);
    font-size: 13px;
    font-weight: bold;

    letter-spacing: 1px;
}

.section-heading h2 {
    font-size: 38px;

    color: var(--dark);

    margin: 10px 0 15px;
}


/* ================================
   SERVICES
================================ */

.services-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.service-card {
    padding: 35px 25px;

    text-align: center;

    border: 1px solid var(--border);

    border-radius: 8px;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 35px;

    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
}


/* =========================================================
   ABOUT US PAGE ONLY
========================================================= */


/* =========================================
   ABOUT INTRO
========================================= */

.about-intro {
    background: #ffffff;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro .about-image {
    width: 100%;
    height: 480px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(20, 70, 45, 0.10);
}

.about-intro .about-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.about-intro .about-image:hover img {
    transform: scale(1.04);
}

.about-intro .about-content h2 {
    color: #183329;
    font-size: 38px;
    line-height: 1.2;
    margin: 10px 0 22px;
}

.about-intro .about-content p {
    color: #526158;
    font-size: 15px;
    line-height: 1.8;
    margin: 0 0 18px;
}


/* =========================================
   OBJECTIVES
========================================= */

.objectives-section {
    background: #f5f8f6;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.objective-card {
    background: #ffffff;
    padding: 35px 30px;
    border: 1px solid #e3ebe6;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.objective-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(20, 70, 45, 0.10);
}

.objective-number {
    color: #176b3a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.objective-card h3 {
    color: #183329;
    font-size: 20px;
    line-height: 1.35;
    margin: 0 0 15px;
}

.objective-card p {
    color: #59675f;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   VISION
========================================= */

.vision-section {
    background: #17352a;
    padding: 90px 0;
}

.vision-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.vision-content .small-title {
    color: #8cc79b;
}

.vision-content h2 {
    color: #ffffff;
    font-size: 40px;
    line-height: 1.2;
    margin: 10px 0 20px;
}

.vision-line {
    width: 45px;
    height: 3px;
    margin: 0 auto 25px;
    background: #6dbb82;
}

.vision-content p {
    color: #d0ddd5;
    font-size: 19px;
    line-height: 1.9;
    margin: 0;
}


/* =========================================
   MISSION
========================================= */

.mission-section {
    background: #ffffff;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.mission-content h2 {
    color: #183329;
    font-size: 40px;
    line-height: 1.2;
    margin: 10px 0 25px;
}

.mission-content p {
    color: #526158;
    font-size: 15px;
    line-height: 1.9;
    margin: 0 0 18px;
}

.mission-highlight {
    padding: 45px 35px;
    background: #f2f7f3;
    border: 1px solid #dfe9e2;
    border-radius: 10px;
    text-align: center;
}

.mission-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: #176b3a;
    color: #ffffff;

    font-size: 16px;
    font-weight: 700;
}

.mission-highlight h3 {
    color: #183329;
    font-size: 22px;
    margin: 0 0 12px;
}

.mission-highlight p {
    color: #5b6961;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}


/* =========================================
   GOALS
========================================= */

.goals-section {
    background: #f5f8f6;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.goal-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid #e2e9e4;
    border-radius: 8px;

    transition: all 0.3s ease;
}

.goal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(20, 70, 45, 0.08);
}

.goal-number {
    flex-shrink: 0;

    color: #176b3a;

    font-size: 16px;
    font-weight: 700;
}

.goal-card h3 {
    color: #183329;
    font-size: 20px;
    line-height: 1.3;
    margin: 0 0 10px;
}

.goal-card p {
    color: #59675f;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}


/* =========================================
   AREAS OF EXPERTISE
========================================= */

.expertise-section {
    background: #ffffff;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.expertise-item {
    padding: 25px;

    background: #ffffff;

    border: 1px solid #dfe7e2;
    border-radius: 7px;

    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: #176b3a;
    border-color: #176b3a;
    transform: translateY(-3px);
}

.expertise-item span {
    display: block;

    color: #176b3a;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 15px;
}

.expertise-item h3 {
    color: #183329;

    font-size: 16px;
    line-height: 1.4;

    margin: 0;
}

.expertise-item:hover span,
.expertise-item:hover h3 {
    color: #ffffff;
}


/* =========================================
   ABOUT US PAGE - TABLET
========================================= */

@media (max-width: 1000px) {

    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-intro .about-image {
        height: 400px;
    }

    .objectives-grid {
        grid-template-columns: 1fr 1fr;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-grid {
        grid-template-columns: 1fr 1fr;
    }
}


/* =========================================
   ABOUT US PAGE - MOBILE
========================================= */

@media (max-width: 650px) {

    .about-intro-grid {
        gap: 30px;
    }

    .about-intro .about-image {
        height: 300px;
    }

    .about-intro .about-content h2 {
        font-size: 32px;
    }

    .about-intro .about-content p {
        font-size: 14px;
        line-height: 1.75;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .objective-card {
        padding: 28px 24px;
    }

    .vision-section {
        padding: 65px 0;
    }

    .vision-content h2 {
        font-size: 32px;
    }

    .vision-content p {
        font-size: 16px;
        line-height: 1.8;
    }

    .mission-content h2 {
        font-size: 32px;
    }

    .mission-highlight {
        padding: 35px 25px;
    }

    .goals-grid {
        grid-template-columns: 1fr;
    }

    .goal-card {
        gap: 18px;
        padding: 25px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }
}


/* ================================
   PROJECTS
================================ */

.projects-background {
    background: var(--light);
}

.projects-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;

    margin-bottom: 40px;
}

.project-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 8px;

    overflow: hidden;

    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 220px;

    object-fit: cover;
}

.project-info {
    padding: 20px;
}

.project-info span {
    color: var(--primary);

    font-size: 12px;

    font-weight: bold;
}

.project-info h3 {
    margin: 8px 0;
}


/* ================================
   PAGE BANNER
================================ */

.page-banner {
    padding: 90px 0;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            rgba(7, 53, 29, 0.92),
            rgba(7, 53, 29, 0.92)
        );
}

.page-banner h1 {
    font-size: 48px;

    margin-bottom: 10px;
}

.page-banner p {
    max-width: 600px;

    margin: auto;
}


/* ================================
   FILTER
================================ */

.filter-buttons {
    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-bottom: 45px;
}

.filter-btn {
    padding: 10px 20px;

    background: white;

    border: 1px solid var(--border);

    border-radius: 5px;

    cursor: pointer;

    transition: 0.3s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.filter-item.hide {
    display: none;
}


/* ================================
   VALUES
================================ */

.values-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.value-card {
    background: white;

    text-align: center;

    padding: 35px 25px;

    border-radius: 8px;
}

.value-icon {
    font-size: 35px;

    margin-bottom: 15px;
}

.value-card h3 {
    margin-bottom: 10px;
}


/* ================================
   CONTACT
================================ */

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;
}

.contact-info h2 {
    font-size: 38px;

    line-height: 1.2;

    color: var(--dark);

    margin-bottom: 20px;
}

.contact-details {
    margin-top: 30px;
}

.contact-details div {
    margin-bottom: 20px;
}

.contact-details strong {
    color: var(--primary);
}

.contact-form-box {
    padding: 35px;

    border: 1px solid var(--border);

    border-radius: 8px;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.05);
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 13px;

    border: 1px solid #d8ddd9;

    border-radius: 5px;

    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.form-message {
    background: #e6f4ea;

    color: var(--primary-dark);

    padding: 12px;

    margin-bottom: 20px;

    border-radius: 5px;
}


/* ================================
   CTA
================================ */

.cta {
    padding: 80px 0;

    text-align: center;

    background: var(--primary);

    color: white;
}

.cta h2 {
    font-size: 38px;

    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 25px;
}


/* ================================
   FOOTER
================================ */

/* =========================================
   FOOTER
========================================= */

.footer {
    background: #17352a;
    color: #ffffff;
    padding: 70px 0 0;
}


/* =========================================
   FOOTER GRID
========================================= */

.footer-grid {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        2fr
        1fr
        1.5fr
        1.5fr;

    gap: 45px;
}


/* =========================================
   FOOTER COLUMN
========================================= */

.footer-column {
    min-width: 0;
}

.footer-column h3 {
    color: #ffffff;

    font-size: 18px;

    font-weight: 600;

    margin: 0 0 22px;

    position: relative;

    padding-bottom: 12px;
}


.footer-column h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 35px;
    height: 2px;

    background: #6dbb82;
}


/* =========================================
   FOOTER LOGO
========================================= */

.footer-logo {
    display: flex;

    align-items: center;

    gap: 12px;

    text-decoration: none;

    margin-bottom: 20px;
}


.footer-logo-image {
    width: 60px;
    height: 60px;

    object-fit: contain;

    display: block;

    flex-shrink: 0;
}


.footer-logo-text {
    display: flex;

    flex-direction: column;

    line-height: 1.2;
}


.footer-logo-text strong {
    color: #ffffff;

    font-size: 20px;

    font-weight: 700;
}


.footer-logo-text span {
    color: #a9c7b6;

    font-size: 13px;

    margin-top: 4px;

    letter-spacing: 1.5px;
}


/* =========================================
   COMPANY DESCRIPTION
========================================= */

.footer-description {
    color: #c7d4cd;

    font-size: 14px;

    line-height: 1.8;

    margin: 0;

    max-width: 420px;
}


/* =========================================
   FOOTER LINKS
========================================= */

.footer-links {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-links li {
    margin-bottom: 12px;
}


.footer-links a {
    color: #c7d4cd;

    text-decoration: none;

    font-size: 14px;

    transition: all 0.3s ease;
}


.footer-links a:hover {
    color: #ffffff;

    padding-left: 5px;
}


/* =========================================
   CONTACT INFORMATION
========================================= */

.footer-contact {
    margin: 0;
}


.footer-contact p {
    color: #c7d4cd;

    font-size: 14px;

    line-height: 1.7;

    margin: 0 0 15px;
}


.footer-contact .contact-company {
    margin-bottom: 18px;
}


.footer-contact strong {
    color: #ffffff;

    font-weight: 600;
}


.contact-label {
    display: block;

    color: #ffffff;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 3px;
}


.footer-contact a {
    color: #c7d4cd;

    text-decoration: none;

    transition: 0.3s;
}


.footer-contact a:hover {
    color: #ffffff;
}


/* =========================================
   CONTACT BUTTON
========================================= */

.footer-contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-top: 5px;

    padding: 11px 20px;

    background: #176b3a;

    color: #ffffff;

    text-decoration: none;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s ease;
}


.footer-contact-button:hover {
    background: #22844a;

    transform: translateY(-2px);
}


/* =========================================
   SOCIAL LINKS
========================================= */

.footer-social {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-top: 22px;
}


.footer-social a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 80px;

    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, 0.2);

    border-radius: 4px;

    color: #c7d4cd;

    text-decoration: none;

    font-size: 13px;

    transition: all 0.3s ease;
}


.footer-social a:hover {
    color: #ffffff;

    background: #176b3a;

    border-color: #176b3a;
}


/* =========================================
   FOOTER BOTTOM
========================================= */

.footer-bottom {
    margin-top: 55px;

    border-top: 1px solid rgba(255, 255, 255, 0.12);

    padding: 22px 0;
}


.footer-bottom-content {
    width: 90%;
    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #a9bdb2;

    font-size: 13px;

    line-height: 1.6;
}


.footer-bottom p strong {
    color: #dbe6e0;
}


.footer-bottom-links {
    display: flex;

    align-items: center;

    gap: 20px;
}


.footer-bottom-links a {
    color: #a9bdb2;

    text-decoration: none;

    font-size: 13px;

    transition: 0.3s;
}


.footer-bottom-links a:hover {
    color: #ffffff;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1000px) {

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-company {
        grid-column: span 3;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 700px) {

    .footer {
        padding-top: 50px;
    }


    .footer-grid {
        width: 92%;

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .footer-company {
        grid-column: auto;
    }


    .footer-description {
        max-width: 100%;
    }


    .footer-bottom {
        margin-top: 40px;
    }


    .footer-bottom-content {
        width: 92%;

        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }


    .footer-bottom-links {
        flex-wrap: wrap;

        gap: 12px 20px;
    }

}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 450px) {

    .footer-logo-image {
        width: 52px;
        height: 52px;
    }


    .footer-logo-text strong {
        font-size: 18px;
    }


    .footer-social {
        flex-wrap: wrap;
    }

}

/* ================================
   MOBILE
================================ */

@media (max-width: 900px) {

    .services-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


@media (max-width: 768px) {

    .container {
        width: 92%;
    }

    .menu-toggle {
        display: block;
    }

    .header-button {
        display: none;
    }

    .navigation {
        display: none;

        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        background: white;

        border-bottom: 1px solid var(--border);
    }

    .navigation.show {
        display: block;
    }

    .nav-links {
        flex-direction: column;

        gap: 0;
    }

    .nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .nav-links a {
        display: block;

        padding: 15px 5%;
    }

    .hero-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 70px 0 40px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-image img {
        height: 320px;
    }

    .section {
        padding: 65px 0;
    }

    .section-heading h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 30px;
    }

    .page-banner {
        padding: 65px 0;
    }

    .page-banner h1 {
        font-size: 38px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }

}


@media (max-width: 550px) {

    .services-grid,
    .projects-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;

        gap: 12px;
    }

    .btn-outline {
        margin-left: 0;
        text-align: center;
    }

}
/* ================================
   PROJECT TABLE
================================ */

.table-responsive {
    width: 100%;
    overflow-x: auto;

    border: 1px solid var(--border);
    border-radius: 8px;
}

.projects-table {
    width: 100%;
    min-width: 1100px;

    border-collapse: collapse;

    background: white;
}

.projects-table th {
    background: var(--primary);
    color: white;

    padding: 18px 15px;

    text-align: left;

    font-size: 14px;

    white-space: nowrap;
}

.projects-table td {
    padding: 18px 15px;

    border-bottom: 1px solid var(--border);

    vertical-align: top;

    font-size: 14px;
}

.projects-table tbody tr {
    transition: 0.3s;
}

.projects-table tbody tr:hover {
    background: #f3f8f4;
}

/* Serial Number */

.projects-table td:first-child {
    text-align: center;
    font-weight: bold;

    color: var(--primary);
}

/* Assignment Name */

.projects-table td:nth-child(2) {
    min-width: 220px;
    font-weight: 600;
}

/* Period */

.projects-table td:nth-child(3) {
    min-width: 120px;
}

/* Location */

.projects-table td:nth-child(4) {
    min-width: 150px;
}

/* Client */

.projects-table td:nth-child(5) {
    min-width: 180px;
}

/* Description */

.projects-table td:nth-child(6) {
    min-width: 350px;
    line-height: 1.7;
}


/* Mobile */

@media (max-width: 768px) {

    .table-responsive {
        border-radius: 5px;
    }

    .projects-table th,
    .projects-table td {
        padding: 14px 12px;
    }

}
/* =========================================
   PROJECT PAGINATION
========================================= */

.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 35px 0 20px;
    flex-wrap: wrap;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}


/* Page buttons */

.pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 40px;
    height: 40px;

    padding: 0 12px;

    border: 1px solid #d8e2dc;
    border-radius: 5px;

    background: #ffffff;
    color: #176b3a;

    text-decoration: none;

    font-size: 14px;
    font-weight: 600;

    box-sizing: border-box;

    transition: all 0.25s ease;
}


/* Hover */

.pagination a:hover {
    background: #176b3a;
    border-color: #176b3a;
    color: #ffffff;
}


/* Active page */

.pagination a.active {
    background: #176b3a;
    border-color: #176b3a;
    color: #ffffff;
}


/* Previous / Next */

.pagination .pagination-arrow {
    padding: 0 17px;
}


/* Dots */

.pagination .pagination-dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 40px;
    padding: 0 4px;

    color: #68766f;

    font-size: 14px;
}


/* =========================================
   MOBILE PAGINATION
========================================= */

@media (max-width: 600px) {

    .pagination {
        gap: 5px;
        margin-top: 25px;
    }

    .pagination-numbers {
        gap: 4px;
    }

    .pagination a {
        min-width: 36px;
        height: 36px;

        padding: 0 9px;

        font-size: 13px;
    }

    .pagination .pagination-arrow {
        padding: 0 11px;
    }

    .pagination .pagination-dots {
        height: 36px;
        padding: 0 2px;
    }

}
