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

.container {
    width: 80%;
    margin: auto;
    text-align: center;
}

/* Navigation */
header {
    background: #004080;
    /* padding: 15px 0; */
}

.nav-links {
    list-style: none;
    display: flex;
    justify-content: right;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #ff8000;
}

/* drop down menu */
/* Navigation Bar */
.nav-links {
    list-style: none;
    display: flex;
    /* gap: 20px; */
}

.nav-links li {
    position: relative;
}

.index_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header img {
    width: 10vw;
    height: auto;
    /* mix-blend-mode:multiply; */
    margin-left: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    /* z-index: 100; */
}

/* Dropdown Styling */

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.548);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 150px;
    padding: 5px 0;
}

.dropdown-menu li {
    display: block;
    padding: 10px 0px;
}

.dropdown-menu li a {
    text-decoration: none;
    color: #333333;
    display: block;
}

.dropdown-menu li a:hover {
    /* background: #afadaa; */
    color: rgb(255, 112, 29);
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.fas.fa-chevron-down {
    transition: transform 0.3s ease;
}

.dropdown:hover .fas.fa-chevron-down {
    transform: rotate(180deg);
}

/* about us section styling */
.about-us {
    display: flex;
    /* align-items: center; */
    justify-content: center;
    gap: 50px;
    padding: 50px 10%;
    /* background-color: #f8f8f8; */
}

.about-content {
    flex: 1;
    max-width: 490px;
}

.about-content h2 {
    font-size: 28px;
    color: #333;
    position: relative;
}

.about-content h2 span {
    display: block;
    width: 50px;
    height: 3px;
    background-color: #e2a233;
    margin-top: 5px;
}

.about-content p {
    font-size: 20px;
    color: #666;
    /* line-height: 1.8; */
    /* margin-bottom: 15px; */
    padding: 10px 10px 10px 0;
    text-align: justify;
}

.about-image {
    flex: 1;
    max-width: 400px;
    display: flex;
    justify-content: center;
    /* Centers the image */
    align-items: center;
}

/* about img styling */
.about-image img {
    width: 95%;
    border-radius: 10px;
    opacity: 0;
    /* Initially hidden */
    transform: translateY(50px);
    /* Moves the image down */
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.about-image img.show {
    opacity: 1;
    transform: translateY(0);
    /* Moves to original position */
}

/* .about-image {
    flex: 1;
    max-width: 400px;
}

.about-image img {
    width: 95%;
    border-radius: 10px;
} */

.about-us-section2 {
    display: grid;
    gap: 30px;
    justify-content: center;
    grid-template-columns: repeat(2, 1fr);
    /* Default: 2 container per row */
    max-width: 75%;
    /* Restricts content width */
    margin: 15px auto;
    /* Centers the section */
    justify-items: center;
}

.container_1 {
    width: 92%;
    text-align: justify;
    background-color: rgb(255, 255, 255);
    /* margin: 30px; */
    padding: 20px;
}

/* Hero Section */
.hero {
    /* background-color:blue; */
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: rgb(0, 0, 0);
    /* text-align: center; */
}

.intro_container {
    background-color: #ff8000cc;
    height: auto;
    width: 42vw;
    /* margin-right: 80px; */
    margin-top: 325px;
}

.intro_container h1,
p {
    padding: 15px;
    margin: 0px;
    font-size: 18px;
}

.section2 {
    display: flex;
    align-items: center;
    background-color: rgb(230, 224, 224);
}

.dummy_container,
.intro_container1 {
    width: 50%;
    height: 50%;
}

.ourServices {
    height: 50%;
    width: 50%;
    color: #00629F;
    text-align: center;
    font-size: 25px;
    padding: 15px;
    align-self: flex-end;
}

.content {
    height: 50%;
    width: 50%;
    color: white;
    background-color: #00629F;
    font-style: italic;
    padding: 15px;
    /* font-size: 30px; */
}

.content img {

    margin-bottom: 0px;
    margin-top: 25px;
    margin-left: 25px;
    margin-right: 25px;
}

.btn {
    background: #ff8000;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}

.btn:hover {
    background: #cc6600;
}


/* Gallery */
/* Gallery */
.gallery {
    margin: 30px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Lightbox */
/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 20;
}

.lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    transition: transform 0.3s ease;
    cursor: zoom-in;
    z-index: 20;
}

.lightbox.open .lightbox-img {
    cursor: zoom-out;
}

/* Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
}

/* Navigation Buttons */
.prev,
.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 40px;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}



/* Events */
.events-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.events-list li {
    background: #f4f4f4;
    margin: 10px 0;
    padding: 10px;
    border-radius: 5px;
}

/* Apply Job */
form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

form input,
form textarea,
form button {
    margin: 10px 0;
    padding: 12px;
    width: 100%;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background: #004080;
    color: white;
    cursor: pointer;
}

button:hover {
    background: #002b50;
}

button:active {
    color: #cc6600;
}

/* section3 styling */
.section3 {
    text-align: center;
    padding: 50px 20px;
    background: #faf9f9;
}

.section4 {
    text-align: center;
    background: #faf9f9;
}

.h1_section4 {
    font-size: 2rem;
    font-weight: 700;
    color: #00629F
}

.service-container {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    gap: 20px;
}

.service-box {
    background: #fff;
    width: auto;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-box img {
    width: 200px;
    height: 200px;
    margin-bottom: 15px;
}

.service-box h2 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
    color: #666;
}

.btn {
    display: inline-block;
    margin-top: 15px;
    padding: 8px 15px;
    background: #004080;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn:hover {
    background: #002b5e;
}

#stats-section {
    text-align: center;
    padding: 50px;
    /* background: #0a0f18; */
    color: white;
    position: relative;
    overflow: hidden;
}

