.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
}

.btn.btn-primary:hover {
    background: var(--bs-secondary);
    border: 1px solid var(--bs-secondary);
    box-shadow: 0px 4px 12px rgb(0 0 0 / 60%);
    transform: translateY(-2px);
}

.btn.btn-secondary {
    color: var(--bs-white);

}

.btn.btn-secondary:hover {
    background: var(--bs-primary);
    border: 1px solid var(--bs-primary);
}

/*** Topbar Start ***/

/*** Navbar ***/
.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 28px;
    padding: 35px 0;
    color: #101f46;
    font-size: 16px;
    font-weight: 700;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: #000;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #186ad0;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    /*max-height: 45px;*/
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free", "FontAwesome", sans-serif;
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        /*position: sticky;*/
        position: fixed;
        width: 100%;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid #102250 !important;
        color: #102250 !important;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid rgba(0, 0, 0, .08);
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--bs-dark);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-top: 0;
        border-right: 0;
        border-left: 0;
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: var(--bs-white);
        border: none;
    }

    .navbar-light .navbar-nav .nav-item::before {
        /*position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;*/
    }

    .sticky-top.navbar-light .navbar-nav .nav-item::before {
        bottom: 0;
    }

    .navbar-light .navbar-nav .nav-item::after {
        /* content: "";
        position: absolute;
        bottom: 1px;
        left: 50%;
        transform: translateX(-50%);
        border: 10px solid;
        border-color: transparent transparent var(--bs-primary) transparent;
        opacity: 0;
        transition: 0.5s;*/
    }

    .navbar-light .navbar-nav .nav-item:hover::after,
    .navbar-light .navbar-nav .nav-item.active::after {
        /*bottom: 1px;
        opacity: 1;*/
    }

    .navbar-light .navbar-nav .nav-item:hover::before,
    .navbar-light .navbar-nav .nav-item.active::before {
        /*width: calc(100% - 2px);
        left: 1px;*/
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/*** Carousel Hero Header Start ***/
.carousel-header {
    position: relative;
    overflow: hidden;
}

.carousel-indicators {
    display: none;
}

.carousel .carousel-control-prev,
.carousel .carousel-control-next {
    width: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon,
.carousel .carousel-control-next .carousel-control-next-icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 25px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

.carousel .carousel-control-prev .carousel-control-prev-icon {
    left: 0;
    border-left: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 50px;

}

.carousel .carousel-control-next .carousel-control-next-icon {
    right: 0;
    border-right: 0;
    border-top-left-radius: 50px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 0;
}

.carousel .carousel-control-prev .carousel-control-prev-icon:hover,
.carousel .carousel-control-next .carousel-control-next-icon:hover {
    background: var(--bs-secondary);
}

.carousel .carousel-inner .carousel-item {
    position: relative;
}

.carousel .carousel-inner .carousel-item .carousel-caption-1 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: end;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));
    background-size: cover;
}

.carousel-caption-1-content {
    text-align: end;
    padding-right: 100px;
}

.carousel-caption-1-content .carousel-caption-1-content-btn {
    display: flex;
    justify-content: end;
}

.carousel .carousel-inner .carousel-item .carousel-caption-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding-top: 100px;
    display: flex;
    align-items: center;
    text-align: center;
    /*background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0.5));*/
    background-size: cover;
}

.carousel-caption-2-content {
    text-align: start;
    padding-left: 100px;
}

.carousel-caption-2-content .carousel-caption-2-content-btn {
    display: flex;
    justify-content: start;
}


@media (max-width: 992px) {
    .carousel .carousel-inner .carousel-item {
        height: 700px;
        margin-top: -100px;
    }

    .carousel .carousel-inner .carousel-item img {
        height: 700px;
        object-fit: cover;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-1 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-1-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-1-content .carousel-caption-1-content-btn {
        justify-content: center;
    }


    .carousel .carousel-inner .carousel-item .carousel-caption-2 {
        max-width: 100% !important;
        justify-content: center;
    }

    .carousel-caption-2-content {
        padding: 0 20px !important;
        text-align: center !important;
    }

    .carousel-caption-2-content .carousel-caption-2-content-btn {
        justify-content: center;
    }



    .carousel .carousel-control-prev .carousel-control-prev-icon,
    .carousel .carousel-control-next .carousel-control-next-icon {
        display: none;
    }
}

.modal .modal-header {
    height: 100px;
}

#searchModal .modal-content {
    background: rgba(255, 255, 255, .6);
}

