/* ==================================
   WEBSITE COLOURS
================================== */

:root {
    --primary-blue: #123d7a;
    --secondary-blue: #38a7df;
    --dark-blue: #08264f;
    --green: #25ad72;
    --white: #ffffff;
    --light-blue: #edf7fc;
    --light-grey: #f4f7fa;
    --text-colour: #17283f;
    --paragraph-colour: #5b6d82;
    --border-colour: #dce5ee;
    --header-height: 90px;
}

/* ==================================
   GLOBAL SETTINGS
================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    font-family: "Manrope", Arial, sans-serif;
    color: var(--text-colour);
    background-color: var(--white);
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button {
    font-family: inherit;
}

/* ==================================
   WEBSITE HEADER
================================== */

.website-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #ffffff;
    opacity: 1;
    isolation: isolate;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border-bottom: 1px solid var(--border-colour);
    transition:
        box-shadow 0.3s ease,
        background-color 0.3s ease;
}

.website-header.scrolled {
    background-color: #ffffff;
    box-shadow: 0 8px 30px rgba(8, 38, 79, 0.12);
}

.header-container {
    width: min(1180px, calc(100% - 40px));
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */

.website-logo {
    width: 210px;
    flex-shrink: 0;
}

.website-logo img {
    width: 100%;
    max-height: 72px;
    object-fit: contain;
}

/* Desktop Navigation */

.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-navigation > a {
    position: relative;
    padding: 12px 0;
    color: var(--text-colour);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.25s ease;
}

.main-navigation > a:not(.header-quote-button)::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 5px;
    left: 0;
    width: 0;
    height: 3px;
    margin: auto;
    background-color: var(--secondary-blue);
    border-radius: 10px;
    transition: width 0.25s ease;
}

.main-navigation > a:hover,
.main-navigation > a.active {
    color: var(--primary-blue);
}

.main-navigation > a:hover::after,
.main-navigation > a.active::after {
    width: 100%;
}

/* Quote Button */

.main-navigation .header-quote-button {
    padding: 14px 20px;
    color: var(--white);
    background-color: var(--primary-blue);
    border-radius: 8px;
    box-shadow: 0 10px 22px rgba(18, 61, 122, 0.2);
    transition:
        background-color 0.25s ease,
        transform 0.25s ease;
}

.main-navigation .header-quote-button:hover {
    color: var(--white);
    background-color: var(--secondary-blue);
    transform: translateY(-2px);
}

/* Mobile Menu Button */

.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 9px;
    background: transparent;
    border: 0;
    border-radius: 6px;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 27px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--dark-blue);
    border-radius: 5px;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

/* ==================================
   HOME HERO SECTION
================================== */

.home-hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            135deg,
            #f8fcff 0%,
            #edf8fd 52%,
            #dceff8 100%
        );
    overflow: hidden;
}

.home-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -140px;
    width: 600px;
    height: 600px;
    background:
        radial-gradient(
            circle,
            rgba(56, 167, 223, 0.22) 0%,
            rgba(56, 167, 223, 0) 70%
        );
    border-radius: 50%;
}

.hero-background-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(18, 61, 122, 0.045) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(18, 61, 122, 0.045) 1px,
            transparent 1px
        );
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 70px;
}

/* Hero text */

.hero-small-heading {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.hero-small-line {
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-blue);
    border-radius: 5px;
}

.hero-content h1 {
    max-width: 700px;
    margin-bottom: 25px;
    color: var(--dark-blue);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(48px, 5.2vw, 76px);
    line-height: 1.04;
    letter-spacing: -3px;
}

.hero-content h1 span {
    display: block;
    color: var(--secondary-blue);
}

.hero-description {
    max-width: 650px;
    margin-bottom: 33px;
    color: var(--paragraph-colour);
    font-size: 17px;
    line-height: 1.75;
}

/* Hero buttons */

.hero-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 13px;
}

.hero-button {
    min-height: 54px;
    padding: 14px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease,
        box-shadow 0.25s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
}

.hero-primary-button {
    color: var(--white);
    background-color: var(--dark-blue);
    box-shadow: 0 14px 28px rgba(8, 38, 79, 0.22);
}

.hero-primary-button:hover {
    background-color: var(--primary-blue);
}

.hero-secondary-button {
    color: var(--dark-blue);
    background-color: rgba(255, 255, 255, 0.72);
    border: 1px solid #b4cbd9;
}

.hero-secondary-button:hover {
    background-color: var(--white);
}

/* Hero highlights */

.hero-highlights {
    margin-top: 48px;
    display: flex;
}

.hero-highlight {
    min-width: 130px;
    padding: 0 24px;
    border-left: 1px solid #b9cfdd;
}

.hero-highlight:first-child {
    padding-left: 0;
    border-left: none;
}

.hero-highlight strong,
.hero-highlight span {
    display: block;
}

.hero-highlight strong {
    margin-bottom: 3px;
    color: var(--dark-blue);
    font-size: 17px;
    font-weight: 800;
}

.hero-highlight span {
    color: var(--paragraph-colour);
    font-size: 12px;
}

/* ==================================
   HERO VISUAL
================================== */

.hero-visual {
    position: relative;
    width: 100%;
    height: 520px;
}

.hero-circle {
    position: absolute;
    border: 1px solid rgba(18, 61, 122, 0.22);
    border-radius: 50%;
}

.hero-circle-large {
    top: 20px;
    right: 0;
    width: 470px;
    height: 470px;
}

.hero-circle-small {
    top: 100px;
    right: 80px;
    width: 310px;
    height: 310px;
    border-style: dashed;
}

.hero-main-card {
    position: absolute;
    top: 105px;
    right: 70px;
    bottom: 60px;
    left: 70px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background:
        linear-gradient(
            145deg,
            var(--dark-blue),
            var(--primary-blue)
        );
    border-radius: 46% 54% 42% 58% / 52% 43% 57% 48%;
    box-shadow: 0 28px 60px rgba(8, 38, 79, 0.22);
    transform: rotate(-4deg);
}

.hero-main-card > * {
    transform: rotate(4deg);
}

.recycle-symbol {
    margin-bottom: 12px;
    color: #6bd3ad;
    font-size: 88px;
    line-height: 1;
}

.hero-main-card span {
    margin-bottom: 5px;
    color: #c5e5f4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.hero-main-card strong {
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
}

.hero-floating-card {
    position: absolute;
    z-index: 5;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: var(--white);
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(8, 38, 79, 0.15);
}

.hero-floating-card p {
    color: var(--dark-blue);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
}

.floating-number {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: var(--white);
    background-color: var(--secondary-blue);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
}

.floating-card-one {
    top: 60px;
    left: 0;
}

.floating-card-two {
    right: 0;
    bottom: 70px;
}

.hero-green-badge {
    position: absolute;
    top: 30px;
    right: 0;
    z-index: 6;
    width: 125px;
    height: 125px;
    padding: 15px;
    display: grid;
    place-items: center;
    color: var(--white);
    text-align: center;
    background-color: var(--green);
    border: 7px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.4;
    transform: rotate(8deg);
}

/* ==================================
   TABLET RESPONSIVENESS
================================== */

@media (max-width: 980px) {
    :root {
        --header-height: 76px;
    }

    .header-container {
        width: min(100% - 30px, 1180px);
    }

    .website-logo {
        width: 175px;
    }

    .website-logo img {
        max-height: 60px;
    }

    .mobile-menu-button {
        position: relative;
        z-index: 1002;
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: var(--header-height);
        right: 0;
        width: min(88%, 380px);
        height: calc(100dvh - var(--header-height));
        padding: 25px 20px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        background-color: var(--white);
        border-left: 1px solid var(--border-colour);
        box-shadow: -15px 20px 40px rgba(8, 38, 79, 0.15);
        overflow-y: auto;
        visibility: hidden;
        transform: translateX(105%);
        transition:
            transform 0.3s ease,
            visibility 0.3s ease;
    }

    .main-navigation.open {
        visibility: visible;
        transform: translateX(0);
    }

    .main-navigation > a {
        width: 100%;
        padding: 16px 10px;
        font-size: 16px;
        border-bottom: 1px solid var(--border-colour);
    }

    .main-navigation > a:not(.header-quote-button)::after {
        display: none;
    }

    .main-navigation .header-quote-button {
        margin-top: 22px;
        padding: 15px 20px;
        text-align: center;
        border-bottom: none;
    }

    .mobile-menu-button.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-button.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .home-hero {
        min-height: auto;
    }

    .hero-container {
        padding: 70px 0 55px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-content {
        max-width: 720px;
    }

    .hero-content h1 {
        font-size: clamp(45px, 8vw, 68px);
    }

    .hero-visual {
        width: min(100%, 600px);
        height: 460px;
        margin: 0 auto;
    }
}

/* ==================================
   MOBILE RESPONSIVENESS
================================== */

@media (max-width: 600px) {
    :root {
        --header-height: 70px;
    }

    .header-container {
        width: calc(100% - 24px);
    }

    .website-logo {
        width: 150px;
    }

    .website-logo img {
        max-height: 54px;
    }

    .main-navigation {
        top: var(--header-height);
        width: 100%;
        height: calc(100dvh - var(--header-height));
        border-left: none;
    }

    .hero-container {
        width: calc(100% - 30px);
        padding: 55px 0 40px;
    }

    .hero-small-heading {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .hero-content h1 {
        margin-bottom: 20px;
        font-size: clamp(39px, 12vw, 54px);
        line-height: 1.08;
        letter-spacing: -2px;
    }

    .hero-description {
        margin-bottom: 27px;
        font-size: 16px;
        line-height: 1.65;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-button {
        width: 100%;
    }

    .hero-highlights {
        margin-top: 38px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-highlight {
        min-width: 0;
        padding: 0 10px;
    }

    .hero-highlight strong {
        font-size: 13px;
    }

    .hero-highlight span {
        font-size: 10px;
        line-height: 1.35;
    }

    .hero-visual {
        height: 350px;
    }

    .hero-circle-large {
        top: 10px;
        right: 0;
        width: 320px;
        height: 320px;
    }

    .hero-circle-small {
        top: 70px;
        right: 55px;
        width: 220px;
        height: 220px;
    }

    .hero-main-card {
        top: 70px;
        right: 42px;
        bottom: 40px;
        left: 42px;
        padding: 20px;
    }

    .recycle-symbol {
        font-size: 60px;
    }

    .hero-main-card strong {
        font-size: 17px;
    }

    .hero-main-card span {
        font-size: 9px;
    }

    .hero-floating-card {
        padding: 9px;
        gap: 8px;
    }

    .floating-number {
        width: 32px;
        height: 32px;
        font-size: 10px;
    }

    .hero-floating-card p {
        font-size: 9px;
    }

    .floating-card-one {
        top: 35px;
        left: 0;
    }

    .floating-card-two {
        right: 0;
        bottom: 30px;
    }

    .hero-green-badge {
        top: 8px;
        right: -3px;
        width: 92px;
        height: 92px;
        border-width: 5px;
        font-size: 8px;
    }
}

/* Very small phones */

@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-highlight {
        padding: 0 7px;
    }

    .hero-highlight strong {
        font-size: 12px;
    }

    .hero-visual {
        height: 320px;
    }

    .hero-circle-large {
        width: 290px;
        height: 290px;
    }

    .hero-main-card {
        right: 35px;
        left: 35px;
    }
}

/* Reduced-motion accessibility */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition: none !important;
    }
}/* ==================================
   HOME ABOUT SECTION
================================== */

.home-about {
    padding: 110px 0;
    background-color: var(--white);
}

.home-about-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: start;
    gap: 100px;
}

