/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}
a {
    text-decoration: none;
}
h1, h2, h3 {
    font-weight: bold;
}
h1 {
    font-size: 3rem;
    font-weight: bold;
}
h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Hero Section */
#hero {
    position: relative;
    height: 100vh;
    background: url('your-image-path.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}
.glow-text {
    color: #f90;
    text-shadow: 0 0 20px rgba(255, 165, 0, 0.8);
    animation: glow 1.5s ease-in-out infinite alternate;
}
@keyframes glow {
    0% {
        text-shadow: 0 0 20px rgba(255, 165, 0, 0.8), 0 0 40px rgba(255, 165, 0, 0.6);
    }
    100% {
        text-shadow: 0 0 40px rgba(255, 165, 0, 0.8), 0 0 80px rgba(255, 165, 0, 0.6);
    }
}
.subtext {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #fff;
}
.cta-button {
    margin-top: 30px;
    padding: 10px 20px;
    background-color: #f90;
    color: #000;
    border-radius: 5px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}
.cta-button:hover {
    background-color: #fff;
    color: #000;
}

/* Services Section */
#services {
    padding: 50px 20px;
    background-color: #111;
    text-align: center;
}
#services h2 {
    margin-bottom: 30px;
}
.service-list {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.service-item {
    background-color: #222;
    padding: 20px;
    margin: 10px;
    border-radius: 10px;
    width: 250px;
    text-align: center;
}
.service-item h3 {
    font-size: 1.5rem;
    color: #f90;
}
.service-item p {
    font-size: 1rem;
    color: #ccc;
}

/* About Section */
#about {
    padding: 50px 20px;
    text-align: center;
}
#about p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 20px auto;
}

/* Contact Section */
#contact {
    padding: 50px 20px;
    text-align: center;
}
#contact form input,
#contact form textarea {
    width: 100%;
    max-width: 500px;
    padding: 10px;
    margin: 10px 0;
    background: #333;
    border: none;
    color: #fff;
}
#contact form button {
    background-color: #f90;
    color: #000;
    padding: 15px 20px;
    border: none;
    cursor: pointer;
}
#contact form button:hover {
    background-color: #fff;
    color: #000;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #111;
}
