<style>
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
</style>

*{
    padding: 0;
    margin: 0;
    outline: none;
    box-sizing: border-box;
    scroll-behavior: smooth;`
}

ul,ol{
    list-style: none;
}

a,a:hover{
    text-decoration: none;
}

h1,h2,h3,h4,h5,h6,p,ul,ol,span,div{
    padding: 0;
    margin: 0;
}

body{
    overflow-x: hidden;
     font-family: "Roboto", sans-serif;
    font-family: "Open Sans", sans-serif;
}


/*header_part*/

.mobile_menu_top {
   background-color: #e0e1e4;
}



.mobile-search-input {
  border-radius: 4px 0 0 4px;
  border: 1px solid #ccc;
  font-size: 14px;
}
.mobile_menu_top button {
  border-radius: 0 4px 4px 0;
}

/* MOBILE MENU BASE */
.mobile_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100vh;
  background: #fff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  z-index: 99999;
  overflow-y: auto;
}
.menu ul li .submenu {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  display: block;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.mobile_menu.active {
  left: 0;
}


/* HEADER */
/* .main-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
} */

.header_part {
  background-color: #bec17a;
}

.logo img {
  max-width: 150px;
}

/* DESKTOP MENU */
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.menu ul li {
  position: relative;
}
.menu ul li a {
  padding: 12px 20px;
  text-decoration: none;
  font-weight: 500;
  color: #224ad0;
  text-transform: uppercase;
  transition: 0.3s;
}
.menu ul li:hover > a {
  color: #ed5e33;
}

/* Submenu */

.menu ul li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.menu ul li .submenu li a {
  display: block;
  padding: 5px 20px;
  color: #224ad0;
  font-size: 14px;
}
.menu ul li .submenu li a:hover {
  background: #f8f9fa;
  color: #ed5e33;
}
.mobile_menu_top small {
  color: #333;
  font-size: 14px;
  display: block;
  margin: 2px 0;
}

/* TOGGLE BUTTON */
.toggle_btn {
  border: none;
  background: #f1f1f1;
  padding: 10px 12px;
  border-radius: 5px;
  font-size: 20px;
  color: #224ad0;
}

/* MOBILE MENU */
.mobile_menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 75%;
  /* height: 100vh; */
  background: #fff;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.2);
  transition: left 0.3s ease;
  z-index: 99999;
  overflow-y: auto; 
}

.mobile_menu.active {
  left: 0;
}

.mobile_menu_content {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile_menu_content li {
  border-bottom: 1px solid #e5e5e5;
}
.mobile_menu_content li a {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  color: #224ad0;
  text-decoration: none;
  font-weight: 500;
  text-transform: uppercase;
}
.mobile_menu_content li a:hover {
  color: #ed5e33;
}

/* Submenu (Mobile) */
.submenu_mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f9f9f9;
}
.mobile_menu_content li.active .submenu_mobile {
  max-height: 1000px;
} 

.submenu_mobile li {
  border-bottom: 1px solid #e0e0e0;
}

/* Submenu links */
.submenu_mobile li a {
  display: block;
  padding: 12px 20px;
  color: #000;   
  background-color: #f9f9f9;
  font-size: 14px;
  text-decoration: none;
  text-transform: capitalize;
}

/* Hover effect */
.submenu_mobile li a:hover {
  background-color: #e5e5e5; 
  color: #ed5e33;         
}


@media (max-width: 767.98px) {
  .toggle_btn {
    margin-left: auto; /* Keep hamburger on the far right */
  }
  .header_part .d-md-none a {
    font-size: 25px;

  }
}
.main-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
/* PAGE CONTENT SPACING */




/* top-bar start */
#top_bar{
    background-color: #fff;
    padding: 24px 0;
    display: flex;
    align-items: center;
}

.main_logo a img{
    width: 100%;
    height: auto;
    max-width: 63%;
}

.form_control {
    padding: .375rem .75rem;
    border-radius: 30px;
    line-height: 2;
}

.btn{
    border: none;
    color: #2d7efe;
}

.top_bar_right{
    display: flex;
    align-self: center;
    justify-content: space-evenly;
    flex-direction: row;
    font-size: 15px;
    line-height: 18px;
}

.top_bar_right_user{
    display: flex;
    flex-direction: row;
    padding-right: 35px;
}

.top_bar_right i{
    font-size: 35px;
    margin-right: 12px;
    color: rgb(252 75 0);
}

.top_bar_right a{
    color: rgb(252 75 0);
}

.top_bar_right_shopping a{
    display: flex;
    flex-direction: row;
}
/* top-bar end */


/* banner part start */
.swiper-slide img {
    width: 100%;
    height: auto;
}

.swiper-button-next, .swiper-button-prev {
    color: #ec2127;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 30px;
    font-weight: 800;
}
/* banner part end */
/* banner new start */


.banner_slide_item{
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size:  cover !important;
    width: 100%;
    height: 400px;
}

@media (max-width: 767.98px) { 
.banner_slide_item{
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size:  cover !important;
    width: 100%;
    height: 200px;
}

 }
.arrow_lf{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    font-size: 25px;
    line-height: 50px;
    color: #000;
    border: 1px solid #fff;
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}
.arrow_lf:hover{
    background: #fff;
}
.arrow_rt{
     height: 50px;
    width: 50px;
    border-radius: 50%;
    font-size: 25px;
    line-height: 50px;
    color: #000;
    border: 1px solid #fff;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.4s;
}
.arrow_rt:hover{
    background: #fff;
}


.banner_part .owl-dots{
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
}
.banner_part .owl-dots .owl-dot{
    height: 15px;
    width: 15px;
    border-radius: 50%;
    background: #fff;
    margin: 5px;
}
.banner_part .owl-dots .owl-dot.active{
    background: #000;
}
/* banner new end */

/* home-category */

.common_category_title h2{
    font-size: 26px;
    font-weight: 800;
    text-align: start;
    line-height: 48px;
    position: relative;
    padding: 0px 10px;
   
}
.common_category_title h2 a{
    color: #333e48;
}

.common_category_title h2::after{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 80%;
    background-color: #ff6600; 
    border-radius: 2px;
    
}
.common_category_title h2:hover a{
    color: #e74424;
}
/* server rack part start */
#server_rack{
    padding: 10px 0px;
}

.common_head_title h2{
    font-size: 26px;
    font-weight: 800;
    text-align: center;
    line-height: 48px;
    color: #333e48;
}

.common_head_title h2::after{
    content: '';
    display: block;
    max-width: 10%;
    height: 2px;
    background: rgb(252 75 0);
    margin: 8px auto 0;
}

.server_rack_product{
    background-color: #f5f5f5;
    padding: 30px 0;
    margin: 20px 0 0;
}

.server_img_zoom{
    overflow: hidden;
}

.server_img_zoom img{
    width: 100%;
    height: auto;
    transform: scale(1, 1);
    transition: all linear .6s;
}

.server_img_zoom img:hover{
    transform: scale(1.2, 1.2);
    transition: all linear .6s;
}
/* server rack part end */

/* letest products part start */
#letest_product{
    padding-bottom: 50px;
}
/* letest products part end */

/* common product part start */
.product_img{
    width: 100%;
    height: 200px;
    padding: 0px I !important;
    margin: 0px !important;
   
}

.products_img{
     width: 100%;
    height: 150px;
    padding: 0px I !important;
    margin: 0px !important;
}
.products_img img{
    width: 100%;
height: 100%;
overflow: hidden;
}
.product_img img{
width: 100%;
height: 100%;
overflow: hidden;

}
.product_dtls {
    padding: 15px;
    margin-top: 10px;
}

.common_product_box{
    margin-top: 20px;
    /* padding: 30px; */
}

.product_box{
    position: relative;
    /* padding: 15px; */
    background-color: #fff;
    transition: all linear .3s;
}

.product_box:hover{
    box-shadow: 0 0 6px rgba(1, 1, 1, .3);
    transition: all linear .3s;
    /* z-index: 1; */
}

.product_content h2{
    font-size: 1em;
    font-weight: 500;
    line-height: 1.2;
    padding: .5em 0;
    color: #2d7efe;
}

.product_content .model{
    font-size: 20px;
    font-weight: 500;
    color: #333;
    line-height: 3;
}

.product_content .price{
    font-size: 15px;
    font-weight: 400;
    color: #7d7d7d;
}

.price_cart{
    text-align: right;
}

.price_cart a{
    padding: 8px;
    border-radius: 22px;
    color: #fff;
    border: 2px solid rgba(252, 75, 0, 1);
    background-color: rgba(252, 75, 0, 1);
    transition: all linear .3s;
}

.product_box:hover .price_cart a{
    background-color: #0f50a8 !important;
    border: 2px solid #0f50a8;
    transition: all linear .3s;
}
/* common product part end */

/* best selling products part start */
#best_selling_product{
    padding-bottom: 50px;
}
/* best selling products part end */

/* brand part start */
.brand_box{
    box-shadow: 0 1px 3px rgba(36, 39, 44, .15);
    /* padding: 30px; */
    background: #fff;
    margin: 30px 0;
    border-radius: 6px;
}

.swiper_wrapper{
    padding: 30px;
}

.swiper_slide{
    box-shadow: 0 1px 7px 0 hsla(0, 0%, 56.9%, .15);
    height: 138px;
    width: 138px !important;
    border-radius: 12px;
    /* white-space: normal; */
    background: #fff;
}

.swiper_slide a img{
    max-height: 90%;
    max-width: 100%;
    width: auto;
    height: auto;
    text-align: center;
    margin: 0 auto;
}

.swiper-pagination-bullet-active {
    background: rgba(252, 75, 0, 1);
}
/* brand part end */

/* footer part start */
.footer_part{
    background-color: #eaea5de7;
    color: #999999;
    padding: 40px 0px 0px 0px;
}
.footer_logu{
    width: 150px;
    height: auto;
}
.footer_logu img{
    width: 100%;
    height: auto;
    padding-bottom: 25px;
}

.footer_1 .footer_content p{
    font-size: 15px;
    font-weight: 600;
    text-align: justify;
    color: #000;
    line-height: 26px;
}

.common_title h3{
    font-size: 18px;
    font-weight: 800;
    color: #220909;
    /* line-height: 35px; */
    padding-bottom: 30px;
    text-transform: uppercase;
    
}

.footer_3 .footer_list li a{
    font-size: 15px;
    font-weight: 600;
    line-height: 40px;
    color: #0a0404;
    transition: all linear .3s;
   
}

.footer_3 .footer_list li a:hover{
    color: rgba(252, 75, 0, 1);
    transition: all linear .3s;
}

.footer_2 .footer_address li{
    font-size: 15px;
    font-weight: 600;
    line-height: 40px;
    text-align: justify;
    color: #000;
    text-align: left;
}

.footer_2 .footer_address li i{
    font-size: 13px;
    margin-right: 8px;
}

.footer_bar{
    background-color: #f4f42fe7;
    padding: 16px 0;
}

.footer_bar .footer_bar_content p{
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
    color: #000;
}

.footer_bar .footer_bar_content p span{
    color: #ec2127;
}

.footer_social_icon{
    text-align: right;
}

.footer_social_icon ul li{
    display: inline-block;
    background: #333;
    border-radius: 50%;
    margin-right: 10px;
    margin-bottom: 5px;
    transition: all linear .3s;
}

.footer_social_icon ul li:hover{
    background-color: #bb1f25;
    transition: all linear .3s;
}

.footer_social_icon ul li a{
    display: block;
    font-size: 20px;
    color: #fff;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
}

.footer_social_icon ul li a img{
    max-width: 50%;
    padding-bottom: 5px;
}
/* footer part end */

/* products_part start */
.price_filter{
    flex: 0 0 280px;
    max-width: 280px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
    margin-bottom: 15px;
    margin-top: 30px;
}

.price_label{
    padding: 0 0 0 20px;
    height: 50px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
}

.price_label h4{
    font-size: 17px;
    color: #111;
    line-height: 50px;
}

.price_range{
    padding: 0 5px 0;
}

.price_input{
    display: flex;
    justify-content: space-around;
    padding-bottom: 20px;
}

.price_input input{
    width: 100px;
    border: 1px solid #ddd;
    text-align: center;
    padding: 5px;
}

.price_filter_items{
    padding: 10px 20px 10px;
    margin-right: 0;
    overflow: auto;
}

.price_filter_items label{
    display: inline-block;
    width: 100%;
    padding: 6px;
    margin: 0 -6px;
    font-size: 14px;
    border-radius: 3px;
    cursor: pointer;
}

.price_filter_items label span{
    margin-left: 5px;
    line-height: 20px;
    color: #111;
    font-size: 15px;
}

.product_head_title{
    margin-top: 30px;
    margin-left: 8px;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 0 6px rgba(1, 1, 1, .3);
    background-color: #fff;
}

.product_head_title h2{
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
}
.product_head_titles{
    margin-top: 23px;
    margin-left: 10px;
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 5px;

}
.product_head_brnd li{
    padding: 5px 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-weight: 600;
    font-size: 18px;
    transition: 0.4s;
}
.product_head_brnd li a{
    color: #111;
}
.product_head_brnd li:hover{
    background: #0F50B8;
}
.product_head_brnd li:hover a{
    color: #fff;
}
.short_description{
    cursor: default;
}

.short_description ul{
    padding-top: 10px;
    list-style: disc;
    padding-left: 15px;
}

.short_description ul li{
    color: #666;
    font-size: 13px;
    line-height: 16px;
    padding-bottom: 10px;
}

.new_product_badge{
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 8px;
    border-radius: 3px;
    box-shadow: 0px 1px 1px 0px #808080d9;
    z-index: 9;
}

.new_product_badge h5{
    font-size: 14px;
    font-weight: 400;
}

.product_details{
    background: #fff;
    padding: 14px;
    /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
    box-shadow: 0px 8px 24px rgba(1, 1, 1, .3);
    margin-bottom: 15px;
}

.product_details p{
    font-size: 15px;
    font-weight: 400;
    line-height: 24px;
    color: #242424;
    margin-bottom: 16px;
}

.product_details h1{
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
    color: #242424;
    margin-bottom: 8px;
}

.product_details h2{
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #242424;
    margin-bottom: 8px;
}

.product_details h3{
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    color: #242424;
    margin-bottom: 8px;
}

.product_details a{
    color: #0063d1;
    font-weight: 600;
}

.product_details ul{
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 40px;
    list-style: disc;
}
/* products_part end */

/* s_product part start  */
.hridoy2{
    height: 100%;
    width: 100%;
}

.hridoy{
    height: 35%;
    box-sizing: border-box;
    padding: 10px 0;
}

.hridoy .swiper-slide{
    width: 25%;
    height: 100%;
    opacity: 0.4;
}

.hridoy .swiper-slide-thumb-active{
    opacity: 1;
}

.s_product_small_button{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px;
}

.button_1{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 14px;
    border-radius: 6px;
    border: none;
    color: #fff;
    background: #fc4b00;
    background-origin: border-box;
    box-shadow: 0px 0.5px 1.5px rgba(54, 122, 246, 0.25), inset 0px 0.8px 0px -0.25px rgba(255, 255, 255, 0.2);
    touch-action: manipulation;
}

.s_product_small_button_hover{
    position: relative;
}

.s_product_small_button_hover_container{
    position: absolute;
    top: 104%;
    left: 0;
    background: #313030;
    color: white;
    padding: 5px 10px;
    width: max-content;
    border: 3px solid #fc4b00;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.s_product_small_button_hover:hover .s_product_small_button_hover_container{
    opacity: 1;
    visibility: visible;
    transition: all 0.3s ease-in-out;
}

.s_product_details .s_product_desc{

    padding-bottom: 24px;
 
}

.s_product_details .s_product_desc p{
    font-size: 14px;
    line-height: 26px;
}

.s_product_desc a{
    border-bottom: 1px solid;
    padding-bottom: 5px;
}

.s_product_variant {
  /* background: #fff; */
  /* border: 1px solid #eee; */
  border-radius: 12px;
  /* padding: 20px; */
  max-width: 400px;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05); */
}

.quantity-wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}

.quantity-wrapper label {
  font-size: 15px;
  font-weight: 600;
  color: #444;
  margin-bottom: 6px;
}

.quantity-wrapper input {
  width: 100px;
  height: 44px;
  font-size: 16px;
  padding: 0 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fdfdfd;
  transition: border 0.3s;
}

.quantity-wrapper input:focus {
  border-color: #fc4b00;
  outline: none;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-group button {
  height: 44px;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-add {
  background-color: #fc4b00;
  color: #fff;
}

.btn-add:hover {
  background-color: #d23a00;
}

.btn-buy {
  background-color: #0288d1;
  color: #fff;
}

.btn-buy:hover {
  background-color: #0277bd;
}

.btn-print {
  background-color: #757575;
  color: #fff;
}

.btn-print:hover {
  background-color: #616161;
}

.inline-form {
  display: inline;
}


.s_product_social a{
    display: inline-block;
    font-size: 20px;
    color: #fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #111;
}

.s_product_social a img{
    max-width: 50%;
    padding-bottom: 5px;
}

.s_product_info_content{
    padding: 20px 30px 27px;
    border: 1px solid #ebebeb;
    background: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.s_product_info_content h4{
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}

.s_product_info_content h2{
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 5px;
}

.s_product_info_content p{
    font-size: 15px;
    line-height: 26px;
    text-align: justify;
}

.s_product_info_content ul {
    padding-inline-start: 35px;
}

.s_product_info_content ul li {
    font-size: 14px;
    list-style-type: disc;
}

.s_product_info_table{
    padding: 20px 30px 27px;
    border: 1px solid #ebebeb;
    background: white;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 20px;
}

.s_product_info_table h4{
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
}

.s_product_info_table p{
    font-size: 15px;
    line-height: 26px;
    text-align: justify;
    margin-bottom: 50px;
}


/* s_product part end  */

/* cart part start  */
.cart_desc{
    margin: 30px 0 5px;
}

.cart_desc table thead tr th{
    font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    padding: 10px;
    text-align: center;
}

.cart_desc table tbody tr td{
    text-transform: capitalize;
    padding: 10px;
    text-align: center;
}

.cart_desc table tbody tr td input{
    height: auto;
    text-align: center;
    border-radius: 3px;
    padding: 0 5px 0 10px;
    background: none;
}

.cart_desc table tbody tr td a{
    color: #242424;
}

.cart_desc table tbody tr td a i{
    font-size: 20px;
}

.cart_box{
    margin-bottom: 50px;
    border: 1px solid #ebebeb;
}

.cart_box h3{
    font-size: 16px;
    font-weight: 500;
    line-height: 36px;
    padding: 5px 15px;
    background: #fc4b00;
    color: #ffffff;
    text-transform: uppercase;
}

.cart_box_inner{
    padding: 10px 20px 25px;;
}

.cart_subtotal{
    display: flex;
    justify-content: space-between;
    -webkit-box-pack: justify;
}

.cart_subtotal p{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cart_subtotal .cart_amount{
    font-size: 18px;
    font-weight: 500;
}

.cart_button{
    display: flex;
    justify-content: end;
}

.cart_button button{
    background: #242424;
    border: 0;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    height: 38px;
    line-height: 18px;
    padding: 10px 15px;
    text-transform: uppercase;
    border-radius: 3px;
    margin-right: 7px;
    margin-bottom: 5px;
}

.btn:hover {
    color: #ffffff;
}
/* cart part end  */

/* order_confirm part start */
.order_confirm{
    margin: 60px 0 56px;
}

.order_confirm_form label{
    font-size: 14px;
    font-weight: 500;
    color: #242424;
}

.order_confirm_form input{
    border: 1px solid #ebebeb;
    background: none;
    height: 40px;
    width: 100%;
    padding: 0 20px;
    color: #242424;
}

.order_confirm_form h3{
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
    padding: 5px 10px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #ffffff;
    background: #242424;
}

.order_notes textarea{
    font-size: 13px;
    line-height: 45px;
    border: 1px solid #e5e5e5;
    border-radius: 0;
    height: 45px;
    max-width: 100%;
    padding: 0 30px 0 20px;
    background: none;
    resize: none;
    width: 100%;
    color: #242424;
}

.order_confirm_table{
    margin-bottom: 30px;
}

.order_confirm_table table thead tr th{
    min-width: 50%;
    text-align: center;
    padding: 15px 0;
}

.order_confirm_table table tbody tr td{
    font-size: 14px;
    font-weight: 500;
    text-transform: capitalize;
    text-align: center;
    min-width: 150px;
    padding: 15px 0;
}

.order_confirm_table table tfoot tr th{
    min-width: 50%;
    text-align: center;
    padding: 15px 0;
}

.order_confirm_table table tfoot tr td{
    min-width: 50%;
    text-align: center;
    padding: 15px 0;
}

.order_confirm_button{
    text-align: center;
}

.order_confirm_button button {
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    padding: 5px 10px;
    text-transform: capitalize;
    color: #ffffff;
    background: #fc4b00;
    border-radius: 5px;
    margin-right: 5px;
    border: 0;
}
/* order_confirm part end */

/* sam part start  */
.sam_top{
    padding: 3rem 2rem;
}

.sam_heading h1{
    font-size: 2.25rem;
    font-weight: bold;
    line-height: 2.5rem;
    color: #333e48;
    margin-bottom: 32px;
}

.sam_top_button a{
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.6rem 1.1rem;
    border-radius: 0.25rem;
    color: #ffffff;
    background-color: #fc4b00;
    margin-right: 12px;
    text-align: center;
}

.sam_top_image img{
    width: 100%;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.sam_middle1{
    padding: 4rem 0;
    border-bottom: 2px dashed #ddd;
    border-top: 2px dashed #ddd;
}

.sam_middle2{
    padding: 4rem 0;
    border-bottom: 2px dashed #ddd;
}

.sam_middle3{
    padding: 4rem 0;
    border-bottom: 2px dashed #ddd;
}

.sam_middle4{
    padding: 4rem 0;
}

.sam_middle1_left h2{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    color: #333e48;
    margin-bottom: 0.5rem;
}

.sam_middle1_left p{
    font-size: 17px;
    font-weight: 400;
    line-height: 20px;
    color: #111;
}


.common_contentANDcontact{
    padding: 0 2rem;
}

.common_contact{
    padding: 6rem 6rem 6rem 0;
}

.common_contact h3{
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-bottom: 0.375rem;
    color: #333e48;
}

.common_contact form label span{
    color: red;
}

.common_contact form input{
    width: 100%;
    height: 40px;
    border: 1px solid #ebebeb;
    background: none;
    padding: 25px 20px;
    color: #242424;
}

.common_contact form textarea{
    width: 100%;
    height: 80px;
    border: 1px solid #ebebeb;
    background: none;
    padding: 25px 20px;
    color: #242424;
    resize: none;
}

.common_contact form .form_button button{
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    border-radius: 0.25rem;
    background-color: #fc4b00;
    color: #ffffff;
    border: 1px solid transparent;
    width: 100%;
}

.common_content{
    padding: 6rem 0 6rem 6rem;
}

.common_content h3{
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-bottom: 0.375rem;
    color: #333e48;
}

.common_content .video iframe{
    width: 100%;
    border-radius: 30px;
}

.common_solution_part{
    margin: 60px 0;
}

.common_solution_part h2{
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    color: #333e48;
    margin-bottom: 2rem;
    text-align: center;
}

.common_solution_part ul{
    column-count: 2;
    margin-bottom: 1rem;
}

.common_solution_part ul li{
    break-inside: avoid;
    padding-right: 1.5rem;
}

.common_solution_part ul li h3{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    margin-bottom: 0.5rem;
    color: #333e48;
}

.common_solution_part ul li p{
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 2rem;
    color: #111;
}

.pcs_middle1{
    padding: 6rem 0;
}

.pcs_middle1 h1{
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    margin-bottom: 1rem;
    color: #333e48;
}

.pcs_middle1 h2{
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 2.25rem;
    margin-bottom: 0.75rem;
    color: #333e48;
}

.pcs_middle1 h3{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    margin-bottom: 0.5rem;
    color: #333e48;
}

.pcs_middle1 h4{
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-bottom: 0.25rem;
    color: #333e48;
}

.pcs_middle1 p{
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 1rem;
    color: #111;
}

.pcs_middle1 .button{
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    border: 1px solid transparent;
    background-color: #fc4b00;
    color: #ffffff;
}

.cm{
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

.cm h1{
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-bottom: 0.375rem;
    color: #333e48;
    max-width: 42rem;
    margin-right: auto;
    margin-left: auto;
}

.cm p{
    max-width: 42rem;
    margin-right: auto;
    margin-left: auto;
}

.cm_cloud{
    padding: 6rem 0;
}

.cm_cloud_content h3{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    margin-bottom: 0.5rem;
    color: #333e48;
}

.cm_cloud_content h4{
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.75rem;
    margin-bottom: 0.375rem;
    color: #333e48;
}

.cm_cloud_content p{
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 1rem;
    color: #111;
}

.wa{
    padding: 6rem 0;
}

.wa h2{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2rem;
    margin-bottom: 0.5rem;
    color: #333e48;
}

.wa p{
    font-size: 17px;
    font-weight: 400;
    line-height: 25px;
    margin-bottom: 1rem;
    color: #111;
}

.wa ul{
    margin-bottom: 1rem;
}

.wa li{
    font-size: 17px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 12px;
    color: #111;
    display: flex;
    align-items: baseline;
}
/* sam part end  */

/* support part start */
.support_heading h1{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #333e48;
    margin: 30px 0;
}

.subscribe_email{
    display: flex;
    justify-content: center;
    align-items: center;
}

.inputbox{
    width: 100%;
}

.inputbox .input_group .form_control{
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    padding: 6px 12px;
    color: #afbccd;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: .25rem;
}

.inputbox .input_group button{
    font-size: 16px;
    font-weight: 700;
    padding: 10px 25px;
    color: #fff;
    background-color: #fc4b00;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border: none;
}

.powered{
    font-size: 14px;
    font-weight: 400;
    color: #7a8ca3;
}

#new_to_fastit{
    padding: 80px 0;
}

.new_to_fastit_heading h2{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #333e48;
}

.new_to_fastit_video iframe{
    height: auto;
    width: 100%;
}

.new_to_fastit_video_content p{
    font-size: 15px;
    font-weight: 400;
    color: #111;
    margin: 16px 0;
}

.support_common_button a button{
    font-size: 16px;
    font-weight: 700;
    border-radius: 23px;
    background-color: #fc4b00;
    color: #fff;
    text-align: center;
    padding: 10px 25px;
    min-height: 45px;
    line-height: 1.5;
    border: none;
}

.popular_topics_heading{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #333e48;
}

.popular_card{
    background-color: #f9fafe;
    border: none;
}

.popular_card .card-body .card-title{
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

.popular_card .card-body .card-text{
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #333;
}

.popular_card .card-body .card-btn{
    font-size: 14px;
    font-weight: 700;
    text-decoration: underline;
    color: #3069b3;
}

#support_icon .contact_wrapper{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

#support_icon .contact_wrapper .box_wrapper{
    text-align: center;
    border: 1px solid #dbdfef;
    border-radius: 5px;
    background-color: #fff;
    /* padding: 15px 30px; */
    margin: 0 40px;
    cursor: pointer;
    white-space: nowrap;
}

#support_icon .contact_wrapper .box_wrapper a{
    display: block;
    width: 100%;
    background: 0 0;
    border: none;
    outline: 0;
    padding: 15px 30px;
}

#support_icon .contact_wrapper .box_wrapper a h5{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
    padding-top: 10px;
    color: #333;
}

.popover-header{
    text-align: center;
}

.popover-body{
    font-size: 16px;
    font-weight: 700;
}

#support_last{
    padding: 80px 0;
}

.support_last_heading{
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: #333e48;
}
/* support part end */

/* contact part start */
#contact{
    padding: 50px 0;
}

.contact_content{
    margin: 20px 0;
}

.contact_head h2{
    font-size: 30px;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
    color: #333;
}

.contact_content ul li{
    font-size: 15px;
    font-weight: 600;
    line-height: 40px;
    text-align: center;
    color: #212529;
}

.contact_content ul li i{
    font-size: 13px;
    margin-right: 8px;
}

.contact_map{
    width: 100% !important;
}

span.req_star{
    color: #CC0000;
}

form .form_box{
    padding: 10px 0;
}

.form_box .form_title label{
    font-size: 16px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 4px;
}

.form_box .form_input input{
    padding: 6px 10px;
    border: 2px solid #333e48;
    background-color: #f5f5f5;
    border-radius: 30px;
    min-height: 38px;
    width: 65%;
}

.form_box .form_input .input1{
    width: 31%;
}


.form_box .form_input textarea{
    height: 120px;
    width: 100%;
    border: 2px solid #333e48;
    border-radius: 20px;
    background-color: #f5f5f5;
    padding: 6px 10px;
}

form .cn_button button{
    background-color: #eee;
    border: 1px solid #ddd;
    color: #333;
    font-size: 1em;
    padding: 10px 15px;
    border-radius: 30px;
    transition: all linear .3s;
}

form .cn_button button:hover{
    background-color: #333;
    border: 1px solid #333;
    color: #fff;
    transition: all linear .3s;
}
/* contact part end */

/* brand_part new start */
.brand_part{
   margin: 50px 0px;
}



.brand_slide_item h4{
    padding-top: 30px;
    font-size: 20px;
    font-weight: 600;
    color: #000;
    font-family: "Lato", sans-serif;
    text-align: center;
}
/* brand_part new end */

/*  */
#new_to_fastit{
    padding: 20px 0px;
}

/* Seaport part */
.support_dtls h4{
    font-size: 25px;
    font-weight: 700;
    text-transform: capitalize;
    padding: 10px 0px;
    color: #000;
}
.support_dtls p{
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0px;
    color: #a1a1a1;
    line-height: 1.5;
    text-align: left;
}
.form_grup label{
     font-size: 18px;
    font-weight: 600;
    margin-left: 5px;
    /* padding: 5px 0px; */
    color: #60697b;
}
.form_grup label span {
    color: red;
}
.support_input{
    display: block;
    width: 100%;
    margin: 10px 0px;
    padding: 10px 10px;
     border: 1px solid #dcdcdc;
    border-radius: 7px;
    font-size: 12px;
}
.support_exmpl{
     font-size: 16px;
    font-weight: 500;
    text-transform: capitalize;
    color: #a6bff0;
}
.support_area{
    display: block;
    width: 100%;
    margin: 15px 0px;
    padding: 10px 10px;
    border: 1px solid #dcdcdc;
    border-radius: 7px;
    height: 90px;
    font-size: 12px;
}
.support_btn{
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    background: #00bf63;
    border: 1px solid #00bf63;
    margin: 5px 10px;
}
.seaport_infu{
    margin-top: 60px;
}
.seaport_infu_cntnt{
    margin: 20px 0px;
}
.seaport_infu_img{
    width: 40px;
    height: 40px;
    margin-left: 20px;
}
.seaport_infu_dtls{
    font-size: 18px;
    font-weight: 600;
    margin-left: 15px;
    padding: 5px 0px;
    color: #60697b;
}
.seaport_infu_dtl{
    font-size: 18px;
    font-weight: 600;
    margin-left: 15px;
    
    color: #60697b;
}
.seaport_infu_imgs{
    width: 50px;
    height: 50px;
    margin-left: 20px;
}

.table-responsive {
    overflow-x: auto;
    margin: 20px 0;
}

.support-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.support-table th, .support-table td {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    white-space: nowrap;
}

.support-table th {
    background-color: #f7f7f7;
    font-weight: bold;
}

.badge {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.85em;
    font-weight: 600;
}

.badge.completed {
    background-color: #28a745;
    color: white;
}

.badge.pending {
    background-color: #ffc107;
    color: black;
}

.badge.cancelled {
    background-color: #dc3545;
    color: white;
}

.btn-show {
    background-color: #4ea9df;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
}

.btn-show:hover {
    background-color: #3b94c6;
}

/* Responsive styling for mobile */
@media screen and (max-width: 768px) {
    .support-table, .support-table thead, .support-table tbody, .support-table th, .support-table td, .support-table tr {
        display: block;
    }

    .support-table thead {
        display: none;
    }

    .support-table tr {
        margin-bottom: 15px;
        border: 1px solid #ddd;
        padding: 10px;
        border-radius: 5px;
        background-color: #fff;
    }

    .support-table td {
        text-align: right;
        padding-left: 50%;
        position: relative;
        border: none;
        border-bottom: 1px solid #eee;
    }

    .support-table td::before {
        content: attr(data-label);
        position: absolute;
        left: 10px;
        width: 45%;
        padding-left: 10px;
        font-weight: bold;
        text-align: left;
    }
}


/*  */


.upload-block {
    margin-bottom: 15px;
}

.upload-block label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-left: 5px;
    padding: 5px 0px;
    color: #60697b;
}

.upload-block label span {
    color: red;
}

.up_img {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 10px;
    margin-top: 5px;
}

.up_img_input {
    flex: 1;
    padding: 10px;
    border: 1px solid #dcdcdc;
    border-radius: 7px;
    font-size: 14px;
    box-sizing: border-box;
}

.up_img_btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-add {
    background-color: #10b981;
    color: white;
}

.btn-remove {
    background-color: #ef4444;
    color: white;
}
.img_tit{
     font-size: 18px;
    font-weight: 600;
    margin-left: 5px;
    padding: 5px 0px;
    color: #60697b;
}
.img_tits{
     font-size: 12px;
    font-weight: 600;
    margin-left: 5px;

    color: #60697b;
}

/* support details */
    .support-card {
      border: 1px solid #e0e0e0;
      border-radius: 12px;
      padding: 20px;
      background-color: #fff;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .support-title {
      font-size: 1.5rem;
      font-weight: 600;
      color: #212529;
    }
    .supports-table {
      width: 100%;
      margin-top: 15px;
    }
    .supports-table td {
      padding: 15px;
      vertical-align: middle;
      border-top: 1px solid #f0f0f0;
  
    }
    .support-label {
      font-weight: 600;
      color: #555;
    }
    .badges {
      display: inline-block;
      color: #000;
      padding: 8px 16px;
      border-radius: 10px;
      font-weight: 500;
    }
    .support_row{
        background: #000;
    }
     .support_details h4{
        text-align: center;
        font-size: 35px;
        font-weight: 800;
        color: #e8eaed;
     }
     .support_details p{
        text-align: center;
        font-size: 18px;
        font-weight: 500;
        color: #e8eaed;
        margin-bottom: 20px;
     }
     .support-Problem{
    font-size: 14px;
      color: #000;
      font-weight: 500;
     }



     /*  */
.product-card {
margin-bottom: 15px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  border: 1px solid #e0e0e0; 
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-5px);
  border-color: #d0d0d0;
}

/* Image Section */
.product-image-wrapper {
    height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #eee;
  border-bottom: 1px solid #e5e5e5; 
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image-wrapper img {
  transform: scale(1.05);
}

/* Content Section */
.product-info-wrapper {
  height: 130px;
  padding: 15px;
  background-color: #f1f1f1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-title {
  font-size: 15px;
  font-weight: 400;
  color: #2d7efe;
  text-decoration: none;
  line-height: 1.4;
}

.product-title:hover {
  color: #0f50a8;
}

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* margin-top: auto; */
}

.product-price {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

.add-to-cart-btn {
  padding: 8px 12px;
  border-radius: 30px;
  background-color: #fc4b00;
  color: #fff;
  border: 2px solid #fc4b00;
  transition: all 0.3s ease;
}

.product-card:hover .add-to-cart-btn {
  background-color: #0f50a8 !important;
  border-color: #0f50a8;
}

/*combo_part end*/


.package-toggle-buttons .btn {
  padding: 10px 30px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 25px;
  transition: background-color 0.3s, color 0.3s;
}

.package-toggle-buttons .btn.active {
  background-color: #6366f1;
  color: white;
  border-color: #6366f1;
}


.combo_box {
    padding: 30px 20px;
    margin: 40px 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.combo_box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.combo_title {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Open Sans", sans-serif;
    color: #3a3a3a;
    border-left: 5px solid #6366f1;
    padding-left: 10px;
}

.combo_details ul {
    padding-left: 20px;
    margin: 0;
}

.combo_details ul li {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
    position: relative;
    padding-left: 20px;
}

.combo_details ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* Image Grid */
.combo_item {
    text-align: center;
    margin-bottom: 30px;
    transition: 0.3s;
}

.combo_item:hover {
    transform: scale(1.05);
}

.combo_item_img {
    height: 130px;
    width: 130px;
    margin: 0 auto 12px;
    border-radius: 50%;
    border: 4px solid #6366f1;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.combo_item_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.p_name {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    font-family: "Open Sans", sans-serif;
}

/* Mobile Friendly */
@media (max-width: 575.98px) {
    .combo_item_img {
        height: 90px;
        width: 90px;
    }

    .p_name {
        font-size: 14px;
    }

    .combo_title {
        font-size: 22px;
    }
}

