 /* =========================================================
           GLOBAL
        ========================================================= */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
:root {
    --teal-green: #68BDA7;
    --black: #000000;
    --white: #ffffff;
    --text-color: #333333;
    --dark-teal:#113D48;
    --etw-deep:#2f7f6f;
    --body-color:#6E7070;
}
        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;

            font-family: "Inter", sans-serif;

            font-size: 16px;
            line-height: 1.6;

            color: #222;
            background: #fff;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: "Manrope", sans-serif;
        }

        p {
            font-family: "Inter", sans-serif;
            font-size: 16px;
            color:#6E7070;
        }

        a {
            text-decoration: none;
        }
/* =========================================
   HEADER
========================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 9999;

    width: 100%;
    height: 140px;

    background: var(--white);

    display: flex;
    align-items: center;

    overflow: visible;
}


/* =========================================
   GREEN AREA
========================================= */

/*
    THIS IS THE IMPORTANT PART.

    It is NOT border-radius.

    Rectangle:
        width = 380px

    Ellipse:
        width  = 280px
        height = 280px

    The ellipse is positioned so its center is
    exactly on the right edge of the rectangle.

    Therefore:

             top = x 380
                       \
                        \
                         x 520
                        /
                       /
             bottom = x 380
*/

.green-logo-area {
    position: relative;

    width: 380px;
    height: 140px;

    flex-shrink: 0;

    background: var(--teal-green);

    z-index: 2;
}


/*
    THE CURVE
*/

.green-logo-area::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    /*
        Center of ellipse = x 380
        Center vertically = y 70

        Therefore left = 380 - 140 = 240
        top  = 70 - 140  = -70
    */

    left: 240px;
    top: -70px;

    background: var(--teal-green);

    border-radius: 50%;

    z-index: -1;
}


/* =========================================
   LOGO
========================================= */

.logo-link {
    position: absolute;

    left: 110px;
    top: 50%;

    transform: translateY(-50%);

    width: 300px;

    display: block;

    z-index: 5;

    cursor: pointer;
}

.logo-link img {
    display: block;

    width: 100%;
    height: auto;

    cursor: pointer;
}


/* =========================================
   DESKTOP NAV
========================================= */

.desktop-nav {
    height: 100%;

    display: flex;
    align-items: center;

    gap: 44px;

    margin-left: 123px;

    z-index: 10;
}

.desktop-nav a {
    position: relative;

    color: var(--black);

    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;

    text-decoration: none;

    white-space: nowrap;

    cursor: pointer;

    padding: 8px 0;
}


/*
    Small hover effect
*/

.desktop-nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 2px;

    background: var(--teal-green);

    transition: width 0.2s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a:hover {
    color: var(--teal-green);
}


/* =========================================
   HAMBURGER
========================================= */

.hamburger {
    display: none;

    width: 45px;
    height: 45px;

    margin-left: auto;
    margin-right: 25px;

    padding: 8px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    align-items: center;

    gap: 6px;

    z-index: 10001;
}

.hamburger span {
    width: 25px;
    height: 2px;

    background: var(--black);

    display: block;

    transition: 0.3s ease;
}


/* Hamburger → X */

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================
   MOBILE MENU
========================================= */

