/********** Template CSS **********/
:root {
    --primary: #22649c;
    --secondary: #3c3535;
    --light: #F5F5F5;
    --dark: #161616;
}


*{
    margin: 0;
    padding: 0;
}
p{
    color: #353232 !important;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/* Search Bar  */
.search-form {
  position: relative;
  display: inline-block;
}

.search-input {
  padding: 4px 8px;
  width: 180px;
  border: 2px solid #22649c;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
  margin-top: 16px;
}

.search-input:focus {
  box-shadow: 0 0 6px rgba(34, 100, 156, 0.6);
  border-color: #22649c;
}

.suggestions-list {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 220px;
  overflow-y: auto;
  background: #fff;
  border: 2px solid #22649c;
  border-top: none;
  border-radius: 0 0 6px 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: none; /* hidden by default */
  z-index: 9999;
}
.search-btn{
    background: #22649c;
    border: none;
    padding: 5px;
    color: #fff;
    border-radius: 5px;
}
.search-btn:hover{
    background: #000;
    color: #fff;
}

.suggestions-list li {
  padding: 10px 14px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.suggestions-list li:hover {
  background: #22649c;
  color: #fff;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    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;
}

/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    height: 75px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}
.about img{
    border-radius: 20px;
    object-fit: contain;
    border-radius: 10px !important;

}
.thumb-img.active-thumb {
    border-color: #0d6efd !important;
    transform: scale(1.05);
    transition: 0.3s ease;
  }

  .thumb-img:hover {
    transform: scale(1.05);
    border-color: #0d6efd !important;
  }

  .main-image-container img {
    transition: all 0.3s ease-in-out;
  }

  .main-image-container img.fade {
    opacity: 0.7;
  }
/* Card hover effect */
.card {
  transition: all 0.4s ease;
  /* border-radius: 12px; */
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(34, 100, 156, 0.3);
}

/* Image zoom on hover */
.card img {
  transition: transform 0.5s ease;
}
.card:hover img {
  transform: scale(1.08);
}

/* Button gradient hover */
.card .btn {
  background: #22649c;
  border: none;
  transition: all 0.4s ease;
}
.card .btn:hover {
  background: linear-gradient(135deg, #22649c, #0d3c61);
  box-shadow: 0 4px 12px rgba(34, 100, 156, 0.4);
  transform: scale(1.05);
}
.service-item {
  background: #fff;               /* clean background */
  border-radius: 10px;            /* smooth corners */
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);  /* default shadow */
  transition: all 0.3s ease;      /* smooth animation */
  margin-right: 10px;
}
.service-item p{
    color: #3c3535;
}

.service-item:hover {
  transform: translateY(-6px);    /* lift effect */
  box-shadow: 0 8px 20px rgba(12, 63, 107, 0.25); /* darker shadow on hover */
  cursor: pointer;
}
.navbar-brand h4{
    margin-top: 10px;
}
.counter-section {
    position: relative;
    background: url('../img/counter-banner.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    min-height: 200px;
    z-index: 1;
}

.counter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(122, 117, 117, 0.6); /* semi-transparent overlay */
    z-index: -1;
}
.benefits-section {
  background-color: #084B8A; /* or use your preferred blue */
  color: #fff;
}
.elp span{
    margin-top: 10px !important;
}
.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px;
}

.benefit-item p {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  color: #fff;
}



.counter h5 {
    font-weight: bold;
    color: #fff;
}

.counter p {
    color: #fff !important;
    font-size: 1.1rem;
}

/* Swiper JS  */
.swiper{
    max-width: 85%;
}
 .swiper-slide {
  text-align: center;
  
}

.swiper-slide img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.cooler-name {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #333; 
}
@media only screen and (max-width:426px){
    .cooler-name {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 500;
    color: #333;
}
.banner-heading{
    font-size: 18px !important;
}
.page-header-about{
    height: 171px !important;
}
.page-headin{
    height: 171px !important;
}
}


    
/* our mission */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  position: relative;
  margin-bottom: 20px;
  margin-top: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: rgb(55, 116, 151); /* Accent color */
  border-radius: 2px;
}

.left-text p {
  font-size: 16px;
  color: #2e2b2b;

  /* text-align: justify; */
}

.mission-img {
 width: 80%;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-img:hover {
  transform: scale(1.05);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.25);
}

/* vission */
.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60px;
  height: 3px;
  background: rgb(55, 116, 151); 
  border-radius: 2px;
}

.right-text p {
  font-size: 16px;
  color: #2e2b2b;

  /* text-align: justify; */
}   

.vission-img {
 width: 80%;
  border-radius: 15px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vission-img:hover {
  transform: scale(1.05);
  box-shadow: 0px 12px 25px rgba(0,0,0,0.25);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}
footer .footer{
    margin-bottom: 0px !important;
}
.img-logo-bottom{
    padding-bottom: 27px;
}

.navbar .btn:hover {
    color: #FFFFFF !important;
    background:blue !important;
}


/*** Header ***/
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    /* background: rgba(30, 27, 27, 0.7); */
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 248px;
    }
    
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height:100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 15px;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #FFFFFF;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header-about {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/about-us-banner.png) center center no-repeat;
    background-size: cover;
}
.page-header-contact {
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/contact-us-banner.png) center center no-repeat;
    background-size: cover;
}
.page-header-product1{
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/bg-all-img.png) center center no-repeat;
    background-size: cover;
}


.contact-us-text{
    color: #413737 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}



/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    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:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}
.custom-select-border-contact {
  border: 1px solid black !important;
  color: black;
}
 

.search-res {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  /* margin: 30px 0; */
  color: #fff !important;
	background-color: #22649c;
	padding: 30px 0;
}

.search-info {
  text-align: center;
  font-size: 18px;
  margin: 25px 0;
  color: #000;
}
.search-info strong {
  color: #2b0c08;
	font-weight: 600;
	font-size: 22px;
}

/* Search Result Product Cards */
.result-box {
  width: 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-align: center;
  padding: 15px;
  margin: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  vertical-align: top;
    margin-left: 65px;
}
.result-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.result-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  margin-bottom: 10px;
  border-radius: 8px;
}
.result-box a {
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  color: #222;
  display: block;
  margin-bottom: 8px;
}
.result-box a:hover {
  color: #007bff;
}
.result-box p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

/* Suggestions Section */
.suggestions-product {
  margin: 40px 0;
  text-align: center;
}
.suggestions-product h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #333;
	font-weight: 500;
}

/* Suggestion Grid */
.suggestion-list-product {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.suggestion-item-product {
  width: 200px;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.suggestion-item-product:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}
.suggestion-item-product img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}
.suggestion-item-product a {
  display: block;
  padding: 12px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  color: #333;
}
.suggestion-item-product a:hover {
  color: #007bff;
}
.para{
	color: red !important;
	text-align: center;
}
/* a{
    color: #504d4d;
} */


.bannerVideo.video-slide {
    width: 100%;
    height: 70%;
    object-fit: cover;
}