
        :root {
            --primary-color: #52b69a;
            --secondary-color: #76c893;
            --tertiary-color: #99d98c;
            --light-color: #b5e48c;
            --ultra-light-color: #d9ed92;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }

        /* --- Navbar Styling --- */
        .navbar-light .navbar-nav .nav-link {
            color: #333;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        .navbar-light .navbar-nav .nav-link:hover {
            color: var(--primary-color);
        }
        .navbar-light .navbar-brand {
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1.5rem;
        }

        /* --- Hero Section Styling --- */
        .hero-section {
            background: linear-gradient(rgba(82, 182, 154, 0.7), rgba(82, 182, 154, 0.7)), url('https://www.shutterstock.com/shutterstock/videos/1106729197/thumb/1.jpg?ip=x480');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 150px 0;
            text-align: center;
        }
        .hero-section h1 {
            font-weight: 700;
            font-size: 6rem;
        }
        .hero-section p {
            font-size: 1.2rem;
            max-width: 1000px;
            margin: 20px auto;
        }
        .btn-cta {
            background-color: white;
            color: rgb(1, 1, 1);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        .btn-cta:hover {
            background-color: #2d2e2e;
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        /* --- Section Styling --- */
        .section-title {
            font-weight: 700;
            color: #333;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
            margin-bottom: 40px;
            font-size:45px;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background-color: var(--secondary-color);
        }

        /* --- About Section Styling --- */
        .about-img {
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }

        /* --- Counter Styling --- */
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--secondary-color);
        }
        .counter-box p {
            font-weight: 500;
            margin: 0;
        }

        /* --- Why Choose Us Styling --- */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        .feature-box h5 {
            font-weight: 600;
        }

        /* --- Services Card Styling --- */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
            background-color: #f8f9fa;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        .service-card img {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        .service-card .card-body {
            padding: 25px;
        }
        .service-card .card-title {
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }
        .service-card .card-text {
            font-size: 0.95rem;
            color: #555;
            min-height: 140px; /* Ensures desc area is consistent */
        }
        .btn-read-more {
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            padding: 8px 0;
            display: inline-block;
        }
        .btn-read-more:hover {
            color: var(--secondary-color);
        }

        /* --- Reviews Section Styling --- */
        .review-card {
            background-color: #fff;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            height: 100%;
        }
        .review-card .stars {
            color: var(--ultra-light-color);
            margin-bottom: 15px;
        }
        .review-card p {
            font-style: italic;
            margin-bottom: 20px;
        }
        .review-card h6 {
            font-weight: 600;
            margin: 0;
        }
        .review-card small {
            color: #777;
        }

        /* --- CTA Section Styling --- */
        .cta-section {
            background-color: var(--primary-color);
            color: white;
            padding: 60px 0;
            text-align: center;
            border-radius: 10px;
        }
        .cta-section h2 {
            font-weight: 700;
        }
        .cta-section .btn-cta {
            background-color: white;
            color: var(--primary-color);
        }
        .cta-section .btn-cta:hover {
            background-color: #f8f9fa;
            color: var(--primary-color);
        }

        /* --- Contact Section Styling --- */
        .contact-info-box {
            background-color: var(--light-color);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
        }
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
        }
        .contact-info-box p {
            margin: 0;
            font-weight: 500;
        }
        .contact-form .form-control {
            border-radius: 0;
            border: 1px solid #ddd;
            padding: 12px;
        }
        .contact-form .form-control:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
        }
        .contact-form .btn-cta {
            width: 100%;
            border-radius: 0;
            padding: 15px;
        }

        /* --- Footer Styling --- */
        footer {
            background-color: #333;
            color: #ccc;
            padding: 50px 0 20px 0;
        }
        footer h5 {
            color: white;
            font-weight: 600;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        footer h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: var(--secondary-color);
        }
        footer ul {
            list-style: none;
            padding: 0;
        }
        footer ul li {
            margin-bottom: 10px;
        }
        footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        footer ul li a:hover {
            color: var(--light-color);
        }
        .subscribe-form .form-control {
            background-color: #444;
            border: 1px solid #555;
            color: white;
        }
        .subscribe-form .form-control:focus {
            box-shadow: none;
            border-color: var(--secondary-color);
            background-color: #444;
        }
        .copyright-area {
            border-top: 1px solid #444;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }
        .copyright-area a {
            color: var(--light-color);
            text-decoration: none;
        }
        .copyright-area a:hover {
            text-decoration: underline;
        }
