/********** Template CSS **********/
body {
  font-family: 'Geist', sans-serif;
  -webkit-font-smoothing: antialiased; /* Optional: improves font rendering */
  -moz-osx-font-smoothing: grayscale;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

body{overflow-x:  hidden;}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}

/* Styling for the Ricoh printers and copiers section */
#ricoh-printers-copiers {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin: 20px 0;
}

#ricoh-printers-copiers .container {
    max-width: 1200px;
    margin: 0 auto;
}

#ricoh-printers-copiers .section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

#ricoh-printers-copiers .intro-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

#ricoh-printers-copiers .subheading {
    font-size: 20px;
    font-weight: semi-bold;
    color: #222;
    margin-top: 20px;
    margin-bottom: 10px;
}

#ricoh-printers-copiers p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

#ricoh-printers-copiers .call-to-action {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    text-align: center;
    margin-top: 30px;
}

/*** Navbar ***/
.nav-bar {
    position: relative;
    margin-top: 45px;
    padding: 0 3rem;
    transition: .5s;
    z-index: 9999;
}

.nav-bar.sticky-top {
    position: sticky;
    padding: 0;
    z-index: 9999;
    top:15px;
}

.navbar {
    box-shadow: 0 0 20px rgba(0, 0, 0, .3);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 17px;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .nav-bar {
       top:0px;
        margin: 0;
        padding: 0;
       
    }

    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        margin-top:18px;
        border-top: 1px solid #d6d6d6;
    }
}

.navbar-light .navbar-brand {
    height: 80px;
    z-index: 10000;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 100;
    padding:10px 0px;
    
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu .megamenu {
        display: block;
        top: 100%;
        margin-top: 0;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
     
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
        
    }
}


/*** Header ***/
@media (min-width: 992px) {
    .header {
        margin-top: -155px;
    }
     .banner {
        position: relative;
        margin-top: -60px;
        z-index: 1;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: -25px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}

@media (max-width: 768px) {
    .header-carousel .owl-nav {
        left: 25px;
    }
    
    #welcome, #welcome2 {height: 350px !important;}
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #DDDDDD;
}


/*** Icon ***/
.icon {
    padding: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF !important;
    border-radius: 50px;
    border: 1px dashed var(--primary) !important;
}


/*** About ***/
.about-img::before {
        content: "";
        position: absolute;
        top: 0;
        left: -40%;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, #bf2034 0%, #8f1524 50%, #bf2034 100%) !important;
        transform: skew(25deg);
        z-index: 1;
    }
    
    /* Ensures the image sits on top of the shape */
    .about-img img {
        position: relative;
        z-index: 2;
    }


/*** Category ***/
.cat-item div {
    background: #FFFFFF;
    border: 1px dashed rgba(0, 185, 142, .3);
    transition: .5s;
}

.cat-item:hover div {
    background: var(--primary);
    border-color: transparent;
}

.cat-item div * {
    transition: .5s;
}

.cat-item:hover div * {
    color: #FFFFFF !important;
}


/*** Property List ***/
.nav-pills .nav-item .btn {
    color: var(--dark);
}

.nav-pills .nav-item .btn:hover,
.nav-pills .nav-item .btn.active {
    color: #FFFFFF;
}

.property-item {
    box-shadow: 0 0 12px rgba(0, 0, 0, .09);
    border: 0px solid #fff;
    background: #fff;
    height:100%;
}

.property-item img {
    transition: .5s;
}

.property-item:hover img {
    transform: scale(1.1);
}

.property-item .border-top {
    border-top: 1px dashed rgba(0, 185, 142, .3) !important;
}

.property-item .border-end {
    border-right: 1px dashed rgba(0, 185, 142, .3) !important;
}
.property-item .product-img .product-action-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -20px;
  padding: 17px 10px 15px;
  background-color: rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all .4s ease 0s;
  -o-transition: all .4s ease 0s;
  transition: all .4s ease 0s;
  opacity: 0;
  visibility: hidden;
}
.property-item .product-img .product-action-wrap svg{width:25px;
height:25px;}
.property-item .product-img .product-action-wrap.product-action-padding {
  padding: 17px 10px 17px;
}

