        /* Global Styles */
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
        }

        /* Navigation Bar */
        .navbar {
            background-color: #8CC63F;
        }
        .navbar .navbar-brand {
            color: #fff;
            font-weight: bold;
        }
        .navbar .nav-link {
            color: #fff;
            font-size: 1rem;
            margin-left: 10px;
        }
        .navbar .btn {
            background-color: #fff;
            color: #8CC63F;
            border-radius: 5px;
            padding: 5px 15px;
            font-weight: bold;
        }

          /* Hero Section */
          .hero-section {
            background: linear-gradient(to right, #B5E61D, #8CC63F);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero .btn {
    display: inline-block;
    background: #B5E61D;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 10px;
    transition: background 0.3s;
}

.hero .btn:hover {
    background: #fff;
}

/* Services Section */
#services {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

#services h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-item i {
    font-size: 2rem;
    color: #B5E61D;
    margin-bottom: 10px;
}

.service-item h3 {
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
}

.service-item:hover {
    transform: translateY(-10px);
}

/* About Section */
#about {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Optional background color for better contrast */
}

.about-grid {
    display: flex;
    flex-wrap: wrap; /* Makes it responsive */
    align-items: center; /* Aligns content vertically */
    gap: 20px; /* Adds spacing between the image and text */
}

.about-image {
    flex: 1; /* Takes equal space, can be adjusted for responsiveness */
    text-align: center; /* Centers the image horizontally */
}

.about-image img {
    max-width: 100%; /* Makes image responsive */
    height: auto;
    border-radius: 8px; /* Optional: adds rounded corners to the image */
}

.about-text {
    flex: 1; /* Takes equal space, can be adjusted for responsiveness */
    max-width: 600px; /* Limits text width for better readability */
}

.about-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.about-text .btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8CC63F;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.about-text .btn:hover {
    background-color: #8CC63F;
}


/* Portfolio Section */
#portfolio {
    background: #f4f4f4;
    padding: 50px 20px;
    text-align: center;
}

#portfolio h2 {
    margin-bottom: 40px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}

.portfolio-item h3 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1rem;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

/* Contact Section */
#contact {
    padding: 50px 20px;
    text-align: center;
}

#contact h2 {
    margin-bottom: 20px;
}

#contact .btn {
    background: #B5E61D;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

#contact .btn:hover {
    background: #fff;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .nav-links {
        display: none;
    }

    .navbar .btn-primary {
        margin-left: auto;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .services-grid, .portfolio-grid {
        grid-template-columns: 1fr;
    }

    #about {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}

          /* Hero Section */
        .hero-section {
            background: linear-gradient(to right, #B5E61D, #8CC63F);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .hero-section h1 {
            font-size: 3.5rem;
            font-weight: 600;
        }

        .hero-section p {
            font-size: 1.25rem;
        }

        /* Contact Form */
        .contact-form {
            padding: 60px 0;
            background-color: #fff;
        }

        .contact-form h3 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 30px;
            color: #333;
        }

        .contact-form .form-control {
            border-radius: 10px;
            border: 1px solid #ccc;
            padding: 15px;
            margin-bottom: 15px;
        }

        .contact-form .form-control:focus {
            border-color: #B5E61D;
        }

        .contact-form .btn {
            background-color: #B5E61D;
            color: #fff;
            border-radius: 10px;
            font-weight: 600;
            padding: 12px 30px;
        }

        .contact-form .btn:hover {
            background-color: #8CC63F;
            color: #fff;
        }

        .contact-info ul {
            list-style-type: none;
            padding: 0;
            margin: 0;
        }

        .contact-info ul li {
            font-size: 1.125rem;
            color: #555;
            margin-bottom: 15px;
        }

        /* Map Section */
        .map-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }

        .map-section iframe {
            width: 100%;
            height: 450px;
            border: none;
        }

        /* Footer */
        .footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 30px 0;
        }

        .footer p {
            margin: 0;
            font-size: 1rem;
        }

        /* Sticky Navbar */
        .sticky-top {
            position: -webkit-sticky;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        /* Media Queries */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }

            .hero-section p {
                font-size: 1rem;
            }
        }
  