@media screen and (max-width: 768px) {
    /* Fix header overlap issues */
    nav {
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        background-color: var(--dark-gray);
    }
    .logo-img {
    width: 100px;
    height: 100px;
    /* Keep original SVG colors by removing filter */
}

    body {
        padding-top: 70px; /* Add padding to body to account for fixed nav */
    }

    .hero {
        min-height: calc(100vh - 70px); /* Adjust hero height to account for nav */
    }

    .hero-text h1 {
        font-size: 2.2rem;
        margin-top: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    /* Value Offering Mobile Styles */
    .value-offering {
        padding: 3rem 0;
    }

    .value-offering-content {
        flex-direction: column;
        gap: 2rem;
    }

    .value-offering-text {
        text-align: center;
    }

    .value-offering-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 2rem;
    }

    .value-points {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        max-width: 100%;
        margin: 0 auto;
    }

    .value-point {
        background: rgba(255, 107, 0, 0.05);
        padding: 1rem;
        border-radius: 10px;
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
        transition: all 0.3s ease;
    }

    .value-point:hover {
        transform: translateX(5px);
        background: rgba(255, 107, 0, 0.1);
    }

    .value-point i {
        font-size: 1.5rem;
        min-width: 24px;
    }

    .value-point span {
        font-weight: 500;
        color: var(--dark-gray);
    }

    .value-offering-image {
        width: 100%;
        margin-top: 2rem;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        order: -1; /* Move image to top on mobile */
    }

    .value-offering-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        display: block;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--dark-gray);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 1rem 0;
    }

    .nav-links a {
        padding: 0.8rem 1rem;
        display: block;
    }

    .section {
        padding: 3rem 0;
    }

    .section:first-of-type {
        padding-top: 2rem;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active div:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active div:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active div:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .section {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-top {
        padding: 3rem 0 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

    .footer-links a {
        justify-content: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-contact i {
        margin-top: 0;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    /* Fix overflow issues */
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    /* Ensure containers don't overflow */
    .container {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* Fix section widths */
    .section {
        width: 100%;
        padding: 3rem 15px;
        box-sizing: border-box;
    }

    /* Ensure value offering content stays within bounds */
    .value-offering-content {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .value-offering-image img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure footer content stays within bounds */
    .footer-content {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Fix hero section overflow */
    .hero-content {
        width: 100%;
        margin: 0;
        padding: 0 15px;
    }

    .hero-features {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* Fix footer spacing */
    .footer-top, .footer-bottom {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Fix map container */
    .map {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    /* About Page Mobile Styles */
    .about-hero {
        padding-top: 120px;
    }

    .about-content {
        padding: 0 15px;
    }

    .stat-card {
        margin-bottom: 1rem;
    }

    .responsibility-card {
        margin-bottom: 2rem;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .responsibility-cta {
        padding: 0 15px;
    }

    .responsibility-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    /* Contact Section Mobile Fixes */
    .contact-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 0 15px;
    }

    .contact-info {
        width: 100%;
        padding: 1.5rem;
        background: var(--white);
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .contact-info h3 {
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    .contact-info p {
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .contact-info i {
        width: 24px;
    }

    .contact-social {
        display: flex;
        gap: 1rem;
        margin-top: 1.5rem;
        justify-content: center;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--orange);
        color: var(--white);
        border-radius: 50%;
        transition: all 0.3s ease;
    }

    .social-icon:hover {
        background: var(--dark-yellow);
        transform: translateY(-3px);
    }

    .map {
        width: 100%;
        height: 300px;
        border-radius: 10px;
        overflow: hidden;
    }

    .map iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .contact .section-title {
        margin-bottom: 2rem;
    }

    .contact .subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
}
