/* Mobile Layout */

@media only screen and (max-width: 600px) {
    .container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: minmax(100px, auto);
    }
    main {
        grid-column: 1/13;
    }
    .header {
        grid-column: 1/12;
        grid-row: 1;
    }
    .logo {
        width: 30%;
        max-width: 120px;
        float: left;
        display: block;
        margin-top: 0.2em;
    }
    .banner {
        display: grid;
        width: 100%;
        height: 15%;
        margin-top: 5em;
        margin-bottom: 0em;
        grid-row: 2;
        grid-column: 1/13;
    }
    aside {
        text-align: center;
        grid-row: 3;
        grid-column: auto;
        grid-column: 2/11;
        justify-content: space-evenly;
        padding: 1em;
    }
    aside ul {
        padding: 0.5em;
    }
    aside li {
        list-style-type: none;
        padding: 0;
    }
    aside li a {
        border: 0.2em solid black;
        border-radius: 0.5em;
        background-color: rgb(90, 90, 90);
        color: white;
        padding: 0.3em;
        font-family: Montserrat, sans-serif;
        display: block;
        max-width: 100%;
        font-size: 15px;
        margin-bottom: 0.5em;
        text-decoration: none;
    }
    aside li a:visited {
        text-decoration: none;
    }
    aside li a:hover {
        border: 0.2em solid rgb(95, 95, 95);
        ;
        background: #6fb668;
        color: white;
        transform: scale(1.1);
    }
    h2 {
        text-align: center;
    }
    .contact {
        grid-row: 4;
        border: 0.2em solid black;
        border-radius: 1em;
        margin-bottom: 1em;
        margin-left: 1em;
        margin-right: 1em;
        background: rgb(212, 212, 212);
        padding: 0.5em;
    }
    .contact h3 {
        margin-left: 1em;
        font-size: 16px;
    }
    .contact li {
        list-style-type: square;
        font-size: 14px;
        color: rgb(41, 41, 41);
    }
    .contact p {
        padding-right: 2em;
        font-family: Montserrat, sans-serif;
        font-size: 12px;
    }
    footer {
        background-color: #fff;
        grid-column: 1/13;
        display: flex;
        padding: 0;
        margin-bottom: 0;
    }
    footer p {
        display: none;
    }
    .socarlogo {
        display: flex;
        width: 40%;
        align-content: flex-end;
    }
    .facebook,
    .twitter,
    .youtube,
    .linkedin {
        display: flex;
        margin-bottom: 0.5em;
        margin-right: 1em;
        margin-top: 1em;
        width: 90%;
        height: 50%;
    }
    /* Hamburger Menu */
    body {
        margin: 0;
        font-family: Montserrat, sans-serif;
        background-color: #f4f4f4;
    }
    a {
        color: #000;
    }
    /* header */
    .header {
        background-color: #fff;
        box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
        position: fixed;
        width: 100%;
        z-index: 3;
    }
    .header ul {
        margin: 0;
        padding: 0;
        list-style: none;
        overflow: hidden;
        background-color: #fff;
    }
    .header li a {
        display: block;
        padding: 20px 20px;
        border-right: 1px solid #f4f4f4;
        text-decoration: none;
    }
    .header li a:hover,
    .header .menu-btn:hover {
        background-color: #6fb668;
        color: white;
    }
    .header .logo {
        display: block;
        float: left;
        font-size: 2em;
        padding: 10px 20px;
        text-decoration: none;
    }
    /* menu */
    .header .menu {
        clear: both;
        max-height: 0;
        transition: max-height .2s ease-out;
    }
    /* menu icon */
    .header .menu-icon {
        cursor: pointer;
        display: inline-block;
        float: right;
        padding: 40px 40px;
        position: relative;
        user-select: none;
    }
    .header .menu-icon .navicon {
        background: rgb(78, 32, 32);
        display: block;
        height: 2px;
        position: relative;
        transition: background .2s ease-out;
        width: 18px;
    }
    .header .menu-icon .navicon:before,
    .header .menu-icon .navicon:after {
        background: #333;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }
    .header .menu-icon .navicon:before {
        top: 5px;
    }
    .header .menu-icon .navicon:after {
        top: -5px;
    }
    /* menu btn */
    .header .menu-btn {
        display: none;
    }
    .header .menu-btn:checked~.menu {
        max-height: 440px;
    }
    .header .menu-btn:checked~.menu-icon .navicon {
        background: transparent;
    }
    .header .menu-btn:checked~.menu-icon .navicon:before {
        transform: rotate(-45deg);
    }
    .header .menu-btn:checked~.menu-icon .navicon:after {
        transform: rotate(45deg);
    }
    .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
    .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
        top: 0;
    }
}

