/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}


.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(50%);
}

/* Body Styling */
body {
    background: linear-gradient(120deg, #04224f, #141b29);
    color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header Styling */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

header .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #00ff88;
}

header .logo .neon {
    color: #ff007f;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}

header nav ul li a:hover {
    color: #00ff88;
}


#work-type {

    background-color: #141b29;
}

/* Section Styling */
.get-quote {
    padding: 40px;
    text-align: center;
    margin: auto;
}

.get-quote .container {
    max-width: 600px;
    margin: auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.get-quote h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #00ff88;
}

.get-quote p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #b3b3b3;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    text-align: left;
    font-size: 0.9rem;
    color: #ccc;
}

input, textarea, select {
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.9rem;
}

input::placeholder, textarea::placeholder {
    color: #aaa;
}

textarea {
    resize: none;
}

input:focus, textarea:focus, select:focus {
    outline: 2px solid #00ff88;
}

button {
    padding: 10px;
    font-size: 1rem;
    color: #fff;
    background: linear-gradient(45deg, #00ff88, #ff007f);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

button:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #00cc70, #e6006c);
}

/* Thank-You Section */
#thank-you img {
    margin: 20px 0;
    animation: glow 2s infinite alternate;
}

#thank-you h2 {
    font-size: 1.8rem;
    color: #00ff88;
}

/* Animations */
@keyframes glow {
    0% {
        filter: drop-shadow(0 0 5px #00ff88);
    }
    100% {
        filter: drop-shadow(0 0 20px #00ff88);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    header nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .get-quote h1 {
        font-size: 1.8rem;
    }

    .get-quote p {
        font-size: 0.9rem;
    }
}
