@font-face {
  font-family: 'head';
  src: url('../fonts/Jost-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'para';
  src: url('../fonts/Roboto-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Root Variables */
:root {
  --primary-color: #40A885;
  --secondary-color: #FA780A;
  --color-white: #FFF;
  --color-black: #000;
  --color-text: #777777;
  --font-head: "head";
  --font-para: "para";
  --transition: all 0.3s ease;
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-para);
  background: var(--color-white);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 16px;
  transition: var(--transition);
  overflow-x: hidden !important;
}

p {
  font-family: var(--font-para);
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-head);
}

a {
  text-decoration: none;
  color: var(--color-black);
}

ul {
  list-style: disc inside;
  margin-bottom: 1rem;
}

li {
  margin-bottom: 0.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Preloader container */
.pre-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Loader element */
.loader-animation {
  width: 48px;
  height: 48px;
  position: relative;
}

.loader-animation::before {
  content: '';
  width: 48px;
  height: 5px;
  background: #fa780a40;
  position: absolute;
  top: 60px;
  left: 0;
  border-radius: 50%;
  animation: shadowScale 0.5s linear infinite;
}

.loader-animation::after {
  content: '';
  width: 100%;
  height: 100%;
  background: #FA780A;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  animation: jumpSpin 0.5s linear infinite;
}

/* Fade-out class */
.pre-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* Animations */
@keyframes jumpSpin {
  15% {
    border-bottom-right-radius: 3px;
  }

  25% {
    transform: translateY(9px) rotate(22.5deg);
  }

  50% {
    transform: translateY(18px) scale(1, 0.9) rotate(45deg);
    border-bottom-right-radius: 40px;
  }

  75% {
    transform: translateY(9px) rotate(67.5deg);
  }

  100% {
    transform: translateY(0) rotate(90deg);
  }
}

@keyframes shadowScale {

  0%,
  100% {
    transform: scale(1, 1);
  }

  50% {
    transform: scale(1.2, 1);
  }
}

.click-btn {
  margin: 20px 0px;
  position: relative;
  overflow: hidden;
}


.click-btn a {
  color: var(--color-white);
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 600;
  background-color: var(--primary-color);
  border-radius: 10px;
  padding: 15px 50px 15px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  z-index: 1;
}


.click-btn a::before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  transition: var(--transition);
}

.click-btn a:hover::before {
  transform: translateX(5px);
}


.click-btn a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.6s ease;
  z-index: -1;
}

.click-btn a:hover::after {
  clip-path: circle(100% at 50% 50%);
}


.click-btn a:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.click-btn a .shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: all 0.6s ease;
  z-index: 2;
}

.click-btn a:hover .shine {
  left: 150%;
}

.text-sub {
  font-size: 18px;
  color: #CCC5B9;
  margin-bottom: 20px;
  font-weight: bolder;
}

.back-to-top {
  position: fixed;
  bottom: -100px;
  right: 30px;
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #40A885, #3a9a7a);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(64, 168, 133, 0.3);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  overflow: hidden;
}

.back-to-top.visible {
  bottom: 30px;
  opacity: 1;
}

.arrow {
  width: 20px;
  height: 20px;
  fill: white;
  transition: transform 0.3s ease;
}

.back-to-top:hover {
  background: linear-gradient(135deg, #FA780A, #e86f09);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 25px rgba(250, 120, 10, 0.4);
}

.back-to-top:hover .arrow {
  transform: translateY(-3px);
}

.back-to-top:active {
  transform: translateY(2px) scale(0.98);
}

.glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(255, 255, 255, 0) 70%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.back-to-top:hover .glow {
  opacity: 0.4;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.4;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.2;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.4;
  }
}

/* ==============================================================================
                                         header
==============================================================================   */
header .top-bar {

  font-size: 14px;
  padding: 20px 15px;
}

.top-bar a {
  color: #333;
  margin-right: 15px;
  text-decoration: none;
}

.header-main {
  background: white;
  padding: 1px 0;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav .nav-link {
  color: #f26522;
  font-weight: 500;
  margin: 0 10px;
}

.navbar-nav .nav-link {
  padding: 22px 25px;
}

.navbar-nav .nav-link {
  position: relative;
  padding: 25px 25px;
  line-height: 1.5;
  display: inline-block;
  color: var(--primary-color);
  z-index: 1;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: skewX(-30deg) scaleY(0);
  transform-origin: center;
  z-index: -1;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--color-white);
}

.navbar-nav .nav-link:hover::after {
  transform: skewX(-30deg) scaleY(1);
  box-shadow: 3px 3px 5px rgba(233, 233, 233, 0.2);
}

.navbar-nav .nav-link.active {
  color: var(--color-white) !important;
}

