/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

/* Navigation Styles */
.navbar {
    background-color: #333;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
}

.nav-link {
    color: #ddd !important;
    font-size: 1.1rem;
    margin-left: 15px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #fff !important;
}

/* Home Section */
#home {
    background: url('../img/home-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 150px 0;
    text-align: center;
}



#home h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

#home p {
    font-size: 1.3rem;
}

/* Services Section */
#serviceshome {
    background: url('../img/serviceshome-bg.jpg') no-repeat center center/cover;
    color: #fff;
    padding: 165px 0;
    text-align: center;
}

#aboutimg {
    height: 150px;

    position: no-repeat center center/cover;

}

/* Section Styles */
section {
    padding: 60px 0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
}

section h2::after {
    content: '';
    width: 100px;
    height: 3px;
    background: #333;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}

.VJL48qbQzWENTFAh1Knk,
.e9TS9yoMqqIN2PqBo1QG {
    display: none !important;
}

#services h3,
#portfolio img {
    margin-top: 20px;
}

#services .col-md-4 {
    margin-bottom: 30px;
}

/* Button Styles */
.btn-primary {
    background-color: #ff5733;
    border-color: #ff5733;
    font-size: 1.1rem;
    padding: 10px 20px;
    transition: background-color 0.3s, border-color 0.3s;
}

.btn-primary:hover {
    background-color: #c63c19;
    border-color: #c63c19;
}

.mb-0 {
    margin-bottom: 2.5rem !important;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

/* Contact Form Styles */
#contact form {
    max-width: 600px;
    margin: 0 auto;
}

#contact .form-label {
    font-weight: bold;
}

#contact .form-control {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 20px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

footer h5 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

footer a {
    color: #fff;
    text-decoration: none;
    margin-right: 10px;
    transition: color 0.3s;
}

footer a:hover {
    color: #ff5733;
}

/* Responsive Styles */
@media (max-width: 768px) {
    #home h1 {
        font-size: 2.5rem;
    }

    #home p {
        font-size: 1.1rem;
    }

    .navbar-nav {
        text-align: center;
    }

    .navbar-nav .nav-item {
        margin-bottom: 10px;
    }

    footer .col-md-4 {
        margin-bottom: 20px;
    }
}