/* Roboto Fonts */
@font-face {
  font-family: 'Roboto Light';
  src: url('../fonts/Roboto/Roboto-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Bold';
  src: url('../fonts/Roboto/Roboto-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Roboto Italic';
  src: url('../fonts/Roboto/Roboto-Italic.ttf') format('truetype');
}

/* Lato Fonts */
@font-face {
  font-family: 'Lato Light';
  src: url('../fonts/Lato/Lato-Light.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato Regular';
  src: url('../fonts/Lato/Lato-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Lato Italic';
  src: url('../fonts/Lato/Lato-Italic.ttf') format('truetype');
}

/* Montserrat Fonts */
@font-face {
  font-family: 'Montserrat SemiBold';
  src: url('../fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype');
}

/* Nunito Fonts */
@font-face {
  font-family: 'Nunito Regular';
  src: url('../fonts/Nunito/Nunito-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito SemiBold';
  src: url('../fonts/Nunito/Nunito-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Nunito Bold';
  src: url('../fonts/Nunito/Nunito-Bold.ttf') format('truetype');
}

/* Poppins Fonts */
@font-face {
  font-family: 'Poppins Regular';
  src: url('../fonts/Poppins/Poppins-Regular.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins SemiBold';
  src: url('../fonts/Poppins/Poppins-SemiBold.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins Bold';
  src: url('../fonts/Poppins/Poppins-Bold.ttf') format('truetype');
}
@font-face {
  font-family: 'Poppins Italic';
  src: url('../fonts/Poppins/Poppins-Italic.ttf') format('truetype');
}

/* Root Variables */
:root {
  --primary-color: #0e385a;
  --secondary-color: #f7ba18;
  --light-color: #f3f5f6;
  --dark-light-color: #BBBDBC;
  --dark-color: #585e5e;
  --white-color: #FFFFFFFF;
  --black-color: #000000;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;

  --italic-1: 'Lato Italic', sans-serif;
  --italic-2: 'Poppins Italic', sans-serif;

  --light-1: 'Roboto Light', sans-serif;
  --light-2: 'Lato Light', sans-serif;

  --regular-1: 'Nunito Regular', sans-serif;
  --regular-2: 'Poppins Regular', sans-serif;

  --semibold-1: 'Montserrat SemiBold', sans-serif;
  --semibold-2: 'Nunito SemiBold', sans-serif;
  --semibold-3: 'Poppins SemiBold', sans-serif;

  --bold-1: 'Roboto Bold', sans-serif;
  --bold-2: 'Nunito Bold', sans-serif;
  --bold-3: 'Poppins Bold', sans-serif;
}
.primary-btn1{
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-color));
}
.primary-btn2{
    background: linear-gradient(135deg, var(--primary-color), var(--primary-color));
}
.primary-btn {
  position: relative;
  display: inline-block;
  color: var(--white-color);
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease-in-out, border 0.3s ease-in-out;
  box-shadow: 0 0 10px rgba(255,255,255,0.1);
}

/* Shine effect using ::before */
.primary-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(25deg);
  animation: shine 4s infinite;
  pointer-events: none;
}

.primary-btn:hover {
  color: var(--white-color);
}

@keyframes shine {
  0% {
    transform: translateX(-100%) rotate(25deg);
  }
  100% {
    transform: translateX(100%) rotate(25deg);
  }
}

/* Global Styles */
body {
  font-family: var(--light-1);
  background-color: var(--light-color);
  color: var(--dark-color);
  margin: 0;
  padding: 0;
}

/* Info Bar Css Start */
.info-bar {
  background-color: var(--light-color);
  margin: 0;
  padding: 7px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.custom-primary-btn {
  background-color: var(--primary-color);
  padding: 5px 10px;
  border-radius: 5px;
  font-family: var(--italic-2);
  text-decoration: none;
  font-weight: 400;
  font-size: 12px;
  color: var(--light-color);
  box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
  margin: 0;
  transition: all 0.2s ease-in-out;
}

.custom-primary-btn img {
  height: 15px;
  width: 15px;
  margin: 0;
  padding: 0;
}

.custom-primary-btn:hover {
  color: var(--light-color);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-details {
  margin: 0;
  padding: 0;
  display: flex;
}

.info-mail, .info-phone {
  font-family: var(--italic-2);
  font-weight: 300;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.info-phone {
  margin-left: 15px;
}

.info-mail img, .info-phone img {
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
}

.info-mail img {
  margin-right: 3px;
}
/* Info Bar Css End */

/* Search Bar Css Start */
.scroll-y{
  margin-top: 135px;
}
@media(max-width: 992px){
  .scroll-y{
    margin-top: 60px;
  }
}
.menu-icon {
  display: none;
}

.search-bar {
  padding: 10px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
}

.logo img {
  height: 45px;
  max-width: 300px;
}

.slogan p{
    margin: 0;
    font-size: 18px;
    font-family: var(--italic-1);
}

.search-body {
  width: fit-content;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

.search-body input {
  border: none;
  background-color: var(--light-color);
  padding: 7px 15px;
  outline: none;
  width: 380px;
  height: 35px;
  border-radius: 3px;
}

.search-body button {
  position: absolute;
  background-color: var(--primary-color);
  border: 2px solid var(--primary-color);
  z-index: 99;
  border: transparent;
  height: 37px;
  border-radius: 0px 3px 3px 0px;
  padding: 9px;
  right: -1px;
  top: -1px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.search-body button img {
  height: 20px;
  width: 20px;
}

.cartorbtn {
  display: flex;
}

.cart {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin-left: 15px;
  position: relative;
}

.cart span {
  font-size: 18px;
}

.cart-icon {
  position: relative;
  display: inline-block;
}

.cart-icon img {
  height: 30px;
  width: 30px;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
}

.cart-count span {
  background-color: var(--secondary-color);
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  padding: 2px 7px;
  display: inline-block;
  min-width: 20px;
  text-align: center;
  font-weight: bold;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
  .logo img {
    max-width: 200px;
  }
  .search-body input {
    width: 250px;
  }
  .search-bar {
    padding: 10px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white-color);
  }
}

@media (max-width: 992px) {
  .menu-icon {
    display: block;
    margin-right: 10px;
  }
  .custom-contact {
    display: none;
  }
}

@media (max-width: 590px) {
  .info-bar {
    display: none;
  }
  .search-bar {
    padding: 10px 15px;
  }
  .logo img {
    max-width: 110px;
  }
  .search-body input {
    width: 190px;
  }
  .cartorbtn {
    display: none;
  }
}
/* Search Bar Css End */

/* Menu Bar Css Start */
.menu-bar {
  margin: 0;
  padding: 5px 25px;
  background-color: var(--light-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  transition: 0.5s ease-in-out;
}

.menu-bar > ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.menu-bar > ul > li {
  margin: 12px 12px;
  color: var(--dark-color);
  transition: 0.2s ease-in-out;
  position: relative;
}

.menu-bar > ul > li > a {
  text-decoration: none;
  color: var(--dark-color);
  font-size: 16px;
  font-family: var(--semibold-2);
  font-weight: 500;
  transition: 0.2s ease-in-out;
  cursor: pointer;
}

.menu-bar > ul > li .chevron-down {
  font-size: 14px;
  margin-left: 7px;
  transition: transform 0.3s ease;
}

.menu-bar > ul > li .chevron-down.menu-active {
  transform: rotate(180deg);
}

.menu-bar > ul > li:hover > a,
.menu-bar > ul > li.menu-active > a {
  color: var(--primary-color);
}

.drop-down {
  position: relative;
}

.drop-down-menu {
  position: absolute;
  top: 40px;
  left: 50%;
  white-space: nowrap;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.drop-down-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0px);
}

.drop-down-menu > ul {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
  border: 1px solid rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 5px 0;
}

/* Triangle */
.drop-down-menu > ul::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--secondary-color);
}

.drop-down-menu > ul > li {
  padding: 5px 20px;
  padding-right: 45px;
  list-style: none;
  transition: 0.2s ease-in-out;
}

.drop-down-menu > ul > li > a > .chevron-right{
    font-size: 14px;
    margin-left: 7px;
}

.drop-down-menu > ul > li > a {
  text-decoration: none;
  color: var(--dark-color);
  font-size: 16px;
  font-family: var(--semibold-2);
  font-weight: 500;
  transition: 0.2s ease-in-out;
}
.drop-down-menu > ul > li > form > button {
  text-decoration: none;
  color: var(--dark-color);
  border: none;
  font-size: 16px;
  font-family: var(--semibold-2);
  background-color: transparent;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.drop-down-menu > ul > li:hover {
  color: var(--primary-color);
  background-color: var(--light-color);
}

.drop-down-menu > ul > li:hover a {
  color: var(--primary-color);
}
.drop-down-menu > ul > li:hover button {
  color: var(--primary-color);
}

@media (max-width: 992px) {
  .menu-bar {
    display: none;
  }
}

.drop-down-sub {
  position: absolute;
  top: 0;
  left: 100%;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 999;
}

.drop-down-sub.active {
  opacity: 1;
  visibility: visible;
}

.chevron-right.rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.drop-down-sub > ul {
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: var(--white-color);
  border: 1px solid rgba(0, 0, 0, 0.15);
  list-style: none;
  margin: 0;
  padding: 5px 0;
}
.drop-down-sub > ul > li {
  padding: 5px 20px;
  padding-right: 45px;
  list-style: none;
  transition: 0.2s ease-in-out;
}
.drop-down-sub > ul > li > a {
  text-decoration: none;
  color: var(--dark-color);
  font-size: 16px;
  font-family: var(--semibold-2);
  font-weight: 500;
  transition: 0.2s ease-in-out;
}
.drop-down-sub > ul > li > form > button {
  text-decoration: none;
  color: var(--dark-color);
  border: none;
  font-size: 16px;
  font-family: var(--semibold-2);
  background-color: transparent;
  font-weight: 500;
  transition: 0.2s ease-in-out;
}

.drop-down-sub > ul > li:hover {
  color: var(--primary-color);
  background-color: var(--light-color);
}

.drop-down-sub > ul > li:hover a {
  color: var(--primary-color);
}
.drop-down-sub > ul > li:hover button {
  color: var(--primary-color);
}

/* Menu Bar Responsive */
.menu-bar-responsive {
  width: 300px;
  height: 100vh;
  background-color: var(--secondary-color);
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 9999; /* Increased z-index to ensure it appears above sticky elements */
}

.menu-bar-responsive.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.menu-bar-responsive.out {
  transform: translateX(-100%);
  opacity: 0;
}

.cross-icon {
  position: absolute;
  top: 9px;
  right: 14px;
}

.cross-icon .i {
  color: var(--white-color);
  font-size: 20px;
}

.menu-bar-responsive-btn {
  display: none;
}

.menu-bar-responsive > ul {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

.menu-bar-responsive > ul > li {
  padding: 5px 20px;
  padding-left: 40px;
  transition: 0.3s ease-in-out;
}

.menu-bar-responsive > ul > li > a {
  color: var(--white-color);
  text-decoration: none;
  font-family: var(--semibold-2);
  font-weight: 500;
}

.menu-bar-responsive > ul > li:hover a {
  color: var(--primary-color);
}

.drop-down-responsive .chevron-down-responsive {
  font-size: 14px;
  margin-left: 7px;
  transition: transform 0.3s ease;
}

.menu-bar-responsive ul > li.menu-active > a,
.menu-bar-responsive ul > li > a.menu-active {
  color: var(--primary-color);
}

/* Dropdown Animation */
.drop-down-menu-responsive > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
}

.drop-down-menu-responsive > ul.active {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
}

.drop-down-menu-responsive > ul > li {
  padding: 3px 10px;
  transition: 0.3s ease-in-out;
}

.drop-down-menu-responsive > ul > li > a {
  color: var(--white-color) !important;
  text-decoration: none;
  font-family: var(--semibold-2);
  font-weight: 500;
}
.drop-down-menu-responsive > ul > li > form > button {
  color: var(--white-color) !important;
  text-decoration: none;
  font-family: var(--semibold-2);
  border: none;
  background: transparent;
  font-weight: 500;
}

.drop-down-menu-responsive > ul > li:hover a {
  color: var(--primary-color) !important;
}
.drop-down-menu-responsive > ul > li:hover button {
  color: var(--primary-color) !important;
}

/* Chevron Rotation */
.chevron-down-responsive {
  transition: transform 0.3s ease;
}

.chevron-down-responsive.rotate-up {
  transform: rotate(180deg);
}

@media (max-width: 590px) {
  .menu-bar-responsive {
    width: 100%;
    height: 100vh;
  }
  .menu-bar-responsive-btn {
    display: block;
  }
}
/* Menu Bar Css End */

/* Slider Css Start */
.custom-dot {
  width: 45px !important;
}

.custom-dot.active {
  width: 65px !important;
}

.carousel-item {
  position: relative;
}

.carousel-inner img {
  height: 480px;
}

.black-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.custom-dot {
  width: 90px;
}

.custom-caption {
  position: absolute;
  left: 100px;
  bottom: 70px;
  color: #fff;
  text-align: left !important;
  background-color: rgba(0, 0, 0, 0.50);
  width: fit-content;
  padding: 20px 25px;
}
.custom-caption-2{
  position: absolute;
  top: 30px;
  left: 0;
  color: #fff;
  width: 100%;
}
.custom-caption-2 h5{
  text-align: center;
  font-weight: bold;
  font-size: 1.9rem;
  font-family: var(--bold-3);
}

.custom-caption h5 {
  font-weight: bold;
  font-size: 1.9rem;
  font-family: var(--bold-3);
}

.custom-caption p {
  margin: 0;
  font-size: 1.1rem;
  max-width: 680px;
  font-family: var(--italic-2) !important;
  word-spacing: 0.2rem;
  line-height: 25px;
  display: -webkit-box;
  -webkit-line-clamp: 2;       /* Number of lines to show */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 791px) {
  .custom-caption {
    left: 50px;
  }
  .custom-caption h5 {
    font-weight: bold;
    font-size: 1.2rem;
  }
  .custom-caption p {
    margin: 0;
    font-size: 0.8rem;
    max-width: 500px;
  }
  .carousel-inner img {
    height: 300px;
  }
}

@media (max-width: 550px) {
  .custom-caption {
    left: 30px;
  }
  .carousel-inner img {
    height: 220px;
  }
  .custom-caption h5 {
    font-weight: bold;
    font-size: .9rem;
  }
  .custom-caption p {
    margin: 0;
    font-size: 0.5rem;
    max-width: 320px;
    line-height: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
/* Slider Css End */

/* Category Slide Css Start */
.slide-body {
  position: relative;
}

.category-slide-body {
  width: 100%;
  padding: 60px 20px;
  position: relative;
  background-color: #f8f8f8;
}

.category-slide {
  margin: 10px;
}

.category-slider {
  padding: 40px 20px;
  color: #fff;
  text-align: left;
  position: relative;
  height: 300px;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin: 0 10px;
  z-index: 2;
}

.category-slider h3 {
  font-size: 26px;
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: var(--semibold-3);
  font-weight: 700;
}

.category-slider h3 span {
  display: block;
}

.category-slider img {
  width: 170px;
  position: absolute;
  bottom: 30px;
  right: 0px;
  object-fit: contain;
  transition: transform 0.3s ease;
  z-index: -1;
}

.category-slider:hover img {
  transform: translateY(-20px); /* Moves image up */
}

.category-slider .shop-btn {
  display: inline-block;
  background-color: #fff;
  color: #333;
  padding: 4px 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  border: 1px solid rgba(0, 0, 0, 0.35);
  font-family: Arial, sans-serif;
  transition: 0.3s ease;
  position: absolute;
  bottom: 50px;
  left: 10px;
  z-index: 999;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.25);
}

.category-slider .shop-btn:hover {
  background-color: #e0e0e0;
  box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.35);
}

.petrol { background-color: #c8102e; }
.weed { background-color: #1d285d; }
.rideon { background-color: #ffc928; color: #1d1d1b; }
.farm { background-color: #325348; }

.category-arrows {
  position: absolute;
  bottom: 15px;
  left: 25px;
  display: flex;
  z-index: 99;
}

.arrow {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-right: 20px;
}

.arrow i {
  color: #333;
  font-size: 20px;
}

.slick-slide {
  padding: 0 10px;
}

/* Hide default Slick arrows */
.slick-prev, .slick-next {
  display: none !important;
}

@media (max-width: 1024px) {
  .category-slider {
    height: 280px;
  }
  .category-slider h3 {
    font-size: 24px;
  }
  .category-slider img {
    width: 100px;
  }
}

@media (max-width: 768px) {
  .category-slide-body {
    padding: 20px 10px;
  }
  .category-slider {
    height: 250px;
    padding: 20px 15px;
  }
  .category-slider h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
  .category-slider img {
    width: 100px;
    bottom: 15px;
    right: 15px;
  }
  .category-slider .shop-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
  .arrow {
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }
  .arrow i {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .category-slider {
    height: 220px;
  }
  .category-slider h3 {
    font-size: 24px;
  }
  .category-slider img {
    width: 140px;
  }
  .category-slider .shop-btn {
    padding: 6px 12px;
    font-size: 12px;
    bottom: 30px;
  }
  .arrow {
    width: 35px;
    height: 35px;
    margin-right: 10px;
  }
  .arrow i {
    font-size: 14px;
  }
}
/* Category Slide Css End */

/* Category & Items Start */
.categorys-products {
  padding: 0px 30px;
}

.categorys-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 10px;
}

.categorys-header h2 {
  font-size: 26px;
  font-family: var(--bold-2);
  color: var(--primary-color);
  margin: 0;
  padding: 0;
}

.more-btn {
  background-color: var(--primary-color);
  padding: 2px 10px;
  border-radius: 3px;
  color: var(--white-color);
  border: none;
}

.more-btn .i {
  font-size: 12px;
  margin-left: 3px;
}

/* Products View in Frontend start*/
/* Grid Layout */
.product-more-btn{
  border: 1px solid var(--primary-color);
  padding: 5px 10px;
  color: var(--primary-color);
  margin: 0;
  background: transparent;
  font-size: 14px;
  font-weight: 600;
  transition: 0.4s ease-in-out;
}
.product-more-btn:hover{
  background: var(--primary-color);
  color: white;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}


.product-card {
  background: white;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  border: 1px solid var(--primary-color);
}

.product-image {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  padding: 0;
  width: 100%;
}

.product-card .product-action-1 {
  background-color: #fff;
  border-radius: 5px;
  border: 1px solid #BCE3C9;
}
.product-card .product-action-1 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  z-index: 9;
  box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
}
.product-card:hover:hover.product-card .product-action-1 {
  visibility: visible;
  opacity: 1;
}
.product-card .product-action-1 a.action-btn {
  width: 40px;
  height: 36px;
  line-height: 40px;
  text-align: center;
  position: relative;
  display: inline-block;
  border-right: 1px solid #BCE3C9;
}
.product-card .product-action-1 a.action-btn:last-child {
  border: none;
  border-left: 1px solid #BCE3C9;
}
.product-card .product-action-1 a.action-btn.small {
  width: 32px;
  height: 32px;
  line-height: 32px;
}
.product-card .product-action-1 a.action-btn.small .i {
  color: var(--primary-color);
  font-size: 12px;
}
.product-card .product-action-1 a.action-btn:after {
  bottom: 100%;
  left: 50%;
  position: absolute;
  white-space: nowrap;
  border-radius: 5px;
  font-size: 11px;
  padding: 7px 10px;
  color: #ffffff;
  background-color: var(--primary-color);
  content: attr(aria-label);
  line-height: 1.3;
  transition-delay: 0.1s;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(0px);
}
.product-card .product-action-1 a.action-btn:before {
  content: "";
  position: absolute;
  left: calc(50% - 7px);
  bottom: 100%;
  transition-delay: 0.1s;
  border: 7px solid transparent;
  border-top-color: var(--primary-color);
  z-index: 9;
  margin-bottom: -13px;
  transition-delay: 0.1s;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  opacity: 0;
  visibility: hidden;
}
.product-card .product-action-1 a.action-btn:last-child {
  margin-right: 0;
}
.product-card .product-action-1 a.action-btn .i {
  font-size: 15px;
  margin-left: 1px;
}
.product-card .product-action-1 a.action-btn:hover {
  color: #FDC040;
}
.product-card .product-action-1 a.action-btn:hover:after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-8px);
}
.product-card .product-action-1 a.action-btn:hover:before {
  opacity: 1;
  visibility: visible;
  transform: translateY(-8px);
}
.product-card .product-action-1 a.action-btn:hover .i {
  color: #FDC040;
}

.product-image img {
  width: 100%;
  min-height: 149px;
  max-height: 150px;
  object-fit: contain;
}

.badge {
  position: absolute;
  top: -1px;
  left: -1px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  border-radius: 10px 0 10px 0 !important;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 5;
}

.badge.hot {
  background: var(--danger-color);
}

.badge.sale {
  background: var(--secondary-color);
}

.badge.new {
  background: var(--primary-color);
}

.badge.discount {
  background: var(--success-color);
}

.product-info {
  text-align: left;
}

.product-info h3 {
  font-size: 16px;
  margin: 5px 0;
  color: var(--dark-color);
  
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-info p {
  font-size: 14px;
  margin: 0;
  margin-top: 5px;
}
.product-info h6 {
  font-size: 14px;
  color: var(--dark-color) !important;
  margin: 5px 0;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media(max-width: 550px){
    .product-info h6 {
    
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
}


.rating {
  color: gold;
  margin: 5px 0;
}

.price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  font-size: 18px;
  font-weight: bold;
  color: var(--secondary-color);
}

.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: var(--dark-light-color);
}

.add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--primary-color);
  color: white;
  padding: 8px 12px;
  border: none;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  margin-top: 10px;
  transition: 0.3s ease;
}

.add-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}
/* Products View in Frontend end*/
/* Category & Items End */

/* Footer Css Start */
.footer {
  background-color: var(--light-color);
  font-family: var(--regular-2);
}

.footer > .row {
  padding: 50px 30px 10px 30px;
}

.company-details img {
  width: auto;
  height: 60px;
}

.company-details p {
  font-size: 15px !important;
  font-family: var(--italic-1);
}

.project-gallery {
  display: grid;
  width: 90%;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.project-gallery img {
  min-height: 120px;
  width: 100%;
  object-fit: cover;
  border: 1px solid var(--primary-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-gallery img:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.footer h5 {
  font-family: var(--semibold-3);
  color: var(--primary-color);
  margin-bottom: 15px;
}

.footer p {
  color: var(--dark-color);
  font-size: 14px;
  line-height: 1.6;
}

.footer-list,
.footer-social {
  list-style: none;
  padding: 0;
  text-align: start;
}

.footer-list li,
.footer-social li {
  margin-bottom: 10px;
  text-align: start;
}

.footer-list a,
.footer-social a {
  color: var(--dark-color);
  font-size: 16px;
  font-family: var(--semibold-2);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: start;
}
.footer-list > li > form > button {
  color: var(--dark-color);
  font-size: 16px;
  font-family: var(--semibold-2);
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  background: transparent;
  text-align: start;
}
.footer-list > li > form > button:hover{
  color: var(--primary-color);
  text-decoration: underline;
}

.footer-list a:hover,
.footer-social a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.gallery-btn{
  background-color: var(--primary-color);
  margin-top: 10px;
  padding: 6px 18px;
  border-radius: 30px;
  text-decoration: none;
  color: var(--white-color);
  transition: all 0.3s ease;
}
.gallery-btn:hover{
  transform: translateY(-5px);
  color: var(--white-color);
  background-color: #091f31;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.location p {
  font-size: 14px;
  font-family: var(--italic-1);
  line-height: 28px;
}

.location p .i {
  font-size: 18px;
  margin-right: 10px;
}

.footer-social i {
  margin-right: 8px;
  color: var(--primary-color);
}

.footer-bottom {
  background-color: var(--light-color);
  border-top: 1px solid var(--dark-light-color);
}

.footer-bottom p {
  margin: 0;
  font-family: var(--semibold-2);
  color: var(--dark-color);
  padding: 15px;
}
/* Footer Css End */
.modal-content {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.modal-contentHeader{
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 1050;
}
.modal-body {
  padding-top: 0;
}
.main-image {
  width: 100%;
  max-width: 370px;
  height: 280px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}
.thumbnails {
  display: flex;
  justify-content: start;
  gap: 10px;
  overflow-x: auto;
  margin-top: 10px;
}
.thumbnails img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 5px;
  transition: border-color 0.3s;
}
.thumbnails img.active,
.thumbnails img:hover {
  border-color: var(--primary-color);
}
.category-name {
  font-size: 16px;
  color: #555;
  margin-bottom: 3px;
}
.product-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}
.short-description {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}
.rating {
  font-size: 18px;
  color: #f5c518;
  margin-bottom: 15px;
}
.detail-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}
.detail-qty a {
  padding: 8px 12px;
  background: #f1f1f1;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}
.detail-qty input {
  width: 40px;
  text-align: center;
  border: none;
  outline: none;
}
.modal-price {
  font-size: 20px;
  font-weight: bold;
  color: #333;
}
.modal-old-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-left: 10px;
}
.add-btn {
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
}
.add-btn:hover {
  background: #0056b3;
}
@media(max-width: 991px){
  .main-image {
    width: 100%;
    max-width: 100%;
    max-height: 350px;
  }
}

/* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, #1e40af, #60a5fa);
            color: white;
            position: relative;
            overflow: hidden;
            padding: 2.5rem 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('/frontend/images/slide1.jpg') no-repeat center center/cover;
            opacity: 0.15;
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 1200px;
            margin: 0 auto;
        }
        .hero-content h1 {
            display: flex; 
            justify-content: center; 
            align-items: center; 
            color: white;
            font-size: 40px;
            font-family: var(--italic-1);
            font-weight: 600;
        }
        .hero-content p {
            font-size: 18px;
            font-weight: 100;
            font-family: var(--italic-2);
            line-height: 25px;
        }
 /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero-section {
                padding: 2rem 1rem;
            }
            .hero-content h1 {
                font-size: 32px;
            }
            .hero-content p {
                font-size: 16px;
            }
        }
        @media (max-width: 550px) {
            .hero-section {
                padding: 1.5rem 1rem;
            }
            .hero-content h1 {
                font-size: 28px;
            }
            .hero-content p {
                font-size: 12px;
                line-height: 16px;
            }
        }
/*Mission Page desgin*/
        /* Vision Section */
        .vision-section {
            /*background: linear-gradient(135deg, #f9fafb, #ffffff);*/
            background: white;
            padding: 30px 1rem;
        }
        .vision-content {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .vision-content h2 {
            font-size: 40px;
            font-family: var(--italic-1);
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
            width: fit-content;
            text-align: center;
        }
        .vision-content p {
            color: #4b5563;
            font-size: 18px;
            font-weight: 100;
            font-family: var(--italic-2);
            line-height: 25px;
        }
        .vision-content span h4{
            font-size: 28px;
            font-family: var(--italic-1);
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
            width: fit-content;
            text-align: left;
        }
        .mission-section{
            background: var(--light-color);
            padding: 35px 1rem;
        }
        .mission-content{
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
        .mission-header h2{
            font-size: 28px;
            font-family: var(--italic-1);
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
            width: fit-content;
        }
        .mission-header p {
            color: #4b5563;
            font-size: 15px;
            font-weight: 100;
            font-family: var(--italic-2);
            color: var(--primary-color);
            line-height: 22px;
        }
        .Sustainability-content{
            max-width: 1200px;
            margin: 0 auto;
            margin-top: 15px;
            margin-bottom: 35px;
            text-align: center;
        }
        .Sustainability-content h2{
            font-size: 28px;
            font-family: var(--italic-1);
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            border-bottom: 2px solid var(--primary-color);
            width: fit-content;
        }
        .Sustainability-content p {
            color: #4b5563;
            font-size: 15px;
            font-weight: 100;
            font-family: var(--italic-2);
            color: var(--primary-color);
            line-height: 22px;
            text-align: center;
        }
        @media (max-width: 768px) {
            .vision-section {
                padding: 2rem 1rem;
            }
            .vision-content h2 {
                font-size: 32px;
                 margin-bottom: 1rem;
            }
            .vision-content p {
                font-size: 16px;
            }
        }
        @media (max-width: 550px) {
            .vision-section {
                padding: 1.5rem 1rem;
            }
            .vision-content h2 {
                font-size: 24px;
                margin-bottom: 0.8rem;
            }
            .vision-content p {
                font-size: 12px;
                line-height: 16px;
                margin-bottom: 0;
            }
        }

        /* Core Values Section */
        .core-values-section {
            background: #f3f4f6;
            padding: 0px 1rem;
            padding-top: 30px;
            padding-bottom: 20px;
        }
        .core-values-section h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: #1f2937;
        }
        .core-values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (min-width: 640px) {
            .core-values-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .core-values-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .core-values-card {
            background: white;
            padding: 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .core-values-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            background-color: var(--primary-color);
            color: var(--white-color);
        }
        
        .core-values-card .i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .core-values-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }
        .core-values-card p {
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.6;
        }
        .core-values-card:hover.core-values-card h3,
        .core-values-card:hover.core-values-card p
        {
          color: var(--white-color);
        }
        .why-chose-section {
            background: #f3f4f6;
            padding: 2rem 1rem;
        }
        .why-chose-section h2 {
            font-size: 30px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 2rem;
            color: #1f2937;
        }
        .why-chose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (min-width: 640px) {
            .why-chose-grid {
                grid-template-columns: repeat(1, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .why-chose-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        .why-chose-card {
            background: white;
            padding: 1.5rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .why-chose-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            background-color: var(--primary-color);
            color: var(--white-color);
        }
        
        .why-chose-card .i {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        .why-chose-card h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.75rem;
        }
        .why-chose-card p {
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.6;
        }
        .why-chose-card:hover.why-chose-card h3,
        .why-chose-card:hover.why-chose-card p
        {
          color: var(--white-color);
        }
        /* Services Section */
        .services-section {
            background: #ffffff;
            padding: 4rem 1rem;
        }
        .services-section h2 {
            font-size: clamp(2rem, 4vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-color);
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        @media (min-width: 640px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        .service-card {
            background: white;
            padding: 2rem;
            border-radius: 0.75rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid var(--white-color);
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
            border: 1px solid var(--primary-color);
        }
        .service-card h3 {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin-bottom: 0.75rem;
        }
        .service-card ul, .service-card p {
            font-size: 1rem;
            color: #4b5563;
            line-height: 1.6;
        }
        .service-card ul {
            list-style-type: disc;
            padding-left: 1.5rem;
        }
        .service-card ul li {
            margin-bottom: 0.5rem;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .core-values-section, .services-section {
                padding: 3rem 1rem;
            }
        }
        @media (max-width: 640px) {
            .core-values-card, .service-card {
                margin-bottom: 1rem;
            }
        }
/*Our Coustomers*/
.customer-container{
  text-align: center;
}
.customer-title{
    font-size: 40px;
    font-family: var(--italic-1);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    padding-top: 30px
}
.customers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
    align-items: center;
}
.customers-grid img {
    width: 100%;
    max-width: 130px;
    height: auto;
    transition: transform 0.3s ease;
}
.customers-grid img:hover {
    transform: scale(1.05);
}

@media(max-width: 780px){
    .customer-title{
        font-size: 45px !important;
        padding-top: 40px
    }
}
@media(max-width: 550px){
    .customers-grid {
        grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
        gap: 10px;
    }
    .customer-title{
        font-size: 35px !important;
        padding-top: 30px
    }
}
@media(max-width: 385px){
    .customers-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 15px;
    }
}

/*Partens Style Start*/

.partners-scroll-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.partners-title{
    text-align: center;
}

.partners-grid {
    display: flex;
    align-items: center;
    gap: 30px;
    animation: scrollLeft 50s linear infinite;
    width: max-content;
}

.partner-logo img {
    max-height: 100px;
    object-fit: contain;
    transition: transform 0.3s;
}

.partner-logo:hover img {
    transform: scale(0.96);
}

/* Pause on hover */
.partners-scroll-wrapper:hover .partners-grid {
    animation-play-state: paused;
}

/* Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .partner-logo img {
        max-height: 40px;
    }
}
/*Partens Style End*/
