/* Basic Reset and Setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    font-family: "Roboto Condensed", sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    /* background-color: #fff; */
    /* background-color: #003366; */
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: auto; /* Clear floats within container */
}

a {
    text-decoration: none;
    color: #0056b3;
}

ul {
    list-style: none;
}

section {
    padding: 60px 0;
}

h1, h2, h3 {
    margin-bottom: 15px;
}

/* Header & Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    height: 50px;
}

.nav-links a {
    color: #333;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #0056b3;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    /* background: #0056b3; */
    background: #003366;
    color: #fff;
    text-align: center;
    padding: 100px 0 60px;
}

.hero h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-style: italic;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.video-placeholder {
    margin: 20px auto;
    max-width: 560px;
}

.video-placeholder iframe {
    width: 100%;
    height: 315px;
    border-radius: 8px;
}

/* Stats Section */
.stats {
    background: #e9ecef;
    text-align: center;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.stat-item {
    padding: 20px;
    flex: 1;
    min-width: 150px;
}

.stat-item h2 {
    color: #003366;
    font-size: 2.5rem;
}

/* About Us Section */
.about-us {
    background: #fff;
}

.about-info {
    flex: 1;
    background-color: #003366; /* Deep blue for professional look */
    color: white;
    padding: 40px;
}

.about-info h2 {
    margin-bottom: 20px;
    color: #4da6ff;
}

.about-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Services Section */
.our-services {
    background: #f4f4f4;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.service-item {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-item i {
    font-size: 3rem;
    color: #0056b3;
    margin-bottom: 15px;
}

/* Principal Section */
/* .our-principal {
    background: #fff;
} */

.principal-info {
    flex: 1;
    background-color: #003366; /* Deep blue for professional look */
    color: white;
    padding: 40px;
}

.principal-info h2 {
    margin-bottom: 20px;
    color: #4da6ff;
}

.principal-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.principal-details {
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
}

.principal-image {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}

.social-links a {
    margin-right: 15px;
    font-size: 1.5rem;
    /* color: #333; */
    color: white;
}

.social-links a:hover {
    color: #0056b3;
}

/* Careers Section */
.careers {
    background: #0056b3;
    color: #fff;
    text-align: center;
}

.nav-links .cta-button {
    display: inline-block;
    /* background: #fff; */
    /* color: #0056b3; */
    /* background: #003366; */
    background: #0056b3;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-top: 15px;
    font-weight: normal;
    transition: background 0.3s;
}

.nav-links .cta-button:hover {
    /* background: #e9ecef; */
    color: #fff
}

/* Jobs Section */
.jobs-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.job-listing {
    background: #003366;
    margin-bottom: 20px;
    padding: 20px;
}

.job-listing h3 {
    margin-bottom: 5px;
    color: #4da6ff;
}

.job-listing p {
    color: #fff;
}

.job-meta {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.apply-link {
    color: #4da6ff;
    font-weight: 700;
    display: inline-block;
    margin-top: 15px;
}

.apply-link:hover {
    text-decoration: underline;
}

/* Contact Us Section */
.contact-us {
    background: #fff;
}

.contact-container {
    display: flex;
    max-width: 900px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.contact-info {
    flex: 1;
    background-color: #003366; /* Deep blue for professional look */
    color: white;
    padding: 40px;
}

.contact-info h2 {
    margin-bottom: 20px;
    color: #4da6ff;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
}

.info-item i {
    margin-right: 15px;
    color: #4da6ff;
    width: 20px;
    text-align: center;
}

/* Styles to remove underlines and match the text color of the parent container */
.contact-link {
    color: inherit; /* Inherit the color from the parent (which seems to be black/dark grey from your original styles) */
    text-decoration: none; /* Remove the default link underline */
    /* Add a subtle hover effect if desired */
    transition: color 0.3s;
}

.contact-link:hover {
    color: #4da6ff; /* Match the icon color on hover for interactivity */
    text-decoration: underline; /* Optional: add underline on hover */
}


.social-icons {
    margin-top: 30px;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 24px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #4da6ff;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Mobile Responsiveness (Hamburger Menu) */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        background: #fff;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        margin: 0;
        padding: 15px 20px;
        border-bottom: 1px solid #f4f4f4;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .stats-container {
        flex-direction: column;
    }

    .principal-details {
        flex-direction: column;
        text-align: center;
    }

    .principal-image {
        margin-bottom: 15px;
        border-radius: 50%;
    }

    .social-links {
        margin-top: 15px;
    }
}