#stats-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/bkg2.jpg");
    /* Background image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    opacity: 1;
    /* Adjust opacity for transparency */
    /* Keep it behind content */
    z-index: -1;
}

h2 {
    color: #0056b3;
}

table {
    width: 90%;
    height: 40vh;
    margin: auto;
    border-collapse: collapse;
    position: relative;
    z-index: 1;
    /* Keeps table above background */
}

th,
td {
    padding: 0px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 25px;
}

th {
    background: rgba(243, 241, 241, 0.068);
}

td {
    font-weight: bold;
    color: #ff9800;
    background: rgba(243, 241, 241, 0.068);
}

/* section5 styling */
.section5 {
    text-align: center;
    padding: 50px 7%;
    /* Added left & right padding for better spacing */
    background-color: #f9f9f9;
}

.clientele-heading {
    font-size: 32px;
    font-weight: bold;
    color: #004080;
    margin-bottom: 30px;
}

.clientele-container {
    display: grid;
    gap: 35px;
    justify-content: center;
    grid-template-columns: repeat(6, 1fr);
    /* Default: 6 logos per row */
    max-width: 1200px;
    /* Restricts content width */
    margin: 0 auto;
    /* Centers the section */
    justify-items: center;
}


.clientele-container img {
    width: 120px;
    /* Fixed width */
    height: 80px;
    /* Fixed height */
    /* object-fit: contain; */
    /* Makes the image black & white */
    /* filter: grayscale(100%);  */
    transition: filter 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    padding: 10px;
    mix-blend-mode: multiply;
}

