
        /* =========================================================
   ROOT
========================================================= */

        :root {
            --navy: #142542;
            --navy-light: #1e3554;
            --green: #6d9617;
            --green-dark: #557800;
            --green-light: #edf5df;
            --cream: #f6f8f3;
            --white: #ffffff;
            --text: #27323a;
            --muted: #707980;
            --border: #e1e7df;
        }


      
        /* =========================================================
   HERO
========================================================= */

        .corporate-hero {
            min-height: 720px;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

            .corporate-hero::before {
                content: "";
                position: absolute;
                width: 700px;
                height: 700px;
                border: 1px solid rgba(255, 255, 255, .07);
                border-radius: 50%;
                right: -350px;
                top: -250px;
            }

            .corporate-hero::after {
                content: "";
                position: absolute;
                width: 450px;
                height: 450px;
                background: rgba(109, 150, 23, .08);
                border-radius: 50%;
                left: -300px;
                bottom: -280px;
            }


        /* =========================================================
   HERO LEFT
========================================================= */

        .hero-content {
            min-height: 720px;
            display: flex;
            align-items: center;
            position: relative;
            z-index: 3;
        }

        .hero-inner {
            max-width: 640px;
        }

        .hero-label {
            display: flex;
            align-items: center;
            gap: 12px;
            color: #a7c65c;
            text-transform: uppercase;
            font-size: 10px;
            letter-spacing: 2px;
            font-weight: 700;
            margin-bottom: 22px;
        }

            .hero-label::before {
                content: "";
                width: 35px;
                height: 2px;
                background: var(--green);
            }

        .hero-content h1 {
            color: #ffffff;
            font-size: clamp(40px, 5vw, 61px);
            line-height: 1.1;
            font-weight: 800;
            margin-bottom: 25px;
        }

            .hero-content h1 span {
                color: #a5c653;
            }

        .hero-content p {
            color: #bac6d2;
            font-size: 15px;
            line-height: 1.9;
            max-width: 600px;
        }

        .hero-button {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 15px 28px;
            margin-top: 20px;
            background: var(--green);
            color: #ffffff;
            font-size: 11px;
            font-weight: 700;
            transition: .3s;
        }

            .hero-button:hover {
                color: #ffffff;
                background: var(--green-dark);
                transform: translateY(-3px);
            }


        /* =========================================================
   HERO CORPORATE IMAGE
========================================================= */

        .hero-corporate-image {
            min-height: 720px;
            position: relative;
            z-index: 2;
        }

            .hero-corporate-image img {
                position: absolute;
                width: 86%;
                height: 78%;
                object-fit: cover;
                top: 11%;
                right: 0;
                filter: saturate(.85);
            }

        .hero-image-overlay {
            position: absolute;
            width: 86%;
            height: 78%;
            top: 16%;
            right: 5%;
            border: 2px solid var(--green);
        }

        .hero-corporate-card {
            position: absolute;
            left: 0;
            bottom: 8%;
            width: 270px;
            background: var(--green);
            color: #ffffff;
            padding: 28px;
            z-index: 5;
            box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
        }

            .hero-corporate-card i {
                font-size: 30px;
                display: block;
                margin-bottom: 15px;
            }

            .hero-corporate-card strong {
                font-size: 13px;
                line-height: 1.7;
            }


        /* =========================================================
   INTRO
========================================================= */

        .intro-section {
            padding: 110px 0;
            background: #ffffff;
        }

        .intro-image {
            position: relative;
        }

            .intro-image img {
                width: 100%;
                height: 510px;
                object-fit: cover;
            }

        .intro-badge {
            position: absolute;
            right: -25px;
            bottom: 35px;
            width: 230px;
            padding: 25px;
            background: var(--navy);
            color: #ffffff;
        }

            .intro-badge span {
                color: #a5c653;
                font-size: 28px;
                font-weight: 800;
                display: block;
            }

            .intro-badge small {
                color: #bdc7d1;
                font-size: 11px;
                line-height: 1.6;
            }

        .intro-content {
            padding-left: 65px;
        }

        .section-label {
            color: var(--green-dark);
            font-size: 10px;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .intro-content h2 {
            color: var(--navy);
            font-size: 40px;
            line-height: 1.2;
            font-weight: 800;
            margin-bottom: 25px;
        }

            .intro-content h2 span {
                color: var(--green);
            }

        .intro-content p {
            color: var(--muted);
            font-size: 14px;
            line-height: 1.9;
        }


        /* =========================================================
   WHO WE SERVE
========================================================= */

        .serve-section {
            padding: 110px 0;
            background: var(--cream);
        }

        .section-heading {
            max-width: 700px;
            margin: 0 auto 65px;
            text-align: center;
        }

            .section-heading h2 {
                color: var(--navy);
                font-size: 42px;
                font-weight: 800;
                line-height: 1.2;
            }

                .section-heading h2 span {
                    color: var(--green);
                }

        .company-card {
            position: relative;
            background: #ffffff;
            border: 1px solid var(--border);
            padding: 32px;
            min-height: 190px;
            transition: .35s;
            overflow: hidden;
        }

            .company-card::after {
                content: "";
                position: absolute;
                right: -35px;
                top: -35px;
                width: 100px;
                height: 100px;
                border-radius: 50%;
                background: var(--green-light);
                transition: .35s;
            }

            .company-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 20px 45px rgba(20, 37, 66, .1);
            }

                .company-card:hover::after {
                    transform: scale(2.5);
                }

        .company-icon {
            position: relative;
            z-index: 2;
            width: 55px;
            height: 55px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--navy);
            color: #ffffff;
            font-size: 23px;
            margin-bottom: 25px;
        }

        .company-card h3 {
            position: relative;
            z-index: 2;
            color: var(--navy);
            font-size: 15px;
            font-weight: 700;
        }


        /* =========================================================
   SERVICES
========================================================= */

        .services-section {
            padding: 115px 0;
            background: #ffffff;
        }

        .services-intro {
            padding-right: 60px;
        }

            .services-intro h2 {
                color: var(--navy);
                font-size: 43px;
                font-weight: 800;
                line-height: 1.2;
            }

                .services-intro h2 span {
                    color: var(--green);
                }

            .services-intro p {
                color: var(--muted);
                font-size: 14px;
                line-height: 1.9;
                margin-top: 20px;
            }

        .service-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .service-card {
            padding: 28px;
            background: var(--cream);
            border-left: 4px solid transparent;
            transition: .35s;
        }

            .service-card:hover {
                border-left-color: var(--green);
                background: var(--green-light);
                transform: translateX(6px);
            }

            .service-card i {
                color: var(--green);
                font-size: 25px;
                display: block;
                margin-bottom: 15px;
            }

            .service-card h4 {
                color: var(--navy);
                font-size: 14px;
                font-weight: 700;
                line-height: 1.5;
            }


        /* =========================================================
   WHY CORPORATE CLIENTS
========================================================= */

        .why-section {
            padding: 115px 0;
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

            .why-section::before {
                content: "";
                position: absolute;
                width: 650px;
                height: 650px;
                border: 1px solid rgba(255, 255, 255, .06);
                border-radius: 50%;
                right: -400px;
                top: -250px;
            }

        .why-content {
            position: relative;
            z-index: 2;
        }

            .why-content .section-label {
                color: #a5c653;
            }

            .why-content h2 {
                color: #ffffff;
                font-size: 43px;
                font-weight: 800;
                line-height: 1.2;
                margin-bottom: 35px;
            }

                .why-content h2 span {
                    color: #a5c653;
                }

        .why-list {
            border-top: 1px solid rgba(255, 255, 255, .13);
        }

        .why-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 22px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .13);
        }

        .why-number {
            color: #78889b;
            font-size: 11px;
            font-weight: 700;
            width: 40px;
        }

        .why-check {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: rgba(109, 150, 23, .15);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #a5c653;
        }

        .why-item span {
            color: #ffffff;
            font-size: 14px;
            font-weight: 600;
        }

        .why-image {
            position: relative;
            min-height: 540px;
        }

        .why-image-main {
            width: 90%;
            height: 470px;
            object-fit: cover;
            position: absolute;
            right: 0;
            top: 0;
        }

        .why-image-small {
            position: absolute;
            width: 50%;
            height: 240px;
            object-fit: cover;
            left: 0;
            bottom: 0;
            border: 8px solid var(--navy);
            z-index: 2;
        }


        /* =========================================================
   CONFIDENTIALITY BOX
========================================================= */

        .confidential-section {
            padding: 85px 0;
            background: var(--cream);
        }

        .confidential-box {
            background: #ffffff;
            padding: 55px;
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .confidential-icon {
            flex-shrink: 0;
            width: 75px;
            height: 75px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--green);
            color: #ffffff;
            font-size: 32px;
        }

        .confidential-box h3 {
            color: var(--navy);
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .confidential-box p {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.8;
            margin: 0;
        }





        /* =========================================================
   RESPONSIVE
========================================================= */

        @media(max-width: 991px) {

            .header-contact {
                display: none;
            }

            .navbar-nav {
                background: #ffffff;
                padding: 15px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
            }

            .hero-content {
                min-height: auto;
                padding: 90px 0 50px;
            }

            .hero-corporate-image {
                min-height: 550px;
            }

            .intro-content {
                padding-left: 0;
                margin-top: 60px;
            }

            .services-intro {
                padding-right: 0;
                margin-bottom: 50px;
            }

            .why-image {
                margin-top: 60px;
            }


        }


        @media(max-width: 767px) {

            .hero-content h1 {
                font-size: 40px;
            }

            .hero-corporate-image {
                min-height: 450px;
            }

                .hero-corporate-image img,
                .hero-image-overlay {
                    width: 85%;
                    height: 72%;
                }

            .hero-corporate-card {
                width: 210px;
                padding: 20px;
            }

            .intro-section,
            .serve-section,
            .services-section,
            .why-section {
                padding: 75px 0;
            }

            .intro-content h2,
            .section-heading h2,
            .services-intro h2,
            .why-content h2 {
                font-size: 32px;
            }

            .intro-image img {
                height: 400px;
            }

            .intro-badge {
                right: 10px;
            }

            .service-cards {
                grid-template-columns: 1fr;
            }

            .why-image-main {
                width: 90%;
                height: 400px;
            }

            .why-image-small {
                height: 180px;
            }


        }
