/* General Styling */
body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
    margin: 0;
    padding: 0;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75vh;
    text-align: center;
    background: linear-gradient(to right, #002f4b, #005f73, #00a896);
    color: white;
    animation: fadeIn 1.5s ease-in-out;
}

.hero-content {
    max-width: 700px;
}

.hero-heading {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-subtext {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 80px 20px;
}

.contact-heading {
    font-size: 2.5rem;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, white, #00c6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.5s ease-in-out;
}

.contact-subtext {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.8;
}

/* Form */
#contact-form {
    width: 40%;
    margin: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(255, 255, 255, 0.2);
}

/* Input Fields */
.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box input, .input-box textarea {
    width: 100%;
    padding: 12px;
    border: none;
    outline: none;
    background: transparent;
    border-bottom: 2px solid #00c6ff;
    font-size: 1rem;
    color: white;
}

.input-box label {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1rem;
    transition: 0.3s;
    color: rgba(255, 255, 255, 0.7);
}

.input-box input:focus + label,
.input-box input:valid + label,
.input-box textarea:focus + label,
.input-box textarea:valid + label {
    top: -14px;
    left: 5px;
    font-size: 0.8rem;
    color: #00c6ff;
}

/* Submit Button */
.submit-btn {
    background: linear-gradient(135deg, #00c6ff, #0072ff);
    color: white;
    font-size: 1.2rem;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s ease-in-out;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #0072ff, #00c6ff);
    transform: scale(1.05);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    #contact-form {
        width: 80%;
    }

    .hero-heading {
        font-size: 2.5rem;
    }
}
