/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}


/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    color: white;
    overflow: hidden;
    height: 50vh;
}

.hero-video-container {
    position: fixed;
   
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.hero-video-container img, .hero-video-container video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) scale(1.2);
}


/* Hero Content */
.hero-content {
    position: relative;
    
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px; 
    /* Optional: Add a semi-transparent background to improve text readability */
}

/* Other Styles */
.hero-content .logo {
    width: 150px;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 2.5em;
    margin: 0;
}

.hero-content p {
    font-size: 1.2em;
}

.button1 {
    background-color: #FF8C00; /* Bright orange background */
    color: #FFFFFF;            /* White text for contrast */
    font-family: 'Arial', sans-serif; /* Clean, readable font */
    font-weight: bold;         /* Bold text for emphasis */
    font-size: 16px;           /* Standard font size */
    padding: 15px 32px;        /* Button padding */
    text-align: center;        /* Center text */
    text-decoration: none;     /* Remove underline */
    display: inline-block;     /* Inline block for layout */
    margin: 4px 2px;   
    margin-top: 20px;        /* Spacing around button */
    cursor: pointer;           /* Pointer cursor */
    border-radius: 10px;       /* Rounded corners */
    transition: background-color 0.3s ease, transform 0.1s ease; /* Smooth transition */
}

/* Hover effect */
.button1:hover {
    background-color: #FFA500; /* Slightly lighter orange for hover */
    color: #F0F0F0;            /* Soft off-white text for a gentle contrast */
}

/* Click (active) effect */
.button1:active {
    background-color: #FF7F50; /* Darker coral-orange when clicked */
    transform: scale(0.98);    /* Slight shrink for click effect */
}

/* Mission Section */
.mission {
    display: flex;
    flex-direction: column;
    position: relative;

    width: 100%;
    text-align: center;
   
    background: rgba(255, 255, 255, 0.8);
     /* Optional: Add a semi-transparent background */
}

.mission h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.mission p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    padding: 20px;
}

/* Signup Section */
.signup {
    background-color: #fff;
    padding: 50px 20px;
    text-align: center;
    position: relative;
   
   
}

.signup h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.signup p {
    font-size: 1.2em;
    margin: 30px auto;
    max-width: 800px;

}

.signup form {
    max-width: 600px;
    margin: 0 auto;
}

.signup label {
    display: block;
    text-align: left;
    margin-bottom: 5px;
    font-weight: bold;
}

.signup input,
.signup textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.signup button {
    padding: 15px 30px;
    background-color: #ff7f50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.signup button:hover {
    background-color: #ff6347;
}

/* CTA Section */
.cta {
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.8);
    text-align: center;
    position: relative;

}

.cta h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer */
footer {
    background-color: #333;
    color: orange;
    padding: 20px 0;
    text-align: center;
}

footer .social-media a {
    margin: 0 10px;
    display: inline-block;
}

footer .social-media img {
    width: 30px;
    height: auto;
    filter: invert(1);
}

footer .contact-info {
    margin-top: 10px;
}

footer .contact-info a {
    color: #ff7f50;
    text-decoration: none;
}

footer .contact-info a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero {
        height: 50vh;
    }

    .hero-content .logo {
        width: 120px;
    }

    .hero-content h1 {
        font-size: 2em;
    }

    .hero-content p {
        font-size: 1em;
    }
    .mission {
        top: 80%;
    }

    .mission h2,
    .signup h2,
    .cta h2 {
        font-size: 1.5em;
    }
.button1 {
    margin-top: 10px;
}
.hero-content h1 {
    font-size: 1.4em;
}
    .mission p,
    .signup p,
    .cta p {
        font-size: 1em;
    }

    .signup form {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    

    .hero-content .logo {
        width: 100px;
    }
    .button1 {
        margin-top: 5px;
    }

    .hero-content h1 {
        font-size: 1.5em;
    }

    .hero-content p {
        font-size: 0.9em;
    }

    .mission {
    top: 80%; 
    }

    .mission h2,
    .signup h2,
    .cta h2 {
        font-size: 1.2em;
    }

    .mission p,
    .signup p,
    .cta p {
        font-size: 0.9em;
    }

    .signup form {
        padding: 0 5px;
    }

    .signup input,
    .signup textarea {
        font-size: 0.9em;
    }

    .signup button {
        font-size: 0.9em;
        padding: 10px 20px;
    }

    footer .social-media img {
        width: 25px;
    }
}
