* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #3a5a78;
    --secondary-color: #e0e8f0;
    --accent-color: #f8b400;
    --text-color: #333;
    --light-text: #555;
    --light-bg: #f9f9f9;
    --dark-bg: #1c2a35;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --transition: all 0.3s ease;
}

body {
    zoom: 0.5;
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
}

/* Navbar styles - aligned with design.css */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #333, #555);
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    height: 90px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.logo img {
    height: 90px;
    width: 90px;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.company-name {
    font-size: 24px;
    font-weight: bold;
    color: #cbc6c6;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease-in-out;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: #dcdada;
    text-decoration: none;
    font-size: 1.4rem;
    padding: 15px 20px;
    display: inline-block;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #fff;
    background-color: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* .nav-links a[aria-current="page"] {
    background-color: var(--accent-color);
    color: var(--dark-bg);
    font-weight: 500;
} */

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1100;
    padding: 15px;
    font-size: 1.8rem;
    color: white;
}

/* About Section */
.about-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.about-container p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--light-text);
}

.about-container .tagline {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Mission & Vision Section */
.info-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.info-box {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.info-box h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.info-box h3 i {
    margin-right: 10px;
}

.info-box p {
    font-size: 1rem;
    color: var(--light-text);
}

/* Team Section */
.team-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    text-align: center;
}

.team-container h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.team-container h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    width: 250px;
    text-align: center;
}

.team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member p {
    font-size: 1rem;
    color: var(--light-text);
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--accent-color);
    transform: translateY(-3px);
}

/* Call to Action Section */
.cta-section {
    background: var(--secondary-color);
    padding: 40px 20px;
    text-align: center;
    margin: 40px 0;
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--dark-bg);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Footer - aligned with design.css */
footer {
    background: linear-gradient(135deg, #2c2c2c, #444);
    color: #fff;
    padding: 80px 40px 40px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 0;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.footer-column {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 20px;
}

.footer-column h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    color: #fff;
    text-transform: uppercase;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #fff, #ccc);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-links li a:hover::after {
    width: 100%;
}

.footer-column p {
    color: #ccc;
    line-height: 1.8;
    font-size: 16px;
    max-width: 300px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #ccc;
}

.contact-icon {
    margin-right: 12px;
    color: #fff;
    font-size: 18px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    color: #e0e0e0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 14px;
    color: #aaa;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 130px; /* Adjusted for zoom: 0.7 */
        left: 0;
        background: #444;
        flex-direction: column;
        width: 100%;
        align-items: center;
        display: none;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        transform: translateY(-20px);
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        width: 100%;
        padding: 15px 0;
        font-size: 1.2rem;
    }

    .info-section {
        flex-direction: column;
        align-items: center;
    }

    .info-box {
        min-width: 100%;
    }

    .team-members {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        width: 100%;
        max-width: 300px;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-column {
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-column p {
        margin: 0 auto;
    }

    .contact-info p {
        justify-content: center;
    }
}