.navbar-nav .nav-link.active::after {
  transform: skewX(-30deg) scaleY(1);
  box-shadow: 3px 3px 5px rgba(233, 233, 233, 0.2);
}

.navbar-brand span {
  font-weight: bold;
  color: #41b491;
  font-size: 22px;
  line-height: 2.8;
}

.navbar {
  padding: 0px !important;
}

.navbar-brand img {
  width: 65%;
  height: 60px;
  margin-left: 40px;
  margin-right: 20px;
}

.navbar-nav .nav-item a {
  font-size: 18px;
  font-weight: 600;
}

.navbar-nav .nav-item {
  margin: 0px 15px;
}

.top-contact {
  position: relative;
  display: inline-block;
}

.top-contact::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background-color: #ffffff;
}

.top-bar a {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-white);
}

header {
  position: absolute;
  top: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;

}

.navbar-toggler {
  border: none !important;
}

.navbar .nav-link i {
  display: none;
}

/* ==============================================================================
                                      banner
==============================================================================   */
.inner-banner {
  width: 100%;
  height: 700px;
  background-image: url('../image/banner/banner-1.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.inner-banner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));

  z-index: 2;
}



.gallery-item a {
  flex: 1;
  display: contents;
  display: flex;
  justify-content: center;
  cursor: pointer;
}

.gallery-item {
  transition: all 0.4s ease;
  opacity: 1;
  transform: scale(1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.extra-gallery a {
  display: flex;
  justify-content: center;
  transition: all 0.3s ease;
}

.extra-gallery {

  transition: all 0.3s ease;
}

.extra-gallery {
  display: none;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

.gallery-item.hidden {
  display: none !important;
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inner-banner .row {
  padding-top: 230px;
  position: relative;
  z-index: 10;
}

.inner-banner .banner-left p {
  font-size: clamp(1rem, 1.0vw, 2rem);
  ;
  color: var(--color-white);
}

.inner-banner .banner-left h2 {
  font-size: 54px;
  left: 108px;
  color: var(--color-white);
  font-weight: 800;

}

.typing-header {
  font-size: 36px;
  font-weight: bold;
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.4;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.gallery-item {
  transition: all 0.3s ease-in-out;
  opacity: 1;
  transform: scale(1);
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}


.cursor {
  display: inline-block;
  color: var(--secondary-color);
  font-weight: 600;
  animation: blink 0.7s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.dynamic-text {
  color: var(--secondary-color);
}

/* ==============================================================================
                                     about us
==============================================================================   */

.about-inner {
  padding: 70px 0px;
  position: relative;
}

.about-right-overlay img {
  position: absolute;
  top: 0;
  left: 0%;
  width: 40%;
  z-index: -1;
}

.about-left-overlay img {
  position: absolute;
  bottom: 0;
  right: 0%;
  z-index: -1;
}

.about-left img {
  width: 80%;
}

.about-left {
  position: relative;
}

.year-overlay h2 span {
  font-size: 54px;
  font-weight: bolder;
}

.year-overlay h2 {
  color: var(--color-white);
  font-size: 22px;
}

.year-overlay {
  position: absolute;
  left: 6%;
  top: -7%;
  max-width: 180px;
  padding: 15px 25px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  border: 4px solid var(--color-white);
  background-color: var(--primary-color);
  text-align: center;
  border-radius: 10px;
}

@keyframes smoothShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-2px);
  }

  50% {
    transform: translateX(2px);
  }

  75% {
    transform: translateX(-1px);
  }
}

.about-inner .container-fluid {
  width: 70%;
}

.year-overlay {
  animation: smoothShake 1.2s ease-in-out infinite;
}

/* =====================footer section=====================================*/
.footer-section {
  background-color: #f97300;
  /* Matching orange */
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.footer-logo {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 1rem;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li a {
  color: var(--color-white);
}

.footer-links li a,
.footer-contact li {
  display: block;
  color: #fff !important;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.footer-links li a span {
  margin-right: 6px;
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.3s ease;
}

.footer-links li a:hover span {
  transform: translateX(4px);
}

.footer-links li a:hover {
  color: #000;
}

.footer-contact i {
  margin-right: 8px;
  color: #fff;
}

.social-icons a {
  display: inline-flex;
  width: 35px;
  height: 35px;
  /* background: #fff; */
  color: var(--color-white) !important;
  border: 1px solid var(--color-white);
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  font-size: 14px !important;
  transition: 0.3s;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  margin: 0 8px;
  border-radius: 50%;
  /* background-color: #fff; */
  color: #000;
  font-size: 18px;
  transition: all 0.4s cubic-bezier(0.31, 0.67, 0.36, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.social-icons a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.4s cubic-bezier(0.31, 0.67, 0.36, 1);
  z-index: 0;
}

.social-icons a i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

/* Hover Effects */
.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.social-icons a:hover::before {
  transform: scale(1);
}

.social-icons a:hover i {
  color: #fff;
  transform: rotate(360deg);
}

/* Optional: Different colors for different social icons */
.social-icons a.facebook:hover::before {
  background-color: #3b5998;
}

.social-icons a.twitter:hover::before {
  background-color: #1da1f2;
}

.social-icons a.instagram:hover::before {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.social-icons a.linkedin:hover::before {
  background-color: #0077b5;
}

.social-icons a.youtube:hover::before {
  background-color: #ff0000;
}

.footer-bottom {
  background-color: #fff;
  color: #000;
  font-size: 14px;
}

.footer-bottom p {
  margin-bottom: 0px !important;
  color: #000;
  font-weight: 700;
}

.footer-bottom a {
  color: #f97300;
  text-decoration: none;
  font-weight: 500;
}

.footer-line {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: #000;
  font-weight: 700;
  align-items: center;
}

.footer-logo {

  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.foot-logo img {
  margin-bottom: 20px;
}

.foot-logo {
  background-color: var(--color-white);
}

/* ==============================================================
                            Counter section
===================================================================== */
.inner-counter {
  padding: 40px 0px;
  background-color: #f97300;
  background-image: linear-gradient(135deg, #f97300, #ff8d29);
}

.inner-counter {
  position: relative;
}

.inner-counter .item {
  flex: 1;
  transition: all 0.5s ease-in-out;

}

.inner-counter .item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 24px rgba(255, 107, 0, 0.2);
  background-color: rgba(255, 107, 0, 0.05);
}

.inner-counter .item:hover h2 {
  color: var(--primary-color);
  text-shadow: 0 2px 8px rgba(255, 107, 0, 0.2);
}

.inner-counter .item:hover h2 span {
  display: inline-block;
  transform: scale(1.1);
  color: var(--primary-color);
  font-weight: 800;
  text-shadow: 0 0 10px rgba(255, 107, 0, 0.3);
}

.inner-counter .item:hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid rgba(255, 107, 0, 0.3);
  border-radius: inherit;
  animation: pulseBorder 1.5s infinite;
}

@keyframes pulseBorder {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.3;
  }

  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

.inner-counter::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.counter-wrap .item {
  margin-top: 10px;
}

.counter-wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  text-align: center;
}

.counter-wrap h2 span {
  font-size: 42px;
  font-weight: bolder;
}

.counter-wrap h2 {
  color: var(--color-white);
  font-weight: 400;
  font-size: 22px;
}

/* product section */
.inner-product {
  padding: 50px 0px 100px 0px;
  /* background-color: var(--secondary-color); */
  width: 100%;
  background-image: url('../image/home/product-bg.png');
  background-position: center;
  background-size: cover;
  background-position: center;

  margin-bottom: 30px;
}



.product-left .item .product-card {
  margin: 0px 5px;
}

.product-header h3 {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  color: var(--color-white);
}

.inner-product .container-fluid {
  width: 80%;
}

.inner-product .product-left h2 {
  font-size: 55px;
  color: var(--color-white);
  font-weight: 600;
}

.product-left .item .product-card div {
  display: flex;
  justify-content: center;
  margin: 10px 0px;
}

.product-left .item .product-card {
  display: flex;
  flex-direction: column;
  text-align: center;

}

.product-left .item .product-card h3 {
  color: var(--color-white);
  font-size: 22px;
  margin: 10px 0px;
}



.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card img {
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

.product-card h3 {
  position: relative;

  text-align: center;
  transition: all 0.5s ease;
  z-index: 2;

  margin: 0;
}

/* Hover Effects */
.product-card:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 30px rgba(148, 148, 148, 0.3); */
}

.product-card:hover img {
  transform: rotateY(360deg) scale(1.1);
  filter: sepia(20%) brightness(110%);
}

.product-card:hover h3 {
  transform: translateY(-10px);
}

/* Glow Effect */
/* .product-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(133, 133, 133, 0.2) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
} */

.product-card:hover::after {
  opacity: 1;
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(255, 165, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 165, 0, 0);
  }
}

/* 
.product-card:hover {
  animation: pulse 1.5s infinite;
} */

/* ========gallery section ====================*/
.filter-inner ul {
  display: flex;
  flex-direction: row;
}

.inner-gallery .container-fluid {
  width: 90%;
}

.inner-gallery .gallery-head {
  width: 80%;
  margin: 0px auto;
}


.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.filter-inner a.active {
  font-weight: bold;
  text-decoration: underline;
  color: var(--primary-color);
}


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, 200px);
  gap: 10px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  position: relative;
}

.item-1 {
  grid-row: span 2;
}

.item-2 {
  grid-row: span 2;
  grid-column: 1;
  grid-row-start: 3;
}

.item-3 {
  grid-row: span 2;
  grid-column: 1;
  grid-row-start: 5;
}

.item-4 {
  grid-row: span 3;
}

.item-5 {
  grid-row: span 3;
  grid-column: 2;
  grid-row-start: 4;
}

.item-6 {
  grid-row: span 2;

}

.item-7 {
  grid-column: span 2;

}

.item-8 {
  grid-row: span 2;
  grid-column: 3;
  grid-row-start: 5;
}

.item-9 {
  grid-column: span 2;

}

.item-10 {
  grid-column: span 2;

}

.item-11 {
  grid-row: span 2;
  grid-column: 5;
  grid-row-start: 3;
}

.item-12 {
  grid-column: span 2;
  grid-row: span 2;
  grid-column-start: 4;
  grid-row-start: 5;
}

@media (max-width: 575px) {
  .grid-container {
    grid-template-columns: 1fr;
    /* Stack all items in 1 column */
  }

  .grid-container>div {
    grid-column: auto !important;
    grid-row: auto !important;
  }

  @media screen and (max-width: 767px) {
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      grid-auto-rows: 180px !important;
    }

    .gallery-item {
      grid-column: span 1 !important;
      grid-row: span 1 !important;
    }
  }

  @media screen and (max-width: 480px) {
    .gallery-grid {
      grid-template-columns: repeat(1, 1fr);
      grid-auto-rows: 160px;
    }
  }

  /* Optional: Adjust individual items for better spacing */
  .item-1,
  .item-2,
  .item-3,
  .item-4,
  .item-5,
  .item-6,
  .item-7,
  .item-8,
  .item-9,
  .item-10,
  .item-11,
  .item-12 {
    width: 100%;
  }
}


.inner-gallery {
  padding: 40px 0px 70px 0px;
}

.gallery-head h2 {
  font-size: 32px;
  color: var(--primary-color);
  font-weight: 700;
}

.filter-inner ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 10px;
}

.filter-inner ul li a {
  font-size: 18px;
  color: var(--color-text);
}

.filter-inner ul li {
  position: relative;
}

.filter-inner ul li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--color-text);
}

