* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        header {
            background-color: #1a3c34;
            color: white;
            padding: auto;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 1.5rem;
            font-weight: bold;
            
        }
        .logo-image{
            width: 80px;
            height: 80px;
            border-radius: 50%;
            margin-right: 10px;
            
        }
       
         .content {
        display: flex;
        gap: 10px; 
        align-items: center;
        justify-content: space-evenly;
        height: 50px;
    }
    .content span {
        margin: 0;
    }
    .fa-solid {
        margin-right: 5px;
        color: #1a3c34;
    }
        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1rem;
        }

        .nav-links a:hover {
            color: #f4d35e;
        }

        /* Hero Section */
        .hero {
            background: rgb(255, 187, 0);
            background-position: center;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .hero-content h1 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: black;
        }

        .hero-content p {
            font-size: 1rem;
            color: black;
            margin: 5px;
        }

        /* About Section */
        .about {
            max-width: 100%;
            margin: 3rem auto;
            padding: 0 1rem;
            text-align: center;
        }

        .about h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #1a3c34;
        }
         .about:hover{
            background-color: #ddd;
         }
        /* Services Section */
        .services {
            background-color: #f4d35e;
            padding: 3rem 1rem;
        }

        .services h2 {
            text-align: center;
            font-size: 2rem;
            margin-bottom: 2rem;
            color: #1a3c34;
        }
        .services:hover{
            background-color: gray;
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            text-align: center;
        }

        .service-card h3 {
            margin-bottom: 1rem;
            color: #1a3c34;
        }
         .service-card:hover{
            background-color: yellowgreen;
            color: black;
         }

        /* Contact Section */
        .contact {
            max-width: 100%;
            margin: 3rem auto;
            padding: 0 1rem;
            text-align: center;
        }

        .contact h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #1a3c34;
        }

        .contact form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .contact input, .contact textarea {
            padding: 0.8rem;
            border: 1px solid #ccc;
            border-radius: 4px;
            font-size: 1rem;
        }

        .contact button {
            background-color: #1a3c34;
            color: white;
            padding: 0.8rem;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
        }

        .contact button:hover {
            background-color: #f4d35e;
            color: #1a3c34;
        }
        .contact:hover{
            background-color: #ddd;
        }

        /* Footer */
        footer {
            background-color: #1a3c34;
            color: white;
            text-align: center;
            padding: 1rem;
        }
 
@media screen and (max-width: 768px) {
            .navbar {
                flex-direction: row;
                align-items: flex-start;
                padding: 0.5rem 1rem;
                width: auto;
                
            }

            .logo {
                margin-bottom: 0.5rem;
                font-size: 1rem;
            }

            .nav-links {
                
                flex-direction: row;
                width: 100%;
                margin-top: 2.5rem;
            }

            .nav-links.active {
                display: flex;
            }

            .nav-links li {
                margin: 0.5rem 0;
            
            }

            .nav-links li a{
                margin:2px;
            } 

            .content {
                flex-direction: row;
                height: auto;
                padding: 0.5rem;
                gap: 0.5rem;
                
            }
            .content i{
                background-color: #ddd;
                font-size: 7px;
                color: blue;
                
               
                
            }
        }