* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    overflow-x: hidden;
}

/* .glass-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(20px);
    background: rgba(255,255,255, 0.05);
    z-index: 1;
}

.light-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    animation: glow 10s ease-in-out infinite alternate;
    z-index: 0;
}

.light-circle1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #00ffff, transparent);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

@keyframes glow {
    0%, 100% { opacity: 0.2; transform: scale(1);}
    50% { opacity: 0.7; transform: scale(1.1);}
} */

.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    background: url('drawing.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.hero-blur {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* backdrop-filter: blur(10px); */
    background: rgba(255,255,255, 0.05);
    z-index: 1;
}

.light-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0;
    animation: glow 10s ease-in-out infinite alternate;
    z-index: 1;
}

.light-circle1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ffae00, transparent);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

@keyframes glow {
    0%, 100% { opacity: 0.2; transform: scale(1);}
    50% { opacity: 0.7; transform: scale(1.1);}
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    padding: 20px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.hero-content h1 {
    font-size: 48px;
}

.content {
    padding: 80px 20%;
    background: #f5f5f5;
    color: #333;
}

.content h2 {
    margin-bottom: 1rem;
}

.content p {
    font-size: 18px;
}

.logo {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 3;
}

.logo img {
    width: 300px;
    height: auto;
}


.form-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 80px;
}

form {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 800px;
    transition: all 0.3s ease;
}

input[type="text"], textarea {
    width: 100%;
    padding: 12px 18px;
    margin: 10px 0;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-sizing: 16px;
    font-size: 16px;
    transition: all 0.3s ease;
}

input[type="text"]:focus, textarea:focus {
    border: 2px solid #5c6bc0;
    box-shadow: 0 0 8px rgba(92, 107, 192, 0.5);
    outline: none;
}

input[type="text"]::placeholder, textarea::placeholder {
    color: #b0bec5;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #5c6bc0;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover {
    background-color: #3f4e92;
}

textarea {
    resize: vertical;
    min-height: 100px;
}

#contact-us-button {
    width: 200px;
    margin-top: 20px;
}

#logo-watermark {
    width: 200px;
}

footer {
    padding: 80px 20%;
    background: #f5f5f5;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
}




.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.popup-box {
    background: white;
    display: none;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.popup-box img {
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.popup-box p {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.popup-box button {
    width: 100%;
    padding: 12px;
    background-color: #5c6bc0;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-box button:hover {
    background-color: #3f4e92;
}








@media (max-width: 850px) {
    form {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 650px) {
    form {
        min-width: unset;
        width: 95%;
    }
    .content {
        padding: 80px 5%;
        background: #f5f5f5;
        color: #333;
    }
}