/*============================================= testimonial ============================================*/
.inner-testimonial {
  padding: 40px 0px;
}

.inner-testimonial .testimonial-head {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.inner-testimonial .testimonial-head h2 {
  font-size: 52px;
  color: var(--primary-color);
  font-weight: 700;
}

.testimonial-inner .testimonial-section {
  padding: 60px 20px;
  background: #fff;
  position: relative;
}

.testimonial-inner .testimonial-carousel .testimonial-item {
  background: #fafafa;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  text-align: left;
  margin: 40px 55px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  min-height: 260px;
  max-height: 330px;
}

.testimonial-inner .testimonial-item .profile {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: cover;
  position: absolute;
  top: -30px;
  left: 60px;
  border: 4px solid white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.testimonial-inner .testimonial-item .message {
  margin-top: 40px;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}

.testimonial-inner .testimonial-item .author h4 {
  margin-top: 20px;
  font-size: 18px;
  color: #1a8c6c;
  font-weight: 600;
}

.testimonial-inner .testimonial-item .author span {
  font-size: 14px;
  color: #aaa;
}

.testimonial-inner .testimonial-item .quote-icon {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 80px;
  color: #ff5c5c;
}

.testimonial-inner .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-inner .owl-dot span {
  width: 10px;
  height: 10px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  transition: 0.3s ease;
}

.testimonial-inner .owl-dot.active span {
  background: #1a8c6c !important;
}

.testimonial-inner .owl-nav {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 120px;
}

.testimonial-inner .owl-nav button.owl-prev,
.testimonial-inner .owl-nav button.owl-next {
  background: #fff;
  border: 2px solid #1a8c6c;
  color: #1a8c6c;
  font-size: 16px;
  padding: 2px 8px !important;
  border-radius: 10%;
  transition: 0.3s ease;
}

.testimonial-inner .owl-nav button:hover {
  background: #1a8c6c !important;
  color: #fff !important;
}


/* ====================subbanner ==========================*/
.inner-subbanner {
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/banner/banner-1.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  position: relative;
  color: white;
}

.inner-subbanner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
  z-index: 1;
}

.header-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-nav {
  margin-bottom: 1.5rem;
}

.breadcrumb-nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  justify-content: center;
  margin-top: 20px;
}

