body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.header-top {
    background-color: #001f3f; /* Changed from green to navy blue */
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    align-items: center;
}

.contact-info span {
    margin-right: 15px;
}

.social-media a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
    font-size: 18px;
}

/* Nav bar */
.header-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    margin-top: -10px;
}

.header-bottom .logo {
    height: auto;
    margin-left: 35px;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-right: 60px;
}

nav ul li a {
    text-decoration: none;
    color: #000000;
    font-weight: bold;
    font-size: 18px;
    transition: color 0.3s ease;
}

nav ul li:first-child a {
    color: #001f3f; /* Changed from green to navy blue */
}

nav ul li:not(:first-child) a:hover {
    color: orange;
}

nav ul li a i {
    margin-left: 5px;
    font-size: 12px;
}

nav ul li button {
    background-color: #001f3f; /* Changed from green to navy blue */
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
    margin-top: -20px;
    font-size: 15px;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 650px;
    padding: 20px;
    gap: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 999;
}

.dropdown-content.show {
    display: flex;
}

.dropdown-column {
    flex: 1;
    min-width: 150px;
}

.dropdown-column h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #001f3f; /* Changed from green to navy blue */
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
}

.dropdown-column a {
    display: block;
    margin: 6px 0;
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.dropdown-column a:hover {
    color: orange;
}

/* About hero section */
.about-hero {
    background-color: #001f4d;
    text-align: center;
    padding: 40px 20px;
}

.about-hero h1 {
    font-size: 36px;
    color: white;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 14px;
    color: goldenrod;
}

.about-content {
    padding: 40px;
}

.about-us-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    padding: 40px 0;
    margin-left: 30px;
}

/* Left column: Text */
.about-us-text {
    flex: 1;
    max-width: 48%;
}

.about-us-text .section-title {
    color: #001f3f; /* Changed from darkgreen to navy blue */
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 10px;
}

.about-us-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-us-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