.pr_btn {
    background: #186ad0;
    border: 1px solid #186ad0;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 10%);
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    padding-left: 26px !important;
    padding-right: 26px !important;
}

.pr_btn:hover i {
    color: #186ad0;
}

.pr_btn i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.2em;
}

.syp_btn {
    background: #159a59;
    border: 1px solid #159a59;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 10%);
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    padding-left: 26px !important;
    padding-right: 26px !important;
}

.syp_btn i {
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.2em;
}

.syp_btn:hover i {
    color: #159a59;
}

.eo_btn {
    background: #fff;
    border: 1px solid #dedede;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 10%);
    color: #0d2153 !important;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    padding-left: 26px !important;
    padding-right: 26px !important;
}

.eo_btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
}

.eo_btn:hover i {
    color: #fff !important;
    font-size: 18px;
    line-height: 1.2em;
}

.eo_btn i {
    margin-left: 10px;
    color: #999 !important;
}

.vl_btn {
    background: #F4F8FF;
    background: linear-gradient(90deg, rgba(244, 248, 255, 1) 0%, rgba(238, 245, 253, 1) 100%, rgba(245, 248, 255, 1) 100%);
    color: #000 !important;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 10%);
    font-weight: 500;
    font-size: 14px;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    padding-left: 26px !important;
    padding-right: 26px !important;
}

.vl_btn i {
    color: #129954 !important;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.2em;
}

.vl_btn:hover i {
    color: #fff !important;
}

.vl_btn:hover {
    background: #fff;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 60%);
    color: #fff !important;
    transform: translateY(-2px);
}

.vl_btn:focus {
    box-shadow: 0 0 0 0.25rem rgb(16 29 71 / 50%) !important;
    background: #101f46 !important;
}

.vl_btn:active {
    box-shadow: 0 0 0 0.25rem rgb(16 29 71 / 50%) !important;
    background: #101f46 !important;
}

.ls_btn {
    background: #fff;
    color: #000 !important;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 10%);
    font-weight: 500;
    font-size: 14px;
    padding-top: 13px !important;
    padding-bottom: 13px !important;
    padding-left: 26px !important;
    padding-right: 26px !important;
}

.ls_btn i {
    color: #186ad0 !important;
    margin-right: 10px;
    font-size: 18px;
    line-height: 1.2em;
}

.ls_btn:hover i {
    color: #fff !important;
}

.ls_btn:hover {
    background: #fff;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 60%);
    color: #fff !important;
    transform: translateY(-2px);
}

.ls_btn:focus {
    box-shadow: 0 0 0 0.25rem rgb(16 29 71 / 50%) !important;
    background: #101f46 !important;
}

.ls_btn:active {
    box-shadow: 0 0 0 0.25rem rgb(16 29 71 / 50%) !important;
    background: #101f46 !important;
}

.bannercaption {
    display: table;
    background: #70cdfd;
    /*background: #FFF8D9;
    background: linear-gradient(90deg,rgba(255, 248, 217, 1) 0%, rgba(229, 237, 255, 1) 100%);*/
    box-shadow: 0px 4px 12px rgb(0 0 0 / 10%);
    border-radius: 8px;
    padding: 16px;
}

.bannercaption ul {
    margin: 0;
    padding: 0;
}

.bannercaption ul li {
    list-style: none;
    float: left;
    color: #000;
    font-weight: 700;
    font-size: 16px;
    margin: 0 12px;
}

/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: url(../img/carousel-1.jpg);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

@media (max-width: 992px) {
    .bg-breadcrumb {
        padding: 60px 0 60px 0;
    }
}

/*** Single Page Hero Header End ***/
.ri_icon img {
    width: 60px;
}

.ri_icon2 img {
    width: 46px;
}

.text-justify {
    text-align: justify;
}

.fs-3 {
    font-size: 1.75rem !important;
    line-height: 1.3;
}

.water {
    position: relative;
}

.water a {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    bottom: 237px;
    background: #f15722;
    color: #fff;
    border-radius: 100px;
    padding: 6px 25px;
    display: table;
    font-size: 16px;
}

.water a:hover {
    background: #19409A;
}

.water img {
    border-radius: 200px 200px 0 0;
    padding: 20px 20px 0 20px;
    border: 8px solid #fba919;
    border-bottom: none;
}

.watertext {
    border: 8px solid #fba919;
    border-top: none;
}

