body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

.navbar {
    background: #fff;
    padding: 15px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
    transition: background 0.3s;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
    margin-right: 2rem;
}

.nav-links li {
    position: relative;
    margin: 0 15px;
}

.nav-links a {
    color: #013173;
    text-decoration: none;
    padding: 10px;
    display: block;
    transition: background 0.3s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    min-width: 160px;
    z-index: 1;
    border-radius: 5px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    margin-right: 20px;
}

.logo {
    position: relative;
    background-image: url('../img/logo.svg');
    background-position: center;
    background-repeat: no-repeat;
    width: 150px;
    height: 90px;
}

.bodystart {
    text-align: center;
    background: #f4f4f4;
    margin-top: 100px;
}

.bodystart.story {
    margin-top: 100px;
}

.slider {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.slider img {
    width: 100%;
    display: none;
}

.slider img.active {
    display: block;
}

.slider .prev,
.slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 1rem;
    color: #000;
}

.slider .prev {
    left: 10px;
}

.slider .next {
    right: 10px;
}

.btn {
    background: #013173;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: transform 0.3s;
}

.btn:hover {
    transform: scale(1.05);
}

.footer {
    text-align: center;
    padding: 20px;
    background: #013173;
    color: white;
}

.products-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    max-width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.product-slide {
    display: none;
    text-align: center;
    transition: transform 0.5s ease-in-out;
}

.product-slide img {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product-slide h3 {
    color: #013173;
    margin: 10px 0;
}

.product-slide p {
    font-size: 14px;
    color: #333;
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #013173;
    color: white;
    border: none;
    padding: 10px 18px 10px 18px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
    z-index: 9999;
}

button.prev:hover,
button.next:hover {
    background: #0056b3;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

/* Active Slide */
.product-slide.active {
    display: block;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 1001;
        margin: 15px 40px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px;
        left: 0;
        background: #013173;
        padding: 10px 0;
        z-index: 1000;
        max-height: 200px;
        overflow-y: scroll;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #fff;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .logo {
        display: block;
        width: 120px;
        height: auto;
    }

    .navbar .nav-links a {
        color: #fff;
        padding: 12px;
        display: block;
    }

    .dropdown-content {
        display: none;
        position: static;
        background: none;
        box-shadow: none;
        width: 100%;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .employee-login{
        display: none;
    }
    .slider img {
        min-height: 200px;
    }
}

.employee-login a{
    border: 1px solid;
    border-radius: 5px;
}


.grid-slider-container {
    position: relative;
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 20px;
    border-radius: 10px;
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
background: white;
*/

}

.grid-slider {
    display: flex;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
}

.grid-slide {
    flex: 0 0 calc(100% / 4 - 10px);
    /* Show 3 slides at a time */
    background: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.grid-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

button.prev:hover,
button.next:hover {
    background: #0056b3;
}

button.prev {
    left: 10px;
}

button.next {
    right: 10px;
}

@media (max-width: 768px) {
    .grid-slide {
        flex: 0 0 100%;
        /* Show 1 slide at a time on small screens */
    }
}

.products H2 {
    color: #013173 !important;
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 800;
}

.grid-slide p {
    font-size: 16px;
    line-height: 28px;
}

.grid-slide h3 {
    font-weight: 500;
    color: #013173;
    margin: 0;
}

.grid-slide .btn {
    line-height: 3rem;
    background: transparent;
    color: #013173;
    border: 1px solid;
    border-radius: 50px;
}

.grid-slide .btn:hover {
    background: #013173;
    color: #fff;
}

.grid-slider-container.quality {
    width: 90%;
    margin-bottom: 3rem;
}

.grid-slider-container.quality img {
    border-style: none;
    border-radius: 9px;
    width: 100%;
    height: auto;
    display: block;
}

li.dropdown:hover>.dropbtn {
    background-color: #013173;
    border-radius: 5px;
    color: #fff;
}

.nav-links a:hover {
    background: #013173;
    border-radius: 5px;
    color: #fff;
}

.nav-links .dropdown-content a:hover {
    border-radius: 0px !important;
}

.dropdown-content a {
    font-size: 0.875rem;
}