* {
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    padding: 0;
    margin: 0;
}

img {
    overflow-clip-margin: content-box;
    overflow: clip;
    max-width: 100%;
    height: auto;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.home-first {
    padding-top: 12rem;
    padding-bottom: 12rem;
    height: 100vh;
    min-height: 600px;
    background: #070d59;
    position: relative;
}

.logo {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
}

.top-nav {
    padding: 20px;
    background: transparent;
    position: absolute;
    z-index: 9;
    width: 100%;
}

.home-first .map {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 1;
}

.nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

ul li {
    display: inline-block;
    margin-left: 60px;
    position: relative;
    text-decoration: none;
    color: white;
    opacity: 0.5;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.menu-icon {
    display: none;
    color:white;
}

@media screen and (max-width: 768px) {
    ul.menu {
        display: none; /* Hide the menu by default on small screens */
        flex-direction: column;
        position: absolute;
        top: 60px; /* Adjust this value to position the dropdown below the header */
        left: 0;
        width: 100%;
        gap: 8px;
        text-align: center;
    }

    ul.menu.active {
        display: flex; /* Show the menu when the "active" class is added */
    }

    .menu-icon {
        display: block;
        font-size: 24px;
        cursor: pointer;
    }
}

ul li:hover {
    opacity: 1;
}

a {
    text-decoration: none;
    color: #fff;
}

.home-first>.container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: flex-start;
    width: 40%;
    margin: auto;
    color: white;
}



.form-control {
    margin-right: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 20px;
    padding-right: 20px;
    border: none;
    font-size: 16px;
    height: 45px;
    background: transparent;
    border-radius: 0px;
}

.btn {
    padding: 12px 30px;
    font-size: 14px;
}

.btn-primary {
    color: #fff;
    background-color: lightskyblue;
    border: none;
    color: #070d59;
    display: inline;
}

.card-numbers {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 8px;
}

.card-numbers span {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin: 0;
}

.line {
    width : 30px;
    height: 2px;
    background: #07edc3;
    margin: auto;
}

.card-numbers p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}

.row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 50%;
    margin: auto;
}



.active {
    opacity: 1;
}

footer {
    background-color: #efefefef; /* Gray background color */
    padding: 20px;
    display: flex;
    justify-content: space-between; /* Distribute sections evenly horizontally */
    flex-wrap: wrap; /* Wrap sections to a new row if they don't fit */
}

.footer-section {
    flex-basis: calc(25% - 20px); /* Set width for each section (25% - 20px for spacing) */
    margin-right: 20px; /* Add spacing between sections */
    margin-bottom: 20px; /* Add spacing between rows */
}

/* Style section headings */
.footer-section h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* Style section content */
.footer-section p {
    font-size: 14px;
    line-height: 1.4;
}

/* Style the links in the "Links" section */
.footer-section ul {
    list-style-type: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #333; /* Link color */
}

/* Style links on hover */
.footer-section ul li a:hover {
    color: #007bff; /* Link color on hover */
}
@media (max-width: 768px) {
    .row {
        flex-direction: column; /* Stack cards on smaller screens */
    }

    .card-numbers {
        flex-basis: auto; /* Allow cards to take full width */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add spacing between rows */
    }
}

#warehouse {
    background-image: url("warehouse.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    min-height: 600px;
    position: relative;
}

#warehouse::before {
    content: "";
    background-color: rgb(4 52 163 / 50%); /* Change the color and opacity as needed */
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
.about-first {
    padding-top: 12rem;
    padding-bottom: 12rem;
    height: 100vh;
    min-height: 600px;
    position: relative;
}
.about-first>.container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 40%;
    margin: auto;
    color: white;
}
.contact-form {
    width: 100%;
    padding: 60px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 20px;
}
label {
    display: block;
    margin-bottom: 5px;
}
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 10px;
    /*border: 1px solid #ccc;*/
    border-radius: 5px;
}
textarea {
    height: 150px;
}
button[type="submit"] {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.center {
    text-align: center;
    padding: 16px;
}

.placeholder-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #fff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.card-numbers p {
    color: black;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}
.card-team {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    gap: 8px;
    padding: 32px;
    border-radius: 10px;
    background: #fff;
    box-shadow: -2px 1px 0px 20px rgba(0, 0, 0, 0.1);

}

.card-icon {
    display: flex;
    max-width: 30%;
    margin-top: 30px;
    gap: 8px;
    padding: 32px;
    border-radius: 10px;
    background: #fff;
}

.card-icon-img {
    min-width: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #fff;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.row2 {
    max-width: 90%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
}


/*media query for row2 class*/
@media screen and (max-width: 768px) {
    .row2 {
        flex-direction: column; /* Stack cards on smaller screens */
    }

    .card-team {
        flex-basis: auto; /* Allow cards to take full width */
        margin-right: 0; /* Remove right margin */
        max-width: 100%;
        margin-bottom: 20px; /* Add spacing between rows */
    }

    .card-icon {
        flex-basis: auto; /* Allow cards to take full width */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add spacing between rows */
        max-width: 100%;
    }

    .card-icon-img {
        flex-basis: auto; /* Allow cards to take full width */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add spacing between rows */
    }

    .card-numbers {
        flex-basis: auto; /* Allow cards to take full width */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add spacing between rows */
    }

    .card-numbers span {
        flex-basis: auto; /* Allow cards to take full width */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add spacing between rows */
    }

    .card-numbers p {
        flex-basis: auto; /* Allow cards to take full width */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 20px; /* Add spacing between rows */
    }
}

.row > .card-numbers > p {
    color: #fff;
}

.container2 {
    width: 100%;
    display: flex;
}
ul.dropdown-content {
    display: none; /* Hide the menu by default on small screens */
    flex-direction: column;
    position: absolute;
    top: 30px; /* Adjust this value to position the dropdown below the header */
    left: -20px;
    width: 100%;
    gap: 8px;
    text-align: center;
}

ul.dropdown-content.active {
    display: flex; /* Show the menu when the "active" class is added */
}