/*** Features Start ***/
.feature .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 10px;
    transition: 0.5s;
    box-shadow: 0 17px 20px rgb(0 0 0 / 5%);
}

.features_title {
    display: table;
    width: 100%;
}

.features_title h4 {
    text-align: left;
    font-weight: 800;
    color: #101f46;
    font-size: 26px;
    letter-spacing: -1px;
}

.pagination {
    float: right;
}

.search {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 10px rgb(0 0 0 / 5%);
    position: relative;
}

.bi-search {
    position: absolute;
    left: 20px;
    font-size: 22px;
    top: 8px;
}

.nav-pills li {
    margin: 0 5px;
}

.search-go {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-go .bi-search {
    position: static;
    font-size: inherit;
    color: inherit;
    line-height: 1;
}

.search-go:hover {
    color: #1968cf;
    transform: translateY(-50%) scale(1.1);
}

.search-go:active {
    transform: translateY(-50%) scale(0.9);
}

.searchinput {
    padding: 12px 60px 12px 20px;
    border: 1px solid #e6e6e8;
    box-shadow: 0 2px 8px rgb(0 0 0 / 6%);
}

.contact_btn {
    background: #18386b;
    color: #fff;
    float: right;
    padding: 12px 0px !important;
    width: 100%;
}

.whatsapp_col {
    border-radius: 10px;
    background: #ccffd3;
    background: linear-gradient(180deg, rgba(204, 255, 211, 1) 0%, rgba(78, 207, 91, 1) 100%);
    box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
    padding: 30px 15px;
    display: table;
    width: 100%;
    margin-bottom: 15px;

}

.whatsapp_col h5 {
    text-align: left;
    font-weight: 700;
    line-height: 1.3em;
}

.whatsapp_col ul {
    padding: 0;
    margin: 18px 0 0;
}

.whatsapp_col ul li {
    list-style: none;
    float: none;
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    margin: 10px 0;
}

.whatsapp_col ul li i {
    color: #1e995a;
    margin-right: 5px;
}

.joinwhatsappchannel_btn {
    background: #1d9859;
    border: 1px solid #1d9859;
    font-weight: 700;
    border-radius: 100px;
    color: #fff;
    float: right;
    padding: 10px 0px !important;
    width: 100%;
    display: table;
    margin-top: 15px;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 70%);
}

.verified_col {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
    border: 1px solid #e6e6e8;
    padding: 30px 20px;
    display: table;
    width: 100%;
    margin-bottom: 25px;
}

.verified_col p {
    color: #000;
    font-weight: 700;
    line-height: 1.6em;
    margin-bottom: 10px;
    font-size: 15px;
}

.star {
    display: table;
    width: 100%;
    padding-bottom: 10px;
}

.star i {
    color: #fac004;
    margin-right: 5px;
    float: left;
}

.verified_col a {
    color: #1968cd;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    float: left;
}

.verified_col a:hover {
    color: #666;
}

.verified_col a i {
    margin-right: 5px;
}

.lo_row {
    display: block;
    width: 100%;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--bs-white);
    border-radius: 12px;
    transition: 0.5s;
    border: 1px solid #e6e6e8;
    padding: 16px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    cursor: pointer;
}

.lo_row:hover {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid #999;
}

.productimg {
    border-radius: 10px;
    border: 1px solid #e6e6e8;
    width: 100%;
}

.product_details h5 {
    color: #101f48;
    font-weight: 800;
    font-size: 17px;
    text-align: left;
    letter-spacing: -1px;
    margin-bottom: 2px;
}

.product_details p {
    color: #999;
    font-weight: 400;
    font-size: 14px;
    text-align: left;
    letter-spacing: -0px;
    margin-bottom: 2px;
}

.product_details p:last-child {
    font-size: 12px;
    margin-bottom: 0;
}

.product_details p i:last-child {
    font-size: 11px;
}

.product_details p i {
    margin-right: 5px;
}

.verified_member {
    display: table;
    width: 100%;
    padding: 11px 0;
}

.vm_user {
    float: left;
    margin-right: 15px;
}

.vm_user img {
    border-radius: 100px;
    width: 100%;
}

.verified_member_title {
    float: left;
}

.verified_member_title h5 {
    color: #101f48;
    font-weight: 700;
    font-size: 16px;
    text-align: left;
    letter-spacing: -1px;
    margin-bottom: 2px;
    margin-top: 2px;
}

