
/* 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 */
    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: #c2d8b9;
    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;
    }
}
     
  /* Apply Now Button */
  .apply-btn {
    background: #28a745;
    color: white;
    padding: 8px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 2px;
}
.apply-btn:hover {
    background: #2e4b35;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services {
        padding: 50px 5%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}

 /* 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;
    }
}



/* Footer Section */
.footer {
    background-color: #f8f9fa;
    padding: 40px 10%;
    text-align: center;
    color: #333;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-logo h2 {
    color: #007bff;
    font-size: 1.8rem;
}

.footer-logo p {
    font-size: 1rem;
    color: #555;
}

.footer-links h3, 
.footer-social h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #333;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin: 5px 0;
}

.footer-links ul li a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
    transition: 0.3s;
}

.footer-links ul li a:hover {
    color: #0056b3;
}

.footer-social .social-icons a {
    margin: 0 10px;
    color: #007bff;
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-social .social-icons a:hover {
    color: #0056b3;
}

.footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    font-size: 0.9rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}


/* 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;
}
