/* =========================================================
   EDUWAX INTEGRATED SERVICES
   GLOBAL STYLES
========================================================= */

/* :root{
    --primary-red: #D9241B;
    --primary-yellow: #FBE911;
    --dark-red: #B12F1F;
    --gold-orange: #CE5C2F;

    --dark: #222222;
    --light: #FFFFFF;
    --gray-bg: #F7F7F7;
} */

/* :root {

    --navy: #071d35;
    --navy-2: #0b2b4a;
    --navy-3: #123b61;

    --gold: #f5a623;
    --gold-dark: #d88a08;

    --white: #ffffff;
    --off-white: #f7f9fc;

    --text: #1c2733;
    --muted: #657486;
    --border: #e4e9ef;

    --shadow-sm: 0 8px 25px rgba(7, 29, 53, .07);
    --shadow-md: 0 18px 45px rgba(7, 29, 53, .12);

    --container: 1240px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: .3s ease;
} */

:root {

    --navy: #D9241B;
    --navy-2: #C71F17;
    --navy-3: #A81812;

    --gold: #FBE911;
    --gold-dark: #E6D300;

    --accent: #CE5C2F;

    --white: #ffffff;
    --off-white: #FFFDF2;

    --text: #222222;
    --muted: #666666;
    --border: #F1E6A8;

    --shadow-sm: 0 8px 25px rgba(217, 36, 27, .08);
    --shadow-md: 0 18px 45px rgba(217, 36, 27, .15);

    --container: 1240px;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --transition: .3s ease;
}


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.container {
    width: min(92%, var(--container));
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
h4 {
    font-family: "Poppins", sans-serif;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.4rem);
}

h2 {
    font-size: clamp(2.3rem, 4vw, 3.7rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    color: var(--muted);
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 15px 25px;

    border-radius: var(--radius-sm);

    font-size: .9rem;
    font-weight: 700;

    transition: var(--transition);
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: #ffb52e;
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--navy);
    color: white;
}

.btn-dark:hover {
    background: var(--navy-3);
}

.btn-outline-light {
    border: 1px solid rgba(255,255,255,.55);
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--navy);
}


/* =========================================================
   SECTION SYSTEM
========================================================= */

.section {
    padding: 110px 0;
}

.section-eyebrow {
    display: inline-block;

    margin-bottom: 17px;

    color: var(--gold);

    font-size: .78rem;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-eyebrow.light {
    color: var(--gold);
}

.section-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 60px;

    margin-bottom: 60px;
}

.section-heading h2,
.section-heading.centered h2 {
    max-width: 760px;
}

.section-heading h2 span,
.about-content h2 span,
.capability-content h2 span,
.hse-content h2 span,
.local-content h2 span,
.equipment-intro h2 span,
.cta-inner h2 span, .overview-content h2 span{
    color: var(--gold);
}

.section-heading p {
    max-width: 500px;
}

.section-heading.centered {
    display: block;
    text-align: center;
}

.section-heading.centered p {
    max-width: 700px;
    margin: 20px auto 0;
}

.heading-side {
    max-width: 480px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 25px;

    color: var(--navy);

    font-size: .9rem;
    font-weight: 800;

    transition: var(--transition);
}

.text-link:hover {
    color: var(--gold);
    gap: 15px;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;

    width: 100%;

    color: white;

    transition: var(--transition);
}

.site-header.scrolled {
    position: fixed;

    background: rgba(7, 29, 53, .97);

    box-shadow: 0 5px 25px rgba(0,0,0,.15);
}

.header-inner {
    min-height: 92px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 35px;
}

.brand {
    /* width: 185px; */
    width: 100px;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;

    margin-left: auto;
}

.main-nav a {
    position: relative;

    color: rgba(255,255,255,.88);

    font-size: .84rem;
    font-weight: 600;

    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: white;
}

.main-nav a::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -9px;

    width: 0;
    height: 2px;

    background: var(--gold);

    transition: var(--transition);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 12px 18px;

    background: var(--gold);
    color: var(--navy);

    font-size: .8rem;
    font-weight: 800;

    border-radius: var(--radius-sm);
}

.mobile-menu-btn {
    display: none;

    width: 44px;
    height: 44px;

    background: transparent;
    border: 0;

    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: white;

    transition: var(--transition);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    min-height: 800px;

    display: flex;
    align-items: center;

    overflow: hidden;

    background: var(--navy);

    color: white;
}

