/*====================================
HOST24 STYLE
====================================*/
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Roboto", sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 1320px;
    max-width: 96%;
    margin: auto;
}

/*========================
HEADER
========================*/

.top-header {
    background: #fcfcfc;
    position: sticky;
    top: 0;
    z-index: 10010;
    box-shadow: none;
    border-bottom: 1px solid #ececec;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 86px;
    gap: 20px;
}

.logo img {
    width: 190px;
}

.header-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/*====================
TOP LINKS
====================*/

.top-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    padding: 8px 20px 6px 0;
    margin: 0;
}

.top-links a {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    color: #000;
    transition: 0.3s;
}

.top-links a:hover {
    color: #000;
}

.icon-svg {
    width: 13px;
    height: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #2a91dc;
    margin-right: 10px;
    flex-shrink: 0;
}

.icon-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.icon-svg path {
    fill: currentColor;
}

.top-links i {
    color: #2a91dc;
    margin-right: 7px;
}

/*====================
NAVBAR
====================*/

.header-right .navbar {
    padding: 0;
    justify-content: flex-end;
}

.header-right .navbar ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0;
}

.header-right .navbar ul > li {
    position: relative;
    flex-shrink: 0;
}

.header-right .navbar ul > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 12px;
    color: #000;
    font-size: 15px;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
    line-height: 1.2;
    white-space: nowrap;
    transition: 0.3s;
}

.header-right .navbar ul > li:first-child > a {
    padding-left: 16px;
}

.header-right .navbar ul > li > a:hover {
    color: #000;
    text-decoration: none;
}

.header-right .nav-arrow-svg {
    width: 11px;
    height: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
    margin-top: 1px;
}

.header-right .nav-arrow-svg svg {
    width: 100%;
    height: 100%;
    display: block;
}

.header-right .nav-arrow-svg path {
    fill: currentColor;
}

/*=====================
MEGA MENU
=====================*/

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    width: max-content;
    max-width: 320px;
    background: #4e535d;
    border-top: 2px solid #1783d4;
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: 0.2s;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    border-radius: 0;
    overflow: hidden;
    z-index: 20;
}

.dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.large {
    min-width: 180px;
    width: max-content;
    display: flex;
    gap: 0;
}

.column {
    flex: 1;
}

.column + .column {
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.column h4 {
    display: none;
}

.column a {
    display: block;
    color: #fff;
    padding: 9px 14px;
    font-size: 14px;
    font-weight: 300;
    font-family: "Roboto", sans-serif;
    letter-spacing: 0;
    transition: 0.25s;
    border-bottom: none;
    text-transform: capitalize;
    line-height: 1.45;
    white-space: nowrap;
}

.column a:last-child {
    border-bottom: none;
}

.column a:hover {
    background: #1783d4;
    color: #fff;
    padding-left: 14px;
}

/*========================
HERO
========================*/

.hero {
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #000;
}

.hero h1 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 18px;
}

.hero p {
    font-size: 20px;
    opacity: 0.95;
}

/*====================================
FOOTER
====================================*/

