/* General Body Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdfdfd;
    color: #333;
    margin: 0;
    padding: 0;
}       

.logo img.logo-img {
    height: 50px; /* adjust according to your design */
    width: auto;
    display: block;
}



/* Navbar Styling */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;  /* White background for navbar */
    padding: 15px 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Light shadow for effect */
}

/* Navbar Links Styling */
.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
    position: relative;
}

/* Navbar Links Text Styling */
.nav-links a {
    text-decoration: none;
    color: #ff9800; /* Default text color */
    font-weight: bold;
    font-size: 16px;
    padding: 5px 0; /* Add padding to make room for underline */
    display: inline-block;
    position: relative;
    transition: color 0.3s ease;
}

/* Underline Effect */
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #ff9800; /* Underline color */
    transition: width 0.3s ease;
}



/* Underline on hover */
.nav-links a:hover::before {
    width: 100%; /* Full width underline */
}
        #about-us {
            background: #ffffff;
            padding: 40px 5%;
            font-family: 'Poppins', sans-serif;
        }
        .about-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .about-text {
            flex: 1;
            max-width: 55%;
        }
        .about-text h2 {
            font-size: 2.8rem;
            font-weight: bold;
            color: #000;
        }
        .about-text p {
            font-size: 1.3rem;
            color: #333;
            line-height: 1.6;
        }
        .highlight {
            background: #ff9800;
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            display: inline-block;
            font-weight: bold;
            margin-top: 15px;
        }
  
        .about-image {
            flex: 1;
            max-width: 40%;
        }
        .about-image img {
            width: 100%;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        @media (max-width: 768px) {
            .about-container {
                flex-direction: column;
                text-align: center;
            }
            .about-text {
                max-width: 100%;
                margin-bottom: 30px;
            }
            .about-image {
                max-width: 100%;
            }
        }


/* Toggle Button Styling */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle span {
    height: 3px;
    width: 25px;
    background-color: #ff9800; /* You can change color */
    margin: 4px 0;
    border-radius: 5px;
    transition: 0.4s;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 87%;
        background-color: #fff; /* Navbar dropdown background */
        position: absolute;
        top: 60px; /* Adjust according to your nav height */
        left: 0;
        z-index: 1000;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        width: auto;
        margin-left: 217px;
    }

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

    .nav-links li {
        text-align: center;
        margin: 10px 0;
    }
    
    .nav-links a {
    font-size: 12px;
    padding: 1px 0;
    }
    .about-text h2 {
        font-size: 1.8rem;
        font-weight: bold;
        color: #000;
        margin-top: -40px;
    }
    .about-text p {
        font-size: 1.1rem;
    }
}


.mission-section {
    padding: 60px 20px;
    background: #f9f9f9;
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mission-text {
    flex: 1;
    padding: 20px 40px;
}

.mission-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}


.core-values-section {
    background-color: #ffffff;
    padding: 70px 20px;
    text-align: center;
}

.core-values-header h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
}

.core-values-header p {
    font-size: 18px;
    color: #777;
    max-width: 700px;
    margin: 0 auto 50px;
}

.values-cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.value-card {
    background: #f5f5f5;
    padding: 30px 20px;
    border-radius: 12px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 24px;
    color: #1e90ff;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 16px;
    color: #555;
}

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


.footer {
    background: #101820;
    color: #fff;
    padding: 40px 20px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo p {
    font-size: 0.95rem;
    color: #bbb;
}

.footer-links {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #ff7300;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff4500;
}

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

.footer-social a img {
    width: 30px;
    height: 30px;
    /* filter: brightness(0) invert(1); */
    transition: transform 0.3s ease;
}

.footer-social a:hover img {
    transform: scale(1.2);
}

.footer-bottom {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links, .footer-social {
        flex-direction: row;
        gap: 20px;
    }
}


.footer-bottom {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #aaa;
}

.footer-bottom a.footer-mail {
    color: #ff7300;
    text-decoration: none;
    font-weight: bold;
}

.footer-bottom a.footer-mail:hover {
    color: #ff4500;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links, .footer-social {
        flex-direction: row;
        gap: 20px;
    }
}



@media (max-width: 425px) {
    .nav-links {
        margin-left: 270px !important;
    }
    .nav-links a {
        margin-right: 20px !important;
    }
}

@media (max-width: 320px) {
    .nav-links {
        margin-left: 200px !important;
    }
}