.hero-background {
    position: absolute;
    inset: 0;

    background:
        url("../images/hero.jpg")
        center / cover no-repeat;

    transform: scale(1.02);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(4,19,34,.94) 0%,
            rgba(4,19,34,.78) 48%,
            rgba(4,19,34,.35) 100%
        );
}

.hero-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: minmax(0, 1.45fr) 320px;

    align-items: center;

    gap: 80px;

    padding-top: 100px;
}

.hero-content {
    max-width: 850px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 25px;

    color: #e5edf5;

    font-size: .78rem;
    font-weight: 700;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-eyebrow span {
    width: 32px;
    height: 2px;

    background: var(--gold);
}

.hero h1 {
    margin-bottom: 28px;

    letter-spacing: -.04em;
}

.hero h1 strong {
    display: block;

    color: var(--gold);
}

.hero-content > p {
    max-width: 730px;

    margin-bottom: 35px;

    color: rgba(255,255,255,.78);

    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;

    margin-top: 35px;

    color: rgba(255,255,255,.7);

    font-size: .84rem;
}

.hero-trust i {
    color: var(--gold);
}

.hero-side {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-info-card {
    padding: 27px;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.15);

    backdrop-filter: blur(10px);

    border-left: 3px solid var(--gold);
}

.card-label {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,.6);

    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-info-card strong {
    display: block;

    margin-bottom: 5px;

    font-family: "Poppins", sans-serif;
    font-size: 2.5rem;

    color: white;
}

.hero-info-card p {
    color: rgba(255,255,255,.7);

    font-size: .84rem;
}

.hero-scroll {
    position: absolute;
    bottom: 35px;
    left: 4%;

    z-index: 2;

    display: flex;
    align-items: center;
    gap: 15px;

    color: rgba(255,255,255,.6);

    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-grid {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    align-items: center;
    gap: 90px;
}

.about-visual {
    position: relative;
}

.about-image-main {
    overflow: hidden;

    border-radius: var(--radius-lg);
}

.about-image-main img {
    height: 600px;
    object-fit: cover;
}

.about-experience {
    position: absolute;

    right: -30px;
    bottom: 40px;

    width: 190px;

    padding: 25px;

    background: var(--navy);
    color: white;

    box-shadow: var(--shadow-md);
}

.about-experience strong {
    display: block;

    color: var(--gold);

    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-experience span {
    display: block;

    font-family: "Poppins", sans-serif;
    font-size: 3rem;
    font-weight: 700;
}

.about-experience small {
    color: rgba(255,255,255,.65);
}

.about-content h2 {
    margin-bottom: 25px;
}

.about-content .lead {
    margin-bottom: 18px;

    color: var(--text);

    font-size: 1.05rem;
}

.about-content p {
    margin-bottom: 15px;
}

.about-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);

    gap: 12px;

    margin: 30px 0;
}

.about-points div {
    display: flex;
    align-items: center;
    gap: 10px;

    font-size: .87rem;
    font-weight: 600;
}

.about-points i {
    color: var(--gold);
}


/* =========================================================
   VISION & MISSION
========================================================= */

.vision-mission {
    background: var(--off-white);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.vm-card {
    position: relative;

    display: grid;
    grid-template-columns: 75px 1fr;
    gap: 25px;

    padding: 45px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius-md);

    overflow: hidden;

    transition: var(--transition);
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.vm-card::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 5px;
    height: 100%;

    background: var(--gold);
}

.mission-card::before {
    background: var(--navy);
}

.vm-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff6e5;

    color: var(--gold);

    font-size: 25px;
}

.mission-card .vm-icon {
    background: #edf3f8;
    color: var(--navy);
}

.vm-label {
    display: block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: .72rem;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.vm-card h3 {
    margin-bottom: 15px;

    font-size: 1.65rem;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;

    min-height: 340px;

    padding: 35px;

    background: white;

    border: 1px solid var(--border);

    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: transparent;

    box-shadow: var(--shadow-md);
}

.service-number {
    position: absolute;

    top: 25px;
    right: 25px;

    color: #cdd0d3;

    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 700;
}


.service-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    background: #ffffc6;

    color: var(--navy);

    font-size: 22px;

    border-radius: 50%;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: .88rem;
}