.mobile-menu {
    display: none;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1200px) {

    .green-logo-area {
        width: 330px;
    }

    .green-logo-area::after {
        width: 240px;
        height: 240px;

        left: 210px;
        top: -50px;
    }

    .logo-link {
        left: 60px;
        width: 240px;
    }

    .desktop-nav {
        margin-left: 90px;
        gap: 28px;
    }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .header {
        height: 80px;
    }


    /* -------------------------------------
       GREEN AREA
    ------------------------------------- */

    .green-logo-area {
        width: 235px;
        height: 80px;
    }

    .green-logo-area::after {
        width: 160px;
        height: 160px;

        /*
            Center = x235
            Center y = 40
        */

        left: 155px;
        top: -40px;
    }


    /* -------------------------------------
       LOGO
    ------------------------------------- */

    .logo-link {
        left: 25px;
        width: 175px;
    }


    /* -------------------------------------
       DESKTOP NAV HIDDEN
    ------------------------------------- */

    .desktop-nav {
        display: none;
    }


    /* -------------------------------------
       HAMBURGER
    ------------------------------------- */

    .hamburger {
        display: flex;
    }


    /* -------------------------------------
       MOBILE MENU
    ------------------------------------- */

    .mobile-menu {
        position: absolute;

        top: 80px;
        left: 0;

        width: 100%;

        display: flex;
        flex-direction: column;

        background: var(--white);

        padding: 10px 25px 25px;

        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.10);

        opacity: 0;
        visibility: hidden;

        transform: translateY(-15px);

        pointer-events: none;

        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    .mobile-menu.active {
        opacity: 1;
        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    .mobile-menu a {
        display: block;

        width: 100%;

        padding: 17px 5px;

        color: var(--black);

        text-decoration: none;

        font-family: "Inter", sans-serif;
        font-size: 16px;

        border-bottom: 1px solid #eeeeee;
    }

    .mobile-menu a:last-child {
        border-bottom: none;
    }
}


/* =========================================
   SMALL PHONE
========================================= */

@media (max-width: 500px) {

    .header {
        height: 70px;
    }

    .green-logo-area {
        width: 205px;
        height: 70px;
    }

    .green-logo-area::after {
        width: 140px;
        height: 140px;

        left: 135px;
        top: -35px;
    }

    .logo-link {
        left: 20px;
        width: 150px;
    }

    .mobile-menu {
        top: 70px;
    }
}

 /* =========================
           HEADER COMMON
        ========================= */
/* =========================
           HEADER
        ========================= */

        body {
            font-family: "Inter", sans-serif !important;
        }

        h1, h2, h3, h4, h5, h6,
        button, .nav a, .navigation a {
            font-family: "Manrope", sans-serif !important;
        }

        p, li, label, input, textarea, select {
            font-family: "Inter", sans-serif !important;
        }

        .site-header {
            width: 100%;
            height:115px;
            background: #ffffff;
            position: relative;
            z-index: 1000;
        }


        /* =========================
           GREEN LOGO BACKGROUND
        ========================= */

        .logo-area {
            position: absolute;
            left: 0;
            top: 0;

            width: 340px;
            height: 116px;

            background: var(--teal-green);

            /*
             * The important part:
             * creates the large curved bottom-right
             * shape visible in your screenshot.
             */
            border-top-right-radius:  82px  108px ;

            display: flex;
            align-items: center;
            justify-content: flex-start;

            padding-left: 12px;

            overflow: hidden;
        }


        /* =========================
           LOGO
        ========================= */

        .logo {
            width: 225px;
            height: auto;
            display: block;
        }


        /* =========================
           DESKTOP NAVIGATION
        ========================= */

        .navigation {
            height: 100%;

            display: flex;
            align-items: center;

            margin-left: 340px;
            padding-left: 44px;
        }

        .navigation ul {
            list-style: none;

            display: flex;
            align-items: center;

            gap: 46px;
        }

        .navigation a {
            position: relative;

            text-decoration: none;
            color: var(--text-color);

            font-family: "Inter", sans-serif;
            font-size: 16px;
            font-weight: 400;

            white-space: nowrap;

            transition: color 0.25s ease;
        }

        .navigation a:hover {
            color: var(--teal-green);
        }


        /* =========================
           MOBILE MENU BUTTON
        ========================= */

        .menu-toggle {
            display: none;

            width: 42px;
            height: 42px;

            border: none;
            background: transparent;

            cursor: pointer;

            position: relative;
            z-index: 1100;
        }

        .menu-toggle span {
            position: absolute;
            left: 8px;

            width: 26px;
            height: 2px;

            background: var(--text-color);

            transition:
                transform 0.3s ease,
                top 0.3s ease,
                opacity 0.3s ease;
        }

        .menu-toggle span:nth-child(1) {
            top: 12px;
        }

        .menu-toggle span:nth-child(2) {
            top: 20px;
        }

        .menu-toggle span:nth-child(3) {
            top: 28px;
        }


        /* =========================
           MOBILE MENU OPEN STATE
        ========================= */

        .menu-toggle.active span:nth-child(1) {
            top: 20px;
            transform: rotate(45deg);
        }

        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active span:nth-child(3) {
            top: 20px;
            transform: rotate(-45deg);
        }


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

        @media (max-width: 900px) {

            :root {
                --header-height: 90px;
            }

            .site-header {
                height: var(--header-height);
            }

            .logo-area {
                width: 265px;
                height: 90px;

                border-bottom-right-radius: 65px 85px;

                padding-left: 10px;
            }

            .logo {
                width: 205px;
            }

            .navigation {
                margin-left: 265px;
                padding-left: 20px;
            }

            .navigation ul {
                gap: 22px;
            }

            .navigation a {
                font-size: 14px;
            }
        }


        /* =========================
           TABLET / MOBILE
        ========================= */

        @media (max-width: 700px) {

            :root {
                --header-height: 78px;
            }

            .site-header {
                height: var(--header-height);
            }

            .logo-area {
                width: 220px;
                height: 78px;

                border-bottom-right-radius: 55px 74px;
            }

            .logo {
                width: 175px;
            }

            .navigation {
                margin-left: 0;
                padding-left: 0;

                justify-content: flex-end;

                padding-right: 15px;
            }

            .navigation ul {
                position: fixed;

                top: 78px;
                left: 0;
                right: 0;

                background: #ffffff;

                flex-direction: column;
                align-items: stretch;

                gap: 0;

                padding: 10px 25px 20px;

                box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);

                /*
                 * Hidden by default
                 */
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px);

                transition:
                    opacity 0.3s ease,
                    transform 0.3s ease,
                    visibility 0.3s ease;
            }

            .navigation ul li {
                width: 100%;
            }

            .navigation a {
                display: block;

                width: 100%;

                padding: 15px 5px;

                font-size: 16px;
            }

            .navigation ul.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
            }

            .menu-toggle {
                display: block;
            }
        }


        /* =========================
           SMALL MOBILE
        ========================= */

        @media (max-width: 450px) {

            .logo-area {
                width: 190px;
                height: 78px;

                border-bottom-right-radius: 48px 74px;
            }

            .logo {
                width: 155px;
            }
        }
