:root {
    --primary-color: #0056b3; /* A strong, professional blue */
    --secondary-color: #f4f4f4; /* A light grey for backgrounds */
    --dark-color: #333;
    --light-color: #fff;
    --shadow: 0 5px 15px rgba(0,0,0,0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: var(--light-color);
    color: var(--dark-color);
}

.container {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 600;
}

a {
    text-decoration: none;
    color: var(--primary-.contact-layout color);
    transition: color 0.3s ease
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

a:hover {
    color: var(--primary-color);
}   


section {
    padding: 60px 0;
}

section:nth-child(even) {
    background-color: var(--secondary-color);
}

/* Header */
header { 
background: #f9fbf6;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; /* Added for language-switcher positioning */
}

header .logo {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

header nav ul li {
    margin-left: 25px;
}

header nav ul li a {
    color: var(--dark-color);
    font-weight: 400;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: var(--primary-color);
}

/* Language Switcher Styles */
.language-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-left: 20px;
}

.language-switcher .lang-flag {
    width: 30px; /* Adjust flag size as needed */
    height: 20px;
    cursor: pointer;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s ease-in-out;
}

.language-switcher .lang-flag:hover {
    transform: scale(1.1);
}

.language-switcher .lang-flag.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(0, 86, 179, 0.5);
}

/* Hero Section */
#hero {
    background: linear-gradient(rgba(0, 86, 179, 0.7), rgba(0, 86, 179, 0.7)), url('../images/hero-background-min.jpg') no-repeat center center/cover;
    color: var(--light-color);
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
}

#hero h2 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

#hero p {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    background: var(--primary-color);
    color: var(--light-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn:hover {
    background: #004494; /* Darker blue on hover */
}


/* Services Section */
#services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.card .icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.card h3 {
    font-size: 1.5rem;
    margin-top: 0;
    color: var(--primary-color);
}

/* About & Contact Sections */
#about h2, #contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
}

/* New About Section Layout */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 2fr; /* Icon takes 1/3, text takes 2/3 */
    align-items: center;
    gap: 40px;
}

.about-icon {
    text-align: center;
    color: var(--primary-color);
}

.about-content p {
    text-align: justify;
    margin: 0 0 20px 0;
}

.about-content .mission-vision-simple h4 {
    font-weight: 400; /* Lighter than main headings */
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: justify;
    margin: 10px 0;
}

.about-content .mission-vision-simple h4 strong {
    font-weight: 600;
    color: var(--primary-color);
}


/* Contact Form */
#contact-form {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

#contact-form input,
#contact-form textarea {
    font-family: 'Poppins', sans-serif;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

#contact-form button {
    width: 100%;
    cursor: pointer;
    border: none;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    text-align: center;
    padding: 20px 0;
}

footer p {
    margin: 0;
}

/* New Footer Styles */
footer {
    padding: 40px 0 20px; /* Adjust padding for better spacing */
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
    margin-bottom: 30px;
}

.footer-column {
    flex: 1;
    min-width: 250px; /* Ensure columns don't get too small */
}

.footer-column h3, .footer-column h4 {
    color: var(--light-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-logo {
    font-size: 1.8rem !important; /* Make logo stand out */
    font-weight: 700 !important;
    color: var(--primary-color) !important; /* Use primary color for footer logo */
}

.footer-column p {
    color: #bbb; /* Lighter text for readability */
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--light-color);
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #bbb;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-color);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #bbb;
    font-size: 0.9rem;
}

/* Responsive adjustments for footer */
@media(max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-column {
        min-width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

/* Responsive */
@media(max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    header .logo {
        margin-bottom: 1rem;
    }



    header nav ul {
        justify-content: center;
        width: 100%;
    }

    header nav ul li {
        margin: 0 15px;
    }

    #hero h2 {
        font-size: 2.2rem;
    }
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    font-size: 1.1rem;
    margin-left: 2rem;
}

.contact-info p {
    margin: 0.5rem 0;
}

/* Partners Section */
#partners {
    background-color: var(--light-color);
    text-align: center;
    overflow: hidden; /* Hide overflowing logos for slider */
    padding-bottom: 0;
}

#partners h2 {
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.partner-slider {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 20px 0;
}

.partner-logo-wrapper {
    flex: 0 0 auto; /* Prevent stretching */
    width: 180px; /* Fixed width for each logo */
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
}

.partner-logo-wrapper img {
    max-width: 100%;
    max-height: 80px; /* Max height for logos */
    filter: grayscale(100%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-logo-wrapper img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments for partner logos */
@media(max-width: 768px) {
    .partner-logo-wrapper {
        width: 120px; /* Smaller width for mobile */
        margin: 0 10px;
    }

    .partner-logo-wrapper img {
        max-height: 60px; /* Smaller height for mobile */
    }
}

.header-logo {
    height: 60px; /* Adjust as needed */
    width: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align with text if any */
}

/* About Us Hero Section - Consistent with main hero */
#about-us-hero {
    background: linear-gradient(rgba(0, 86, 179, 0.7), rgba(0, 86, 179, 0.7)), url('../images/hero-background-min.jpg') no-repeat center center/cover;
    color: var(--light-color);
    padding: 100px 0; /* Adjust padding as needed */
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh; /* Shorter than main hero, adjust as needed */
}

#about-us-hero h2 {
    font-size: 2.8rem;
    margin-bottom: 0.5rem;
}

#about-us-hero p {
    font-size: 1.1rem;
    font-weight: 300;
}

/* Styles for the new About Us sections */
.about-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    text-align: center;
}

.about-section-header h2 {
    margin: 0;
    font-size: 2.5rem;
}

.about-section-header svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
}

#our-mission-vision .container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.mission-vision-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    flex: 1;
    min-width: 300px;
    max-width: 48%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.mission-vision-card .icon {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-vision-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    background: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

.value-item .icon {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.value-item p {
    font-size: 0.95rem;
    color: #666;
}

/* Responsive adjustments for about page */
@media(max-width: 768px) {
    #our-mission-vision .container {
        flex-direction: column;
        align-items: center;
    }

    .mission-vision-card {
        max-width: 90%;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}