@media (min-width: 601px) {
    .header li {
        float: left;
    }
    .header li a {
        padding: 20px 30px;
    }
    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }
    .header .menu-icon {
        display: none;
    }
    /* Hamburger Menu */
    body {
        margin: 0;
        font-family: Montserrat, sans-serif;
        background-color: #f4f4f4;
    }
    a {
        color: #000;
    }
    /* header */
    .header {
        background-color: #fff;
        box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, .1);
        position: fixed;
        width: 100%;
        z-index: 3;
    }
    .header ul {
        margin: 0;
        padding: 0;
        list-style: none;
        overflow: hidden;
        background-color: #fff;
    }
    .header li a {
        display: block;
        padding: 20px 20px;
        border-right: 1px solid #f4f4f4;
        text-decoration: none;
    }
    .header li a:hover,
    .header .menu-btn:hover {
        background-color: #6fb668;
        color: white;
    }
    .header .logo {
        display: block;
        float: left;
        font-size: 2em;
        padding: 10px 20px;
        text-decoration: none;
    }
    /* menu */
    .header .menu {
        clear: both;
        max-height: 0;
        transition: max-height .2s ease-out;
    }
    /* menu icon */
    .header .menu-icon {
        cursor: pointer;
        display: inline-block;
        float: right;
        padding: 40px 40px;
        position: relative;
        user-select: none;
    }
    .header .menu-icon .navicon {
        background: rgb(78, 32, 32);
        display: block;
        height: 2px;
        position: relative;
        transition: background .2s ease-out;
        width: 18px;
    }
    .header .menu-icon .navicon:before,
    .header .menu-icon .navicon:after {
        background: #333;
        content: '';
        display: block;
        height: 100%;
        position: absolute;
        transition: all .2s ease-out;
        width: 100%;
    }
    .header .menu-icon .navicon:before {
        top: 5px;
    }
    .header .menu-icon .navicon:after {
        top: -5px;
    }
    /* menu btn */
    .header .menu-btn {
        display: none;
    }
    .header .menu-btn:checked~.menu {
        max-height: 440px;
    }
    .header .menu-btn:checked~.menu-icon .navicon {
        background: transparent;
    }
    .header .menu-btn:checked~.menu-icon .navicon:before {
        transform: rotate(-45deg);
    }
    .header .menu-btn:checked~.menu-icon .navicon:after {
        transform: rotate(45deg);
    }
    .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:before,
    .header .menu-btn:checked~.menu-icon:not(.steps) .navicon:after {
        top: 0;
    }
    /*MainCode*/
    .container {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: minmax(70px, auto);
    }
    main {
        grid-column: 1/13;
        grid-row: 2;
        margin-top: 0;
    }
    .header {
        grid-column: 1/12;
        grid-row: 1;
    }
    .logo {
        width: 30%;
        max-width: 120px;
        float: left;
        display: block;
        margin-top: 0.2em;
    }
    .visionbanner {
        display: none;
    }
    aside {
        display: flex;
        text-align: center;
        grid-column: 2/11;
        grid-row: 2;
        padding: 1em;
        justify-content: space-evenly;
    }
    aside ul {
        padding: 2em;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    aside li {
        list-style-type: none;
        padding: 0.1em;
    }
    aside li a {
        border: 0.2em solid black;
        border-radius: 0.5em;
        margin-right: 0.5em;
        background-color: gray;
        color: white;
        padding: 0.5em;
        font-family: Montserrat, sans-serif;
        display: block;
        max-width: 100%;
        font-size: 15px;
        text-decoration: none;
        margin-bottom: 0.5em;
    }
    aside li a:hover {
        border: 0.2em solid rgb(82, 82, 82);
        ;
        background: #6fb668;
        color: white;
        transform: scale(1.1);
        text-decoration: none;
    }
    .banner {
        display: none;
    }
    h2 {
        text-align: center;
    }
    .contact {
        margin-left: 1em;
        margin-bottom: 2em;
    }
    .contact {
        margin-left: 1em;
        margin-right: 1em;
        padding: 0.5em;
    }
    .contact h3 {
        margin-left: 1em;
        font-size: 18px;
    }
    .contact li {
        list-style-type: square;
        font-size: 15px;
        color: rgb(41, 41, 41);
    }
    .contact p {
        padding-right: 2em;
        font-family: Montserrat, sans-serif;
        font-size: 12px;
    }
    footer {
        background-color: #fff;
        grid-row: 7;
        grid-column: 1/13;
        display: flex;
        align-items: center;
    }
    footer p {
        display: none;
    }
    .socarlogo {
        display: flex;
        width: 20%;
        align-content: flex-end;
        margin-left: 0.3em;
        margin-right: 15em;
    }
    .facebook,
    .twitter,
    .youtube,
    .linkedin {
        margin-bottom: 0.5em;
        margin-right: 1em;
        width: 60%;
        height: 75%;
        align-self: flex-end;
    }
}

