  :root {
            --color-green-dark: #1B3A3A;
            --color-green: #0c55b6;
            --color-green-light: #A7D9A7;
            --color-accent: #e4f3ff;
            --color-accent-light: #F7F8F8;
            --color-yellow: #F0C330;
            --color-gray-light: #E9ECEF;
            --color-gray-dark: #343A40;
        }

        body {
            /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
            background-color: #fff;
            color: var(--color-green-dark);
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--color-green-dark);
        }

        .navbar-nav .nav-link {
            color: var(--color-green-dark);
            font-weight: 500;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link:focus {
            color: var(--color-green);
        }

        header .btn-primary {
            background-color: var(--color-green);
            border: none;
            font-weight: 600;
            padding: 0.55rem 1.5rem;
            font-size: 1rem;
            border-radius: 50px;
            transition: background-color 0.3s;
        }

        header .btn-primary:hover {
            background-color: #1f6a22;
        }

        /* Hero Section */
        .hero-section {
            /* background-color: var(--color-accent); */
            /* border-radius: 1rem; */
            /* padding: 40px; */
            margin-top: 3rem;
            /* background: url('../images/abstract-bg.png');
            background-size: cover; */
            /* box-shadow: 0 0 15px rgb(0 0 0 / 0.1); */
        }

        .hero-content h1 {
            font-weight: 700;
            font-size: 2.75rem;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-content p.lead {
            font-size: 1.15rem;
            color: #000;
            margin-bottom: 2rem;
        }

        .hero-statistics {
            background-color: #fff;
            border-radius: 12px;
            padding: 1.25rem;
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .hero-statistics .circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background-color: var(--color-green-light);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700;
            color: var(--color-green-dark);
            font-size: 1.2rem;
        }

        .hero-statistics .stat-info {
            font-weight: 600;
            color: var(--color-green-dark);
        }

        .hero-img {
            /* border-radius: 12px; */
            max-width: 100%;
            /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
        }

        .btn-stat {
            background-color: var(--color-green);
            color: #fff;
            font-weight: 600;
            border-radius: 50px;
            padding: 0.4rem 1rem;
            font-size: 0.9rem;
            border: none;
            box-shadow: 0 3px 7px rgb(53 122 56 / 0.5);
            transition: background-color 0.3s;
        }

        .btn-stat:hover {
            background-color: #1f6a22;
            color: #fff;
        }

        /* Feature cards section */
        .feature-card {
            background-color: #fff;
            border-radius: 1rem;
            box-shadow: 0 0 15px rgb(0 0 0 / 0.08);
            padding: 1rem;
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-8px);
        }

        .feature-card img {
            max-width: 100%;
            border-radius: 0.75rem;
            margin-bottom: 1rem;
            user-select: none;
        }

        .feature-card h5 {
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--color-green-dark);
        }

        .feature-card p {
            font-size: 0.9rem;
            color: #555;
        }

        /* Services Icons Section */
        .service-icon {
            font-size: 2rem;
            color: var(--color-green);
            background-color: var(--color-green-light);
            padding: 1rem;
            border-radius: 1rem;
            display: inline-block;
            margin-bottom: 0.5rem;
        }

        .service-text h6 {
            font-weight: 600;
            color: var(--color-green-dark);
        }

        .service-text p {
            color: #555;
            font-size: 0.9rem;
        }

        /* Experts Section */
        .experts-section {
            background-color: var(--color-accent);
            border-radius: 1rem;
            box-shadow: 0 0 15px rgb(0 0 0 / 0.05);
            padding: 2rem;
        }

        .experts-section .expert-img {
            border-radius: 50% 20% / 60% 40%;
            max-width: 100%;
            box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background-color: var(--color-accent-light);
            padding: 3rem 1.5rem;
            border-radius: 1rem;
            box-shadow: 0 0 12px rgb(0 0 0 / 0.05);
        }

        .why-choose-us .reason-item {
            text-align: center;
            padding: 1rem;
        }

        .reason-item h6 {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--color-green-dark);
        }

        .reason-item p {
            color: #555;
            font-size: 0.9rem;
        }

        /* Solutions Section */
        .solutions-section {
            padding: 3rem 1.5rem;
            margin-top: 3rem;
        }

        .solutions-section .image-with-box {
            position: relative;
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 0 20px rgb(0 0 0 / 0.07);
        }

        .solutions-section .image-with-box img {
            border-radius: 1rem;
        }

        .solutions-box {
            position: absolute;
            top: 15%;
            right: 5%;
            background-color: var(--color-green);
            color: #fff;
            border-radius: 1rem;
            padding: 1rem 1.25rem;
            max-width: 200px;
            box-shadow: 0 5px 15px rgb(0 0 0 / 0.2);
            font-weight: 600;
        }

        .solutions-box h5 {
            font-size: 1.25rem;
            margin-bottom: 0.5rem;
        }

        .solutions-text h3 {
            font-weight: 700;
            color: var(--color-green-dark);
            margin-bottom: 1rem;
        }

        .solutions-text p {
            color: #555;
            font-size: 1rem;
            margin-bottom: 0.5rem;
        }

        /* Case Studies Section */
        .case-study-card {
            background-color: #fff;
            border-radius: 1rem;
            box-shadow: 0 0 15px rgb(0 0 0 / 0.1);
            padding: 1rem;
            transition: transform 0.3s;
            cursor: pointer;
            user-select: none;
        }

        .case-study-card:hover {
            transform: translateY(-8px);
        }

        .case-study-card img {
            max-width: 100%;
            border-radius: 1rem;
            margin-bottom: 1rem;
        }

        .case-study-card h6 {
            font-weight: 700;
            color: var(--color-green-dark);
            margin-bottom: 0.3rem;
        }

        .case-study-card p {
            font-size: 0.9rem;
            color: #555;
        }

        /* Testimonial Section */
        .testimonial-card {
            background-color: #fff;
            border-radius: 1rem;
            padding: 1.5rem;
            box-shadow: 0 0 15px rgb(0 0 0 / 0.08);
            text-align: center;
            position: relative;
        }

        .testimonial-card .profile-pic {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 1rem;
        }

        .testimonial-card p {
            font-size: 1rem;
            color: #444;
            font-style: italic;
            min-height: 80px;
        }

        .testimonial-card h6 {
            font-weight: 700;
            margin-top: 1rem;
            color: var(--color-green-dark);
        }

        .testimonial-highlight {
            position: relative;
            z-index: 2;
            border: 2px solid var(--color-green);
        }

        /* Pricing Section */
        .pricing-card {
            border-radius: 1rem;
            padding: 2rem 1.5rem;
            color: #fff;
            box-shadow: 0 0 15px rgb(0 0 0 / 0.2);
            font-weight: 600;
        }

        .pricing-basic {
            background-color: var(--color-green-dark);
        }

        .pricing-standard {
            background-color: var(--color-green);
            box-shadow: 0 5px 20px rgb(53 122 56 / 0.6);
        }

        .pricing-premium {
            background-color: #2e5a2e;
        }

        .pricing-card h4 {
            margin-bottom: 0.5rem;
        }

        .pricing-card ul {
            list-style: none;
            padding-left: 0;
            margin-bottom: 1.2rem;
        }

        .pricing-card ul li {
            padding-left: 1.25rem;
            position: relative;
            margin-bottom: 0.5rem;
        }

        .pricing-card ul li::before {
            content: "✔";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--color-yellow);
            font-weight: 700;
        }

        .pricing-price {
            font-size: 2rem;
            margin-bottom: 1rem;
        }

        .btn-pricing {
            border-radius: 50px;
            font-weight: 600;
            padding: 0.5rem 2rem;
            font-size: 1rem;
            transition: background-color 0.3s;
            border: none;
        }

        .btn-pricing:hover {
            opacity: 0.85;
        }

        /* Blog Summary Section */
        .blog-card {
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 0 15px rgb(0 0 0 / 0.1);
            background-color: #fff;
            transition: transform 0.3s ease-in-out;
            cursor: pointer;
        }

        .blog-card:hover {
            transform: translateY(-6px);
        }

        .blog-img {
            max-height: 180px;
            object-fit: cover;
            width: 100%;
        }

        .blog-content {
            padding: 1rem;
        }

        .blog-meta {
            font-size: 0.8rem;
            color: var(--color-green);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .blog-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: var(--color-green-dark);
        }

        .blog-author {
            font-size: 0.85rem;
            color: #777;
        }

        /* Newsletter Section */
        .newsletter {
            background-color: var(--color-green-dark);
            color: #fff;
            border-radius: 1rem;
            padding: 2rem;
            margin-top: 3rem;
        }

        .newsletter form .form-control {
            border-radius: 50px 0 0 50px;
            border: none;
            padding: 1rem 1.5rem;
            font-size: 1rem;
        }

        .newsletter form .btn {
            border-radius: 0 50px 50px 0;
            padding: 1rem 2rem;
            font-weight: 600;
            background-color: var(--color-green-light);
            color: var(--color-green-dark);
            border: none;
            transition: background-color 0.3s;
        }

        .newsletter form .btn:hover {
            background-color: #a0d3a0;
            color: var(--color-green-dark);
        }

        /* Footer */
        footer {
            background-color: var(--color-green-dark);
            color: #a7d9a7;
            padding: 3rem 1.5rem 1.5rem 1.5rem;
            font-size: 0.9rem;
        }

        footer a {
            color: #a7d9a7;
            text-decoration: none;
        }

        footer a:hover {
            text-decoration: underline;
        }

        footer .footer-section {
            margin-bottom: 1.25rem;
        }

        footer .footer-logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 1rem;
        }

        @media(min-width: 992px) {
            /* .hero-section {
                margin-top: 5rem;
            } */

            .hero-content h1 {
                font-size: 2.75rem;
            }
        }