.property-item .product-img .product-action-wrap button {
  border: none;
  padding: 0;
  margin: 0 11px;
  line-height: 1;
  background-color: transparent;
  
}
.property-item:hover .product-action-wrap {
  bottom: 0;
  opacity: 1;
  visibility: visible;
}
 .product-action-wrap i  {
   color:#e11e06;
 
   font-size:30px;
  
}
.product-action-wrap i:hover  {
 color:#fff;
  
  
}
/*** Team ***/
.team-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    transition: .5s;
}

.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(0, 0, 0, .15);
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover {
    border-color: var(--secondary) !important;
}

.team-item:hover .bg-primary {
    background: var(--secondary) !important;
}

.team-item:hover .bg-primary i {
    color: var(--secondary) !important;
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 3.7rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.prod-carousel .owl-nav .owl-prev,
.prod-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    
    /* 1. Icon Color (White) */
    color: #FFFFFF !important;
    
    /* 2. Button Background (GTech Red) */
    background: #bf2034 !important; 
    
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
    opacity: 1; /* Ensures they are fully visible */
}

/* Optional: Dark Red Hover Effect */
.prod-carousel .owl-nav .owl-prev:hover,
.prod-carousel .owl-nav .owl-next:hover {
    background: #8f1524 !important; /* Darker Red on hover */
    color: #ffffff !important;
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 35px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    font-size: 17px;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}
.footer .btn.btn-link {
    
    color:#fff;
}
.footer .btn.btn-link:hover {
    color: #bf2034;
    box-shadow: none;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}
