﻿
:root {
    --main-Blue: rgb(7,18,72);
    --main-Gold: #f6bd14;
    --mid-color: #ddf9fe;
    --midA-color: #2691d9;
    --midB-color: #ffef96;
    --color-dark: #071248;
    --text-grey: #8390A2;
    --midC-color: #f0b947;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style-type: none;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: white;
    /*width:95vw;*/
    overflow-x: hidden;
}


/*Top Bar ***********************************************************************/
.Top-Menu {
    display: flex;
    justify-content: space-between;
    /*padding: 1rem 1.5rem;*/
    box-shadow: 2px 2px 4px #8390A2;
    border-left: 1px solid #f8e7e7;
    background: var(--main-Blue);
    position: fixed;
    left: 0px;
    width: 100%;
    top: 0px;
    z-index: 100;
    transition: width 500ms;
    height: 5vw;
}

.nav-container {
    display: flex;
    justify-content: center; /* Center the nav-links horizontally */
    margin-top: .5vw;
    width: 100%; /* Ensure it takes the full width */
    z-index: 1000; /* Higher than .Menubar to ensure it's on top */
}


/* Top Menu Bar *****************************************************************/
.nav-links ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0; /* Remove default margin */
    padding: 0; /* Remove default padding */
    justify-content: center;
}

    .nav-links ul li {
        margin: 1vw 2vw; /* Adjust spacing between items */
        z-index: 1000;
    }

        .nav-links ul li a {
            text-decoration: none;
            font-weight: bold;
            font-family: Calibri;
            font-size: 1.5vw;
        }

            .nav-links ul li a:hover {
                text-decoration: underline; /* Optional: underline effect */
            }
.Menu-click {
    color: white;
}

.Menu-Unclick {
    color: var(--main-Gold);
}
/*Logo ***************************************************************/
.CompanyLogo {
width: 10vw;
height: 10vw;
padding: .4rem 0rem .5rem .5rem;
color: #fff;
z-index: 1000;
margin-left: 1vw;
}

/*Side Main Menubar ********************************************************************/
.sidebar-brand-Menubar {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    background: var(--main-Blue);
    z-index: 100;
    width: 5vw;
}

/* Content ****************************************************************************/
.Content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2vw 8vw auto;
    margin-bottom: 4vw;
    margin-top: 5vw;
    width: 100%;
}

/* Mission */
.Mission-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
    background-color: var(--main-Gold);
    margin-right:15vw;
}
.Mission-Image {
    flex: 1;
    max-width: 70%;
    height: auto;
    margin-right: 1vw;
    margin-left: -5vw;
    opacity: 0; /* Start with the image invisible */
    transform: translateX(-50px); /* Start the image 50px to the left */
    animation: fadeInLeft 3s ease forwards; /* Apply the animation */
}
/* Keyframes for fade-in from left */
    @keyframes fadeInLeft {
        to {
            opacity: 1; /* Final opacity */
            transform: translateX(0); /* End with no horizontal translation */
        }
    }
.Mission-Content-Container {
    margin-left: 2vw;
    margin-right: 3vw;
}
.Title-Mission {
    color: var(--main-Blue);
    margin-bottom: 2vw;
    margin-top: 2vw;
    font-size: 5vw;
    font-family: Calibri;
    font-weight: bold;
    text-shadow: .2vw .2vw .2vw #808080;
}
.Mission-Content {
    color: var(--main-Blue);
    flex: 2;
    text-align: left;
    font-size: 2vw;
    line-height: 1.5;
}

/* Vision */
.Vision-container {
    display: flex;
    align-items: flex-start;
    width: 100%;
    background-color: var(--main-Blue);
    margin-right: 15vw;
}

.Vision-Image {
    flex: 2;
    max-width: 65%;
    height: auto;
    margin-right: -2vw;
    opacity: 0; /* Start with the image invisible */
    transform: translateX(50px); /* Start the image 50px to the left */
    animation: fadeInright 3s ease forwards; /* Apply the animation */
}
    @keyframes fadeInright {
        to {
            opacity: 1; /* Final opacity */
            transform: translateX(0); /* End with no horizontal translation */
        }
    }
