
        /* =====================================================
           ROOT VARIABLES
        ====================================================== */

        :root {

            --navy: #142542;

            --navy-light: #1e3554;

            --green: #6d9617;

            --green-dark: #557800;

            --green-light: #edf5df;

            --cream: #f6f8f3;

            --white: #ffffff;

            --text: #27323a;

            --muted: #707980;

            --border: #e2e8e1;

        }


       



        /* =====================================================
           HERO
        ====================================================== */

        .business-hero {

            min-height: 700px;

            background: var(--navy);

            position: relative;

            overflow: hidden;

        }


        .business-hero::before {

            content: "";

            position: absolute;

            width: 800px;

            height: 800px;

            border: 1px solid rgba(255, 255, 255, .06);

            border-radius: 50%;

            right: -420px;

            top: -300px;

        }


        .business-hero::after {

            content: "";

            position: absolute;

            width: 500px;

            height: 500px;

            background: rgba(109, 150, 23, .08);

            border-radius: 50%;

            left: -300px;

            bottom: -350px;

        }


        .hero-left {

            min-height: 700px;

            display: flex;

            align-items: center;

            position: relative;

            z-index: 2;

        }


        .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-left h1 {

            color: #ffffff;

            font-size: clamp(40px, 5vw, 62px);

            font-weight: 800;

            line-height: 1.1;

            margin-bottom: 25px;

        }


        .hero-left h1 span {

            color: #a2c550;

        }


        .hero-left p {

            color: #bac6d2;

            font-size: 15px;

            line-height: 1.9;

            max-width: 610px;

            margin-bottom: 15px;

        }


        .hero-button {

            display: inline-flex;

            align-items: center;

            gap: 12px;

            margin-top: 20px;

            padding: 15px 27px;

            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 VISUAL
        ====================================================== */

        .hero-visual {

            height: 700px;

            position: relative;

        }


        .hero-main-image {

            position: absolute;

            width: 72%;

            height: 68%;

            object-fit: cover;

            top: 12%;

            right: 5%;

            z-index: 2;

            box-shadow: 0 30px 70px rgba(0, 0, 0, .35);

        }


        .hero-secondary-image {

            position: absolute;

            width: 45%;

            height: 38%;

            object-fit: cover;

            left: 0;

            bottom: 8%;

            z-index: 4;

            border: 8px solid var(--navy);

            box-shadow: 0 20px 50px rgba(0, 0, 0, .3);

        }


        .hero-frame {

            position: absolute;

            width: 72%;

            height: 68%;

            right: 0;

            top: 17%;

            border: 2px solid var(--green);

            z-index: 1;

        }


        .hero-stat {

            position: absolute;

            right: 0;

            bottom: 10%;

            width: 210px;

            padding: 23px;

            background: var(--green);

            color: #ffffff;

            z-index: 5;

        }


        .hero-stat i {

            display: block;

            font-size: 28px;

            margin-bottom: 12px;

        }


        .hero-stat strong {

            font-size: 13px;

            line-height: 1.6;

        }





        /* =====================================================
           SUITABLE FOR
        ====================================================== */

        .suitable-section {

            padding: 110px 0;

            background: var(--cream);

        }


        .section-heading {

            text-align: center;

            max-width: 720px;

            margin: 0 auto 60px;

        }


        .section-heading h2 {

            color: var(--navy);

            font-size: 42px;

            line-height: 1.2;

            font-weight: 800;

        }


        .section-heading h2 span {

            color: var(--green);

        }


        .profession-card {

            position: relative;

            background: #ffffff;

            border: 1px solid var(--border);

            padding: 35px 30px;

            height: 100%;

            transition: .35s;

            overflow: hidden;

        }


        .profession-card::before {

            content: "";

            position: absolute;

            top: 0;

            left: 0;

            width: 5px;

            height: 0;

            background: var(--green);

            transition: .35s;

        }


        .profession-card:hover {

            transform: translateY(-8px);

            box-shadow: 0 20px 45px rgba(20, 37, 66, .1);

        }


        .profession-card:hover::before {

            height: 100%;

        }


        .profession-number {

            font-family: 'Manrope', sans-serif;

            font-size: 35px;

            color: #e6ebdf;

            font-weight: 800;

            margin-bottom: 18px;

        }


        .profession-icon {

            width: 52px;

            height: 52px;

            display: flex;

            align-items: center;

            justify-content: center;

            background: var(--green-light);

            color: var(--green-dark);

            font-size: 22px;

            margin-bottom: 20px;

        }


        .profession-card h3 {

            color: var(--navy);

            font-size: 15px;

            font-weight: 700;

            line-height: 1.5;

        }



        /* =====================================================
           SERVICES SECTION
        ====================================================== */

        .services-section {

            padding: 115px 0;

            background: var(--navy);

            position: relative;

            overflow: hidden;

        }


        .services-section::after {

            content: "";

            position: absolute;

            width: 600px;

            height: 600px;

            border: 1px solid rgba(255, 255, 255, .06);

            border-radius: 50%;

            right: -350px;

            bottom: -350px;

        }


        .services-title {

            position: relative;

            z-index: 2;

            margin-bottom: 60px;

        }


        .services-title .section-label {

            color: #a6c653;

        }


        .services-title h2 {

            color: #ffffff;

            font-size: 42px;

            font-weight: 800;

        }


        .services-title h2 span {

            color: #a6c653;

        }


        .service-row {

            position: relative;

            z-index: 2;

            display: flex;

            align-items: center;

            padding: 27px 0;

            border-top: 1px solid rgba(255, 255, 255, .13);

            transition: .35s;

        }


        .service-row:last-child {

            border-bottom: 1px solid rgba(255, 255, 255, .13);

        }


        .service-row:hover {

            padding-left: 20px;

            background: rgba(109, 150, 23, .08);

        }


        .service-number {

            width: 100px;

            color: #8390a0;

            font-size: 12px;

            font-weight: 700;

        }


        .service-icon {

            width: 55px;

            color: #a5c551;

            font-size: 25px;

        }


        .service-name {

            color: #ffffff;

            font-family: 'Manrope', sans-serif;

            font-size: 17px;

            font-weight: 700;

        }


        .service-arrow {

            margin-left: auto;

            color: #a5c551;

            font-size: 20px;

        }



        /* =====================================================
           ADVANTAGES
        ====================================================== */

        .advantages-section {

            padding: 115px 0;

            background: #ffffff;

        }


        .advantages-content {

            padding-right: 60px;

        }


        .advantages-content h2 {

            color: var(--navy);

            font-size: 42px;

            font-weight: 800;

            line-height: 1.2;

            margin-bottom: 30px;

        }


        .advantages-content h2 span {

            color: var(--green);

        }


        .advantage-item {

            display: flex;

            gap: 18px;

            padding: 18px 0;

            border-bottom: 1px solid var(--border);

        }


        .advantage-check {

            width: 40px;

            height: 40px;

            flex-shrink: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            background: var(--green-light);

            color: var(--green-dark);

            border-radius: 50%;

        }


        .advantage-item span {

            color: var(--navy);

            font-size: 14px;

            font-weight: 600;

            align-self: center;

        }


        .advantages-image {

            position: relative;

        }


        .advantages-image img {

            width: 100%;

            height: 520px;

            object-fit: cover;

        }


        .advantages-box {

            position: absolute;

            left: -30px;

            bottom: 30px;

            width: 260px;

            background: var(--green);

            color: #ffffff;

            padding: 28px;

        }


        .advantages-box i {

            font-size: 30px;

            display: block;

            margin-bottom: 12px;

        }


        .advantages-box strong {

            font-size: 13px;

            line-height: 1.6;

        }










        /* =====================================================
           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-left {

                min-height: auto;

                padding: 90px 0 50px;

            }


            .hero-visual {

                height: 550px;

            }


            .intro-content {

                padding-left: 0;

                margin-top: 60px;

            }


            .advantages-content {

                padding-right: 0;

                margin-bottom: 60px;

            }



        }


        @media(max-width: 767px) {


            .hero-left h1 {

                font-size: 40px;

            }


            .hero-visual {

                height: 450px;

            }


            .hero-main-image,

            .hero-frame {

                width: 84%;

                height: 72%;

            }


            .hero-secondary-image {

                width: 48%;

                height: 35%;

            }


            .hero-stat {

                width: 170px;

                padding: 17px;

            }


            .intro-section,

            .suitable-section,

            .services-section,

            .advantages-section {

                padding: 75px 0;

            }


            .intro-content h2,

            .section-heading h2,

            .services-title h2,

            .advantages-content h2 {

                font-size: 32px;

            }


            .intro-image img,

            .advantages-image img {

                height: 400px;

            }


            .advantages-box {

                left: 10px;

            }


            .service-number {

                width: 55px;

            }


            .service-name {

                font-size: 14px;

            }



        }