/* =========================================
   FOOTER
========================================= */

.site-footer {
    width: 100%;
    background: var(--dark-teal);
    color: #fff;
    box-sizing: border-box;
}


/* =========================================
   MAIN FOOTER
========================================= */

.footer-main {
    width: min(1340px, 100%);
    margin: 0 auto;

    padding: 45px 20px 30px;

    display: grid;
    grid-template-columns: 1.5fr 0.8fr 1.1fr;
    gap: 65px;

    box-sizing: border-box;
}


/* =========================================
   ABOUT
========================================= */

.footer-about {
    max-width: 280px;
}

.footer-logo {
    display: block;
    width: 105px;
    height: auto;
    margin-bottom: 12px;
}

.footer-about p {
    margin: 0 0 15px;
    color: #fff;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 10px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

.download-title {
    display: block;
    color: #fff;
    margin-bottom: 7px;
}

.footer-apps {
    display: flex;
    gap: 8px;
}

.footer-apps img {
    width: 72px;
    height: auto;
    display: block;
}


/* =========================================
   QUICK LINKS
========================================= */

.footer-links h3,
.footer-contact h3 {
    margin: 0 0 14px;

    color: #fff;

    font-size: 16px !important;
    font-weight: 600;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    display: flex;
    align-items: center;
    gap: 7px;

    color: #fff;
    text-decoration: none;
}

.footer-links a span {
    color: var(--teal-green);
}


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

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

.footer-contact > a {
    display: flex;
    align-items: center;
    gap: 9px;

    margin-bottom: 10px;

    color: #fff;
    text-decoration: none;
}

.footer-contact > a span {
    color: var(--teal-green);
}

.footer-contact p {
    margin: 5px 0 0;
    color: #fff;
}


/* =========================================
   GET IN TOUCH
========================================= */

.footer-contact h3 {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.1;
}


/* =========================================
   BOTTOM / COPYRIGHT
========================================= */

.footer-bottom {
    width: min(1080px, 100%);
    margin: 0 auto;

    padding: 18px 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.25);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    box-sizing: border-box;
}

.copyright {
    color: #fff;
}


/* =========================================
   4 IMAGE GRID
========================================= */

.footer-image-grid {
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 30px;
}

.footer-image-grid p {
   color: white;
   width: 100%;
}

.footer-image-grid img {
    display: block;

    width: 80%;
    height: 80%;

    object-fit: cover;
}


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

@media (max-width: 850px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-about {
        max-width: none;
    }

    .footer-contact {
        grid-column: span 2;
    }
}


@media (max-width: 550px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 40px 20px 25px;
    }

    .footer-contact {
        grid-column: auto;
    }

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