.service-card a {
    position: absolute;

    bottom: 30px;

    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--navy);

    font-size: .78rem;
    font-weight: 800;
}

.service-card a:hover {
    color: var(--gold);
}


/* =========================================================
   CAPABILITY
========================================================= */

.capability-section {
    position: relative;

    padding: 110px 0;

    overflow: hidden;

    color: white;
}

.capability-background {
    position: absolute;
    inset: 0;

    background:
        url("../images/capability.jpg")
        center / cover no-repeat;
}

.capability-overlay {
    position: absolute;
    inset: 0;

    background: rgba(4,19,34,.9);
}

.capability-container {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
}

.capability-content h2 {
    margin-bottom: 25px;
}

.capability-content p {
    max-width: 550px;

    margin-bottom: 30px;

    color: rgba(255,255,255,.7);
}

.capability-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;

    background: rgba(255,255,255,.15);
}

.capability-item {
    padding: 30px;

    background: rgba(7,29,53,.7);
}

.capability-item > span {
    display: block;

    margin-bottom: 20px;

    color: var(--gold);

    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.capability-item h3 {
    margin-bottom: 10px;
}

.capability-item p {
    color: rgba(255,255,255,.62);

    font-size: .83rem;
}


/* =========================================================
   PROJECTS
========================================================= */

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.project-card {
    position: relative;

    height: 320px;

    overflow: hidden;

    background: var(--navy);
}

.project-large {
    grid-row: span 2;

    height: 640px;
}

.project-image,
.project-image img {
    width: 100%;
    height: 100%;
}

.project-image img {
    object-fit: cover;

    transition: transform .6s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-card::after {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(4,19,34,.94),
            rgba(4,19,34,.05) 75%
        );
}

.project-overlay {
    position: absolute;

    z-index: 2;

    left: 30px;
    right: 30px;
    bottom: 30px;
}

.project-overlay span {
    display: inline-block;

    margin-bottom: 10px;

    padding: 5px 9px;

    background: var(--gold);
    color: var(--navy);

    font-size: .65rem;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-overlay h3 {
    margin-bottom: 8px;

    color: white;
}

.project-overlay p {
    margin-bottom: 14px;

    color: rgba(255,255,255,.7);

    font-size: .83rem;
}

.project-overlay a {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    color: white;

    font-size: .78rem;
    font-weight: 800;
}

.project-overlay a:hover {
    color: var(--gold);
}


/* =========================================================
   CLIENTS
========================================================= */

.clients-section {
    background: var(--off-white);
}

.clients-heading {
    max-width: 700px;

    margin: 0 auto 55px;

    text-align: center;
}

.clients-heading h2 {
    margin-bottom: 20px;
}

.client-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border-top: 1px solid var(--border);
    border-left: 1px solid var(--border);
}

.client-item {
    min-height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 25px;

    background: white;

    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    color: #000;

    font-family: "Poppins", sans-serif;
    font-size: .82rem;
    font-weight: 600;

    text-align: center;

    transition: var(--transition);
}

.client-item:hover {
    background: var(--navy);
    color: white;
}


/* =========================================================
   HSE
========================================================= */

.hse-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.hse-content h2 {
    margin-bottom: 25px;
}

.hse-content p {
    margin-bottom: 17px;
}

.hse-content .btn {
    margin-top: 15px;
}

.hse-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hse-feature {
    padding: 30px;

    background: var(--off-white);

    border: 1px solid var(--border);
}

.hse-feature i {
    margin-bottom: 20px;

    color: var(--gold);

    font-size: 30px;
}

.hse-feature h3 {
    margin-bottom: 10px;
}

.hse-feature p {
    font-size: .83rem;
}


/* =========================================================
   NIGERIAN CONTENT
========================================================= */

.local-content-section {
    background: var(--off-white);
}

.local-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 90px;
}

.local-content-image {
    overflow: hidden;

    border-radius: var(--radius-lg);
}

.local-content-image img {
    height: 580px;

    object-fit: cover;
}

.local-content h2 {
    margin-bottom: 25px;
}

.local-content p {
    margin-bottom: 18px;
}