/* Section label */

.section-small-heading {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.section-small-line {
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: var(--secondary-blue);
    border-radius: 5px;
}

/* Main heading */

.home-about-heading h2 {
    max-width: 480px;
    color: var(--dark-blue);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(40px, 4.5vw, 60px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.home-about-heading h2 span {
    display: block;
    color: var(--secondary-blue);
}

/* About content */

.home-about-content {
    padding-top: 30px;
    border-top: 1px solid var(--border-colour);
}

.home-about-content > p {
    margin-bottom: 18px;
    color: var(--paragraph-colour);
    font-size: 16px;
    line-height: 1.8;
}

.home-about-content .home-about-lead {
    color: var(--text-colour);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
}

/* Features */

.home-about-features {
    margin: 35px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.about-feature {
    padding: 22px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: var(--light-blue);
    border: 1px solid #d9ebf4;
    border-radius: 14px;
}

.about-feature-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background-color: var(--secondary-blue);
    border-radius: 10px;
    font-size: 21px;
    font-weight: 800;
}

.about-feature h3 {
    margin-bottom: 6px;
    color: var(--dark-blue);
    font-size: 15px;
}

.about-feature p {
    color: var(--paragraph-colour);
    font-size: 13px;
    line-height: 1.6;
}

/* About link */

.home-about-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--primary-blue);
    font-size: 15px;
    font-weight: 800;
}

.home-about-link span {
    color: var(--secondary-blue);
    font-size: 20px;
    transition: transform 0.25s ease;
}

.home-about-link:hover span {
    transform: translateX(6px);
}

/* ==================================
   ABOUT SECTION TABLET
================================== */

@media (max-width: 980px) {
    .home-about {
        padding: 85px 0;
    }

    .home-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-about-heading h2 {
        max-width: 650px;
    }

    .home-about-content {
        padding-top: 25px;
    }
}

/* ==================================
   ABOUT SECTION MOBILE
================================== */

@media (max-width: 600px) {
    .home-about {
        padding: 70px 0;
    }

    .home-about-container {
        width: calc(100% - 30px);
        gap: 30px;
    }

    .section-small-heading {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .home-about-heading h2 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .home-about-content {
        padding-top: 22px;
    }

    .home-about-content .home-about-lead {
        font-size: 18px;
    }

    .home-about-features {
        grid-template-columns: 1fr;
        margin: 28px 0;
    }

    .about-feature {
        padding: 19px;
    }
}/* ==================================
   HOME PRODUCTS AND SERVICES
================================== */

.home-services {
    position: relative;
    padding: 110px 0;
    color: var(--white);
    background-color: var(--dark-blue);
    overflow: hidden;
}

.home-services::before {
    content: "";
    position: absolute;
    top: -250px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: rgba(56, 167, 223, 0.08);
    border-radius: 50%;
}

.home-services::after {
    content: "";
    position: absolute;
    bottom: -300px;
    left: -250px;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
}

.services-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Services heading */

.services-heading {
    margin-bottom: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.services-heading-content {
    max-width: 750px;
}

.services-label {
    color: #8cd9f5;
}

.services-heading h2 {
    margin-bottom: 20px;
    color: var(--white);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.services-heading h2 span {
    display: block;
    color: var(--secondary-blue);
}

.services-heading p {
    max-width: 680px;
    color: #bed0e2;
    font-size: 16px;
    line-height: 1.75;
}

.view-services-link {
    flex-shrink: 0;
    padding-bottom: 7px;
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
    border-bottom: 2px solid var(--secondary-blue);
    font-size: 14px;
    font-weight: 800;
}

.view-services-link span {
    color: var(--secondary-blue);
    font-size: 19px;
    transition: transform 0.25s ease;
}

.view-services-link:hover span {
    transform: translateX(5px);
}

/* Services grid */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 17px;
}

.service-card {
    position: relative;
    min-height: 405px;
    padding: 32px 27px;
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease,
        border-color 0.3s ease;
}

.service-card:hover {
    background-color: rgba(255, 255, 255, 0.11);
    border-color: rgba(56, 167, 223, 0.5);
    transform: translateY(-8px);
}

.service-card-featured {
    background:
        linear-gradient(
            145deg,
            var(--secondary-blue),
            #238fc9
        );
    border-color: var(--secondary-blue);
}

.service-card-featured:hover {
    background:
        linear-gradient(
            145deg,
            #45b3e9,
            #238fc9
        );
}

/* Card top */

.service-card-top {
    margin-bottom: 43px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.service-number {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.service-card-featured .service-number {
    color: rgba(255, 255, 255, 0.75);
}

.service-icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    color: #6bd3ad;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.service-icon svg {
    width: 27px;
    height: 27px;
    fill: currentColor;
}

.service-card-featured .service-icon {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.18);
}

/* Card content */

.service-card h3 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 20px;
    line-height: 1.3;
}

.service-card p {
    margin-bottom: 28px;
    color: #bed0e2;
    font-size: 14px;
    line-height: 1.75;
}

.service-card-featured p {
    color: #edfaff;
}

.service-card > a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.service-card > a span {
    color: var(--secondary-blue);
    font-size: 18px;
    transition: transform 0.25s ease;
}

.service-card-featured > a span {
    color: var(--white);
}

.service-card > a:hover span {
    transform: translateX(5px);
}

/* Bottom CTA */

.services-bottom {
    margin-top: 40px;
    padding-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.services-bottom p {
    color: #bed0e2;
    font-size: 14px;
}

.services-bottom a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.services-bottom a span {
    color: var(--secondary-blue);
    font-size: 18px;
}

/* ==================================
   SERVICES TABLET
================================== */

@media (max-width: 1050px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-card {
        min-height: 355px;
    }
}

@media (max-width: 800px) {
    .home-services {
        padding: 85px 0;
    }

    .services-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }
}

/* ==================================
   SERVICES MOBILE
================================== */

@media (max-width: 600px) {
    .home-services {
        padding: 70px 0;
    }

    .services-container {
        width: calc(100% - 30px);
    }

    .services-heading {
        margin-bottom: 35px;
    }

    .services-heading h2 {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .services-heading p {
        font-size: 15px;
        line-height: 1.7;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 335px;
        padding: 27px 23px;
    }

    .service-card-top {
        margin-bottom: 32px;
    }

    .service-icon {
        width: 52px;
        height: 52px;
    }

    .services-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }
}/* ==================================
   SOCIAL IMPACT SECTION
================================== */

.social-impact {
    position: relative;
    padding: 110px 0;
    background:
        linear-gradient(
            135deg,
            #0e9262 0%,
            #21ad77 55%,
            #34bd89 100%
        );
    color: var(--white);
    overflow: hidden;
}

.social-impact::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -170px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.social-impact::after {
    content: "";
    position: absolute;
    right: 100px;
    bottom: -300px;
    width: 600px;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.social-impact-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Impact heading */

.social-impact-heading {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 80px;
}

.impact-small-heading {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d6fff0;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.impact-small-heading span {
    display: inline-block;
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 5px;
}

.social-impact-heading h2 {
    color: var(--white);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.social-impact-heading h2 span {
    display: block;
    color: #c8f8e6;
}

.social-impact-heading > p {
    padding-bottom: 7px;
    color: #e1fff3;
    font-size: 16px;
    line-height: 1.8;
}

/* Impact cards */

.impact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.impact-card {
    position: relative;
    min-height: 340px;
    padding: 32px 28px;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 17px;
    backdrop-filter: blur(8px);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.impact-card:hover {
    background-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-7px);
}

.impact-card-featured {
    color: var(--text-colour);
    background-color: var(--white);
    border-color: var(--white);
}

.impact-card-featured:hover {
    background-color: var(--white);
}

.impact-card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.impact-card-featured .impact-card-number {
    color: #a5b6ad;
}

/* Impact icons */

.impact-card-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 40px;
    display: grid;
    place-items: center;
    color: var(--green);
    background-color: var(--white);
    border-radius: 14px;
}

.impact-card-icon svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}

.impact-card-featured .impact-card-icon {
    color: var(--white);
    background-color: var(--green);
}

.impact-card h3 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 20px;
    line-height: 1.35;
}

.impact-card-featured h3 {
    color: var(--dark-blue);
}

.impact-card p {
    color: #e1fff3;
    font-size: 14px;
    line-height: 1.75;
}

.impact-card-featured p {
    color: var(--paragraph-colour);
}

.impact-card-line {
    position: absolute;
    right: 28px;
    bottom: 25px;
    left: 28px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

.impact-card-line::before {
    content: "";
    display: block;
    width: 35%;
    height: 100%;
    background-color: var(--white);
    border-radius: 5px;
}

.impact-card-featured .impact-card-line {
    background-color: #dcebe4;
}

.impact-card-featured .impact-card-line::before {
    background-color: var(--green);
}

/* Impact statement */

.impact-statement {
    margin-top: 30px;
    padding: 32px 36px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 25px;
    background-color: var(--dark-blue);
    border-radius: 17px;
    box-shadow: 0 20px 45px rgba(8, 38, 79, 0.18);
}

.impact-statement-icon {
    width: 65px;
    height: 65px;
    display: grid;
    place-items: center;
    color: #6bd3ad;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 35px;
}

.impact-statement-content span {
    display: block;
    margin-bottom: 5px;
    color: var(--secondary-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.impact-statement-content h3 {
    max-width: 650px;
    color: var(--white);
    font-size: 18px;
    line-height: 1.5;
}

.impact-statement-link {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: var(--white);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.impact-statement-link span {
    color: var(--secondary-blue);
    font-size: 19px;
    transition: transform 0.25s ease;
}

.impact-statement-link:hover span {
    transform: translateX(5px);
}

/* ==================================
   SOCIAL IMPACT TABLET
================================== */

@media (max-width: 900px) {
    .social-impact {
        padding: 85px 0;
    }

    .social-impact-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .impact-cards {
        grid-template-columns: 1fr 1fr;
    }

    .impact-card:last-child {
        grid-column: 1 / -1;
    }

    .impact-statement {
        grid-template-columns: auto 1fr;
    }

    .impact-statement-link {
        grid-column: 2;
    }
}

/* ==================================
   SOCIAL IMPACT MOBILE
================================== */

@media (max-width: 600px) {
    .social-impact {
        padding: 70px 0;
    }

    .social-impact-container {
        width: calc(100% - 30px);
    }

    .social-impact-heading {
        margin-bottom: 35px;
    }

    .impact-small-heading {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .social-impact-heading h2 {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .social-impact-heading > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .impact-cards {
        grid-template-columns: 1fr;
    }

    .impact-card,
    .impact-card:last-child {
        min-height: 305px;
        padding: 27px 23px;
        grid-column: auto;
    }

    .impact-card-icon {
        margin-bottom: 30px;
    }

    .impact-statement {
        padding: 26px 22px;
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .impact-statement-icon {
        width: 56px;
        height: 56px;
    }

    .impact-statement-link {
        grid-column: auto;
        white-space: normal;
    }
}/* ==================================
   WHO WE SERVE SECTION
================================== */

.who-we-serve {
    position: relative;
    padding: 110px 0;
    background-color: var(--white);
    overflow: hidden;
}

.who-we-serve::before {
    content: "";
    position: absolute;
    top: 120px;
    right: -180px;
    width: 430px;
    height: 430px;
    background-color: rgba(56, 167, 223, 0.06);
    border-radius: 50%;
}

.serve-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* Heading */

.serve-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.serve-heading .section-small-heading {
    justify-content: center;
}

.serve-heading h2 {
    margin-bottom: 20px;
    color: var(--dark-blue);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(40px, 4.5vw, 58px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.serve-heading h2 span {
    display: block;
    color: var(--secondary-blue);
}

.serve-heading > p {
    max-width: 690px;
    margin: 0 auto;
    color: var(--paragraph-colour);
    font-size: 16px;
    line-height: 1.8;
}

/* Target market grid */

.serve-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 19px;
}

.serve-card {
    position: relative;
    min-height: 300px;
    padding: 30px 27px;
    background-color: #f7fafc;
    border: 1px solid var(--border-colour);
    border-radius: 16px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.serve-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 18px 40px rgba(8, 38, 79, 0.09);
    transform: translateY(-6px);
}

.serve-card::after {
    content: "";
    position: absolute;
    right: -45px;
    bottom: -55px;
    width: 115px;
    height: 115px;
    background-color: rgba(56, 167, 223, 0.06);
    border-radius: 50%;
}

/* Card number */

.serve-card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    color: #a3b3c4;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Card icon */

.serve-card-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 30px;
    display: grid;
    place-items: center;
    color: var(--white);
    background:
        linear-gradient(
            145deg,
            var(--primary-blue),
            var(--secondary-blue)
        );
    border-radius: 13px;
}

.serve-card:nth-child(3) .serve-card-icon,
.serve-card:nth-child(6) .serve-card-icon {
    background:
        linear-gradient(
            145deg,
            var(--green),
            #45c992
        );
}

.serve-card-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

/* Card text */

.serve-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 12px;
    color: var(--dark-blue);
    font-size: 18px;
    line-height: 1.4;
}

.serve-card p {
    position: relative;
    z-index: 2;
    color: var(--paragraph-colour);
    font-size: 14px;
    line-height: 1.75;
}

/* ==================================
   WHO WE SERVE TABLET
================================== */

@media (max-width: 900px) {
    .who-we-serve {
        padding: 85px 0;
    }

    .serve-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==================================
   WHO WE SERVE MOBILE
================================== */

@media (max-width: 600px) {
    .who-we-serve {
        padding: 70px 0;
    }

    .serve-container {
        width: calc(100% - 30px);
    }

    .serve-heading {
        margin-bottom: 35px;
        text-align: left;
    }

    .serve-heading .section-small-heading {
        justify-content: flex-start;
    }

    .serve-heading h2 {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .serve-heading > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .serve-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .serve-card {
        min-height: auto;
        padding: 26px 22px;
    }

    .serve-card-icon {
        margin-bottom: 25px;
    }
}/* ==================================
   HOME CALL TO ACTION
================================== */

.home-cta {
    position: relative;
    padding: 90px 0;
    color: var(--white);
    background:
        linear-gradient(
            120deg,
            var(--primary-blue) 0%,
            #176fa9 45%,
            var(--secondary-blue) 100%
        );
    overflow: hidden;
}

.home-cta::before {
    content: "";
    position: absolute;
    top: -230px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
}

.home-cta::after {
    content: "";
    position: absolute;
    right: 70px;
    bottom: -300px;
    width: 500px;
    height: 500px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.home-cta-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 45px 45px;
    pointer-events: none;
}

.home-cta-container {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    align-items: center;
    gap: 80px;
}

/* CTA heading */

.cta-small-heading {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8f4ff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.cta-small-heading span {
    width: 30px;
    height: 3px;
    background-color: var(--white);
    border-radius: 5px;
}

.home-cta-content h2 {
    margin-bottom: 22px;
    color: var(--white);
    font-family: "Montserrat", "Manrope", sans-serif;
    font-size: clamp(40px, 4.5vw, 59px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.home-cta-content h2 span {
    display: block;
    color: #a7e6ff;
}

.home-cta-content p {
    max-width: 710px;
    color: #e1f4fc;
    font-size: 16px;
    line-height: 1.8;
}

/* CTA actions */

.home-cta-actions {
    padding: 32px;
    background-color: rgba(8, 38, 79, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    backdrop-filter: blur(8px);
}

.cta-quote-button {
    width: 100%;
    min-height: 56px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: var(--dark-blue);
    background-color: var(--white);
    border-radius: 9px;
    box-shadow: 0 14px 28px rgba(8, 38, 79, 0.16);
    font-size: 15px;
    font-weight: 800;
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.cta-quote-button:hover {
    background-color: #e9f8ff;
    transform: translateY(-3px);
}

.cta-contact-divider {
    margin: 20px 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 12px;
    color: #c9e8f5;
    font-size: 10px;
    font-weight: 800;
}

.cta-contact-divider span {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

/* Phone link */

.cta-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.cta-phone-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: var(--white);
    background-color: var(--green);
    border-radius: 50%;
}

.cta-phone-icon svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.cta-phone-details small,
.cta-phone-details strong {
    display: block;
}

.cta-phone-details small {
    margin-bottom: 2px;
    color: #ceeaf6;
    font-size: 11px;
}

.cta-phone-details strong {
    color: var(--white);
    font-size: 18px;
}

/* WhatsApp link */

.cta-whatsapp-link {
    margin-top: 19px;
    display: block;
    color: #d9f8ec;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ==================================
   CTA TABLET
================================== */

@media (max-width: 900px) {
    .home-cta {
        padding: 80px 0;
    }

    .home-cta-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-cta-actions {
        max-width: 500px;
        width: 100%;
    }
}

/* ==================================
   CTA MOBILE
================================== */

@media (max-width: 600px) {
    .home-cta {
        padding: 70px 0;
    }

    .home-cta-container {
        width: calc(100% - 30px);
        gap: 32px;
    }

    .cta-small-heading {
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .home-cta-content h2 {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .home-cta-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .home-cta-actions {
        padding: 25px 20px;
    }

    .cta-phone-details strong {
        font-size: 16px;
    }
}/* ==================================
   WEBSITE FOOTER
================================== */

.website-footer {
    color: #b9c8d9;
    background-color: #061a36;
}

.footer-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.footer-main {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.65fr 0.8fr 1fr 1.25fr;
    align-items: start;
    gap: 55px;
}

/* Footer company */

.footer-logo {
    width: 215px;
    height: 80px;
    margin-bottom: 22px;
    display: block;
    overflow: hidden;
    background-color: var(--white);
    border-radius: 8px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-company > p {
    max-width: 350px;
    margin-bottom: 25px;
    color: #aabace;
    font-size: 14px;
    line-height: 1.8;
}

.footer-quote-button {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

.footer-quote-button span {
    color: var(--secondary-blue);
    font-size: 19px;
    transition: transform 0.25s ease;
}

.footer-quote-button:hover span {
    transform: translateX(5px);
}

/* Footer columns */

.footer-column h2 {
    position: relative;
    margin-bottom: 26px;
    padding-bottom: 13px;
    color: var(--white);
    font-size: 16px;
}

.footer-column h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: var(--secondary-blue);
    border-radius: 5px;
}

.footer-column nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
}

.footer-column nav a {
    position: relative;
    padding-left: 15px;
    color: #aabace;
    font-size: 14px;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.footer-column nav a::before {
    content: "›";
    position: absolute;
    top: -2px;
    left: 0;
    color: var(--secondary-blue);
    font-size: 18px;
}

.footer-column nav a:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* Footer contact */

.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.footer-contact-icon {
    width: 39px;
    height: 39px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: var(--secondary-blue);
    background-color: rgba(255, 255, 255, 0.07);
    border-radius: 9px;
}

.footer-contact-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.footer-contact-icon.whatsapp-icon {
    color: #55d6a0;
}

.footer-contact-item small,
.footer-contact-item strong {
    display: block;
}

.footer-contact-item small {
    margin-bottom: 3px;
    color: #71869f;
    font-size: 11px;
}

.footer-contact-item strong {
    color: #dce6f1;
    font-size: 13px;
    line-height: 1.5;
}

a.footer-contact-item:hover strong {
    color: var(--secondary-blue);
}

/* Footer bottom */

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.footer-bottom-content p {
    color: #73879e;
    font-size: 12px;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    color: var(--white);
    background-color: #25b978;
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(6, 26, 54, 0.25);
    transition:
        transform 0.25s ease,
        background-color 0.25s ease;
}

.floating-whatsapp svg {
    width: 29px;
    height: 29px;
    fill: currentColor;
}

.floating-whatsapp:hover {
    background-color: #169b62;
    transform: translateY(-4px);
}

/* ==================================
   FOOTER TABLET
================================== */

@media (max-width: 950px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-contact {
        grid-column: 2 / 4;
    }
}

/* ==================================
   FOOTER MOBILE
================================== */

@media (max-width: 650px) {
    .footer-container {
        width: calc(100% - 30px);
    }

    .footer-main {
        padding: 65px 0 45px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 42px 25px;
    }

    .footer-company {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }

    .footer-logo {
        width: 195px;
        height: 73px;
    }

    .footer-bottom-content {
        min-height: auto;
        padding: 22px 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }

    .floating-whatsapp {
        right: 15px;
        bottom: 15px;
        width: 52px;
        height: 52px;
    }

    .floating-whatsapp svg {
        width: 26px;
        height: 26px;
    }
}

/* Very small phones */

@media (max-width: 380px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-company,
    .footer-contact {
        grid-column: auto;
    }
}/* ==================================
   ABOUT PAGE HERO
================================== */

.about-page-hero {
    position: relative;
    padding: 105px 0;
    color: #ffffff;
    background:
        linear-gradient(
            125deg,
            var(--dark-blue) 0%,
            var(--primary-blue) 55%,
            #207fba 100%
        );
    overflow: hidden;
}

.about-hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.035) 1px,
            transparent 1px
        );
    background-size: 48px 48px;
}

.about-page-hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -100px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
}

.about-page-label {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-blue);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.about-page-label span {
    width: 30px;
    height: 3px;
    background-color: var(--secondary-blue);
    border-radius: 5px;
}

.about-page-hero .about-page-label {
    color: #bdeaff;
}

.about-page-hero .about-page-label span {
    background-color: #bdeaff;
}

.about-page-hero h1 {
    max-width: 780px;
    margin-bottom: 24px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(45px, 5.3vw, 72px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -3px;
}

.about-page-hero h1 span {
    display: block;
    color: #78d7ff;
}

.about-page-hero p {
    max-width: 700px;
    margin-bottom: 32px;
    color: #d4e7f4;
    font-size: 17px;
    line-height: 1.8;
}

.about-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.about-primary-button,
.about-secondary-button {
    min-height: 54px;
    padding: 14px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 800;
    transition: 0.25s ease;
}

.about-primary-button {
    color: var(--dark-blue);
    background-color: #ffffff;
}

.about-secondary-button {
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.about-primary-button:hover,
.about-secondary-button:hover {
    color: var(--dark-blue);
    background-color: #a9e7ff;
    transform: translateY(-3px);
}

/* About hero card */

.about-hero-card {
    padding: 38px 33px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.16);
}

.about-card-icon {
    width: 65px;
    height: 65px;
    margin-bottom: 27px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background-color: var(--green);
    border-radius: 17px;
    font-size: 31px;
}

.about-hero-card > span {
    display: block;
    margin-bottom: 8px;
    color: #8edfff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.about-hero-card h2 {
    margin-bottom: 28px;
    color: #ffffff;
    font-size: 23px;
    font-weight: 700;
    line-height: 1.5;
}

.about-card-details {
    padding-top: 23px;
    display: grid;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-card-details div {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    color: #d4e7f4;
    font-size: 13px;
    line-height: 1.6;
}

.about-card-details i {
    margin-top: 4px;
    color: #75d8ff;
}

/* ==================================
   COMPANY INTRODUCTION
================================== */

.about-company {
    padding: 110px 0;
    background-color: #ffffff;
}

.about-company-visual {
    position: relative;
    min-height: 510px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #edf7fc;
    border-radius: 22px;
}

.about-visual-main {
    width: 310px;
    height: 310px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
    background:
        linear-gradient(
            145deg,
            var(--primary-blue),
            var(--secondary-blue)
        );
    border-radius: 50%;
    box-shadow: 0 25px 50px rgba(18, 61, 122, 0.2);
}

.about-visual-main i {
    margin-bottom: 18px;
    color: #7fe1b9;
    font-size: 55px;
}

.about-visual-main span {
    margin-bottom: 8px;
    color: #c8edfc;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.about-visual-main h2 {
    color: #ffffff;
    font-size: 23px;
    line-height: 1.4;
}

.about-year-box,
.about-founder-box {
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 17px 38px rgba(8, 38, 79, 0.13);
}

.about-year-box {
    top: 35px;
    right: 25px;
    padding: 18px 22px;
    border-radius: 13px;
}

.about-year-box strong,
.about-year-box span {
    display: block;
}

.about-year-box strong {
    color: var(--primary-blue);
    font-size: 25px;
}

.about-year-box span {
    color: var(--paragraph-colour);
    font-size: 10px;
}

.about-founder-box {
    bottom: 30px;
    left: 22px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-radius: 13px;
}

.founder-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background-color: var(--green);
    border-radius: 50%;
}

.about-founder-box small,
.about-founder-box strong {
    display: block;
}

.about-founder-box small {
    color: var(--paragraph-colour);
    font-size: 10px;
}

.about-founder-box strong {
    color: var(--dark-blue);
    font-size: 13px;
}

/* Company content */

.about-company-content h2 {
    margin-bottom: 24px;
    color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(39px, 4vw, 55px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.about-company-content h2 span {
    display: block;
    color: var(--secondary-blue);
}

.about-company-content p {
    margin-bottom: 17px;
    color: var(--paragraph-colour);
    font-size: 15px;
    line-height: 1.8;
}

.about-company-content .about-lead {
    color: var(--text-colour);
    font-size: 18px;
    font-weight: 700;
}

.about-company-features {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-company-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark-blue);
    font-size: 13px;
    font-weight: 700;
}

.about-company-feature i {
    color: var(--green);
    font-size: 17px;
}

/* ==================================
   ABOUT PAGE RESPONSIVENESS
================================== */

@media (max-width: 991px) {
    .about-page-hero {
        padding: 85px 0;
    }

    .about-company {
        padding: 85px 0;
    }

    .about-company-visual {
        max-width: 650px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .about-page-hero {
        padding: 65px 0;
    }

    .about-page-hero h1 {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .about-page-hero p {
        font-size: 15px;
        line-height: 1.7;
    }

    .about-hero-buttons {
        display: grid;
    }

    .about-primary-button,
    .about-secondary-button {
        width: 100%;
    }

    .about-hero-card {
        padding: 28px 23px;
    }

    .about-company {
        padding: 70px 0;
    }

    .about-company-visual {
        min-height: 400px;
        padding: 25px;
    }

    .about-visual-main {
        width: 250px;
        height: 250px;
        padding: 28px;
    }

    .about-visual-main h2 {
        font-size: 19px;
    }

    .about-year-box {
        top: 18px;
        right: 12px;
        padding: 13px 16px;
    }

    .about-founder-box {
        bottom: 18px;
        left: 12px;
    }

    .about-company-content h2 {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .about-company-features {
        grid-template-columns: 1fr;
    }
}/* ==================================
   FINAL MOBILE TYPOGRAPHY FIX
   Keep this at the bottom of style.css
================================== */

@media screen and (max-width: 600px) {

    /* About hero section */

    .about-page-hero {
        padding: 52px 0 58px;
    }

    .about-page-hero .container {
        width: 100%;
        padding-right: 18px;
        padding-left: 18px;
    }

    .about-page-label {
        margin-bottom: 14px;
        font-size: 10px;
        line-height: 1.3;
        letter-spacing: 1.2px;
    }

    .about-page-label span {
        width: 25px;
        height: 2px;
    }

    /* Smaller mobile heading */

    .about-page-hero h1 {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 31px;
        font-weight: 800;
        line-height: 1.14;
        letter-spacing: -1px;
        overflow-wrap: normal;
        word-break: normal;
    }

    .about-page-hero h1 span {
        display: block;
        margin-top: 3px;
    }

    /* Smaller paragraph */

    .about-page-hero p {
        max-width: 100%;
        margin-bottom: 25px;
        font-size: 14px;
        line-height: 1.65;
    }

    /* Mobile buttons */

    .about-hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .about-primary-button,
    .about-secondary-button {
        width: 100%;
        min-height: 49px;
        padding: 12px 17px;
        font-size: 13px;
    }

    /* Information card */

    .about-hero-card {
        padding: 25px 20px;
        border-radius: 15px;
    }

    .about-card-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 20px;
        border-radius: 13px;
        font-size: 24px;
    }

    .about-hero-card > span {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .about-hero-card h2 {
        margin-bottom: 22px;
        font-size: 18px;
        line-height: 1.45;
    }

    .about-card-details div {
        gap: 10px;
        font-size: 12px;
    }

    /* Company introduction */

    .about-company {
        padding: 60px 0;
    }

    .about-company .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .about-company-content h2 {
        margin-bottom: 18px;
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .about-company-content .about-lead {
        font-size: 16px;
        line-height: 1.6;
    }

    .about-company-content p {
        margin-bottom: 15px;
        font-size: 14px;
        line-height: 1.7;
    }

    .about-company-feature {
        font-size: 12px;
    }

    /* Visual section */

    .about-company-visual {
        min-height: 350px;
        padding: 20px;
        border-radius: 17px;
    }

    .about-visual-main {
        width: 220px;
        height: 220px;
        padding: 25px;
    }

    .about-visual-main i {
        margin-bottom: 12px;
        font-size: 43px;
    }

    .about-visual-main span {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .about-visual-main h2 {
        font-size: 16px;
        line-height: 1.4;
    }

    .about-year-box {
        top: 13px;
        right: 8px;
        padding: 10px 13px;
    }

    .about-year-box strong {
        font-size: 19px;
    }

    .about-year-box span {
        font-size: 8px;
    }

    .about-founder-box {
        bottom: 13px;
        left: 8px;
        padding: 11px 13px;
    }

    .founder-icon {
        width: 35px;
        height: 35px;
        font-size: 13px;
    }

    .about-founder-box small {
        font-size: 8px;
    }

    .about-founder-box strong {
        font-size: 11px;
    }
}

/* Extra-small mobile phones */

@media screen and (max-width: 380px) {

    .about-page-hero h1 {
        font-size: 28px;
        line-height: 1.16;
    }

    .about-page-hero p {
        font-size: 13px;
    }

    .about-company-content h2 {
        font-size: 27px;
    }

    .about-company-visual {
        min-height: 330px;
    }

    .about-visual-main {
        width: 205px;
        height: 205px;
    }
}/* ==================================
   MISSION AND VISION SECTION
================================== */

.mission-vision-section {
    position: relative;
    padding: 105px 0;
    background-color: #f4f9fc;
    overflow: hidden;
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -160px;
    width: 450px;
    height: 450px;
    border: 1px solid rgba(56, 167, 223, 0.13);
    border-radius: 50%;
}

.mission-vision-heading {
    position: relative;
    z-index: 2;
    max-width: 750px;
    margin: 0 auto 48px;
    text-align: center;
}

.mission-vision-heading .about-page-label {
    justify-content: center;
}

.mission-vision-heading h2 {
    margin-bottom: 18px;
    color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.mission-vision-heading h2 span {
    display: block;
    color: var(--secondary-blue);
}

.mission-vision-heading > p {
    max-width: 670px;
    margin: 0 auto;
    color: var(--paragraph-colour);
    font-size: 15px;
    line-height: 1.8;
}

/* Mission and vision cards */

.purpose-card {
    position: relative;
    height: 100%;
    min-height: 510px;
    padding: 40px 36px;
    border-radius: 20px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.purpose-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 55px rgba(8, 38, 79, 0.14);
}

.mission-card {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--dark-blue),
            var(--primary-blue)
        );
}

.vision-card {
    background-color: #ffffff;
    border: 1px solid var(--border-colour);
}

/* Card top */

.purpose-card-top {
    margin-bottom: 38px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.purpose-icon {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    font-size: 27px;
}

.mission-card .purpose-icon {
    color: #ffffff;
    background-color: var(--green);
}

.vision-card .purpose-icon {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--secondary-blue),
            var(--primary-blue)
        );
}

.purpose-number {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.mission-card .purpose-number {
    color: rgba(255, 255, 255, 0.45);
}

.vision-card .purpose-number {
    color: #a8b7c6;
}

/* Card content */

.purpose-label {
    display: block;
    margin-bottom: 12px;
    color: var(--secondary-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.mission-card .purpose-label {
    color: #83ddff;
}

.purpose-card h3 {
    max-width: 500px;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.3;
}

.mission-card h3 {
    color: #ffffff;
}

.vision-card h3 {
    color: var(--dark-blue);
}

.purpose-card > p {
    margin-bottom: 28px;
    font-size: 15px;
    line-height: 1.8;
}

.mission-card > p {
    color: #caddec;
}

.vision-card > p {
    color: var(--paragraph-colour);
}

/* Mission and vision points */

.purpose-points {
    padding-top: 25px;
    display: grid;
    gap: 14px;
    border-top: 1px solid;
}

.mission-card .purpose-points {
    border-color: rgba(255, 255, 255, 0.14);
}

.vision-card .purpose-points {
    border-color: var(--border-colour);
}

.purpose-points div {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 13px;
    font-weight: 700;
}

.purpose-points i {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #ffffff;
    background-color: var(--green);
    border-radius: 50%;
    font-size: 10px;
}

.mission-card .purpose-points div {
    color: #e5f1f8;
}

.vision-card .purpose-points div {
    color: var(--text-colour);
}

/* ==================================
   MISSION AND VISION TABLET
================================== */

@media screen and (max-width: 991px) {
    .mission-vision-section {
        padding: 80px 0;
    }

    .purpose-card {
        min-height: auto;
    }
}

/* ==================================
   MISSION AND VISION MOBILE
================================== */

@media screen and (max-width: 600px) {
    .mission-vision-section {
        padding: 60px 0;
    }

    .mission-vision-section .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .mission-vision-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .mission-vision-heading .about-page-label {
        justify-content: flex-start;
    }

    .mission-vision-heading h2 {
        margin-bottom: 15px;
        font-size: 29px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .mission-vision-heading > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .purpose-card {
        min-height: auto;
        padding: 27px 22px;
        border-radius: 16px;
    }

    .purpose-card-top {
        margin-bottom: 27px;
    }

    .purpose-icon {
        width: 52px;
        height: 52px;
        border-radius: 13px;
        font-size: 22px;
    }

    .purpose-label {
        font-size: 9px;
        letter-spacing: 1.4px;
    }

    .purpose-card h3 {
        margin-bottom: 16px;
        font-size: 21px;
        line-height: 1.35;
    }

    .purpose-card > p {
        margin-bottom: 23px;
        font-size: 14px;
        line-height: 1.7;
    }

    .purpose-points {
        padding-top: 21px;
        gap: 12px;
    }

    .purpose-points div {
        font-size: 12px;
    }
}

@media screen and (max-width: 380px) {
    .mission-vision-heading h2 {
        font-size: 27px;
    }

    .purpose-card h3 {
        font-size: 20px;
    }
}/* ==================================
   LEADERSHIP SECTION
================================== */

.leadership-section {
    position: relative;
    padding: 105px 0;
    background-color: #ffffff;
    overflow: hidden;
}

.leadership-section::before {
    content: "";
    position: absolute;
    right: -220px;
    bottom: -250px;
    width: 550px;
    height: 550px;
    background-color: rgba(56, 167, 223, 0.05);
    border-radius: 50%;
}

/* ==================================
   FOUNDER VISUAL
================================== */

.founder-visual {
    position: relative;
    min-height: 550px;
    padding: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(
            145deg,
            #edf7fc,
            #dff1f9
        );
    border-radius: 24px;
    overflow: hidden;
}

.founder-visual::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 250px;
    height: 250px;
    border: 1px solid rgba(18, 61, 122, 0.12);
    border-radius: 50%;
}

.founder-background-icon {
    position: absolute;
    right: 25px;
    bottom: -30px;
    color: rgba(37, 173, 114, 0.08);
    font-size: 210px;
    transform: rotate(-12deg);
}

.founder-profile-icon {
    width: 250px;
    height: 250px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary-blue),
            var(--secondary-blue)
        );
    border: 12px solid rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    box-shadow: 0 25px 55px rgba(8, 38, 79, 0.18);
    font-size: 95px;
}

/* Founder name */

.founder-name-card {
    position: absolute;
    right: 25px;
    bottom: 30px;
    left: 25px;
    padding: 23px 25px;
    color: #ffffff;
    background-color: var(--dark-blue);
    border-radius: 15px;
    box-shadow: 0 18px 40px rgba(8, 38, 79, 0.18);
}

.founder-name-card > span {
    display: block;
    margin-bottom: 5px;
    color: #7ddaff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.founder-name-card h2 {
    margin: 0 0 8px;
    color: #ffffff;
    font-family: "Montserrat", sans-serif;
    font-size: 25px;
}

.founder-company {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #bcd0e1;
    font-size: 12px;
}

.founder-company i {
    color: var(--secondary-blue);
}

/* Year badge */

.founder-year-badge {
    position: absolute;
    top: 25px;
    left: 22px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    border-radius: 13px;
    box-shadow: 0 15px 35px rgba(8, 38, 79, 0.12);
}

.founder-year-badge > i {
    color: var(--green);
    font-size: 23px;
}

.founder-year-badge small,
.founder-year-badge strong {
    display: block;
}

.founder-year-badge small {
    color: var(--paragraph-colour);
    font-size: 9px;
}

.founder-year-badge strong {
    color: var(--dark-blue);
    font-size: 17px;
}

/* ==================================
   LEADERSHIP CONTENT
================================== */

.leadership-content {
    position: relative;
    z-index: 2;
}

.leadership-content > h2 {
    margin-bottom: 22px;
    color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.leadership-content > h2 span {
    display: block;
    color: var(--secondary-blue);
}

.leadership-content > p {
    margin-bottom: 16px;
    color: var(--paragraph-colour);
    font-size: 15px;
    line-height: 1.8;
}

.leadership-content .leadership-introduction {
    color: var(--text-colour);
    font-size: 18px;
    font-weight: 700;
}

/* Leadership values */

.leadership-values {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 13px;
}

.leadership-value {
    padding: 19px 16px;
    background-color: #f4f9fc;
    border: 1px solid var(--border-colour);
    border-radius: 13px;
}

.leadership-value-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background-color: var(--primary-blue);
    border-radius: 10px;
    font-size: 16px;
}

.leadership-value:nth-child(2) .leadership-value-icon {
    background-color: var(--secondary-blue);
}

.leadership-value:nth-child(3) .leadership-value-icon {
    background-color: var(--green);
}

.leadership-value h3 {
    margin-bottom: 7px;
    color: var(--dark-blue);
    font-size: 14px;
    font-weight: 800;
}

.leadership-value p {
    margin: 0;
    color: var(--paragraph-colour);
    font-size: 11px;
    line-height: 1.6;
}

/* Founder quote */

.founder-quote {
    position: relative;
    margin: 0;
    padding: 25px 25px 25px 64px;
    background-color: var(--dark-blue);
    border-left: 4px solid var(--green);
    border-radius: 0 14px 14px 0;
}

.founder-quote > i {
    position: absolute;
    top: 27px;
    left: 23px;
    color: var(--secondary-blue);
    font-size: 23px;
}

.founder-quote p {
    margin-bottom: 9px;
    color: #d5e4ef;
    font-size: 13px;
    font-style: italic;
    line-height: 1.7;
}

.founder-quote cite {
    color: #ffffff;
    font-size: 11px;
    font-style: normal;
    font-weight: 800;
}

/* ==================================
   LEADERSHIP TABLET
================================== */

@media screen and (max-width: 991px) {
    .leadership-section {
        padding: 80px 0;
    }

    .founder-visual {
        max-width: 620px;
        margin: 0 auto;
    }
}

/* ==================================
   LEADERSHIP MOBILE
================================== */

@media screen and (max-width: 600px) {
    .leadership-section {
        padding: 60px 0;
    }

    .leadership-section .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .founder-visual {
        min-height: 410px;
        padding: 20px;
        border-radius: 17px;
    }

    .founder-profile-icon {
        width: 190px;
        height: 190px;
        border-width: 8px;
        font-size: 70px;
    }

    .founder-year-badge {
        top: 13px;
        left: 10px;
        padding: 10px 12px;
    }

    .founder-year-badge > i {
        font-size: 18px;
    }

    .founder-year-badge small {
        font-size: 8px;
    }

    .founder-year-badge strong {
        font-size: 14px;
    }

    .founder-name-card {
        right: 12px;
        bottom: 13px;
        left: 12px;
        padding: 18px;
    }

    .founder-name-card > span {
        font-size: 8px;
    }

    .founder-name-card h2 {
        font-size: 20px;
    }

    .founder-company {
        font-size: 10px;
    }

    .leadership-content > h2 {
        margin-bottom: 18px;
        font-size: 29px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .leadership-content .leadership-introduction {
        font-size: 16px;
        line-height: 1.6;
    }

    .leadership-content > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .leadership-values {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .leadership-value {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px;
    }

    .leadership-value-icon {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .founder-quote {
        padding: 22px 18px 22px 51px;
    }

    .founder-quote > i {
        top: 23px;
        left: 18px;
        font-size: 19px;
    }

    .founder-quote p {
        font-size: 12px;
    }
}/* ==================================
   COMPANY VALUES SECTION
================================== */

.company-values-section {
    position: relative;
    padding: 105px 0;
    background-color: #f3f8fb;
    overflow: hidden;
}

.company-values-section::before {
    content: "";
    position: absolute;
    top: -200px;
    left: -180px;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(56, 167, 223, 0.12);
    border-radius: 50%;
}

.company-values-section::after {
    content: "";
    position: absolute;
    right: -180px;
    bottom: -240px;
    width: 500px;
    height: 500px;
    background-color: rgba(37, 173, 114, 0.04);
    border-radius: 50%;
}

/* Section heading */

.company-values-heading {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.company-values-heading .about-page-label {
    justify-content: center;
}

.company-values-heading h2 {
    margin-bottom: 18px;
    color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 4.5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.company-values-heading h2 span {
    display: block;
    color: var(--secondary-blue);
}

.company-values-heading > p {
    max-width: 680px;
    margin: 0 auto;
    color: var(--paragraph-colour);
    font-size: 15px;
    line-height: 1.8;
}

/* Value cards */

.company-value-card {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 300px;
    padding: 30px 27px;
    background-color: #ffffff;
    border: 1px solid var(--border-colour);
    border-radius: 17px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.company-value-card::after {
    content: "";
    position: absolute;
    right: -55px;
    bottom: -65px;
    width: 135px;
    height: 135px;
    background-color: rgba(56, 167, 223, 0.05);
    border-radius: 50%;
}

.company-value-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 20px 45px rgba(8, 38, 79, 0.1);
    transform: translateY(-7px);
}

.featured-value-card {
    color: #ffffff;
    background:
        linear-gradient(
            145deg,
            var(--primary-blue),
            var(--secondary-blue)
        );
    border-color: transparent;
}

.featured-value-card::after {
    background-color: rgba(255, 255, 255, 0.08);
}

/* Value card top */

.value-card-top {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.company-value-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    color: #ffffff;
    background-color: var(--primary-blue);
    border-radius: 14px;
    font-size: 23px;
}

.company-value-card:nth-child(even) .company-value-icon {
    background-color: var(--green);
}

.featured-value-card .company-value-icon {
    color: var(--green);
    background-color: #ffffff;
}

.value-card-top > span {
    color: #a4b3c2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.featured-value-card .value-card-top > span {
    color: rgba(255, 255, 255, 0.6);
}

/* Value content */

.company-value-card h3 {
    position: relative;
    z-index: 2;
    margin-bottom: 13px;
    color: var(--dark-blue);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.4;
}

.company-value-card > p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--paragraph-colour);
    font-size: 13px;
    line-height: 1.75;
}

.featured-value-card h3 {
    color: #ffffff;
}

.featured-value-card > p {
    color: #e2f4fc;
}

/* ==================================
   COMPANY VALUES TABLET
================================== */

@media screen and (max-width: 991px) {
    .company-values-section {
        padding: 80px 0;
    }

    .company-value-card {
        min-height: 280px;
    }
}

/* ==================================
   COMPANY VALUES MOBILE
================================== */

@media screen and (max-width: 600px) {
    .company-values-section {
        padding: 60px 0;
    }

    .company-values-section .container {
        padding-right: 18px;
        padding-left: 18px;
    }

    .company-values-heading {
        margin-bottom: 32px;
        text-align: left;
    }

    .company-values-heading .about-page-label {
        justify-content: flex-start;
    }

    .company-values-heading h2 {
        margin-bottom: 15px;
        font-size: 29px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .company-values-heading > p {
        font-size: 14px;
        line-height: 1.7;
    }

    .company-value-card {
        min-height: auto;
        padding: 25px 22px;
        border-radius: 15px;
    }

    .value-card-top {
        margin-bottom: 23px;
    }

    .company-value-icon {
        width: 49px;
        height: 49px;
        border-radius: 12px;
        font-size: 19px;
    }

    .company-value-card h3 {
        margin-bottom: 10px;
        font-size: 16px;
    }

    .company-value-card > p {
        font-size: 13px;
        line-height: 1.65;
    }
}

@media screen and (max-width: 380px) {
    .company-values-heading h2 {
        font-size: 27px;
    }
}/* ==================================
   MODERN PROFESSIONAL SERVICES PAGE
================================== */

.modern-services-hero {
    position: relative;
    padding: 105px 0;
    color: #fff;
    background: linear-gradient(125deg, #061f43, #123d7a 55%, #1887c6);
    overflow: hidden;
}

.services-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
}

.service-page-label {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.service-page-label span {
    width: 28px;
    height: 3px;
    background: var(--secondary-blue);
    border-radius: 5px;
}

.modern-services-hero .service-page-label {
    color: #b9eaff;
}

.modern-services-hero .service-page-label span {
    background: #b9eaff;
}

.modern-services-hero h1 {
    max-width: 800px;
    margin-bottom: 22px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(44px, 5vw, 68px);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -3px;
}

.modern-services-hero h1 span {
    display: block;
    color: #70d4ff;
}

.modern-services-hero p {
    max-width: 680px;
    margin-bottom: 30px;
    color: #d3e5f2;
    font-size: 16px;
    line-height: 1.75;
}

.modern-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.modern-primary-button,
.modern-outline-button {
    min-height: 52px;
    padding: 13px 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
}

.modern-primary-button {
    color: var(--dark-blue);
    background: #fff;
}

.modern-outline-button {
    color: #fff;
    border: 1px solid rgba(255,255,255,.3);
}

/* Hero panel */

.services-hero-panel {
    padding: 33px 30px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.services-hero-panel-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 24px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 15px;
    font-size: 27px;
}

.services-hero-panel > span {
    color: #7edcff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.services-hero-panel h2 {
    margin: 9px 0 23px;
    color: #fff;
    font-size: 21px;
    line-height: 1.45;
}

.hero-process-list {
    display: grid;
    gap: 10px;
}

.hero-process-list div {
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 13px;
    background: rgba(255,255,255,.07);
    border-radius: 9px;
}

.hero-process-list strong {
    color: #70d4ff;
    font-size: 10px;
}

.hero-process-list span {
    color: #d8e9f4;
    font-size: 12px;
}

/* Quick navigation */

.service-navigation {
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid var(--border-colour);
}

.service-navigation-inner {
    display: flex;
    align-items: center;
    gap: 22px;
}

.service-navigation-inner > span {
    flex-shrink: 0;
    color: var(--dark-blue);
    font-size: 12px;
    font-weight: 800;
}

.service-navigation-links {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    scrollbar-width: none;
}

.service-navigation-links::-webkit-scrollbar {
    display: none;
}

.service-navigation-links a {
    flex-shrink: 0;
    padding: 8px 13px;
    color: var(--primary-blue);
    background: #edf7fc;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
}

/* Complete services */

.complete-services {
    padding: 95px 0;
    background: #f4f9fc;
}

.complete-services-heading {
    max-width: 750px;
    margin-bottom: 45px;
}

.complete-services-heading h2 {
    margin-bottom: 16px;
    color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 4vw, 54px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.complete-services-heading h2 span {
    display: block;
    color: var(--secondary-blue);
}

.complete-services-heading p {
    color: var(--paragraph-colour);
    font-size: 15px;
    line-height: 1.75;
}

.complete-service-card {
    margin-bottom: 28px;
    background: #fff;
    border: 1px solid var(--border-colour);
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(8,38,79,.06);
    overflow: hidden;
}

.complete-service-visual {
    position: relative;
    height: 100%;
    min-height: 430px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    overflow: hidden;
}

.complete-service-visual::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 240px;
    height: 240px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 50%;
}

.blue-visual {
    background: linear-gradient(145deg, #123d7a, #216eaa);
}

.sky-visual {
    background: linear-gradient(145deg, #1594cf, #42b8e9);
}

.green-visual {
    background: linear-gradient(145deg, #10895d, #31b47d);
}

.navy-visual {
    background: linear-gradient(145deg, #061f43, #123d7a);
}

.installation-visual {
    background: linear-gradient(145deg, #17699d, #22a88d);
}

.service-large-number {
    position: absolute;
    top: 26px;
    right: 28px;
    color: rgba(255,255,255,.35);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
}

.complete-service-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 25px;
    display: grid;
    place-items: center;
    color: var(--primary-blue);
    background: #fff;
    border-radius: 17px;
    font-size: 29px;
}

.complete-service-visual > span {
    margin-bottom: 7px;
    color: #d5f2ff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.complete-service-visual h3 {
    margin: 0;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
}

.complete-service-content {
    height: 100%;
    padding: 48px 43px;
}

.service-category {
    display: block;
    margin-bottom: 10px;
    color: var(--secondary-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.complete-service-content h2 {
    margin-bottom: 15px;
    color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-size: 27px;
    line-height: 1.3;
}

.complete-service-content > p {
    color: var(--paragraph-colour);
    font-size: 14px;
    line-height: 1.75;
}

.service-application-grid {
    margin: 25px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
}

.service-application-grid div {
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #f3f8fb;
    border-radius: 9px;
}

.service-application-grid i {
    color: var(--green);
    font-size: 15px;
}

.service-application-grid span {
    color: var(--text-colour);
    font-size: 11px;
    font-weight: 700;
}

.complete-service-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-blue);
    font-size: 12px;
    font-weight: 800;
}

/* Benefits */

.service-benefits {
    padding: 80px 0;
    background: #fff;
}

.service-benefits-heading {
    margin-bottom: 35px;
}

.service-benefits-heading h2 {
    color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-size: 38px;
    font-weight: 800;
}

.service-benefits-heading h2 span {
    color: var(--secondary-blue);
}

.service-benefit-card {
    height: 100%;
    padding: 25px 20px;
    background: #f4f9fc;
    border-radius: 14px;
}

.service-benefit-card > i {
    margin-bottom: 16px;
    color: var(--green);
    font-size: 24px;
}

.service-benefit-card h3 {
    color: var(--dark-blue);
    font-size: 15px;
    font-weight: 800;
}

.service-benefit-card p {
    margin: 0;
    color: var(--paragraph-colour);
    font-size: 11px;
}

/* CTA */

.professional-services-cta {
    padding: 70px 0;
    background: var(--dark-blue);
}

.professional-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.professional-cta-inner > div > span {
    color: var(--secondary-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.professional-cta-inner h2 {
    max-width: 650px;
    margin: 8px 0 0;
    color: #fff;
    font-size: 28px;
    line-height: 1.35;
}

.professional-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.professional-cta-button,
.professional-whatsapp-button {
    min-height: 50px;
    padding: 13px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

.professional-cta-button {
    color: var(--dark-blue);
    background: #fff;
}

.professional-whatsapp-button {
    color: #fff;
    background: var(--green);
}

/* ==================================
   SERVICES MOBILE
================================== */

@media screen and (max-width: 767px) {
    .modern-services-hero {
        padding: 58px 0;
    }

    .modern-services-hero h1 {
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .modern-services-hero p {
        font-size: 14px;
        line-height: 1.65;
    }

    .modern-hero-buttons {
        display: grid;
    }

    .modern-primary-button,
    .modern-outline-button {
        width: 100%;
    }

    .services-hero-panel {
        padding: 25px 21px;
    }

    .services-hero-panel h2 {
        font-size: 18px;
    }

    .service-navigation-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 9px;
    }

    .complete-services {
        padding: 60px 0;
    }

    .complete-services-heading {
        margin-bottom: 30px;
    }

    .complete-services-heading h2 {
        font-size: 29px;
        letter-spacing: -1px;
    }

    .complete-services-heading p {
        font-size: 14px;
    }

    .complete-service-card {
        margin-bottom: 20px;
        border-radius: 16px;
    }

    .complete-service-visual {
        min-height: 245px;
        padding: 25px 22px;
    }

    .complete-service-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
        font-size: 23px;
    }

    .complete-service-visual h3 {
        font-size: 21px;
    }

    .complete-service-content {
        padding: 28px 22px;
    }

    .complete-service-content h2 {
        font-size: 20px;
        line-height: 1.35;
    }

    .complete-service-content > p {
        font-size: 13px;
        line-height: 1.7;
    }

    .service-application-grid {
        grid-template-columns: 1fr;
    }

    .service-benefits {
        padding: 60px 0;
    }

    .service-benefits-heading h2 {
        font-size: 27px;
    }

    .service-benefit-card {
        padding: 20px 15px;
    }

    .service-benefit-card h3 {
        font-size: 13px;
    }

    .professional-services-cta {
        padding: 55px 0;
    }

    .professional-cta-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .professional-cta-inner h2 {
        font-size: 23px;
    }

    .professional-cta-actions {
        width: 100%;
        display: grid;
    }

    .professional-cta-button,
    .professional-whatsapp-button {
        width: 100%;
    }
}/* ==================================
   MODERN CONTACT PAGE
================================== */

.modern-contact-hero {
    position: relative;
    padding: 100px 0;
    color: #fff;
    background: linear-gradient(125deg, #061f43, #123d7a 55%, #1887c6);
    overflow: hidden;
}

.contact-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 48px 48px;
}

.contact-page-label {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.contact-page-label span {
    width: 28px;
    height: 3px;
    background: var(--secondary-blue);
    border-radius: 5px;
}

.modern-contact-hero .contact-page-label {
    color: #b9eaff;
}

.modern-contact-hero .contact-page-label span {
    background: #b9eaff;
}

.modern-contact-hero h1 {
    max-width: 810px;
    margin-bottom: 20px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(43px, 5vw, 67px);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -3px;
}

.modern-contact-hero h1 span {
    display: block;
    color: #72d7ff;
}

.modern-contact-hero p {
    max-width: 680px;
    margin-bottom: 29px;
    color: #d3e5f2;
    font-size: 15px;
    line-height: 1.75;
}

.contact-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.contact-hero-primary,
.contact-hero-whatsapp {
    min-height: 51px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
}

.contact-hero-primary {
    color: var(--dark-blue);
    background: #fff;
}

.contact-hero-whatsapp {
    color: #fff;
    background: var(--green);
}

/* Hero panel */

.contact-hero-panel {
    padding: 32px 29px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 19px;
    backdrop-filter: blur(10px);
}

.contact-panel-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 23px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--green);
    border-radius: 15px;
    font-size: 25px;
}

.contact-hero-panel > span {
    color: #7edcff;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-hero-panel h2 {
    margin: 8px 0 22px;
    color: #fff;
    font-size: 20px;
    line-height: 1.45;
}

.contact-panel-point {
    margin-top: 10px;
    padding: 11px 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    color: #d9eaf4;
    background: rgba(255,255,255,.07);
    border-radius: 8px;
    font-size: 12px;
}

.contact-panel-point i {
    color: #69ddb0;
}

/* Contact cards */

.contact-information {
    position: relative;
    z-index: 5;
    margin-top: -38px;
}

.contact-information-card {
    position: relative;
    height: 100%;
    min-height: 145px;
    padding: 24px 21px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: inherit;
    background: #fff;
    border: 1px solid var(--border-colour);
    border-radius: 15px;
    box-shadow: 0 15px 38px rgba(8,38,79,.1);
}

.contact-information-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--primary-blue);
    border-radius: 13px;
    font-size: 19px;
}

.whatsapp-card .contact-information-icon {
    background: var(--green);
}

.location-icon {
    background: var(--secondary-blue);
}

.contact-information-card span {
    color: var(--secondary-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.contact-information-card h2 {
    margin: 4px 0;
    color: var(--dark-blue);
    font-size: 16px;
    font-weight: 800;
}

.contact-information-card p {
    margin: 0;
    color: var(--paragraph-colour);
    font-size: 11px;
}

.contact-card-arrow {
    margin-left: auto;
    color: var(--secondary-blue);
}

/* Form section */

.contact-form-section {
    padding: 95px 0;
    background: #f4f9fc;
}

.contact-form-introduction h2 {
    margin-bottom: 18px;
    color: var(--dark-blue);
    font-family: "Montserrat", sans-serif;
    font-size: clamp(37px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
}

.contact-form-introduction h2 span {
    display: block;
    color: var(--secondary-blue);
}

.contact-form-introduction > p {
    color: var(--paragraph-colour);
    font-size: 14px;
    line-height: 1.75;
}

.contact-help-list {
    margin-top: 28px;
    display: grid;
    gap: 11px;
}

.contact-help-list div {
    padding: 13px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border-colour);
    border-radius: 9px;
}

.contact-help-list i {
    width: 25px;
    color: var(--green);
    text-align: center;
}

.contact-help-list span {
    color: var(--text-colour);
    font-size: 12px;
    font-weight: 700;
}

/* Contact form */

.modern-contact-form {
    padding: 38px 34px;
    background: #fff;
    border: 1px solid var(--border-colour);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(8,38,79,.08);
}

.contact-form-heading {
    margin-bottom: 27px;
}

.contact-form-heading > span {
    color: var(--secondary-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-form-heading h2 {
    margin: 6px 0;
    color: var(--dark-blue);
    font-size: 24px;
    font-weight: 800;
}

.contact-form-heading p {
    margin: 0;
    color: var(--paragraph-colour);
    font-size: 11px;
}

.modern-contact-form label {
    display: block;
    margin-bottom: 7px;
    color: var(--dark-blue);
    font-size: 11px;
    font-weight: 800;
}

.contact-input-group {
    position: relative;
}

.contact-input-group > i {
    position: absolute;
    top: 17px;
    left: 15px;
    color: var(--secondary-blue);
    font-size: 13px;
    pointer-events: none;
}

.contact-input-group input,
.contact-input-group select,
.contact-input-group textarea {
    width: 100%;
    min-height: 48px;
    padding: 12px 14px 12px 42px;
    color: var(--text-colour);
    background: #f6f9fb;
    border: 1px solid var(--border-colour);
    border-radius: 8px;
    outline: none;
    font-family: inherit;
    font-size: 12px;
    transition: .25s ease;
}

.contact-input-group textarea {
    min-height: 125px;
    resize: vertical;
}

.contact-input-group input:focus,
.contact-input-group select:focus,
.contact-input-group textarea:focus {
    background: #fff;
    border-color: var(--secondary-blue);
    box-shadow: 0 0 0 3px rgba(56,167,223,.12);
}

.contact-submit-button {
    width: 100%;
    min-height: 53px;
    padding: 13px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    background: var(--green);
    border: 0;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 800;
}

/* Bottom CTA */

.contact-bottom-cta {
    padding: 65px 0;
    background: var(--dark-blue);
}

.contact-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.contact-bottom-inner span {
    color: var(--secondary-blue);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.contact-bottom-inner h2 {
    max-width: 650px;
    margin: 7px 0 0;
    color: #fff;
    font-size: 27px;
    line-height: 1.35;
}

.contact-quote-button {
    min-height: 50px;
    padding: 13px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    color: var(--dark-blue);
    background: #fff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}

/* Mobile */

@media screen and (max-width: 767px) {
    .modern-contact-hero {
        padding: 58px 0 78px;
    }

    .modern-contact-hero h1 {
        font-size: 30px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .modern-contact-hero p {
        font-size: 14px;
        line-height: 1.65;
    }

    .contact-hero-actions {
        display: grid;
    }

    .contact-hero-primary,
    .contact-hero-whatsapp {
        width: 100%;
    }

    .contact-hero-panel {
        padding: 25px 21px;
    }

    .contact-hero-panel h2 {
        font-size: 17px;
    }

    .contact-information {
        margin-top: -28px;
    }

    .contact-information-card {
        min-height: 120px;
        padding: 20px 17px;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-introduction h2 {
        font-size: 29px;
        letter-spacing: -1px;
    }

    .contact-form-introduction > p {
        font-size: 13px;
    }

    .modern-contact-form {
        padding: 27px 20px;
        border-radius: 16px;
    }

    .contact-form-heading h2 {
        font-size: 21px;
    }

    .modern-contact-form label {
        font-size: 10px;
    }

    .contact-input-group input,
    .contact-input-group select,
    .contact-input-group textarea {
        font-size: 12px;
    }

    .contact-bottom-cta {
        padding: 52px 0;
    }

    .contact-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 23px;
    }

    .contact-bottom-inner h2 {
        font-size: 22px;
    }

    .contact-quote-button {
        width: 100%;
    }
}
/* ============================================================
   FINAL MODERN HOME PAGE REDESIGN
   These rules intentionally override the earlier Home styles.
============================================================ */

/* Hero */
.home-hero{min-height:auto;padding:0;color:#fff;background:linear-gradient(125deg,#061f43 0%,#123d7a 58%,#1887c6 100%)}
.home-hero::before{top:-220px;right:-130px;width:600px;height:600px;background:radial-gradient(circle,rgba(56,167,223,.35),transparent 68%)}
.home-hero .hero-background-pattern{background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:48px 48px}
.home-hero .hero-container{min-height:690px;padding:88px 0;gap:65px}
.home-hero .hero-small-heading{color:#b9eaff;font-size:11px;letter-spacing:1.6px}
.home-hero .hero-small-line{background:#b9eaff}
.home-hero .hero-content h1{max-width:750px;margin-bottom:22px;color:#fff;font-size:clamp(44px,5vw,68px);line-height:1.06;letter-spacing:-3px}
.home-hero .hero-content h1 span{color:#70d4ff}
.home-hero .hero-description{max-width:650px;margin-bottom:30px;color:#d3e5f2;font-size:15px;line-height:1.75}
.home-hero .hero-primary-button{color:#08264f;background:#fff;box-shadow:0 14px 28px rgba(0,0,0,.16)}
.home-hero .hero-primary-button:hover{color:#08264f;background:#e9f8ff}
.home-hero .hero-secondary-button{color:#fff;background:transparent;border-color:rgba(255,255,255,.3)}
.home-hero .hero-secondary-button:hover{color:#fff;background:rgba(255,255,255,.1)}
.home-hero .hero-highlight{border-color:rgba(255,255,255,.18)}
.home-hero .hero-highlight strong{color:#fff;font-size:15px}
.home-hero .hero-highlight span{color:#b9ccdc;font-size:10px}
.home-hero .hero-main-card{background:linear-gradient(145deg,#fff,#e7f6fc);box-shadow:0 28px 60px rgba(0,0,0,.2)}
.home-hero .recycle-symbol{color:#25ad72}
.home-hero .hero-main-card span{color:#397399}
.home-hero .hero-main-card strong{color:#08264f;font-size:21px}
.home-hero .hero-circle{border-color:rgba(255,255,255,.22)}

/* About introduction */
.home-about{padding:95px 0;background:#fff}
.home-about-container{align-items:center;gap:75px}
.home-about-heading h2{font-size:clamp(38px,4vw,54px);line-height:1.1}
.home-about-content{padding:34px;background:#f4f9fc;border:1px solid #dce5ee;border-top:4px solid #38a7df;border-radius:0 17px 17px 0}
.home-about-content .home-about-lead{font-size:17px;line-height:1.65}
.home-about-content>p{font-size:14px;line-height:1.75}
.about-feature{padding:18px;background:#fff;border-radius:12px}
.about-feature h3{font-size:13px}
.about-feature p{font-size:11px}

/* Product cards */
.home-services{padding:95px 0;background:#f3f8fb;color:#17283f}
.home-services::before{background:rgba(56,167,223,.05)}
.home-services .services-label{color:#38a7df}
.home-services .services-heading h2{color:#08264f;font-size:clamp(38px,4vw,54px)}
.home-services .services-heading p{color:#5b6d82;font-size:14px}
.home-services .view-services-link{color:#123d7a}
.home-services .services-grid{gap:18px}
.home-services .service-card{min-height:360px;padding:28px 24px;color:#17283f;background:#fff;border:1px solid #dce5ee;border-radius:17px;box-shadow:0 12px 35px rgba(8,38,79,.05)}
.home-services .service-card:hover{background:#fff;border-color:#38a7df;box-shadow:0 20px 45px rgba(8,38,79,.1)}
.home-services .service-card.featured{color:#fff;background:linear-gradient(145deg,#123d7a,#38a7df);border-color:transparent}
.home-services .service-number{color:#a5b4c3}
.home-services .featured .service-number{color:rgba(255,255,255,.55)}
.home-services .service-icon{width:54px;height:54px;margin-bottom:32px;display:grid;place-items:center;color:#fff;background:#25ad72;border-radius:13px;font-size:24px}
.home-services .featured .service-icon{background:rgba(255,255,255,.17)}
.home-services .service-card h3{color:#08264f;font-size:18px}
.home-services .service-card p{color:#5b6d82;font-size:13px;line-height:1.7}
.home-services .service-card a{color:#123d7a;font-size:12px}
.home-services .featured h3,.home-services .featured a{color:#fff}
.home-services .featured p{color:#e1f3fc}
.home-services .services-bottom{border-color:#dce5ee}
.home-services .services-bottom p{color:#5b6d82}
.home-services .services-bottom a{color:#123d7a}

/* Social impact */
.social-impact{padding:95px 0;background:linear-gradient(130deg,#061f43,#123d7a 65%,#176eaa)}
.social-impact-heading h2{font-size:clamp(38px,4vw,54px)}
.social-impact-heading>p{font-size:14px}
.impact-card{min-height:315px;padding:28px 24px}
.impact-card h3{font-size:18px}
.impact-card p{font-size:13px}
.impact-statement-content h3{font-size:16px}

/* Target markets */
.who-we-serve{padding:95px 0;background:#fff}
.serve-heading h2{font-size:clamp(38px,4vw,54px)}
.serve-heading>p{font-size:14px}
.serve-card{min-height:275px;padding:27px 24px;background:#f4f9fc}
.serve-card h3{font-size:16px}
.serve-card p{font-size:13px}

/* CTA */
.home-cta{padding:78px 0;background:linear-gradient(120deg,#061f43,#123d7a 58%,#1887c6)}
.home-cta-content h2{font-size:clamp(36px,4vw,52px)}
.home-cta-content p{font-size:14px}
.home-cta-actions{padding:29px;border-radius:17px}

/* Modern mobile sizing */
@media screen and (max-width:767px){
  .home-hero .hero-container{min-height:auto;width:calc(100% - 30px);padding:58px 0 48px;gap:20px}
  .home-hero .hero-small-heading{margin-bottom:14px;font-size:9px;letter-spacing:1.2px}
  .home-hero .hero-content h1{margin-bottom:17px;font-size:30px;line-height:1.15;letter-spacing:-1px}
  .home-hero .hero-description{margin-bottom:24px;font-size:14px;line-height:1.65}
  .home-hero .hero-button{min-height:49px;padding:12px 16px;font-size:12px}
  .home-hero .hero-highlights{margin-top:32px}
  .home-hero .hero-highlight{padding:0 9px}
  .home-hero .hero-highlight strong{font-size:12px}
  .home-hero .hero-highlight span{font-size:8px}
  .home-hero .hero-visual{height:310px}
  .home-hero .hero-circle-large{width:280px;height:280px}
  .home-hero .hero-circle-small{width:195px;height:195px;right:48px}
  .home-hero .hero-main-card{top:62px;right:38px;bottom:36px;left:38px}
  .home-hero .recycle-symbol{font-size:52px}
  .home-hero .hero-main-card strong{font-size:15px}
  .home-hero .hero-main-card span{font-size:8px}
  .home-hero .hero-floating-card{padding:8px}
  .home-hero .hero-floating-card p{font-size:8px}
  .home-hero .hero-green-badge{width:82px;height:82px;font-size:7px}

  .home-about,.home-services,.social-impact,.who-we-serve{padding:60px 0}
  .home-about-container,.services-container,.social-impact-container,.serve-container,.home-cta-container{width:calc(100% - 30px)}
  .home-about-heading h2,.home-services .services-heading h2,.social-impact-heading h2,.serve-heading h2,.home-cta-content h2{font-size:29px;line-height:1.15;letter-spacing:-1px}
  .home-about-content{padding:24px 20px}
  .home-about-content .home-about-lead{font-size:15px}
  .home-about-content>p,.home-services .services-heading p,.social-impact-heading>p,.serve-heading>p,.home-cta-content p{font-size:13px;line-height:1.7}
  .home-services .service-card{min-height:auto;padding:24px 21px}
  .home-services .service-card h3{font-size:16px}
  .home-services .service-card p{font-size:12px}
  .impact-card{min-height:auto;padding:25px 21px}
  .impact-card h3{font-size:16px}
  .impact-card p{font-size:12px}
  .impact-statement{padding:23px 20px}
  .impact-statement-content h3{font-size:14px}
  .serve-card{min-height:auto;padding:24px 21px}
  .serve-card h3{font-size:15px}
  .serve-card p{font-size:12px}
  .home-cta{padding:58px 0}
  .home-cta-actions{padding:23px 19px}
}

@media screen and (max-width:380px){
  .home-hero .hero-content h1{font-size:28px}
  .home-about-heading h2,.home-services .services-heading h2,.social-impact-heading h2,.serve-heading h2,.home-cta-content h2{font-size:27px}
}