/* Right column: Images */
.about-us-images {
    flex: 1;
    max-width: 48%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-us-images img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-us-images img:hover {
    transform: scale(1.03);
}

/* MVV Cards */
.mvv-section {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    height: 500px;
}

.mvv-card {
    flex: 1;
    padding: 40px 20px;
    color: #222;
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.mvv-card img {
    width: 70%;
    margin-bottom: 20px;
    height: 200px;
}

.mvv-card h2 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: bold;
}

.mvv-card p {
    font-size: 15px;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

/* Background Colors with Decorative Shapes */
.mvv-card.mission {
    background: linear-gradient(to top left, #001f3f, #004080); /* Changed from green to navy blue gradient */
    color: white;
}

.mvv-card.vision {
    background: linear-gradient(to top left, #fbc02d, #ffeb3b);
    color: #333;
}

.mvv-card.values {
    background: linear-gradient(to top left, #e53935, #ef5350);
    color: white;
}

/* Why Choose */
.why-choose-us {
    text-align: center;
    padding: 60px 20px;
    background-color: #fff;
}

.why-choose-us h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

.why-choose-us h2 span {
    color: #001f3f; /* Changed from green to navy blue */
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.choose-item {
    padding: 10px;
    max-width: 280px;
    text-align: center;
}

.choose-item img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.choose-item h3 {
    font-size: 18px;
    font-weight: bold;
    color: #001f3f; /* Changed from green to navy blue */
    margin-bottom: 10px;
}

.choose-item p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

/* Goals section */
.advantage-section {
    padding: 60px 20px;
    background-color: #f9f4ed;
    text-align: center;
    font-family: sans-serif;
}

.advantage-section h2 {
    font-size: 32px;
    color: #222;
    margin-bottom: 20px;
}

.advantage-section h2 span.highlight {
    color: #001f3f; /* Changed from green to navy blue */
}

.adv-desc {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 16px;
    line-height: 1.8;
    color: #333;
}

.goal-heading {
    color: #001f3f; /* Changed from green to navy blue */
    font-size: 24px;
    margin: 40px 0 20px;
    font-weight: bold;
}

/* Accordion Styling */
.accordion {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.accordion-item {
    border-bottom: 1px solid #ccc;
}

.accordion-header {
    background-color: #e0dbd4;
    color: #000;
    padding: 18px 20px;
    font-size: 18px;
    font-weight: bold;
    width: 100%;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header .icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.accordion-header.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
    padding: 10px 30px;
    background-color: #fff;
}

.accordion-content ul {
    padding-left: 20px;
}

.accordion-content li {
    margin: 10px 0;
}

.accordion-header.active + .accordion-content {
    display: block;
}

/* Footer */
.footer {
    background-color: #001f3f; /* Changed from green to navy blue */
    color: #fff;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    font-family: Arial, sans-serif;
}

.o1, .o2, .o3, .o4 {
    flex: 1;
    min-width: 200px;
    margin: 0 15px;
    text-align: center;
    padding: 10px;
}

.o1 img {
    max-width: 200px;
    height: auto;
    margin-bottom: 10px;
}

.o1 p {
    font-size: 16px;
    line-height: 1.6;
    color: #fff;
}

.o1 .fa {
    font-size: 20px;
    color: #fff;
    background-color: #0000FF;
    border-radius: 50%;
    padding: 8px;
    margin: 0 5px;
    text-decoration: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    box-sizing: content-content;
    transition: background-color 0.3s;
}

.o2 ul {
    list-style: none;
    padding-left: 0;
}

.o2 ul li {
    margin-bottom: 8px;
}

.o2 ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    padding-left: 5px;
    display: inline-block;
    margin-top: 20px;
}

.o2 ul li a:hover {
    text-decoration: underline;
}

.o1 .fa:hover {
    background-color: orangered;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    font-size: 16px;
    border: none;
    border-radius: 5px 0 0 5px;
    outline: none;
}

.newsletter-form button {
    padding: 10px 20px;
    background-color: #f9a826;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 0 5px 5px 0;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background-color: #e08900;
}

@media (max-width: 768px) {
    .footer {
        flex-direction: column;
        text-align: center;
    }
    .o1, .o2, .o3, .o4 {
        margin: 10px 0;
    }
}

@media (max-width: 992px) {
    .mvv-section {
        flex-direction: column;
    }
}



/*Mobile view*/
/* --- Hides mobile elements on desktop --- */
.mobile-menu-icon,
.mobile-nav {
    display: none;
}

/* --- Mobile Nav - Show only on mobile --- */
@media (max-width: 992px) {
    /* Hides the desktop navigation */
    nav {
        display: none;
    }

    /* Displays the mobile menu button */
    .mobile-menu-icon {
        display: block;
        color: #001f4d;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1001;
    }

    /* Styles for the vertical, slide-in mobile menu */
    .mobile-nav {
        display: block;
        position: fixed;
        top: 0;
        right: -100vw;
        width: 80vw;
        max-width: 350px;
        height: 100vh;
        background-color: #001f4d;
        z-index: 1000;
        transition: right 0.5s ease-in-out;
        padding: 20px;
        box-sizing: border-box;
        overflow-y: auto;
    }

        /* Styles for the list items to make them vertical */
        .mobile-nav ul {
            list-style: none;
            padding: 0;
            margin-top: 20px;
            display: block;
        }

            .mobile-nav ul li {
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                display: block;
            }

                .mobile-nav ul li a,
                .mobile-nav ul li button {
                    color: white;
                    text-decoration: none;
                    font-size: 1.2rem;
                    display: block;
                    background: none;
                    border: none;
                    width: 100%;
                    text-align: left;
                }

    /* Additional styling for the close button and product list */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

        .mobile-nav-header span {
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
        }

    .mobile-nav .mobile-close-btn {
        color: white;
        font-size: 2rem;
        cursor: pointer;
    }
}

.dropdown-mobile .menu-item-with-plus {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-dropdown-content {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
    background-color: #001f4d; /* Sub-menu background color */
}

    .mobile-dropdown-content h4 {
        color: white;
    }

    .mobile-dropdown-content a {
        padding: 5px 0;
        font-size: 1rem;
    }


    /*mvv cards*/
/* Media query to apply these styles only on screens up to 768px wide */
@media (max-width: 768px) {
    .mvv-section {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .mvv-card {
        flex: 0 0 auto;
        width: 100%; /* Maintain card width */
        margin-right: 0px;      
        text-align: center;
        padding: 20px 0;
    }
    
    .mvv-card:last-child {
        margin-right: 0;
    }

    /* Add left padding specifically to the text within the cards */
    .mvv-card h2,
    .mvv-card p {
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Ensure the image also respects some side padding if it's not full width */
    .mvv-card img {
        padding-left: 15px;
        padding-right: 15px;
        max-width: calc(100% - 30px);
        height: auto;
        box-sizing: border-box;
    }
}