
        /* Banner Section */
        .banner {
            background: url('../img/bg1.avif') no-repeat center center;
            background-size: cover;
            padding: 120px 0;
            height: 300px;
            text-align: center;
            color: #fff;
            position: relative;
        }

        .banner h1 {
            
            font-size: 3rem;
            text-transform: uppercase;
            color: #fff;
        }

        .banner h2 {
            font-size: 1.5rem;
            color: #fff;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: linear-gradient(to bottom, #000, #f2f2f2);
        }

        .services-title {
            text-align: center;
            font-size: 2.5rem;
          
            text-transform: uppercase;
            margin-bottom: 40px;
            color: #fff;
        }

        .service-card {
            background-color: #222;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            color: #ccc;
            margin-bottom: 30px;
        }

        .service-card h3 {
            color: #fff;
            font-size: 2rem;
            text-transform: uppercase;
            margin-bottom: 20px;
        }

        .service-card p {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .service-card img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            margin-bottom: 20px;
        }

        /* Extra Styling */
        .service-card img {
            height: 300px;
            object-fit: cover;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .banner h1{
                font-size: 1.5rem;
            }
            .banner h2{
                font-size: 1rem;
            }
            .service-card {
                margin-bottom: 20px;
            }
        }
/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 60px 0;
    background-color: #fff;
    color: #000;
}

.why-choose-us h2 {
  
    font-size: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: #000;
}

.why-choose-us p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    color: #444;
}

.feature-item {
    background-color: #222;
    height: 230px;
    padding: 20px;
    border-radius: 10px;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item h4 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 1rem;
    color: white;
}

.feature-item:hover {
    background-color: #d9d9d9;
    color: #000000;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.feature-item:hover p{
    color: black;
}
.feature-item:hover h4{
    color: black;
}
.btn-primary {
    background-color: #ffffff;
    color: #000000;
    padding: 15px 30px;
    text-transform: uppercase;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    border: 1px solid black;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #000000;
    border: 1px solid black;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.446);

}