/* Hover effect for better user experience */
.clientele-container img:hover {
    filter: grayscale(0%);
    /* Restores original colors */
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* 7 logos per row on larger screens */
/* @media (min-width: 1200px) {
    .clientele-container {
        grid-template-columns: repeat(7, 1fr);
    }
} */

/* corporate styling */
.corporate-banner {
    text-align: center;
    /* background: url('images/') no-repeat center center/cover; */
    color: white;
    padding: 50px 20px;
}

.corporate-container {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    max-width: 1200px;
    margin: auto;
}

.corporate-content {
    flex: 1;
    padding-right: 20px;
}

.corporate-services ul {
    list-style: none;
    padding: 0;
}

.corporate-services li {
    font-size: 18px;
    margin-bottom: 10px;
}

.corporate-events {
    max-width: 1200px;
    margin: auto;
    margin-bottom: 15px;
    padding: 40px;
}

.event-gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.event-gallery img {
    width: 30%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}




/* Footer */
/* Footer CSS */
footer {
    position: relative;
    background-color: #00000015;
    color: white;
    height: auto;
    font-size: 14px;
    overflow: hidden;
}

/* Background Image with Opacity */
.footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/footer_bck.jpg') no-repeat center center fixed;
    background-size: cover;
    opacity: 0.8;
    /* Adjust this value to control opacity */
    z-index: -1;
    /* Places it behind the content */
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-col {
    flex-basis: 22%;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col ul {
    font-size: 14px;
    line-height: 1.8;
}

.footer-col ul {
    list-style-type: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #ff7f2e;
}

.contact-info i {
    margin-right: 10px;
}

.footer-bottom {
    /* margin-top: 30px; */
    border-top: 1px solid #000000;
    padding-top: 5px;
    padding-bottom: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    margin: 0;
}

.social-icons a {
    color: white;
    margin-right: 15px;
    font-size: 16px;
}

.social-icons a:hover {
    color: #ff7f2e;
}

.footer_img {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.footer_img img {
    height: auto;
    width: 45%;
    mix-blend-mode: multiply;

    position: relative;

}

.usefulLinks {
    position: relative;
    z-index: 10;
    /* Ensure it's above other content but below the lightbox */
}

.usefulLinks li {
    position: relative;
    padding-left: 25px;
    /* Space for line */
    margin-bottom: 8px;
    z-index: 10;
    /* Keeps it above other elements but below lightbox */
}

.usefulLinks li::before {
    content: "—";
    /* Unicode for dash */
    position: absolute;
    left: 0;
    color: #fff;
    /* Adjust color as needed */
    font-weight: bold;
}


.dummy img {
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 1015px) {
    body {
        font-family: 'Poppins', sans-serif;
        margin: 0;
        padding: 0;
        width: fit-content;
        background-color: #faf9f9;
        color: #333;
    }
}

@media screen and (min-width: 843px) and (max-width: 1173px) {
    .service-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        flex-direction: row;
        align-content: center;
        align-items: center;
    }

    .service-box {
        background: #fff;
        width: 25vw;
        /* width: 17vw; */
        /* height: 90vh; */
        height: auto;
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .service-box img {
        width: 130px;
        height: 125px;
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 426px) and (max-width: 842px) {
    .service-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        align-content: center;
    }

}

@media screen and (max-width: 769px) {

    .prev {
        left: 0;
        z-index: 100;
        padding: 0;
    }

    .next {
        right: 0;
        z-index: 100;
        padding: 0;
    }

    .about-us {
        display: flex;
        gap: 50px;
        padding: 50px 10%;
        /* background-color: #f8f8f8; */
        flex-direction: column-reverse;
        flex-wrap: wrap;
        align-content: center;
        justify-content: center;
        align-items: center;
    }

    header img {
        width: 10vw;
        height: 9vh;
        mix-blend-mode: multiply;
        margin-left: 0px;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .corporate-events {
        max-width: 1200px;
        margin: auto;
        margin-bottom: 15px;
        text-align: center;
    }

    .corporate-banner {
        text-align: center;
        /* background: url(images/) no-repeat center center / cover; */
        color: white;
        padding: 70px 20px;
        /* justify-content: center; */
        justify-content: center;
        display: grid;
        justify-items: center;
        align-items: center;
        align-content: center;
    }

    .corporate-container {
        display: flex;
        justify-content: center;
        padding: 40px;
        max-width: 1200px;
        margin: auto;
        flex-direction: column;
        flex-wrap: wrap;
        align-content: center;
        text-align: justify;
        padding-right: 10px;
    }

    
}




@media screen and (max-width: 600px) {

    form input,
    form textarea,
    form button {
        margin: 10px 0;
        padding: 12px;
        width: 100%;
        max-width: 290px;
        border: 1px solid #ccc;
        border-radius: 5px;
    }

}

@media screen and (max-width: 842px) {
    .ourServices {
        height: 50%;
        width: fit-content;
        color: #00629F;
        text-align: center;
        font-size: 25px;
        padding: 15px;
        align-self: center;
    }

    .content {
        height: 50%;
        width: fit-content;
        color: white;
        background-color: #00629F;
        font-style: italic;
        padding: 15px;
        /* font-size: 30px; */
    }

    .section2 {
        display: flex;
        align-items: center;
        background-color: rgb(230, 224, 224);
        flex-direction: column-reverse;
        flex-wrap: wrap;
        align-content: center;
        width: fit-content;
    }

    .hero {
        /* background-color: blue; */
        height: auto;
        display: flex;
        align-items: center;
        color: rgb(0, 0, 0);
        /* text-align: center; */
        flex-direction: column-reverse;
        flex-wrap: wrap;
        align-content: center;
    }

    .intro_container1 {
        width: fit-content;
        height: 50%;
    }

    .intro_container {
        background-color: #ff8000;
        height: auto;
        width: fit-content;
        /* margin-right: 80px; */
        margin-top: 330px;
    }
    
    
    
}
@media screen and (min-width: 340px) and (max-width: 429px){
    .intro_container {
        background-color: #ff8000;
        height: auto;
        width: fit-content;
        /* margin-right: 80px; */
        margin-top: 230px;
    }
    
}
@media screen and (min-width: 430px) and (max-width: 495px){
    .intro_container {
        background-color: #ff8000;
        height: auto;
        width: fit-content;
        /* margin-right: 80px; */
        margin-top: 250px;
    }
    
}
@media screen and (min-width: 321px) and (max-width: 425px) {
    .service-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        align-content: center;
    }

    .service-box {
        background: #fff;
        /* width: fit-content; */
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }
}

@media screen and (min-width: 591px) and (max-width: 768px) {

    #stats-section {
        text-align: center;
        padding: 30px 25px 30px 25px;
        /* background: #0a0f18; */
        color: white;
        position: relative;
        overflow: hidden;
        /* width:fit-content */


    }

    th,
    td {
        padding: 20px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 18px;

    }
}

@media screen and (max-width: 590px) {
    #stats-section {
        text-align: center;
        padding: 30px 25px 30px 25px;
        /* background: #0a0f18; */
        color: white;
        position: relative;
        overflow: hidden;
        /* width:fit-content */
    }

    th,
    td {
        padding: 5px;
        border: 1px solid rgba(255, 255, 255, 0.3);
        font-size: 13px;
    }
}

@media screen and (max-width: 340px) {
    .service-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
        flex-direction: column;
        align-content: center;
    }

    .service-box {
        background: #fff;
        width: 125vw;
        padding: 20px;
        text-align: center;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    }

    .clientele-container {
        display: grid;
        gap: 35px;
        justify-content: center;
        grid-template-columns: repeat(1, 1fr);
        max-width: 1200px;
        margin: 0 auto;
        justify-items: center;
    }
}

