/*body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000000;
    color: #333;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #222;
    color: #fff;
}*/
header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #f60;
}
header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}
header nav ul li {
    display: inline;
}
header nav ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}
header nav ul li a:hover {
    color: #f60;
}
.nav-link {
    text-decoration: none !important;
    color: #fff !important;
    transition: color 0.3s !important;
}
.nav-link:hover {
    color: #f60 !important;
}


header .cta {
    background-color: #f60;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
}
header .cta:hover {
    background-color: #e55;
}

.hero-section {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    overflow: hidden; /* Ensure background stays contained */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/images/banner.png') no-repeat center center/cover;
    filter: blur(2px);
    -webkit-filter: blur(2px);
    z-index: 1;
}

.hero-section .bg-text {
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4); /* Black w/opacity/see-through */
    color: wheat;
    font-weight: bold;
    border: 3px solid wheat;
    position: absolute; /* Ensure proper stacking above background */
    z-index: 2;
    padding: 20px;
    text-align: center;
    width: 80%;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
}
.services-section {
    padding: 60px 40px;
    background-color: #000;
}
.services-section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: center;
    color: #333;
}
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.service-card {
    background-color: rgb(39 39 42);
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: left;
    transition: box-shadow 0.3s;
}
.service-card:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.service-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}
.service-card h3 {
    color: #f60;
    margin-bottom: 10px;
}

.contact-section {
    padding: 60px 40px;
    text-align: center;
    background-color: #222;
    color: #fff;
}
.contact-section h2 {
    margin-bottom: 40px;
    font-size: 2rem;
    color: #f60;
}
.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}
.contact-info div {
    text-align: center;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}
.social-icons a {
    color: #f60;
    font-size: 1.5rem;
    transition: color 0.3s;
}
.social-icons a:hover {
    color: #e55;
}

@media (max-width: 600px) {
    header {
        flex-wrap: wrap;
        padding: 20px;
    }
    header .logo {
        margin-bottom: 20px;
        text-align: center;
        width: 100%;
    }
    header nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }
    header .cta {
        margin-top: 10px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section p {
        font-size: 1rem;
    }

}