.footer-top {
    position: relative;
     background: url("../images/bgfooter2a.jpg") center center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.footer-top::before,
.footer-top::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.footer-top::before {
    background: radial-gradient(
        circle at 6% 30%,
        rgba(255, 255, 255, 0.05) 1.5px,
        transparent 1.5px
    );
    background-size: 22px 22px;
    background-position: 0 0;
    mask-image: linear-gradient(120deg, #000 0%, #000 30%, transparent 55%);
    -webkit-mask-image: linear-gradient(
        120deg,
        #000 0%,
        #000 30%,
        transparent 55%
    );
}

.footer-top::after {
    background: linear-gradient(
            115deg,
            transparent 55%,
            rgba(0, 0, 0, 0.18) 78%,
            rgba(0, 0, 0, 0.32) 100%
        ),
        linear-gradient(
            65deg,
            transparent 60%,
            rgba(255, 255, 255, 0.06) 80%,
            transparent 95%
        );
}

.footer-top .container {
    position: relative;
    z-index: 1;
}

.footer-top {
    padding: 70px 0 90px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.footer-logo {
    width: 200px;
    margin-bottom: 20px;
}

.footer-grid h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    color: #fff;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
}

.footer-grid ul li {
    list-style: none;
    margin-bottom: 11px;
}

.footer-grid ul li:last-child {
    margin-bottom: 0;
}

.footer-grid ul li a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 400;
    transition: 0.3s ease;
    display: inline-block;
}

.footer-grid ul li a:hover {
    color: #9fd2ff;
    transform: translateX(6px);
}

/*====================================
COPYRIGHT
====================================*/

.copyright {
    background: #000;
    text-align: center;
    color: #fff;
    padding: 22px 15px;
    font-size: 14px;
    font-weight: 400;
}

/*====================================
BUTTON HOVER
====================================*/

a,
button {
    transition: all 0.3s ease;
}

/*====================================
SCROLLBAR
====================================*/

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #efefef;
}

::-webkit-scrollbar-thumb {
    background: #0b63c9;
    border-radius: 30px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004ea6;
}

/*====================================
MEGA MENU ANIMATION
====================================*/

.dropdown:hover > a {
    color: #000;
}

.dropdown > a i {
    transition: 0.3s;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown > a .nav-arrow-svg {
    transition: 0.3s;
}

.dropdown:hover > a .nav-arrow-svg {
    transform: rotate(180deg);
}

/* ====================================
Mobile Toggle
==================================== */

.menu-toggle {
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    background: #2a91dc;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: 20px;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.25s;
    z-index: 10000;
}

.mobile-nav-close-item,
.mobile-search-item {
    display: none !important;
}

.mobile-nav-close-btn {
    border: none;
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.mobile-nav-close-btn svg {
    width: 18px;
    height: 18px;
    display: block;
}

.mobile-search-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 14px;
    margin-left: auto;
    color: #fff;
}

@media (max-width: 959px) {
    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: 0;
        left: auto;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10002;
        width: 42px;
        height: 42px;
        border-radius: 0;
        background: #e7eef4;
        color: #2b79ac;
    }

    .header-top {
        min-height: 80px;
        padding: 0 58px 0 0;
        position: relative;
        align-items: center;
        justify-content: space-between;
    }

    .header-right {
        position: static;
        flex: 0;
    }

    .top-links {
        display: none;
    }

    .header-right .navbar {
        display: block;
        position: fixed;
        right: 0;
        left: auto;
        top: 0;
        width: 308px;
        max-width: 82vw;
        height: 100dvh;
        background: linear-gradient(180deg, #3898d6 0%, #2f8fce 100%);
        border-top: none;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 10020;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -10px 0 28px rgba(0, 0, 0, 0.22);
    }

    body.mobile-nav-open {
        overflow: hidden;
    }

    body.mobile-nav-open .header-right .navbar {
        transform: translateX(0);
    }

    body.mobile-nav-open .mobile-menu-overlay {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body.mobile-nav-open .menu-toggle {
        opacity: 0;
        pointer-events: none;
    }

    .header-right .navbar ul {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        min-height: 100%;
        padding-top: 0;
    }

    .header-right .navbar ul > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .header-right .navbar ul > li > a {
        width: 100%;
        padding: 17px 20px;
        justify-content: space-between;
        color: #fff;
        font-size: 16px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        letter-spacing: 0.1px;
    }

    .mobile-nav-close-item,
    .mobile-search-item {
        display: block !important;
    }

    .mobile-nav-close-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
        padding: 14px 20px;
        min-height: 58px;
        display: flex !important;
        align-items: center;
    }

    .mobile-search-item a {
        display: flex;
        align-items: center;
        color: #c9e4f5;
        font-size: 16px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        padding: 15px 20px;
        background: rgba(0, 0, 0, 0.08);
        min-height: 58px;
        letter-spacing: 0.1px;
    }

    .mobile-search-item {
        margin-top: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.14);
        border-bottom: none;
    }

    .mega-menu,
    .large {
        position: relative;
        width: 100%;
        max-width: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        box-shadow: none;
        border-top: none;
        padding: 0;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.08);
    }

    .dropdown.open .mega-menu {
        display: block;
    }

    .dropdown > a .nav-arrow-svg {
        color: #fff;
        width: 14px;
        height: 14px;
        opacity: 0.95;
    }

    .dropdown.open > a .nav-arrow-svg {
        transform: rotate(180deg);
    }

    .column a {
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
        padding: 14px 40px;
        font-size: 15px;
        font-weight: 600;
        font-family: "Poppins", sans-serif;
        background: rgba(255, 255, 255, 0.02);
    }

    .column a:hover {
        background: transparent;
        padding-left: 40px;
        text-decoration: none;
    }

    .mobile-nav-close-btn {
        width: 34px;
        height: 34px;
        padding: 0;
        color: #fff;
    }

    .mobile-nav-close-btn svg {
        width: 17px;
        height: 17px;
    }

    .mobile-search-icon {
        width: 15px;
        height: 15px;
        color: #dbeaf6;
    }
}

