/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}


/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.1);
    position: relative;
    top: 0;
    z-index: 1000;
    height:56px;
}

/* Logo */
.logo img {
    height: 32px;
}

/* Tagline */
.tagline {
    position: absolute;
    left: 45%;
    transform: translateX(-50%);
    font-weight: 500;
    color: #2d3748;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif; /* Modern font */
}

/* Join us */


/* Navigation Button */
.join-us-button {
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    border: none;
    background: #25d366; /* WhatsApp green color */
    color: white;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


.join-us-button:hover {
    background: #128c7e; /* Darker WhatsApp green */
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(18, 140, 126, 0.2);
}

.join-us-button i {
    font-size: 1.2rem; /* WhatsApp icon size */
}


/*****************************************************/
/* styles.css */
/* styles.css */
/* Royal Purple and Gold Palette */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5; /* Light Gray */
}

.container {
    width: 90%;
    max-width: 1000px;
    margin: 20px auto;
    background-color: #ffffff; /* White */
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.header {
    text-align: center;
    margin-bottom: 20px;
}

.header .logo {
    width: 100px;
    height: auto;
}

.header h1, .header h2, .header h3, .header h4 {
    margin: 5px 0;
    font-weight: bold;
    color: #4b0082; /* Indigo */
    text-align: center;
}

.section {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background-color: #ffffff; /* White */
    border: 1px solid #ddd;
}

.section h3 {
    margin-top: 0;
    color: #4b0082; /* Indigo */
    border-bottom: 2px solid #ffd700; /* Gold */
    padding-bottom: 10px;
    font-weight: bold;
    text-align: center;
}

.important-dates-fees {
    background-color: #f5f5f5; /* Light Gray */
    border-color: #ffd700; /* Gold */
}

.important-dates-fees .grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.important-dates, .fees-details {
    flex: 1;
    background-color: #ffffff; /* White */
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    min-width: 250px;
    text-align: left;
}

.important-dates h4, .fees-details h4 {
    margin-top: 0;
    color: #4b0082; /* Indigo */
    font-weight: bold;
    text-align: left;
}

.important-dates ul, .fees-details ul {
    padding-left: 20px;
    text-align: left;
}

.age-limit {
    background-color: #f5f5f5; /* Light Gray */
    border-color: #ddd;
}

.age-limit ul {
    padding-left: 20px;
    text-align: left;
}

.vacancy-details {
    background-color: #ffffff; /* White */
    border-color: #ddd;
}

.vacancy-details table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.vacancy-details th, .vacancy-details td {
    border: 1px solid #4b0082; /* Indigo */
    padding: 10px;
    text-align: center;
}

.vacancy-details th {
    background-color: #4b0082; /* Indigo */
    color: #ffffff; /* White */
    font-weight: bold;
}

.zone-vacancy {
    background-color: #ffffff; /* White */
    border-color: #ddd;
    overflow-x: auto;
}

.zone-vacancy table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.zone-vacancy th, .zone-vacancy td {
    border: 1px solid #4b0082; /* Indigo */
    padding: 10px;
    text-align: center;
}

.zone-vacancy th {
    background-color: #4b0082; /* Indigo */
    color: #ffffff; /* White */
    font-weight: bold;
}

.important-links {
    background-color: #ffffff; /* White */
    border-color: #ddd;
}

.links-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 15px;
}

.links-table th, .links-table td {
    border: 1px solid #4b0082; /* Indigo */
    padding: 10px;
    text-align: center;
}

.links-table button {
    padding: 12px 24px;
    background-color: #29409b; /* Gold */
    color: #ffffff; /* Indigo */
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Montserrat', sans-serif;
    width: 180px;
    transition: background-color 0.3s ease; /* Smooth transition */
}

.links-table button:hover {
    background-color: #4b0082; /* Indigo */
    color: #ffffff; /* White */
}

.links-table button.download,
.links-table button.website,
.links-table button.poster {
    background-color: #ffffff; /* White */
    color: #4b0082; /* Indigo */
    border: 1px solid #4b0082; /* Indigo */
}

.links-table button.download:hover,
.links-table button.website:hover,
.links-table button.poster:hover {
    background-color: #4b0082; /* Indigo */
    color: #ffffff; /* White */
}

@media (max-width: 768px) {
    .important-dates-fees .grid {
        flex-direction: column;
    }

    .links-table th, .links-table td {
        display: block;
        width: 100%;
    }

    .links-table button {
        width: 100%;
    }
}




/************************************************Footer******************************/




/* Footer Styles */
.footer {
    background-color: #f5f5f5; /* Light gray background */
    color: #333; /* Dark text color */
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    border-top: 1px solid #ddd; /* Light border at the top */
    margin-top: auto; /* Ensures footer sticks to the bottom if content is short */
}

.footer-links {
    margin-bottom: 10px;
}

.footer-link {
    text-decoration: none;
    color: #333; /* Dark text color */
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #007bff; /* Blue color on hover */
}

.footer-separator {
    margin: 0 10px;
    color: #ccc; /* Light gray for the separator */
}

.footer-copyright {
    font-size: 12px;
    color: #666; /* Gray text for copyright */
}