@media screen and (min-width: 341px) and (max-width: 768px) {
    .clientele-container {
        display: grid;
        gap: 35px;
        justify-content: center;
        grid-template-columns: repeat(2, 1fr);
        max-width: 1200px;
        margin: 0 auto;
        justify-items: center;
    }

}

@media screen and (min-width: 769px) and (max-width: 1100px) {
    .clientele-container {
        display: grid;
        gap: 35px;
        justify-content: center;
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        margin: 0 auto;
        justify-items: center;
    }

}

/* footer media queries */

@media screen and (min-width: 769px) and (max-width: 1270px) {

    .footer-row {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
        margin: 0 15px 10px 15px;
    }

    .footer-bottom {
        /* margin-top: 30px; */
        border-top: 1px solid #000000;
        padding-top: 5px;
        padding-bottom: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 0 15px 0 15px;
    }

}

@media screen and (max-width: 768px) {

    /* Footer CSS */
    footer {
        /* background-color: #172337; */
        color: white;
        padding: 20px 0px;
        font-size: 14px;
    }

    .footer-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .footer-row {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }

    .footer-col {
        flex-basis: 22%;
    }

    .footer-col h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .footer-col p,
    .footer-col ul {
        font-size: 14px;
        line-height: 1.8;
    }

    .footer-col ul {
        list-style-type: none;
        padding: 0;
    }

    .footer-col ul li {
        margin-bottom: 10px;
    }

    .footer-col ul li a {
        color: white;
        text-decoration: none;
    }

    .footer-col ul li a:hover {
        color: #ff7f2e;
    }

    .contact-info i {
        margin-right: 10px;
    }

    .footer-bottom {
        margin-top: 30px;
        border-top: 1px solid #444;
        padding-top: 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .footer-bottom p {
        margin: 0;
    }

    .social-icons a {
        color: white;
        margin-right: 15px;
        font-size: 16px;
    }

    .social-icons a:hover {
        color: #ff7f2e;
    }

    .footer_img {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .footer_img img {
        height: 60px;
        width: auto;
        /* mix-blend-mode: multiply */
    }

    .dummy img {
        height: 100%;
        width: 100%;
    }

    .footer-bottom p {
        text-align: center;
    }

    .footer_img h4 {
        text-align: justify;
        /* margin-top: 20px; */
    }

    /* Media Queries for smaller screens */
    @media (max-width: 768px) {

        /* Galaxy S20 Ultra in portrait mode */
        .footer-row {
            flex-direction: column;
            text-align: center;
        }

        .footer-col {
            display: flex;
            /* margin: 20px 0; */
            text-align: center;
            text-align: left;
            flex-direction: column;
            flex-wrap: wrap;
            align-content: flex-start;
            align-items: flex-start;
            margin-left: 20px;

        }

        .footer-col ul li a {
            font-size: 14px;
        }

        .footer-col .contact-info li {
            font-size: 14px;
        }

        .footer-bottom {
            flex-direction: column;
        }

        .footer-bottom p {
            margin-bottom: 10px;
        }

        .social-icons a {
            margin-left: 5px;
        }
    }

    /* Further reduction for very small screens */
    @media (max-width: 768px) {
        .footer-container {
            padding: 0 10px;
        }

        .footer-col {
            min-width: 100%;
            margin-bottom: 0px;
            display: flex;
            /* margin: 20px 0; */
            text-align: center;
            text-align: left;
            flex-direction: column;
            flex-wrap: wrap;
            align-content: flex-start;
            align-items: flex-start;
            margin-left: 0px;
        }

        .footer-img h4 {
            font-size: 20px;
        }

        .footer-bottom {
            flex-direction: column;
            align-items: center;
        }

        .social-icons {
            margin-top: 10px;
        }
    }
}