body {
    background-color: #000;
    color: #0f0;
    font-family: 'Press Start 2P', cursive;
    text-align: center;
}

header {
    padding: 10px 20px;
    background: linear-gradient(to right, #000, #003300);
    border-bottom: 2px solid #0f0;
}

header h1 {
    font-size: 3rem;
    text-shadow: 0 0 10px #0f0;
}

header img {
    width: 50%;
    max-width: 200px;
    border-radius: 0px 40px;
}

/* Tablet styles */
@media (min-width: 768px) {
    header img {
        width: 20%;
        max-width: 250px;
    }
}

/* Desktop styles */
@media (min-width: 992px) {
    header img {
        width: 10%;
        max-width: 300px;
    }
}

section {
    padding: 60px 20px;
    border-bottom: 1px dashed #0f0;
}

.service-box {
    border: 2px solid #0f0;
    padding: 20px;
    margin: 15px;
    background-color: rgba(0, 30, 0, 0.8);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px #0f0;
}

.clients-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 100px;
    margin-top: 30px;
}

.clients-logos img {
    /* max-width: 20%; */
    max-height: fit-content;
    width: 100%;
    height: auto;
    filter: contrast(1.5) brightness(1.2) drop-shadow(0 0 5px #0f0);
    transition: transform 0.3s ease;
}

.clients-logos img:hover {
    transform: scale(1.1) rotate(-2deg);
    filter: contrast(2) brightness(1.4) drop-shadow(0 0 10px #0f0);
}

.contact-form input,
.contact-form textarea {
    background-color: #000;
    border: 1px solid #0f0;
    color: #0f0;
}

.contact-form button {
    background-color: #0f0;
    border: none;
    color: #000;
    font-weight: bold;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background-color: #000;
    color: #0f0;
    border: 1px solid #0f0;
}

footer {
    padding: 20px;
    background-color: #001100;
    border-top: 2px solid #0f0;
    font-size: 0.9rem;
}

#hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f0;
    text-shadow: 0 0 10px #0f0;
    border-bottom: 1px dashed #0f0;
    overflow: hidden;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #0f0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #0f0;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-content .btn {
    background-color: #0f0;
    color: #000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-content .btn:hover {
    background-color: #000;
    color: #0f0;
    border: 1px solid #0f0;
}

.marg-bot {
    margin-bottom: 20px;
}

.d-flex {
    justify-content: center;
    align-items: center;
}