.Vision-Content-Container {
    margin-left: 8vw;
    margin-right: 4vw;
}
.Title-Vision {
    color: var(--main-Gold);
    margin-bottom: 1vw;
    font-size: 5vw;
    font-family: Calibri;
    font-weight: bold;
    margin-left: -2vw;
    text-shadow: .2vw .2vw .2vw #808080;
}
.Vision-Content {
    color: var(--main-Gold);
    margin-left: -2vw;
    flex: 1;
    text-align: left;
    font-size: 1.7vw;
    line-height: 1.5;
}

/* Warehouse */
.Warehouse-container {
    position: relative;
    text-align: center; /* Center the text horizontally */
}

.Warehouse-Title-Container {
    position: relative;
    display: inline-block; /* Shrink wrap to the image */
}

.Warehouse-Image {
    display: block;
    width: 100%; /* Adjust as needed */
    height: auto; /* Maintain aspect ratio */
    height: 15vw;
    margin-right: -2vw;
    margin-left: -4vw;
}

.Title-Warehouse {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    color: var(--main-Gold); /* Ensure the text stands out against the image */
    font-size: 5vw; /* Adjust size as needed */
    font-weight: bold;
    text-shadow: .3vw .3vw .3vw var(--main-Blue);
}

/* Warehouse content */
.Warehouse-Content-Container {
    text-align: center;
}

.Content-Warehouse {
    margin-top: 1vw;
    font-size: 2vw;
}

/* Warehouse table*/
.Warehouse-Table-container {
    margin-top: 1vw;
    text-align: center; /* Center the table in the container */
    margin-right: 11vw;
}
.Warehouse-Table-container-1 {
    margin-top: 1vw;
    text-align: center; /* Center the table in the container */
    margin-right: 11vw;
    margin-bottom: 5vw;
}

.Warehouse-Table {
    width: 100%; /* Make the table full-width */
    border-collapse: collapse; /* Remove gaps between cells */
    margin: 0 auto; /* Center the table horizontally */
}

    .Warehouse-Table th,
    .Warehouse-Table td {
        border: .2vw solid #000000; /* Add borders to cells */
        padding: 8px; /* Add padding inside cells */
        text-align: center; /* Center text in cells */
    }

    .Warehouse-Table th {
        background-color: #f2f2f2; /* Light grey background for headers */
        font-weight: bold; /* Make header text bold */
        font-size:2vw;
    }

    .Warehouse-Table tr:nth-child(even) {
        background-color: #f9f9f9; /* Light grey background for even rows */
    }
    .Warehouse-Table tr {
        font-size: 2vw;
    }

    .Warehouse-Table tr:hover {
        background-color: var(--main-Gold); /* Slightly darker grey on hover */
    }

.Accreditation-container {
    margin-top: 1vw;
    text-align: center;
    /*margin-right: 11vw;*/
}
.Accreditation-Title-Container {
    position: relative;
    /*display: inline-block;*/ /* Shrink wrap to the image */
}
.Title-Accreditation {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    color: var(--main-Gold); /* Ensure the text stands out against the image */
    font-size: 5vw; /* Adjust size as needed */
    font-weight: bold;
    text-shadow: .3vw .3vw .3vw var(--main-Blue);
    padding-bottom:2vw;
}
.Accreditation-Table-container {
    margin-top: 1vw;
    text-align: center; 
    margin-right: 11vw;
}
.Accreditation-Table {
    width: 100%;
    border-collapse: collapse; 
    margin: 0 auto;
}
.Accreditation-Image {
    width: 300px;
    height: 200px;
}
.Accreditation-Table-container {
    margin-top: 2vw;
    text-align: center; /* Center the table in the container */
    /*margin-right: 11vw;*/
}

.Accreditation-Table {
    width: 100%; /* Make the table full-width */
    border-collapse: collapse; /* Remove gaps between cells */
    margin: 0 auto; /* Center the table horizontally */
}

    .Accreditation-Table th,
    .Accreditation-Table td {
        border: .2vw solid #000000; /* Add borders to cells */
        padding: 8px; /* Add padding inside cells */
        text-align: center; /* Center text in cells */
        font-weight: bold; /* Make header text bold */
        font-size: 2vw;
        color: var(--main-Blue);
    }

/* Footer ******************************************************************/
footer {
    background-color: #f1f5f9;
    color: var(--main-Blue);
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
    font-family: Calibri;
    font-weight: bold;
    margin-left: -.6vw;
}
