/* General body and font */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    max-width: 100%;
}

/* Header Section */
.hero {
    position: sticky;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    background: white;
    color: #004aad;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Logo */
.logo img {
    height: 60px;
    max-width: 100%;
}

/* Navigation Menu */
.nav-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: #004aad;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    padding: 10px 15px;
    border-radius: 5px;
}

/* Hover Effect */
.nav-links a:hover {
    background: #ffcc00;
    color: #004aad;
    text-decoration: none;
}

/* Hamburger Menu for Mobile */
.hamburger {
    font-size: 30px;
    cursor: pointer;
    display: none;  /* Hidden by default */
}

/* Mobile Menu */
.mobile-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #004aad;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    padding-top: 60px;
    transform: translateY(-100%); /* Start above the screen */
    transition: transform 0.5s ease-out; /* Slide down transition with slower timing */
    z-index: 1000;
}

/* Show mobile menu when open */
.mobile-menu.open {
    transform: translateY(0); /* Slide down to normal position */
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-menu ul li {
    margin: 10px 0;
}

.mobile-menu ul li a {
    color: white;
    font-size: 20px;
    padding: 15px;
    text-decoration: none;
}

/* Close button style */
.close-menu {
    position: absolute;
    top: 20px;
    right: 55px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .nav-links {
        display: none; /* Hide navigation for mobile */
    }

    .hamburger {
        display: block; /* Show hamburger icon on mobile */
    }

    .mobile-menu.open {
        display: block; /* Show mobile menu when open */
    }
}
/* Banner Section */
/* Banner Section */
.banner {
    background: linear-gradient(to right, #004aad, #00c6ff); /* Blue gradient background */
    color: white;
    padding: 80px 20px;
    text-align: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
   
}

.banner-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
    letter-spacing: 1px;
}

.banner-content p {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    background-color: #ffcc00; /* Bright yellow color for the CTA */
    color: #004aad; /* Text color */
    padding: 15px 30px;
    font-size: 18px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.cta-button:hover {
    background-color: #ff9800; /* Darker yellow for hover effect */
    color: white;
    transform: scale(1.05); /* Slight scaling effect */
}

/* Responsive design for smaller screens */
@media screen and (max-width: 768px) {
    .banner-content h1 {
        font-size: 28px; /* Smaller heading on mobile */
    }

    .banner-content p {
        font-size: 16px; /* Smaller text on mobile */
    }

    .cta-button {
        font-size: 16px; /* Smaller button text on mobile */
        padding: 12px 24px; /* Smaller padding */
    }
}

/* Vision & Mission Section */
.vision-mission {
    display: flex;
    justify-content: space-between;
    padding: 0px 30px;
    padding-bottom: 50px;
    background: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

/* Section Heading */
.section-heading {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #004aad;
    margin-bottom: 40px;
    width: 100%;
}

/* Vision and Mission Content */
.vision, .mission {
    width: 45%;
    background: #ffffff;
    padding: 30px;
   
   
}

.vision h2, .mission h2 {
    font-size: 24px;
    color: #004aad;
    margin-bottom: 15px;
}

.vision p, .mission p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .vision-mission {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .vision, .mission {
        width: 90%;
        margin-bottom: 30px;
    }

    .section-heading {
        font-size: 28px;
    }
}
/* About Us Section */
.about-us {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 30px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top:10px;
}

/* Left Side - Content */
.about-content {
    width: 50%;
    padding-right: 20px;
}

.about-content h2 {
    font-size: 32px;
    color: #004aad;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #333333;
    margin-bottom: 10px;
}

/* Right Side - Image */
.about-image {
    width: 40%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .about-us {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .about-content, .about-image {
        width: 90%;
        margin-bottom: 30px;
    }

    .about-content h2 {
        font-size: 28px;
    }
}
/* Contact Us Section */
.contact-us {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 30px;
    background: #f4f4f4;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
}

/* Left Side - Contact Form */
.contact-content {
    width: 48%;
    padding-right: 20px;
}

.contact-content h2 {
    font-size: 32px;
    color: #004aad;
    margin-bottom: 20px;
}

.contact-content p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-form input, .contact-form textarea {
    padding: 10px;
    font-size: 16px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.contact-form button {
    padding: 12px 20px;
    background: #004aad;
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #ffcc00;
}

/* Right Side - Location */
.contact-location {
    width: 48%;
    padding-left: 20px;
}

.contact-location h3 {
    font-size: 24px;
    color: #004aad;
    margin-bottom: 20px;
}

.contact-location p {
    font-size: 16px;
    color: #333333;
    margin-bottom: 20px;
}

.contact-location .map {
    margin-top: 20px;
}

/* Responsive Design for Mobile */
@media screen and (max-width: 768px) {
    .contact-us {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .contact-content, .contact-location {
        width: 90%;
        margin-bottom: 30px;
    }

    .contact-content h2 {
        font-size: 28px;
    }

    .contact-location h3 {
        font-size: 20px;
    }
}
/* Footer Styling */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #004aad;
    color: #ffffff;
    padding: 20px;
    border-top: 3px solid #ffcc00;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 30%;
}

.footer-logo img {
    width: 150px;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 14px;
    color: #f2f2f2;
}

.footer-nav {
    display: flex;
    justify-content: center;
    width: 40%;
}

.footer-nav ul {
    list-style-type: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.footer-nav li {
    margin-right: 20px;
}

.footer-nav a {
    text-decoration: none;
    color: #ffffff;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #ffcc00;
}

.footer-contact {
    width: 30%;
    text-align: right;
}

.footer-contact p {
    font-size: 14px;
    color: #f2f2f2;
}

.footer-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #ffcc00;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .footer-logo, .footer-nav, .footer-contact {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-nav ul {
        justify-content: center;
    }

    .footer-contact p {
        font-size: 14px;
    }
}
 /* Login Section */
 .login {
  
    padding: 65px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    background-color: white;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.login h2 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
}

.input-field {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
    transition: all 0.3s ease-in-out;
}

.input-field:focus {
    border-color: #005f80;
    outline: none;
}

.btn-login {
    width: 100%;
    padding: 12px;
    background-color: #004aad;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.btn-login:hover {
    background-color: #004aad;
}

.error-message {
    color: red;
    font-size: 14px;
    margin-top: 15px;
}