.bg-red{background-color: rgb(165,21,31);}
/*.bg-reg-grad{background: rgb(191,32,52);
background: -moz-linear-gradient(128deg, rgba(191,32,52,1) 34%, rgba(143,21,36,1) 59%);
background: -webkit-linear-gradient(128deg, rgba(191,32,52,1) 34%, rgba(143,21,36,1) 59%);
background: linear-gradient(128deg, rgba(191,32,52,1) 34%, rgba(143,21,36,1) 59%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf2034",endColorstr="#8f1524",GradientType=1);}*/
.bg-reg-grad{background:url(../img/sideprinter.jpg.webp); 
background-size: cover; background-position:left center; background-repeat: no-repeat;  }
.text-red{color: #bf2034;}
.bg-black {
  /* This creates the vertical gradient from dark gray to black */
  background: linear-gradient(180deg, #232526 0%, #000000 100%) !important;
  
  /* Keep or remove these based on your preference for the scroll effect */
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.prod-bg{background: rgb(235,235,235);
background: -moz-linear-gradient(228deg, rgba(235,235,235,1) 35%, rgba(235,235,235,1) 35%, rgba(244,244,244,1) 35%);
background: -webkit-linear-gradient(228deg, rgba(235,235,235,1) 35%, rgba(235,235,235,1) 35%, rgba(244,244,244,1) 35%);
background: linear-gradient(228deg, rgba(235,235,235,1) 35%, rgba(235,235,235,1) 35%, rgba(244,244,244,1) 35%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ebebeb",endColorstr="#f4f4f4",GradientType=1);}
.menu-bg{background: rgb(255,255,255);
background: -moz-linear-gradient(112deg, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 35%, rgba(244,244,244,1) 35%);
background: -webkit-linear-gradient(112deg, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 35%, rgba(244,244,244,1) 35%);
background: linear-gradient(112deg, rgba(255,255,255,1) 35%, rgba(255,255,255,1) 35%, rgba(244,244,244,1) 35%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#f4f4f4",GradientType=1);}
.mylink{font-size:18px;
font-weight:600;}

.abt-bg{background-image: url("../img/servicebg.jpg");
background-attachment: fixed;
  background-size: cover;
     overflow: hidden;
  background-repeat: no-repeat;
  background-position: center center;}

.my-style a {font-size: 17px;
    font-weight:400;
    line-height: 20px;
color: #bf2034;}
.my-style a:hover {
color: #000;}
.my-style h5{font-size:16px;
font-weight: 400;}

.row-eq-height {
display: -webkit-box;
 display: -webkit-flex;
  display: -ms-flexbox;
  display:         flex;
}
.wrapper {
	position: relative;
	overflow: hidden;
    
}


.owl-carousel .owl-stage{display: flex;}
.testimonial-item {
    display: flex;
    flex: 1 0 auto;
    height: 100%;
}
.text-black{color:#000;}

/*********************************************
	Custom slider options start
*********************************************/
.tp-banner-container {position: relative; z-index: 1; padding: 0; width: 100%;}
.tp-banner {position: relative;	width: 100%;}
.tp-caption {line-height:normal !important}
.tp-caption a {	color: inherit !important;}
.tp-bullets.simplebullets.round .bullet {border: 3px #fff solid; border-radius: 50%; background-image: none !important;}
.tparrows {
    width: auto !important;
    height: auto !important;
    background-image: none !important;
}

.tp-arr-allwrapper {
    margin: 0 10px;
    width: 40px;
    height: 40px;
    background: rgba(191, 32, 52, 0.8); /* Red background with slight opacity */
    border-radius: 50%; /* Makes the button rounded */
    display: flex; /* Center the content inside the button */
    align-items: center;
    justify-content: center;
}

.tp-arr-allwrapper:hover .tp-arr-iwrapper {
    color: #fff; /* Text color on hover */
}

.tp-arr-iwrapper {
    color: #fff; /* White text color for visibility on red background */
    text-align: center;
    font-size: 30px;
    font-family: FontAwesome;
    line-height: 38px;
}

.tp-leftarrow .tp-arr-iwrapper:before {
    content: "←";
}

.tp-rightarrow .tp-arr-iwrapper:before {
    content: "→";
}
.video-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto; /* Adjusts height based on aspect ratio */
    padding-bottom: 56.25%; /* Aspect Ratio of 16:9 */
    /* Other aspect ratios can be set using different padding-bottom values, e.g., 75% for 4:3 */
}

/* Styles for the video element */
.slider-video {
    width: 100% ;
    height: 100%;
    object-fit: contain; /* The fix for the cropping */
    object-position: center center; /* Ensures the contained video is centered */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 767px) {
    .video-container {
        height: 60vh; /* Adjust height for better fit on smaller screens */
    }
    .slider-video {
        object-fit: contain; /* Ensure full video visibility on small screens */
    }
}

/* Optional: Ensure video is properly lazy-loaded */
.slider-video {
    loading: lazy; /* Note: Lazy loading for videos might require JavaScript support in some cases */
}

/* Hide video controls on mobile if autoplaying (uncomment if needed) */
/*
.slider-video[controls] {
    display: none;
}
*/
.slide-h1 {margin: 5px 0 !important; padding: 0 0 10px !important; padding-bottom: 5px !important; color: #444; text-transform: uppercase; font-weight: bold; font-size: 57px; }
.slide-h2 {margin: 5px 0 !important; padding: 0 0 10px !important; padding-bottom: 5px !important; color: #555; font-weight: bold; font-size: 55px; line-height: 100%;}
.big-font {text-transform: uppercase; font-weight: 800; font-size: 60px;}
.large-desc {font-size: 16px;}
.slide-h3 {color: #fff;	font-size: 31px; line-height: 100%;}
.slide-h3 span {text-transform: uppercase; font-weight: bold;}
.slide-head {text-transform: uppercase; font-weight: 900; font-size: 30px;}
.slide-desc {font-size: 22px; line-height: 150%;}
.main-title {text-transform: uppercase; font-weight: 800; font-size: 70px;}
.icon-cont {padding: 15px 40px;	border-radius: 10px; text-align: center;}
.icon-cont:after {position: absolute; bottom: -10px; left: 40%; z-index: 5;	display: inline-block;	width: 0; height: 0; border-width: 10px 10px 0 10px; border-style: solid; content: "";}
.icon-cont i {margin-bottom: 10px; color: #fff; font-size: 50px;}
.icon-cont span {display: block; padding: 0 0 5px; color: #fff; text-align: center; font-size: 18px;}
a.wit-btn {background: #fff; color: #333 !important; text-transform: uppercase;}
.wit-line {width: 5%; height: 1px; background: #fff;}
.vert-line {min-height: 270px; width: 1px; background: #fff;}
.subTxt {text-transform: uppercase; font-weight: bold; font-size: 17px; color: #333;}
.large-title {color: #222; font-size: 60px;	font-weight: 800; }
.large-light-title {color: #787878 !important;	font-size: 70px; font-weight: lighter; text-transform: uppercase; letter-spacing:2px}
.large-text {font-size: 20px; color: #000; font-weight: lighter;}
.larger-text {font-size: 24px; font-weight: lighter; text-transform: uppercase;}
.witTxt {color: #fff !important;}
.light-font {font-weight: lighter !important; font-size: 50px;}
.black-bg{background:rgba(0,0,0,.63); color:#a8a8a8; text-transform:none;}
.lft-list {padding: 10px; font-size: 18px; color: #fff;}
.wit-border {border: 1px #fff solid; padding: 15px 60px; color: #fff; font-size: 16px; text-transform: uppercase;}
.rounded-bord {margin-right: 15px;  border: 1px #fff solid; width: 30px; height: 30px; text-align: center; line-height: 30px; font-size: 13px; border-radius: 50%;}
#vertical-ticker{height:120px; overflow:hidden;}
#vertical-ticker li{padding:15px 20px; display:block; text-align:center;}
.to-bottom i.fa{font-size: 30px; border:2px #a8a8a8 solid; 	padding:20px 22px; border-radius:50%; -webkit-animation: bounce 2s infinite linear;	animation: bounce 2s infinite linear;}
.slidertext1{color:#fff; font-size:40px; font-weight:700; text-align:left; text-shadow: 0 0 1px rgba(24,24,24,.75); }
.slidertext2{color:#fff; font-size:18px; font-weight:400; text-transform:none !important; text-align:left; }
.slidertext4{color:#fff; font-size:18px; font-weight:600; text-transform:none !important; text-align:center; text-shadow: 0 0 1px rgba(24,24,24,.75);}
.slidertext3 a{color:#fff !important; font-size:18px; font-weight:400; padding:14px 34px; text-transform:uppercase !important; text-align:left; background:#34458a;}
.tp-bannertimer{display:none;}

@-webkit-keyframes bounce {
	0% {
		transform:translateY(0%);
	}
	50% {
		transform:translateY(-30%);
	}
	100% {
		transform:translateY(0);
	}
}

/* Mozilla Firefox 15 below */
@-moz-keyframes bounce {
  0% {
		transform:translateY(0%);
	}
	50% {
		transform:translateY(-30%);
	}
	100% {
		transform:translateY(0);
	}
}

/* Opera 12.0 */
@-o-keyframes bounce {
    0% {
		transform:translateY(0%);
	}
	50% {
		transform:translateY(-30%);
	}
	100% {
		transform:translateY(0);
	}
}

/* W3, Opera 12+, Firefox 16+ */
@keyframes bounce {
	0% {
		transform:translateY(0%);
	}
	50% {
		transform:translateY(-30%);
	}
	100% {
		transform:translateY(0);
	}
}
/*********************************************
	Custom slider options end
*********************************************/

.captionbg{background: rgba(0,0,0,.3);
padding:10px 10px 15px 10px !important;}
.arun{color:#fff;
font-size:18px;
font-weight:100;
margin-bottom:0px;}
.rdc{color:#fff;
    margin-bottom:10px;
font-size: 23px ;
    line-height:29px !important;
  font-weight:400;}
.moredetail a {transition: all 0.2s ease-out 0s;
  
    background-color: #34458a;
   display:initial;
font-weight:200;
padding: 14px 24px !important;
letter-spacing: 0px;
font-size: 16px;}
.moredetail a:hover {transition: all 0.2s ease-out 0s;
  
    background-color: #008e5b;
  
}
.bg-orange{background-color: #e36533;}

.btn-dark1 {
 color:#fff;
background: rgb(18,17,17);
background: -moz-linear-gradient(180deg, rgba(18,17,17,1) 0%, rgba(139,119,118,1) 50%, rgba(14,13,13,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(18,17,17,1) 0%, rgba(139,119,118,1) 50%, rgba(14,13,13,1) 100%);
background: linear-gradient(180deg, rgba(18,17,17,1) 0%, rgba(139,119,118,1) 50%, rgba(14,13,13,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#121111",endColorstr="#0e0d0d",GradientType=1);
 border-color:transparent;
    border:0px;
    border-radius: 20px;
}
.btn-dark1:hover {
 color:#fff;
 background: rgb(139,119,118);
background: -moz-linear-gradient(180deg, rgba(139,119,118,1) 0%, rgba(18,17,17,1) 50%, rgba(139,119,118,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(139,119,118,1) 0%, rgba(18,17,17,1) 50%, rgba(139,119,118,1) 100%);
background: linear-gradient(180deg, rgba(139,119,118,1) 0%, rgba(18,17,17,1) 50%, rgba(139,119,118,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#8b7776",endColorstr="#8b7776",GradientType=1);
 
}
.btn-dark-red {
 color:#fff;
background: rgb(191,32,52);
background: -moz-linear-gradient(180deg, rgba(191,32,52,1) 0%, rgba(115,28,28,1) 50%, rgba(191,32,52,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(191,32,52,1) 0%, rgba(115,28,28,1) 50%, rgba(191,32,52,1) 100%);
background: linear-gradient(180deg, rgba(191,32,52,1) 0%, rgba(115,28,28,1) 50%, rgba(191,32,52,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bf2034",endColorstr="#bf2034",GradientType=1);
 border-color:transparent;
    border:0px;
    border-radius: 20px;
}
.btn-dark-red:hover {
 color:#fff;
background: rgb(115,28,28);
background: -moz-linear-gradient(180deg, rgba(115,28,28,1) 0%, rgba(191,32,52,1) 50%, rgba(115,28,28,1) 100%);
background: -webkit-linear-gradient(180deg, rgba(115,28,28,1) 0%, rgba(191,32,52,1) 50%, rgba(115,28,28,1) 100%);
background: linear-gradient(180deg, rgba(115,28,28,1) 0%, rgba(191,32,52,1) 50%, rgba(115,28,28,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#731c1c",endColorstr="#731c1c",GradientType=1);

}

/*** Featured ***/
.featured-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .featured-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.featured-carousel .featured-item .border {
    border: 0px dashed rgba(0, 185, 142, .3) !important;
}

.featured-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.featured-carousel .owl-nav .owl-prev,
.featured-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.featured-carousel .owl-nav .owl-prev:hover,
.featured-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}



.navbar .megamenu{ padding: 1rem; }

/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  .navbar .has-megamenu{position:static!important;}
  .navbar .megamenu{left:0; right:0; width:100%; margin-top:0; 
    border-radius: 0px;
      border: 1px solid #c9c9c9 !important;
      
    background-color:#f5f5f5;}

}	
/* ============ desktop view .end// ============ */

/* ============ mobile view ============ 
/*@media(max-width: 991px){
  .navbar.fixed-top .navbar-collapse, .navbar.sticky-top .navbar-collapse{
    overflow-y: auto;
      max-height: 90vh;
      margin-top:10px;
  }
}*/
/* ============ mobile view .end// ============ */
.megamenu h4{font-size:17px;
    font-weight: 100 !important;
    padding-bottom:10px;
border-bottom: 1px dotted #c4c4c4;}

#welcome, #welcome2 {height: 270px;}

.section.bg-static {
 
 
}
.section .bg-move {
  position: absolute;
  z-index: 10;
  bottom: 0px;
  right: auto;
  width: 400px;
    height:81px;
  background-image: url("../img/ship.png.webp");
  background-size: contain;
  background-position: center center;
    background-repeat: no-repeat;
    
}

.bg-vegetable{
    position:relative;
    background-image: url("../img/nightbldg.jpg.webp");
  background-size: cover;
    
   
  background-position: center;
    background-repeat: no-repeat;}

.bg-fruit{
    position:relative;
    background-image: url("../img/color.jpg.webp");
  background-size: cover;
    
   
  background-position: center center;
    background-repeat: no-repeat;}

.rainbow {
    /* 1. Remove old image */
    background-image: none !important;
    
    /* 2. Light Gradient: White to Light Grey */
    background: linear-gradient(135deg, #ffffff 0%, #f2f3f5 100%) !important;
    
    /* 3. Spacing */
    padding: 80px 0;
    
    /* 4. Optional: Add a subtle border bottom to separate it */
    border-bottom: 1px solid #e0e0e0;
}
.service-border{border:1px solid #000;
margin-left:2px;}

.mysection{padding: 4.5em 0em;}

.breadcrumb a{color:#c23631;}
.breadcrumb a:hover{color:#fff;}
.breadcrumb .active{color:#fff !important;}
.breadcrumb .breadcrumb-item {color:#f17a38;}
.bg-gray{background-color: #f0f0f0;}

.form-control {
 display:block;
 width:100%;
 padding:.975rem .75rem;
 font-size:1.2rem;
 font-weight:400;
 line-height:1.5;
 color:#666565;
 background-color:#fff;
 background-clip:padding-box;
 border:1px solid #ced4da;
 appearance:none;
 border-radius:5px;
 transition:border-color 0.15s ease-in-out,box-shadow 0.15s ease-in-out
}
label.error{color:#c23631;
font-size:.7em;}


/*** Testimonial ***/
.prod-carousel {
    padding-left: 0rem;
    padding-right: 0rem;
   
}

@media (min-width: 576px) {
    .prod-carousel {
        padding-left: 0rem;
        padding-right: 0rem;
    }
}

.prod-carousel .testimonial-item1  {
    border: 0px;
}

.prod-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}
.prod-carousel .owl-nav .owl-prev{left:10px;}
.prod-carousel .owl-nav .owl-next{right:10px;}
.prod-carousel .owl-nav .owl-prev,
.prod-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.prod-carousel .owl-nav .owl-prev:hover,
.prod-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}
.youtube-embed {
  position: relative;
  height: 0;
  padding-top: 56%;
  overflow: hidden;
  max-width: 100%;
}
.youtube-embed iframe { 
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
html .mychat{position:fixed;bottom:10px;left:10px;z-index:1100;}


/*** Brand ***/
.brand-carousel.owl-carousel .owl-stage { display: flex; align-items: center; }
.brand-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .brand-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.brand-carousel .featured-item .border {
    border: 0px dashed rgba(0, 185, 142, .3) !important;
}

.brand-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 40px;
    top: calc(50% - 20px);
    left: 0;
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.brand-carousel .owl-nav .owl-prev,
.brand-carousel .owl-nav .owl-next {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 40px;
    font-size: 20px;
    transition: .5s;
}

.brand-carousel .owl-nav .owl-prev:hover,
.brand-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}
.brand-item{padding:10px;
background-color: #fff;}