.local-stat {
    display: flex;
    align-items: center;
    gap: 20px;

    margin: 30px 0;
    padding: 25px 0;

    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.local-stat strong {
    color: var(--gold);

    font-family: "Poppins", sans-serif;
    font-size: 3.5rem;
}

.local-stat span {
    max-width: 300px;

    font-size: .9rem;
    font-weight: 600;
}


/* =========================================================
   EQUIPMENT
========================================================= */

.equipment-strip {
    padding: 90px 0;

    background: var(--navy);

    color: white;
}

.equipment-inner {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.equipment-intro h2 {
    margin-bottom: 20px;
}

.equipment-intro p {
    margin-bottom: 25px;

    color: rgba(255,255,255,.65);
}

.equipment-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: rgba(255,255,255,.12);
}

.equipment-items div {
    min-height: 150px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 12px;

    background: var(--navy);

    border: 1px solid rgba(255,255,255,.06);

    text-align: center;
}

.equipment-items i {
    color: var(--gold);

    font-size: 30px;
}

.equipment-items span {
    color: rgba(255,255,255,.8);

    font-size: .78rem;
    font-weight: 700;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 90px 0;

    background: var(--gold);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;
}

.cta-inner h2 {
    color: var(--navy);
}

.cta-inner p {
    max-width: 650px;

    color: rgba(7,29,53,.7);
}

.cta-actions {
    display: flex;
    flex-shrink: 0;

    gap: 12px;
}

.cta-actions .btn-primary {
    background: var(--navy);
    color: white;
}

.cta-actions .btn-primary:hover {
    background: var(--navy-3);
}

.cta-actions .btn-outline-light {
    border-color: var(--navy);
    color: var(--navy);
}

.cta-actions .btn-outline-light:hover {
    background: var(--navy);
    color: white;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    padding-top: 75px;

    background: #041525;

    color: white;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr .7fr .9fr 1fr;
    gap: 60px;

    padding-bottom: 60px;
}

.footer-company img {
    width: 190px;

    margin-bottom: 25px;
}

.footer-company p {
    max-width: 380px;

    color: rgba(255,255,255,.6);

    font-size: .86rem;
}

.footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 20px;

    color: var(--gold);

    font-size: .8rem;
    font-weight: 800;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h3 {
    margin-bottom: 12px;

    color: white;

    font-size: .95rem;
}

.footer-column a,
.footer-column p {
    color: rgba(255,255,255,.6);

    font-size: .8rem;

    transition: var(--transition);
}

.footer-column a:hover {
    color: var(--gold);
}

.footer-contact p {
    display: flex;
    gap: 12px;

    margin-bottom: 7px;
}

.footer-contact i {
    margin-top: 5px;

    color: var(--gold);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 25px 0;

    border-top: 1px solid rgba(255,255,255,.1);
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255,255,255,.45);

    font-size: .72rem;
}

.footer-bottom div {
    display: flex;
    gap: 25px;
}


/* ===================================
   ABOUT HERO
=================================== */

/* =========================================================
   SHARED INNER-PAGE HERO
   Same structure and visual language as HOME HERO
========================================================= */

.page-hero {
    position: relative;
    min-height:600px;
    display: flex;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(7, 29, 53, 0.92) 0%,
            rgba(7, 29, 53, 0.78) 55%,
            rgba(7, 29, 53, 0.55) 100%
        ),
        url("../images/about-hero.jpg") center center / cover no-repeat;
}



/* IMPORTANT:
   Use the exact same hero-content rules
   as the homepage.
*/

.page-hero .hero-content {
    max-width: 780px;
    padding-top: 40px;
    max-width: 850px;
    padding-top: 70px;
}


/* Eyebrow */

.page-hero .section-eyebrow {
    display: inline-block;
    margin-bottom: 18px;

    color: var(--gold);

    font-size: 0.9rem;
    font-weight: 700;

    letter-spacing: 1.5px;
    text-transform: uppercase;
}


/* Heading */

.page-hero .hero-content h1 {
    margin: 0 0 24px;

    color: #ffffff;

    font-size: clamp(2.7rem, 5vw, 4.5rem);
    line-height: 1.1;
    font-weight: 800;
}


/* Paragraph */

.page-hero .hero-content p {
    max-width: 700px;
    margin: 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 1.1rem;
    line-height: 1.8;
}


/* =========================================================
   PAGE-SPECIFIC BACKGROUND IMAGES
========================================================= */

.about-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(7, 29, 53, 0.92),
            rgba(7, 29, 53, 0.65)
        ),
        url("../images/about-hero.jpg");
}
.services-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(7, 29, 53, 0.92),
            rgba(7, 29, 53, 0.65)
        ),
        url("../images/services-hero.jpg");
}

