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

/* Body Styling */
body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #0057A4, #FF6200);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    text-align: center;
}

/* Container Styling */
.container {
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    margin-bottom: 60px; /* Add padding to bottom to prevent overlap */
}

/* Logo Styling */
.logo {
    max-width: 400px;
    margin-bottom: 20px;
}

/* Heading Styling */
h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Description Styling */
.description {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Message Styling */
.message {
    font-size: 1em;
    margin-bottom: 20px;
}

/* Call-to-Action Styling */
.cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Button Styling */
.button {
    background: #FF6200;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.button:hover {
    background: #ff8c33;
}

/* Newsletter Form Styling */
.newsletter {
    display: flex;
}

.newsletter input[type="email"] {
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
    width: 200px;
}

.newsletter button {
    padding: 10px 20px;
    border: none;
    background: #FF6200;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter button:hover {
    background: #ff8c33;
}

/* Floating Elements Styling */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    z-index: 1;
    animation: float infinite ease-in-out;
}

#float1 {
    width: 50px;
    height: 50px;
    top: 20%;
    left: 10%;
    animation-duration: 6s;
    animation-delay: 0s;
}

#float2 {
    width: 80px;
    height: 80px;
    top: 40%;
    left: 25%;
    animation-duration: 8s;
    animation-delay: 1s;
}

#float3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 15%;
    animation-duration: 7s;
    animation-delay: 2s;
}

#float4 {
    width: 90px;
    height: 90px;
    top: 70%;
    left: 70%;
    animation-duration: 10s;
    animation-delay: 0s;
}

#float5 {
    width: 70px;
    height: 70px;
    top: 30%;
    left: 85%;
    animation-duration: 9s;
    animation-delay: 1.5s;
}

#float6 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 60%;
    animation-duration: 12s;
    animation-delay: 2.5s;
}

#float7 {
    width: 60px;
    height: 60px;
    top: 80%;
    left: 40%;
    animation-duration: 8s;
    animation-delay: 1s;
}

#float8 {
    width: 90px;
    height: 90px;
    top: 10%;
    left: 50%;
    animation-duration: 11s;
    animation-delay: 3s;
}

#float9 {
    width: 80px;
    height: 80px;
    top: 25%;
    left: 70%;
    animation-duration: 14s;
    animation-delay: 1.2s;
}

#float10 {
    width: 70px;
    height: 70px;
    top: 40%;
    left: 50%;
    animation-duration: 10s;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

/* Social Links Styling */
.social-links {
    margin-top: 20px;
}

.social-links a {
    margin: 0 10px;
    color: #fff;
    font-size: 1.5em;
    transition: transform 0.3s;
}

.social-links a:hover {
    transform: scale(1.1);
}

/* Footer Styling */
.footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 0.9em;
}

.footer a {
    color: #fff; /* Adjusted to white for better contrast */
    text-decoration: none;
    font-weight: bold; /* Makes the email stand out more */
}

.footer a:hover {
    color: #ff8c33; /* Matches hover color of buttons for consistency */
}
