/* Google Font Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

/* Reset & Global Styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
}

body {
background-color: #f8f9fa; /* Light background */
color: #333; /* Dark text for contrast */


}



/* Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f8f9fa; /* Light background */
    color: #333; /* Dark text for contrast */
    line-height: 1.8;
    margin: 40px auto;
    max-width: 800px;
    padding: 20px;
}


/* Header Section */
header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

            /* Logo Styling */
            .logo {
                display: flex;
                align-items: center;
            }
    
            .logo img {
                height: 50px; /* Adjust this for logo size */
                margin-right: 10px;
            }
    
            .logo span {
                font-size: 22px;
                font-weight: bold;
            }

  /* Navbar Styling */
  .navbar {
    background: #c2d8b9;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
}

.navbar .logo {
    font-size: 22px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 15px;
    display: block;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

h1, h2, h3 {
    color: #2c3e50;
}
ul {
    margin: 10px 0;
    padding: 0 0 0 20px;
}
.container {
    background: #fff;
    padding: 75px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* CTA Button */
.apply-btn {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
font-size: 16px;
font-weight: 500;
border-radius: 5px;
cursor: pointer;
transition: 0.3s ease-in-out;
}

.cta-button:hover {
background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
.container {
flex-direction: column;
align-items: center;
}

.nav-links {
flex-direction: column;
text-align: center;
margin-top: 10px;
}

.nav-links li {
margin: 10px 0;
}
}


/* Hero Section */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    padding: 80px 10%;
    height: 100vh;
    background-color: #ffffff;
}

.hero-content {
    max-width: 50%;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #007bff;
}

.hero-content p {
    font-size: 1.1rem;
    margin: 20px 0;
    color: #555;
    line-height: 1.6;
}


/* Hero Image */
.hero-image img {
    width: 500px;
    max-width: 100%;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 5%;
        height: auto;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
    }

    .hero-image img {
        margin-top: 30px;
        width: 80%;
    }
}




body {

    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
.apply-container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
}
input, button {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    background-color: #28a745;
    color: white;
    cursor: pointer;
    border: none;
}
button:hover {
    background-color: #218838;
}




 /* Dropdown Styling */
 .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown-menu a {
    color: #333;
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: #007bff;
    color: white;
}

/* Show dropdown when active */
.dropdown.active .dropdown-menu {
    display: block;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #007bff;
        position: absolute;
        top: 60px;
        left: 0;
        text-align: center;
    }

    .nav-links li {
        margin: 0;
    }

    .nav-links a {
        padding: 15px;
        display: block;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links.active {
        display: flex;
    }

    /* Dropdown for Mobile */
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background: #0056b3;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu a {
        color: white;
    }
}
.alert-message {
    display: none;
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #28a745; /* Green for success */
    color: white;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    min-width: 250px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.alert-message.error {
    background-color: #f44336; /* Red for errors */
}