.projects-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(7, 29, 53, 0.92),
            rgba(7, 29, 53, 0.65)
        ),
        url("../images/projects-hero.jpg");
}

.contact-hero {
    background-image:
        linear-gradient(
            90deg,
            rgba(7, 29, 53, 0.92),
            rgba(7, 29, 53, 0.65)
        ),
        url("../images/contact-hero.jpg");
}

/* ===================================
   OVERVIEW
=================================== */

.overview-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.overview-image img{
    width:100%;
    max-height: 500px;
    border-radius:20px;
}

.overview-content h2{
    font-size:46px;
    margin-bottom:25px;
}

.overview-content p{
    margin-bottom:20px;
    line-height:1.9;
}

/* ===================================
   VISION
=================================== */

.vision-section{
    background:#f7f9fc;
}

.vision-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}

.vision-card{
    background:#fff;
    padding:50px;
    border-radius:20px;
    text-align:center;
    border-left: 5px solid var(--accent);
}

.vision-card i{
    font-size:50px;
    color:var(--gold-dark);
    margin-bottom:20px;
}

/* ===================================
   VALUES
=================================== */

.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.value-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.value-card i{
    font-size:45px;
    color:var(--accent);
    margin-bottom:20px;
}

/* ===================================
   WHY US
=================================== */

.gray-section{
    background:#f7f9fc;
}

.why-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.why-image img{
    width:100%;
    border-radius:20px;
}

.why-content ul{
    list-style:none;
    margin-top:25px;
}

.why-content li{
    padding:15px 0;
    border-bottom:1px solid #ddd;
    font-weight:600;
}

/* ===================================
   LOCAL CONTENT
=================================== */

.local-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.local-image img{
    width:100%;
    border-radius:20px;
}

.stat-box{
    margin-top:30px;
    padding:30px;
    background:#002147;
    color:#fff;
    border-radius:15px;
}

.stat-box h3{
    font-size:48px;
}

/* ===================================
   MANAGEMENT
=================================== */

.management-section {
    background: var(--navy);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* subtle decorative element */

.management-section::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(245, 166, 35, 0.15);
    border-radius: 50%;
    top: -190px;
    right: -120px;
}

.management-section::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    border: 1px solid rgba(245, 166, 35, 0.10);
    border-radius: 50%;
    bottom: -130px;
    left: -80px;
}


/* Main layout */

.management-message {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 90px;

    max-width: 1200px;
    margin: 0 auto;
}


/* Heading */

.management-heading {
    padding-top: 10px;
}

.section-eyebrow.dark{
    color: var(--gold-dark);
}

.management-heading h2 {
    color: var(--white);
    font-size: clamp(2.4rem, 4vw, 4rem);
    line-height: 1.15;
    margin-top: 20px;
}

.management-heading h2 span {
    color: var(--gold);
}


/* Body */

.management-body {
    position: relative;
    padding-left: 45px;
}

.quote-mark {
    position: absolute;
    left: 0;
    top: -25px;

    color: var(--gold);

    font-family: Georgia, serif;
    font-size: 100px;
    line-height: 1;
    opacity: .8;
}

.management-body blockquote {
    margin: 0 0 30px;

    color: var(--white);

    font-size: clamp(1.5rem, 2.3vw, 2rem);
    line-height: 1.6;
    font-weight: 600;
}

.management-body p {
    color: rgba(255,255,255,.72);

    font-size: 1rem;
    line-height: 1.9;

    margin-bottom: 18px;
}


/* Signature */

.management-signature {
    display: flex;
    flex-direction: column;

    margin-top: 35px;
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.15);
}

.management-signature strong {
    color: var(--white);
    font-size: 1rem;
}

.management-signature span {
    color: var(--gold);
    font-size: .9rem;
    margin-top: 5px;
}



/* ===================================
   CTA
=================================== */

.about-cta{
    background:#002147;
    color:#fff;
    text-align:center;
    padding:100px 20px;
}

.about-cta h2{
    font-size:48px;
    margin-bottom:20px;
}

.about-cta p{
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
     color: rgba(255, 255, 255, .75);
}

.about-cta .btn-primary{
    padding: 15px 25px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gold);
    background: transparent;
    color: #fff;
   
}
.about-cta .btn-primary:hover{
    transform: translateY(-2px);
    background: var(--gold);
    color: var(--accent);
}