/*====================================
HEADER SHADOW
====================================*/

.top-header {
    transition: 0.35s;
}

.top-header:hover {
    box-shadow: none;
}

/*== Additional css after integraton == */

.btn-primary{
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}
.btn-primary:hover {
    color: #fff;
    background-color: #0056b3;
    border-color: #0056b3;
}
.btn-primary.focus, .btn-primary:focus{
        color: #fff;
    background-color: #0056b3;
    border-color: #007bff;
    box-shadow: 0 0 0 .2rem rgba(82, 125, 168, .5);
}

.card-header{ background-color: rgb(34 143 220);    color: #fff;}
#order-standard_cart .products .product div.product-desc{font-size: 1em ;}

.sidebar .list-group-item.active, .sidebar .list-group-item.active:focus, .sidebar .list-group-item.active:hover{
        background-color: #0056b3;
    border-color: #007bff;
}
.spotlight-tld .btn:not(.domain-contact-support), #order-standard_cart .products .product header{
  color: #fff !important;
    background-color: #007bff !important;
    border-color: #007bff;  
}
#order-standard_cart .products .product header span{color: #fff !important;}

#order-standard_cart .order-summary, #order-standard_cart .view-cart-items-header, #order-standard_cart .empty-cart .btn{
    background-color: #007bff !important;
    border-color: #007bff !important;  
}
#order-standard_cart .view-cart-items{ border-color: #007bff !important; }

/*====================================
RESPONSIVE
====================================*/

@media (max-width: 1200px) {
    .container {
        width: 95%;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero h1 {
        font-size: 44px;
    }
}

@media (min-width: 960px) and (max-width: 991px) {
    .header-top {
        flex-direction: row;
        height: auto;
        padding: 0;
    }

    .top-links {
        margin-top: 0;
        flex-wrap: nowrap;
        justify-content: flex-end;
        gap: 14px;
    }

   .header-right .navbar ul {
        flex-wrap: nowrap;
    }

    .header-right .navbar ul > li > a {
        padding: 14px 12px;
        font-size: 14px;
    }

    .large {
        width: max-content;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero {
        height: 420px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .header-top {
        text-align: left;
    }

    .logo img {
        width: 170px;
        margin: 0;
    }

    .hero {
        height: 340px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-grid h3 {
        font-size: 18px;
    }

    .footer-grid ul li a {
        font-size: 15px;
    }

    .footer-logo {
        margin: auto;
    }

    .copyright {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 15px;
    }

    .logo img {
        width: 150px;
    }

    .footer-logo {
        width: 170px;
    }

    .footer-top {
        padding: 60px 0;
    }
}
