* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    max-width: 100vw;
}

html,
body {
    overflow-x: hidden;

}

.utility-bar {
    background: #fff;
    padding: 8px 15px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    min-height: 60px;
}

.logo {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: #0077cc;
    letter-spacing: -3px;
}

.utility-right {
    display: flex;
    flex-wrap: wrap;
    row-gap: 8px;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.outline-box {
    border: 1px solid #b0b0b0;
    background: #f7f7f7;
    padding: 4px 6px;
    display: flex;
    align-items: center;
    gap: 5px;
    border-radius: 7px;
}

.outline-box input[type="text"] {
    border: none;
    background: #fff;
    outline: none;
    font-size: 13px;
    padding: 4px 6px;
    width: clamp(100px, 15vw, 180px);
    height: 26px;
    border: 1px solid #ccc;
}

.btn-blue {
    background: linear-gradient(to bottom, #4da6e8, #1a6dbf);
    color: #fff;
    border-radius: 9px;
    border: 1px solid #1560a8;
    padding: 4px 14px;
    font-size: 13px;
    font-weight: bold;
    cursor: pointer;
    height: 26px;
    border-radius: 3px;
}

.btn-blue:hover {
    background: linear-gradient(to bottom, #5bb5f5, #2278cc);
}


.signup-link {
    font-size: 13px;
    color: #333;
    text-decoration: none;
    padding: 0 4px;
}

.signup-link:hover {
    text-decoration: none;
    color: #1167bb;
}


.cart-link {
    font-size: 13px;
    color: #333;
    padding: 4px 6px;
    text-decoration: underline;
}

.cart-link:hover {
    text-decoration: underline;
    color: #1167bb;
}

.cart-icon {
    margin-right: 4px;
    font-size: 14px;
}


/* .navbar {
      background: #29aaed;
      padding: 5px 10px;
      display: flex;
      align-items: center;
      height: 50px;
      justify-content: space-around
    } */

.navbar {
    min-height: 50px;
    justify-content: space-around;
    background: linear-gradient(#2699dc, #4169E1, #2699dc);
    display: flex;
    flex-wrap: wrap;
    row-gap: 4px;
    align-items: center;
    gap: 30px;
    padding: 0 30px;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;

    background: linear-gradient(#2699dc, #4169E1, #2699dc);
    min-width: 180px;

    border: 1px solid #ccc;
    z-index: 2;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    justify-content: center;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    padding: 9px 20px;
    font-size: 14px;
    display: inline-block;
    font-weight: bold;
}

.navbar a.active {
    background: #345678;
    border-radius: 6px 6px 0px 0px;
    margin: 8px 0px 5px 0;
    padding: 11px 18px 16px 18px;
}

.navbar a:hover {
    background: #2699dc;
    padding: 16px 20px;
    font-size: 14px;
    margin: 0 0 0 0;
    border-radius: 0%;
}

.navbar a.has-arrow::after {
    content: " ▾";
    font-size: 11px;
}


.hero-with-image h4 {
    font-size: clamp(20px, 2.8vw, 34px);
    font-weight: 300;
    position: relative;
    top: clamp(20px, 5vw, 50px);
    left: clamp(20px, 5vw, 50px);
}

.hero-with-image h5 {
    position: relative;
    font-size: clamp(14px, 2vw, 24px);
    font-weight: 300;
    top: clamp(30px, 7vw, 70px);
    left: clamp(20px, 5vw, 50px);
}

.hero-with-image a {
    position: relative;
    top: clamp(35px, 9vw, 90px);
    left: clamp(20px, 5vw, 50px);
    text-decoration: none;
    background-color: #1a6dbf;
    outline: 1px solid #084a9d;
    color: #EEEEEE;
    border-radius: 3px 3px 0 0;
    padding: 3px 18px;
    display: inline-block;
}

.banner-text {
    width: clamp(220px, 40%, 480px);

}

.hero-with-image {
    margin: 13px;
    border-radius: 9px;
    background-image: url(Images/Background-hero.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: clamp(220px, 30vw, 400px);
    color: #EEEEEE;
    overflow: hidden;
}


.news-bar {
    right: 13px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 40px;
    height: auto;
    background: #E5E5E5;
    border: 1px solid #888;
    margin: 13px 13px 13px 13px;
    border-radius: 5px;
    padding: 6px 0;
}

.icon {
    padding: 0 10px 0px 5px;
}

.title {
    padding-right: 15px;
    font-weight: bold;
}

.news {
    padding-right: 20px;
    flex: 1 1 150px;
    min-width: 0;
}

.button {
    display: flex;
    gap: 5px;
    margin-right: 25px;
}

.button button {
    width: 25px;
    height: 25px;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 15px;
    row-gap: 20px;
}

.help-desk-support {
    position: relative;
    height: clamp(260px, 40vh, 420px);
    width: clamp(220px, 30vw, 420px);
    background-image: url(Images/support.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 9px;
}

.help-desk-support h2 {
    color: #fff;
    position: relative;
    top: clamp(15px, 4vw, 40px);
    left: clamp(12px, 2vw, 20px);
    font-weight: 700;
    font-size: clamp(19px, 2.3vw, 27px);
}

.help-desk-support p {
    color: #fff;
    position: relative;
    top: clamp(30px, 7vw, 75px);
    left: clamp(12px, 2vw, 20px);
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 300;
}


.request-btn {
    position: relative;
    top: clamp(65px, 14vw, 150px);
    left: clamp(12px, 2vw, 20px);
    text-decoration: none;
    color: #fff;
    background: linear-gradient(#777, #333);
    outline: 1px solid #555;
    border-radius: 5px;
    padding: 5px 18px;
    display: inline-block;
}

.request-btn:hover {
    background: linear-gradient(#555, #111);
}


.business-solutions-for-you {
    position: relative;
    height: clamp(260px, 40vh, 420px);
    width: clamp(220px, 30vw, 420px);
    background-image: url(Images/Business.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 9px;
}

.business-solutions-for-you h2 {
    color: #fff;
    position: relative;
    top: clamp(15px, 4vw, 40px);
    left: clamp(12px, 2vw, 20px);
    font-weight: 700;
    font-size: clamp(18px, 2.2vw, 26px);
    word-spacing: -2px;
    letter-spacing: -1px;
}

.business-solutions-for-you p {
    color: #FFF;
    position: relative;
    top: clamp(30px, 7vw, 75px);
    left: clamp(12px, 2vw, 20px);
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 300;
}

.learn-btn {
    position: relative;
    top: clamp(60px, 13vw, 140px);
    left: clamp(12px, 2vw, 20px);
    text-decoration: none;
    color: #fff;
    background: linear-gradient(#777, #333);
    outline: 1px solid #555;
    border-radius: 5px;
    padding: 5px 18px;
    display: inline-block;
}

.learn-btn:hover {
    background: linear-gradient(#555, #111);
}


.order-online {
    position: relative;
    height: clamp(260px, 40vh, 420px);
    width: clamp(230px, 32vw, 440px);
    background-image: url(Images/online.png);
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 9px;
}

.order-online h2 {
    color: #fff;
    position: relative;
    top: clamp(15px, 4vw, 40px);
    left: clamp(12px, 2vw, 20px);
    font-weight: 700;
    font-size: clamp(19px, 2.3vw, 27px);
}

.order-online p {
    color: #fff;
    position: relative;
    top: clamp(30px, 7vw, 75px);
    left: clamp(12px, 2vw, 20px);
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 300;
}


.login-btn-quick-links {
    position: relative;
    top: clamp(65px, 14vw, 150px);
    left: clamp(12px, 2vw, 20px);
    text-decoration: none;
    color: #fff;
    background: linear-gradient(#777, #333);
    outline: 1px solid #555;
    border-radius: 5px;
    padding: 5px 18px;
    display: inline-block;

}

.login-btn-quick-links:hover {
    background: linear-gradient(#555, #111);
}


.bar {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
    justify-content: space-between;
    align-items: center;

    min-height: 42px;
    margin: 40px 20px 0;
    padding: 10px 12px;

    background: #efefef;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
}

.sitemap a {
    display: flex;
    align-items: center;
    gap: 8px;

    text-decoration: none;
    color: #555;
    font-size: 14px;
}

.sitemap a:hover {
    color: #0077cc;
}

.sitemap i {
    color: #888;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 8px;
}

.linkedin,
.twitter,
.facebook {
    display: block;
    width: 24px;
    height: 24px;

    background-size: cover;
    background-repeat: no-repeat;
}

.linkedin {
    background-image: url("Images/linkedin.png");
}

.linkedin:hover {
    outline: 1px solid #333;
    border-radius: 50%;
    background-color: #0077cc;
}

.twitter {
    background-image: url("Images/twitter.png");
}

.twitter:hover {
    outline: 1px solid #333;
    border-radius: 50%;
    background-color: #0077cc;
}

.facebook {
    background-image: url("Images/facebook.png");
}

.facebook:hover {
    outline: 1px solid #333;
    border-radius: 50%;
    background-color: #0077cc;
}

.lower-footer {
    text-decoration: none;
    color: #AAA;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-content: left;
    flex-direction: row;
    left: 20px;
}

.lower-footer a {
    color: #AAA;
    text-decoration: underline;
    padding-bottom: 20px;
    padding-top: 30px;
    left: 20px;
    margin-left: 20px;
}

.lower-footer a:hover {
    color: #666
}

@media (min-width: 2561px) {

    body {
        max-width: 1800px;
        margin: auto;
    }

    .hero-with-image {
        height: 500px;
    }

    .logo {
        font-size: 48px;
    }

    .navbar a {
        font-size: 18px;
    }

    .quick-links {
        gap: 30px;
    }

    .help-desk-support,
    .business-solutions-for-you,
    .order-online {
        height: 450px;
    }

    .business-solutions-for-you,
    .order-online {
        height: 450px;
        min-width: 30%;
    }

    .help-desk-support,
    .business-solutions-for-you,
    .order-online {
        height: 450px;
        min-width: 30%;
    }
}


@media (min-width:1921px) and (max-width:2560px) {

    body {
        max-width: 1600px;
        margin: auto;
    }

    .hero-with-image {
        height: 430px;
    }

    .quick-links {
        gap: 20px;
    }

    .business-solutions-for-you,
    .order-online {
        height: 450px;
        min-width: 30%;
    }

    .help-desk-support,
    .business-solutions-for-you,
    .order-online {
        height: 450px;
        min-width: 30%;
    }
}



@media (min-width:1367px) and (max-width:1920px) {

    body {
        width: 100%;
    }

    .business-solutions-for-you,
    .order-online {
        height: 450px;
        min-width: 30%;
    }

    .help-desk-support,
    .business-solutions-for-you,
    .order-online {
        height: 450px;
        min-width: 30%;
    }
}


/* Landscape phones / short-viewport devices: vh-based card heights collapse
   too far and can force buttons past the bottom edge, so pin to fixed values. */
@media (max-height: 500px) and (max-width: 900px) {

    .hero-with-image {
        height: 220px;
    }

    .help-desk-support,
    .business-solutions-for-you,
    .order-online {
        height: 220px;
    }

    .request-btn,
    .learn-btn,
    .login-btn-quick-links {
        top: clamp(60px, 14vw, 90px);
    }

    .business-solutions-for-you,
    .order-online {
        height: 450px;
        min-width: 30%;
    }

    .help-desk-support,
    .business-solutions-for-you,
    .order-online {
        height: 450px;
        min-width: 30%;
    }
}


@media (max-width:600px) {

    .logo {
        font-size: 32px;
        text-align: center;
    }

    .utility-bar {
        flex-direction: column;
        height: auto;
    }

    .utility-right {
        flex-direction: column;
        width: 100%;
    }

    .outline-box {
        width: 100%;
    }

    .outline-box input {
        width: 100%;
    }

    .navbar {
        flex-direction: column;
        height: auto;
        gap: 0;
    }

    .navbar a {
        width: 100%;
        text-align: center;
    }

    .hero-with-image {
        height: 250px;
    }

    .hero-with-image h4 {
        left: 20px;
        top: 20px;
        font-size: 22px;
    }

    .hero-with-image h5 {
        left: 20px;
        top: 35px;
        font-size: 16px;
    }

    .hero-with-image a {
        left: 20px;
        top: 50px;
    }

    .news-bar {
        flex-wrap: wrap;
        height: auto;
        padding: 10px;
    }

    .quick-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .help-desk-support,
    .business-solutions-for-you,
    .order-online {
        width: 95%;
        height: 280px;
    }

    .bar {
        flex-direction: column;
        height: auto;
        gap: 15px;
        padding: 15px;
    }

    .lower-footer {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .help-desk-support,
    .business-solutions-for-you,
    .order-online {
        height: 450px;
        min-width: 30%;
    }
}

body {
    width: 100vw;
    max-width: 100vw;
    min-width: 100vw;
}