/* ===================================
   RESPONSIVE
=================================== */

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1050px) {

    .main-nav {
        gap: 17px;
    }

    .main-nav a {
        font-size: .76rem;
    }

    .header-cta {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-side {
        display: none;
    }

    .about-grid,
    .capability-container,
    .hse-grid,
    .local-content-grid,
    .equipment-inner {
        gap: 55px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:991px){

    .overview-grid,
    .why-grid,
    .local-grid,
    .management-card{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .vision-grid{
        grid-template-columns:1fr;
    }

    .page-hero-content h1{
        font-size:42px;
    }

}


/* ===================================
   RESPONSIVE
=================================== */

@media (max-width: 900px) {

    .management-message {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .management-heading {
        max-width: 600px;
    }

    .management-body {
        padding-left: 40px;
    }

}



/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .section {
        padding: 75px 0;
    }

    .header-inner {
        min-height: 75px;
    }

    .brand {
        width: 155px;
    }

    .main-nav {
        position: fixed;

        top: 75px;
        left: 0;

        width: 100%;

        display: none;
        flex-direction: column;
        align-items: flex-start;

        padding: 25px 5%;

        background: var(--navy);

        box-shadow: var(--shadow-md);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav a {
        width: 100%;

        padding: 10px 0;

        font-size: .9rem;
    }

    .main-nav a::after {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-menu-btn.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.open span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }


    /* Hero */

    .hero {
        min-height: 760px;
    }

    .hero-container{
        padding-top: 170px;
    }

    .page-hero .hero-content {
        padding-top: 170px;
    }

    .hero h1 {
        font-size: clamp(2.6rem, 12vw, 4rem);
    }

    .hero-content > p {
        font-size: .95rem;
    }

    .hero-scroll {
        display: none;
    }


    /* Section headings */

    .section-heading {
        display: block;

        margin-bottom: 40px;
    }

    .heading-side {
        margin-top: 20px;
    }


    /* About */

    .about-grid,
    .capability-container,
    .hse-grid,
    .local-content-grid,
    .equipment-inner {
        grid-template-columns: 1fr;
    }

    .about-image-main img {
        height: 450px;
    }

    .about-experience {
        right: 15px;
        bottom: 20px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }


    /* Vision */

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .vm-card {
        grid-template-columns: 1fr;

        padding: 35px;
    }


    /* Services */

    .services-grid {
        grid-template-columns: 1fr;
    }


    /* Capability */

    .capability-list {
        grid-template-columns: 1fr;
    }


    /* Projects */

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-large {
        grid-row: auto;
        min-height: 450px;
    }

    /* .project-card {
        min-height: 350px;
    } */


    /* Clients */

    .client-list {
        grid-template-columns: repeat(2, 1fr);
    }


    /* HSE */

    .hse-features {
        grid-template-columns: 1fr;
    }


    /* Local content */

    .local-content-image img {
        height: 400px;
    }


    /* Equipment */

    .equipment-items {
        grid-template-columns: repeat(2, 1fr);
    }


    /* CTA */

    .cta-inner {
        display: block;
    }

    .cta-actions {
        margin-top: 30px;
    }


    /* Footer */

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        display: block;
    }

    .footer-bottom div {
        margin-top: 12px;
    }

     .values-grid{
        grid-template-columns:1fr;
    }

    /* new rules */

    .page-hero{
        min-height:420px;
    }

    .page-hero-content h1{
        font-size:34px;
    }

    .overview-content h2{
        font-size:34px;
    }

    .about-cta h2{
        font-size:32px;
    }

    .page-hero {
        min-height: 500px;
    }

   

    .page-hero .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.15;
    }

    .page-hero .hero-content p {
        font-size: 1rem;
        line-height: 1.7;
    }

}


@media (max-width: 600px) {

    .management-heading h2 {
        font-size: 2.4rem;
    }

    .management-body {
        padding-left: 30px;
    }

    .quote-mark {
        font-size: 75px;
        top: -18px;
    }

    .management-body blockquote {
        font-size: 1.3rem;
    }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero {
        min-height: 720px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .client-list {
        grid-template-columns: 1fr;
    }

    .equipment-items {
        grid-template-columns: 1fr 1fr;
    }

    .cta-actions {
        flex-direction: column;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 7px;
    }

}