.verified_member_title a {
    color: #2476e6;
    font-weight: 600;
    font-size: 13px;
    text-align: left;
    float: left;
}

.verified_member_title a:hover {
    color: #999;
}

.vm_arrow {
    float: right;
    font-size: 24px;
    cursor: pointer;
    height: 42px;
}

.vm_arrow:hover {
    color: #ccc;
}

.browscategory {
    padding: 15px 0;
}

.viewall_cat {
    display: table;
    width: 100%;
}

.viewall_cat a {
    color: #101f48;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -1px;
}

.viewall_cat a:hover {
    color: #1a69d0;
}

.viewall_cat a i {
    font-weight: 800;
    font-size: 26px;
    line-height: 1.5em;
    padding: 0;
    position: relative;
    top: 4px;
}

.browsecat-item {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 5px 10px rgb(0 0 0 / 9%);
    border: 1px solid #e6e6e8;
    padding: 26px !important;
    display: table;
    width: 100%;
    margin-bottom: 25px;
}

.col-browsecat {
    float: left;
    width: 20%;
    flex: 0 0 auto;
}

.browsecat-item {
    margin: auto;
    text-align: center;
}

.browsecat-item:hover {
    background: #f6f7fc;
    box-shadow: 0 4px 12px rgb(0 0 0 / 30%);
    transform: translateY(-2px);
    transition: all 0.2s ease-in-out 0.1s;
}

.browsecat-item:hover img {
    filter: grayscale(100%) brightness(1.2);
}

.browsecat-item h5 {
    text-align: center;
    color: #222;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -1px;
    margin-bottom: 0;
    margin-top: 15px;
    line-height: 1.5em;
}

.businesstrust {
    height: 205px;
}

.businesstrust img {
    height: 56px;
    width: 56px;
}

.verifiedbusiness_col {
    background: #009CFF;
    background: linear-gradient(180deg, rgba(0, 156, 255, 1) 0%, rgba(0, 0, 191, 1) 100%);
    border-radius: 10px;
    box-shadow: 0 2px 18px rgb(0 0 0 / 80%);
    padding: 15px;
    display: table;
    width: 100%;
    margin-bottom: 25px;
}

.verifiedbusiness_col h2 {
    color: #fff;
    font-weight: 900;
    font-size: 38px;
}

.verifiedbusiness_col h5 {
    color: #fff;
    font-weight: 500;
    font-size: 16px;
}

.verifiedbusiness_col ul {
    padding: 0;
    margin: 18px 0 0;
}

.verifiedbusiness_col ul li {
    list-style: none;
    float: none;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    text-align: left;
    margin: 10px 0;
}

.verifiedbusiness_col ul li i {
    color: #1e995a;
    margin-right: 5px;
}

.footer {
    background: #0d244e;
    display: table;
    width: 100%;
    padding: 25px 0;
}

.footer_links {
    display: table;
    width: 100%;
}

.footer_links ul {
    list-style: none;
    padding: 0;
    display: table;
    margin: auto;
}

.footer_links ul li {
    float: left;
    margin: 0 50px;
}

.footer_links ul li a {
    color: #fff;
    font-size: 14px;
}

.footer_links ul li a:hover {
    color: #bed6ff;
}

.footer_links ul li a img {
    margin-right: 5px;
    margin-top: -3px;
}