.breadcrumb-nav li {
  display: flex;
  align-items: center;
  margin-right: 0.5rem;
}

.breadcrumb-nav li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-nav a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}

.breadcrumb-nav a:hover {
  color: white;
  text-decoration: underline;
}

.breadcrumb-nav [aria-current="page"] {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Page Title */
.page-title {
  font-size: 3rem;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  color: var(--secondary-color);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.8s ease-out;
}

.header-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
}


/* Responsive Adjustments */
@media (max-width: 992px) {
  .inner-subbanner {
    height: 350px;
  }

  .page-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .inner-subbanner {
    height: 300px;
  }

  .page-title {
    font-size: 2rem;
  }

  .breadcrumb-nav ol {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .inner-subbanner {
    height: 250px;
  }



  .header-content {
    padding: 0 15px;
  }
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.inner-quality {

  padding: 50px 0px;
}

.quality-item .img {
  width: 120px !important;
  height: auto;
}

.quality-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quality-item p {
  font-size: 16px;
  color: var(--color-text);
}

.quality-item h4 {
  font-size: 18px;
  color: #000;
  font-weight: 700;
}

.quality-item {
  position: relative;
  padding-right: 30px;
}

.quality-item::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 2px;
  border-right: 2px dotted var(--secondary-color);
}

.lastchild:last-child::after {
  display: none;
}

.quality-item:hover .img img {
  animation: bounce 0.8s cubic-bezier(0.5, 0.05, 0.5, 1) both;
}

.quality-item:hover .content h4 {
  background-image: linear-gradient(#000, );
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
  animation: underline 0.4s ease-out forwards;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  30% {
    transform: translateY(-15px) rotate(2deg);
  }

  60% {
    transform: translateY(0) rotate(0deg);
  }

  80% {
    transform: translateY(-5px) rotate(-1deg);
  }
}

@keyframes underline {
  from {
    background-size: 0% 2px;
  }

  to {
    background-size: 100% 2px;
  }
}

.quality-item .img img {
  transition: all 0.3s ease;
  display: block;
}

.quality-item .content h4 {
  display: inline-block;
  padding-bottom: 3px;
  background-image: linear-gradient(#FA780A, #FA780A);
  background-size: 0% 2px;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.inner-quality .container .quality-carousel {
  border-bottom: 1px solid rgb(221, 221, 221);
}

.section-about {
  padding-top: 40px;
}

.right-about p {
  font-size: 16px;
  color: var(--color-text);

}

.right-about h2 {
  font-size: 32px;
  color: #000;
  font-weight: 700;
}

.right-about .highlight {
  position: relative;
  padding-left: 20px;
  /* space for the line */
  color: #222;
}

.right-about .highlight::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(to bottom, #ff9900, #ff6600);
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

.left-about img {
  animation: floatUpDown 3s ease-in-out infinite;
}

.inner-slider {
  width: 100%;
  background-color: #e7e7e7;
  height: 150px;
  margin-bottom: 20px;
}

.why-choose {
  padding: 30px 0px;
}

.why-choose h2 {
  font-size: 32px;
  color: var(--color-black);
  font-weight: 700;
}

.why-inner .why-img {
  width: 60px;
}

.why-inner .text-start img {
  display: flex;
  justify-content: end;
  text-align: end;
  margin-left: auto;
}

.why-inner h5 {
  font-size: 20px;
  font-weight: 800;
  color: var(--secondary-color);
}

.why-left {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.why-left::after {
  content: '';
  position: absolute;
  top: 46%;
  right: 0;
  transform: translateY(-50%);
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffaa00, #ff6600);
  /* Orange glowing dot */
  box-shadow: 0 0 10px #ff9900, 0 0 20px #ff9900;
  animation: pulseGlow 2s infinite;
}

.why-right {
  position: relative;
  display: inline-block;
  padding-right: 20px;
}

.why-right::after {
  content: '';
  position: absolute;
  top: 46%;
  left: -15px;
  transform: translateY(-50%);
  height: 8px;
  width: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffaa00, #ff6600);
  /* Orange glowing dot */
  box-shadow: 0 0 10px #ff9900, 0 0 20px #ff9900;
  animation: pulseGlow 2s infinite;
}



/* Hover Effects Only */
.why-left {
  padding: 10px 10px;
}

.why-right {
  padding: 10px 10px;
}

.why-left:hover {
  transform: translateY(-5px);
  padding: 10px 10px;
  border-radius: 15px;
}

.why-right:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
  padding: 10px 10px;
  border-radius: 15px;
}

.why-left:hover .why-img {
  animation: float 2s ease-in-out infinite;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.why-left:hover h5 {
  color: #ff6b00;
  transform: translateX(5px);
}

.why-left:hover p {
  transform: translateX(3px);
}

.why-right:hover .why-img {
  animation: float 2s ease-in-out infinite;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.why-right:hover h5 {
  color: #ff6b00;
  transform: translateX(-5px);
}

.why-right:hover p {
  transform: translateX(-3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

.why-left {
  transition: all 0.4s ease;
  position: relative;
}

.why-img {
  transition: all 0.3s ease;
}

h5,
p {
  transition: all 0.3s ease;
}

/* client sction */
.inner-client {
  padding: 40px 0px;
}

.inner-client .container-fluid {
  width: 90%;
}

.client-header h3 {
  text-align: center;
}

.inner-client h2 {
  font-size: 52px;
  font-weight: 800;
  color: var(--secondary-color);
}

.accordion-section .badge {
  background: rgba(255, 99, 132, 0.1);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.gradient-underline {
  position: relative;
  display: inline-block;
}

.gradient-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(to right, #6a11cb, #2575fc, #ff5e62);
  border-radius: 2px;
}

.accordion-button {
  font-weight: 600;
  color: #10002b;
  border-radius: 8px !important;
  padding: 1rem 1.25rem;
  /* border: 1px solid #e5e7eb; */
  background-color: #fff;
  transition: all 0.3s ease;
}


/* 
.accordion-button:not(.collapsed)::after {
  content: '-';
} */
.accordion-button:focus {
  display: none;
}

.accordion-button:not(.collapsed) {
  color: var(--color-black);
  background: linear-gradient(to right, #FA780A, #FF9F4D);



}

.accordion-body {
  background: #f9f9f9;
  border-radius: 0 0 8px 8px;
  padding: 1rem 1.25rem;
}

.accordion-section h2 {
  font-size: 32px;
  font-weight: bolder;
  color: var(--color-black);
}

.inner-quality {
  position: relative;
}

.overlay {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.printing-slider {
  background: linear-gradient(135deg,
      #f8f9fa 0%,
      #f8f9fa 25%,
      rgba(255, 214, 170, 0.15) 50%,
      #f8f9fa 75%,
      #f8f9fa 100%),
    radial-gradient(circle at 75% 25%,
      rgba(255, 231, 210, 0.4) 0%,
      rgba(255, 231, 210, 0) 50%),
    #f8f9fa;
  padding: 25px 0;
  overflow: hidden;
  position: relative;
}

.printing-slider::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle closest-side,
      rgba(255, 214, 170, 0.15) 0%,
      transparent 100%);
  transform: rotate(15deg);
  z-index: 0;
}

.printing-slider__container {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.printing-slider__track {
  display: flex;
  animation: slide 25s linear infinite;
  width: max-content;
}

.printing-slider__item {
  padding: 0 40px;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 300px;
}

.printing-slider__item:hover {
  transform: translateY(-5px);
}

.printing-slider__icon {
  font-size: 22px;
  font-weight: 600;
  color: var(--secondary-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.printing-slider__icon svg {
  width: 24px;
  height: 24px;
  margin-right: 10px;
  fill: #e74c3c;
  transition: all 0.3s ease;
}

.printing-slider__item:hover .printing-slider__icon svg {
  fill: #c0392b;
  transform: scale(1.1);
}

.printing-slider__title {
  font-size: 22px;
  font-weight: 600;
  color: var(--color-black);
  margin-bottom: 8px;
}

.printing-slider__desc {
  font-size: 16px;
  color: #7f8c8d;
  margin: 0;
}

.printing-slider__gradient {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
}



@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.printing-slider__track:hover {
  animation-play-state: paused;
}

@media (max-width: 768px) {
  .printing-slider__item {
    padding: 0 20px;
    min-width: 250px;
  }

  .printing-slider {
    padding: 30px 0;
  }

  .printing-slider__title {
    font-size: 18px;
  }

  .printing-slider__desc {
    font-size: 14px;
  }

  .printing-slider__gradient {
    width: 50px;
  }
}

.contact-card-section {
  background-color: #f9f9fb;
  padding: 60px 20px;
  font-family: 'Poppins', sans-serif;
}

.contact-card-container {
  display: flex;
  margin: auto;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  flex-wrap: wrap;
}

.contact-form,
.contact-info {
  flex: 1 1 300px;
  padding: 40px;
}

.contact-info p a i {
  margin-right: 8px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-info p a:hover {
  color: #FA780A;
}

.contact-info p a:hover i {
  color: #FA780A;
  transform: scale(1.2);
}

.subtitle {
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 16px;
}

.title {
  font-size: 24px;
  color: var(--color-black);
  font-weight: 700;
  margin-bottom: 30px;
}

.contact-info p strong {
  font-size: 16px;
  color: var(--color-black);
}

.contact-form form input,
.contact-form form select,
.contact-form form textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 10px;
  border: 1px solid #ddd;
  border-radius: 30px;
  font-size: 15px;
  background-color: #f6f6f9;
  outline: none;
  padding-left: 10px;
}

.contact-form form textarea {
  border-radius: 20px;
  height: 120px;
  resize: vertical;
}

.contact-form form button {
  background-color: var(--primary-color);
  color: #000;
  border: none;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form form button:hover {
  background-color: var(--primary-color);
}

.contact-info p {
  margin: 15px 0;
  line-height: 1.6;
  font-size: 15px;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: inline-block;
  padding-top: 10px;
  margin-right: 10px;
  font-size: 18px;
  width: 38px;
  height: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  background-color: var(--secondary-color);
  border: 1px solid var(--color-white);
  transition: background 0.3s;
}

.social-icons a:hover {
  opacity: 0.85;
}

@media (max-width: 768px) {
  .contact-card-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    padding: 30px 20px;
  }

  .title {
    font-size: 26px;
  }
}

/* ==============================================================================
                                      Product Section
==============================================================================   */
.inner-product-section {
  padding: 20px 0px;
}

.inner-product-section .container-fluid {
  width: 80%;
  margin: 0px auto;
}

.inner-product-section .header-product {
  text-align: center;
}

.inner-product-section .header-product h2 {
  font-size: 32px;
  color: var(--color-black);
  font-weight: 700;
}

.tab-content {
  display: none;
  transition: all 0.3s ease-in-out;
}

.tab-content.active-tab {
  display: block;
}

/* Minimalist Card Design */
.sidebar {
  padding: 0;
  background: white;
  border-radius: 16px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-category {
  position: relative;
}

.section-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin: 0;
  padding: 20px 25px;
  background: linear-gradient(135deg, #FA780A, #C94A00);

  position: relative;
  display: flex;
  align-items: center;
}

.section-title svg {
  margin-right: 12px;
  width: 20px;
  height: 20px;
}

.category-tabs {
  list-style: none;
  padding: 15px 0;
  margin: 0;
}

.category-tabs li {
  position: relative;
  transition: all 0.3s ease;
}

.category-tabs li:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 25px;
  right: 25px;
  height: 1px;
  background: rgba(0, 0, 0, 0.05);
}

.tab-btn {
  display: flex;
  align-items: center;
  padding: 16px 25px;
  text-decoration: none;
  color: #2D3748;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  background: white;
}

.tab-btn:hover {
  background: #F8FAFC;
  padding-left: 30px;
}

.tab-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: #E8F5F0;
  transition: width 0.3s ease;
}

.tab-btn:hover::before {
  width: 4px;
}

.tab-btn.active {
  background: #f5f5f5;
  color: var(--secondary-color);
  font-weight: 600;
}

.tab-btn.active::before {
  width: 4px;
  background: var(--secondary-color);
}

.tab-btn svg {
  margin-right: 12px;
  width: 18px;
  height: 18px;
  color: #718096;
  transition: all 0.3s ease;
}

.tab-btn.active svg {
  color: #40A885;
}

.tab-btn .badge {
  margin-left: auto;
  background: #FFF0E5;
  color: #FA780A;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 12px;
}

/* Special accent for every 3rd item */
.category-tabs li:nth-child(3n) .tab-btn:hover {
  color: #FA780A;
}

.category-tabs li:nth-child(3n) .tab-btn:hover::before {
  background: #FA780A;
}

.category-tabs li:nth-child(3n) .tab-btn.active {
  background: #FFF0E5;
  color: #FA780A;
}

.category-tabs li:nth-child(3n) .tab-btn.active::before {
  background: #FA780A;
}

.category-tabs li:nth-child(3n) .tab-btn.active svg {
  color: #FA780A;
}

@media (max-width: 768px) {
  .sidebar {
    width: 100%;
    border-radius: 0;
  }
}




.product-warp {
  background-color: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
}

.product-warp .row {
  row-gap: 20px;
}

.product-warp .pro-card {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}

.product-warp .pro-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}



.tab-content.active {
  display: block;
}

.sidebar,
.product-category,
.category-tabs {
  overflow: visible !important;
  position: relative;
}

.category-tabs .active::after {
  content: "";
  background-image: url('../image/icons/right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 25px;
  height: 25px;
  position: absolute;
  right: -25px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
  opacity: 1;
  z-index: 1;
}

.sidebar {
  position: -webkit-sticky;
  position: sticky;

  top: 20px;
  z-index: 10;
}

.product-inner-warp {
  overflow: visible;
}

.product-category .form-select {
  padding: 10px 12px;
  font-size: 18px;
  line-height: 1.5;
  border: 2px solid var(--secondary-color);
  border-radius: 10px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border 0.3s ease;
  width: 300px;
}

.read-icon {
  transition: transform 0.4s ease;
  display: inline-block;
}

.desc {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.5s ease;
}

.desc.show {
  max-height: 300px;
  /* adjust as needed */
  opacity: 1;
}

.desc.short {
  max-height: 60px;
  opacity: 1;
}

.read-icon {
  transition: transform 0.4s ease;
  display: inline-block;
}

.read-icon.rotate {
  transform: rotate(90deg);
}


.read-icon.rotate {
  transform: rotate(90deg);
  /* or 180deg based on preference */
}

.product-category .form-select:focus {
  border-color: var(--secondary, #FA780A);
  box-shadow: 0 0 0 0.15rem rgba(250, 120, 10, 0.25);
}


.error-message {
  color: red;
  font-size: 12px;
  font-weight: 600;
}

.image-hover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}

.image-hover img {
  transition: transform 0.3s ease;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.image-hover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

.image-hover:hover img {
  transform: scale(1.05);
}

.image-hover:hover::after {
  opacity: 1;
}

.image-hover {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}



.image-hover img {
  transition: transform 0.3s ease;
  display: block;
  width: 85%;
  height: auto;
  border-radius: 8px;
}

.image-hover {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.image-hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  /* Light overlay */
  backdrop-filter: blur(4px);
  /* Light blur effect */
  -webkit-backdrop-filter: blur(4px);
  /* For Safari */
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  z-index: 1;
}

.image-hover:hover::after {
  opacity: 1;
}

.overlay-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--secondary-color);
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  background-color: var(--color-white);
  padding: 10px;
  border-radius: 50%;
}

.image-hover:hover img {
  transform: scale(1.05);
}

.image-hover:hover::after {
  opacity: 1;
}

.image-hover:hover .overlay-icon {
  opacity: 1;
}

.parent {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 9px;
}

.item-1 {
  grid-area: 1 / 1 / 2 / 2;
}

.item-2 {
  grid-area: 2 / 1 / 3 / 2;
}

.item-3 {
  grid-area: 1 / 2 / 2 / 3;
}

.item-4 {
  grid-area: 2 / 2 / 3 / 3;
}

.item-5 {
  grid-area: 1 / 3 / 2 / 4;
}

.item-6 {
  grid-area: 2 / 3 / 3 / 4;
}

.item-7 {
  grid-area: 1 / 4 / 2 / 5;
}

.item-8 {
  grid-area: 2 / 4 / 3 / 5;
}

.item-9 {
  grid-area: 1 / 5 / 2 / 6;
}

.item-10 {
  grid-area: 2 / 5 / 3 / 6;
}

@media (max-width: 767px) {
  .parent {
    grid-template-columns: repeat(4, 1fr) !important;
  }

}

/* produact page product section */

.cover-inner .item-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cover-inner .item-card .item-image-warp img {
  border-radius: 10px;

}

.cover-inner .item-card .item-content-warp {
  padding: 20px 20px;
}

.cover-inner .item-card .item-content-warp p {
  margin-top: 15px;
  font-size: 16px;
  text-align: justify;
}

.cover-inner .item-card .item-image-warp {
  padding: 10px 10px 0px 10px;
  display: flex;
  justify-content: center;

}

.cover-inner .item-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.4);
}



.cover-inner h4 {
  margin: 0;
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  transition: all 0.3s ease;
}

.cover-header {
  border-bottom: 2px solid rgb(228, 228, 228);
}

.cover-header {

  position: relative;
}

.cover-header h2 i {
  color: var(--secondary-color);
}

.cover-header h2 {
  display: inline-block;
  position: relative;
  font-size: 24px;
  color: black;
  font-weight: bolder;

  padding-right: 40px;
}


.item-overlay {
  display: flex;
  justify-content: end;
  text-align: left;
}

.item-overlay a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #000;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.3s ease;
}

/* Underline from center */
.item-overlay a::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 40%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: var(--secondary-color);
  transition: width 0.4s ease;
}

.item-overlay a:hover {
  color: var(--secondary-color);
}

.item-overlay a:hover::after {
  width: 90%;
  /* adjust as needed */
}

.item-overlay a i {
  display: inline-block;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.item-overlay a:hover i {
  animation: jump-icon 0.5s ease forwards;
}

/* Keyframes for jumping effect */
@keyframes jump-icon {
  0% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }

  50% {
    transform: translateY(2px);
  }

  70% {
    transform: translateY(-3px);
  }

  100% {
    transform: translateY(0);
  }
}

footer .footer-links i {
  color: #000;
  font-weight: 900;
}

.footer-links li a,
.footer-contact li a {
  font-weight: 700;
}

.footer-links li a i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-links li a:hover {
  color: #000 !important;
}

.footer-links li a:hover i {
  transform: translateX(6px) scale(1.2);
  color: var(--color-black);
}

.hidden {
  display: none !important;
}

.extra-gallery {
  display: none;
}