@media only screen and (min-width: 1100px) {
    .header li {
        float: left;
    }
    .header li a {
        padding: 20px 30px;
    }
    .header .menu {
        clear: none;
        float: right;
        max-height: none;
    }
    .header .menu-icon {
        display: none;
    }
    .header li a {
        margin-top: 0.8em;
    }
    footer {
        background-color: #fff;
        grid-row: 6;
        grid-column: 1/13;
        display: flex;
        align-items: center;
    }
    footer p {
        font-size: 12px;
        font-family: Montserrat, sans-serif;
        text-align: center;
        display: flex;
        align-items: flex-end;
        margin-left: 15em;
        margin-right: 15em;
    }
    .socarlogo {
        display: flex;
        width: 30%;
        align-content: flex-end;
        margin-left: 0.3em;
    }
    .facebook,
    .twitter,
    .youtube,
    .linkedin {
        display: flex;
        margin-bottom: 0.5em;
        margin-right: 1em;
        width: 80%;
        height: 40%;
    }
    h2 {
        text-align: left;
        margin-left: 2em;
    }
}

.dropdown-content {
    display: none; /* Hide dropdown content initially */
    position: absolute; /* Positioning relative to the dropdown button */
    background-color: #f9f9f9; /* Background color of dropdown */
    min-width: 160px; /* Minimum width of dropdown */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Shadow for dropdown */
    z-index: 1; /* Ensure dropdown is above other content */
}

/* Style for dropdown links */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Show dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}


.white-text-boxes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.white-text-box {
    background-color: white; /* White background */
    border: 1px solid #ccc; /* Light grey border */
    padding: 10px; /* Padding inside the box */
    margin-bottom: 10px; /* Margin at the bottom of each box */
    border-radius: 4px; /* Rounded corners */
}

/* Contact Information Section */
.contact-information {
    max-width: 1200px; /* Adjust the width as necessary */
    margin: 0 auto; /* Center the section */
    padding: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); /* Creates a responsive grid */
    grid-gap: 20px; /* Space between boxes */
}

.contact-information h2 {
    grid-column: 1 / -1; /* Ensures the heading spans all columns */
    font-size: 24px; /* Adjust as needed */
    margin-bottom: 20px; /* Space after the heading */
    text-align: left; /* Align the text to the left instead of center */
}


.info-box {
    background-color: #ffffff; /* White background */
    border: 1px solid #ddd; /* Light grey border */
    padding: 15px;
    border-radius: 5px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: adds a shadow */
    text-align: left;
}

.info-box h3 {
    margin-top: 0;
    font-size: 18px; /* Adjust as needed */
    color: #333; /* Dark grey color for the text */
    text-align: left;
}



.contact-form-section {
    background-color: #ffffff; /* White background */
    border: 1px solid #ddd; /* Light grey border */
    padding: 20px;
    border-radius: 5px; /* Rounded corners */
    margin: 20px auto; /* Centers the form with some margin */
    max-width: 600px; /* Adjust width as needed */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Optional: adds a shadow */
}

.contact-form-section h2 {
    font-size: 24px; /* Adjust as needed */
    color: #333; /* Dark text color for better readability */
    margin-bottom: 20px; /* Space after the heading */
}

.form-group {
    margin-bottom: 15px; /* Space between form fields */
}

.form-group label {
    display: block;
    font-size: 16px; /* Adjust as needed */
    margin-bottom: 5px; /* Space between label and input field */
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 95%; /* Full width */
    padding: 10px;
    border: 1px solid #ccc; /* Light grey border */
    border-radius: 4px; /* Rounded corners */
    font-size: 16px; /* Adjust as needed */
}

.form-group textarea {
    height: 120px; /* Adjust height as needed */
    resize: vertical; /* Allows the user to resize vertically */
}

button[type="submit"] {
    padding: 10px 20px;
    background-color: #5cb85c; /* Bootstrap's btn-success color */
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px; /* Adjust as needed */
    cursor: pointer;
}

button[type="submit"]:hover {
    background-color: #4cae4c; /* Darken color on hover */
}

/* Rest of your CSS... */