/*** Login/Register Style Start ***/
.login-section {
    background: linear-gradient(rgba(24, 106, 208, 0.05), rgba(24, 106, 208, 0.05));
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.login-card {
    border-radius: 15px !important;
    overflow: hidden;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-tabs-login {
    border-bottom: 2px solid #f0f0f0;
}

.nav-tabs-login .nav-link {
    border: none !important;
    color: #666;
    background: transparent;
    transition: 0.3s;
    position: relative;
    font-size: 14px;
}

.nav-tabs-login .nav-link.active {
    color: #186ad0 !important;
    border: none !important;
}

.nav-tabs-login .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #186ad0;
}

.nav-tabs-login .nav-link:hover {
    color: #186ad0;
}

.fw-500 {
    font-weight: 500;
}


.form-control:focus {
    border-color: #186ad0;
    box-shadow: 0 0 0 0.2rem rgba(24, 106, 208, 0.1);
}

@media (max-width: 575px) {
    .login-card {
        padding: 25px 15px !important;
    }
}

/*** Login/Register Style End ***/

/*** Features End ***/

/*** Footer Copyright & Social Style Start ***/
.copyright {
    background: #091a38;
    padding: 25px 0;
    color: #bcc6d1;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright a {
    transition: 0.3s;
}

.footer-legal a {
    color: #bcc6d1;
    text-decoration: none;
    margin: 0 10px;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    margin-left: 12px;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: #186ad0;
    transform: translateY(-3px);
    color: #fff;
}

.footer-social a i {
    font-family: "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 400 !important;
}

@media (max-width: 767px) {
    .footer-social a {
        margin: 0 6px;
    }
}

/*** Footer Copyright & Social Style End ***/

/*** Premium Ribbon Start ***/
.premium-ribbon {
    position: absolute;
    top: 15px;
    left: -35px;
    width: 115px;
    background: #c5a059;
    color: #fff;
    font-size: 6px;
    font-weight: bold;
    text-transform: uppercase;
    padding: 3px 0;
    transform: rotate(-45deg);
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center;
}

/*** Premium Ribbon End ***/

/* ============================================================
   Styles Migrated from style-2.css
   ============================================================ */
:root {
    --primary-blue: #0b3fa8;
    --secondary-blue: #002D8B;
    --accent-yellow: #fecb00;
    --success-green: #198754;
    --success-light: #e8f5e9;
    --danger-light: #fbe9e7;
    --warning-light: #fff8e1;
    --text-dark: #212529;
    --text-muted: #6c757d;
    --text-light-muted: #9aa0a6;
    --bg-light: #f5f6f8;
    --bg-white: #ffffff;
    --border-color: #e9ecef;
    --footer-bg: #0b1a30;

    --font-family: 'Roboto', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

/* ── Utilities ── */
.text-primary-blue {
    color: var(--primary-blue) !important;
}

.bg-primary-blue {
    background-color: var(--primary-blue) !important;
    color: white;
}

.btn-primary-blue {
    background-color: var(--primary-blue);
    color: white;
    border: none;
}

.btn-primary-blue:hover {
    background-color: var(--secondary-blue);
    color: white;
}

.text-accent-yellow {
    color: var(--accent-yellow) !important;
}

.bg-accent-yellow {
    background-color: var(--accent-yellow) !important;
    color: var(--text-dark);
}

.btn-accent-yellow {
    background-color: var(--accent-yellow);
    color: var(--text-dark);
    font-weight: 700;
    border: none;
    font-size: 15px;
}

.btn-accent-yellow:hover {
    background-color: #e5b600;
    color: var(--text-dark);
}

.btn-outline-primary {
    color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
    background-color: transparent !important;
}

.btn-outline-primary:hover {
    color: #fff !important;
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.btn-outline-secondary {
    color: var(--text-muted) !important;
    border-color: var(--text-muted) !important;
    background-color: transparent !important;
}

.btn-outline-secondary:hover {
    color: #fff !important;
    background-color: var(--text-muted) !important;
    border-color: var(--text-muted) !important;
}

.bg-white-rounded {
    background-color: var(--bg-white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.font-size-sm {
    font-size: 13px !important;
}

.font-size-xs {
    font-size: 12px !important;
}

.line-height-base {
    line-height: 1.6;
}

/* ── Breadcrumb ── */
.breadcrumb {
    font-size: 13px;
    margin-bottom: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
    color: #adb5bd;
}

.breadcrumb-item a {
    color: var(--text-muted);
}

.breadcrumb-item.active {
    color: var(--text-dark);
    font-weight: 500;
}

/* ── Top Stats Bar ── */
.top-stats-bar {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.top-stats-bar .stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
}

.top-stats-bar .stat-pill.green {
    color: var(--success-green);
}

.top-stats-bar .stat-pill.orange {
    color: #e65100;
}

.top-stats-bar .stat-pill.yellow {
    color: #6d5600;
}

/* ── Product Image Main ── */
.product-image-main {
    position: relative;
    background: white;
    border-radius: 8px;
    padding: 1.2rem 1rem;
    text-align: center;
    border: 1px solid var(--border-color);
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-main img {
    max-width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
}

.badge-bestseller {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-yellow);
    color: #333;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    cursor: pointer;
    font-size: 12px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.carousel-arrow.left {
    left: 10px;
}

.carousel-arrow.right {
    right: 10px;
}

.thumbnail-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.thumbnail-item {
    width: 75px;
    height: 75px;
    flex: 0 0 75px;
    border: 1.5px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    background: white;
    padding: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-item.active {
    border-color: var(--primary-blue);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Product Title & Rating ── */
.product-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    line-height: 1.35;
    letter-spacing: -0.2px;
    color: #1a1a2e;
}

.rating-reviews {
    font-size: 13px;
    color: var(--text-muted);
}

.rating-reviews i {
    color: var(--accent-yellow);
}

.supplier-trust {
    font-size: 13px;
    color: var(--text-muted);
}

/* ── Highlights Row ── */
.highlights-box {
    display: flex;
    gap: 0;
    margin: 1rem 0;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    padding: 10px 18px;
    flex: 1;
}

.highlight-item:not(:last-child) {
    border-right: 1px solid var(--border-color);
}

.highlight-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 3px;
}

.highlight-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.highlight-value.text-success {
    color: var(--success-green) !important;
}

/* ── Tags Row ── */
.tags-row {
    display: flex;
    gap: 16px;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.tag-item {
    font-size: 13px;
    color: var(--text-dark);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.tag-item i {
    color: var(--primary-blue);
    font-size: 13px;
}

/* ── Specs Quick Box ── */
.specs-quick-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: #f4f6fb;
    border-radius: 7px;
    border: 1px solid #e4e8f0;
    padding: 0;
    margin-top: 1.2rem;
    overflow: hidden;
}

.spec-quick-item {
    display: flex;
    flex-direction: column;
    padding: 12px 14px;
    border-right: 1px solid #e4e8f0;
}

.spec-quick-item:last-child {
    border-right: none;
}

.spec-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 3px;
    white-space: nowrap;
}

.spec-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

/* ── Action Buttons (Left column, below thumbnails) ── */
.btn-action-row {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.btn-action-row .btn {
    font-weight: 500;
    font-size: 13px;
    padding: 0.55rem 0.8rem;
    border-radius: 5px;
}

/* ── Stats Cards Row ── */
.stats-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-card {
    text-align: center;
    padding: 1.25rem 0.75rem;
}

.stat-card .stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--success-green);
    margin-bottom: 2px;
    line-height: 1.1;
}

.stat-card .stat-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.stat-card .stat-sub {
    font-size: 12px;
    color: var(--text-muted);
}

/* ── Tabs ── */
.product-tabs {
    border-bottom: 2px solid var(--border-color);
}

.product-tabs .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 13.5px;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.6rem 1.2rem;
    margin-bottom: -2px;
    border-radius: 0;
}

.product-tabs .nav-link.active {
    color: var(--primary-blue);
    border-bottom: 3px solid var(--primary-blue);
    background: transparent;
    font-weight: 700;
}

.tab-pane-content {
    padding: 1.25rem 0;
}

/* ── Supplier Cards ── */
.supplier-card-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Sidebar ── */
.sidebar-box {
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.sidebar-box-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.btn-whatsapp {
    background-color: white;
    color: #25D366;
    border: 1.5px solid #25D366;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background-color: #25D366;
    color: white;
}

.trust-list {
    list-style: none;
    padding-left: 0;
    font-size: 13px;
    margin-bottom: 0;
}

.trust-list li {
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.trust-list li i {
    color: var(--success-green);
    font-size: 12px;
}

/* ── Why Trust LEAP ── */
.trust-item {
    display: flex;
    gap: 12px;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.trust-item-icon {
    width: 38px;
    height: 38px;
    background: #eef2ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    flex-shrink: 0;
    font-size: 15px;
}

.trust-item-content h6 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 2px;
}

.trust-item-content p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.4;
}

/* ── Related Products Cards ── */
.related-product-card {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 12px;
    gap: 12px;
    height: 100%;
}

.related-product-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 4px;
    background: #f8f9fa;
}

.related-product-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-product-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-product-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.related-product-price span {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 12px;
}

/* ── Responsive ── */
@media (max-width: 992px) {
    .specs-quick-box {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .btn-action-row {
        flex-direction: column;
    }

    .top-stats-bar {
        flex-wrap: wrap;
        gap: 10px;
    }
}

/* ── 4K / Ultra-Wide ── */
@media (min-width: 1920px) {
    html {
        font-size: 16px;
    }
}

@media (min-width: 2560px) {
    html {
        font-size: 18px;
    }
}

/* Mobile responsive highlights-box layout */
@media (max-width: 576px) {
    .highlights-box {
        flex-direction: column;
        border-radius: 8px;
    }
    .highlight-item:not(:last-child) {
        border-right: none !important;
        border-bottom: 1px solid var(--border-color) !important;
    }
}