@font-face {
    font-family: 'Luxe';
    src: url('Luxe/LuxeUno-Regular.ttf') format('truetype'),
    
}
@font-face {
    font-family: 'Quicksilver';
    src: url('balvier/Balvier-Regular.otf') format('truetype'),
    
}
body{
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
    font-size: 18px;
}

:root{
    --section-heading:55px;
    --paragraph:18px;
    --color:#000;
    --wcolor:#fff;
    --bg-theme:#e53824;
    --bg-white:var(--wcolor);
    --bg-black:#1e1e1e;
    --padding-top:100px;
    --padding-bot:100px;
}

.btn {
  --color: #e53824;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all .5s;
  border: none;
  background-color: transparent;
  width: fit-content;
}

.btn div {
  letter-spacing: 0px;
  font-weight: 400;
  background: var(--color);
  border-radius: 2rem;
  color: white;
  padding: 10px;
}

.btn::before {
  content: '';
  z-index: -1;
  background-color: #fcc308;
  border: 2px solid white;
  border-radius: 2rem;
  width: 90%;
  height: 100%;
  position: absolute;
  transform: rotate(10deg);
  transition: .5s;
  opacity: 0.2;
}

.btn:hover {
  cursor: pointer;
  filter: brightness(1.2);
  transform: scale(1.02);
}

.btn:hover::before {
  transform: rotate(0deg);
  opacity: 1;
}

.btn svg {
  transform: translateX(-200%);
  transition: .5s;
  width: 0;
  opacity: 0;
}

.btn:hover svg {
  width: 25px;
  transform: translateX(0%);
  opacity: 1;
}

.btn:active {
  filter: brightness(1.4);
}
h2{
  font-family: Quicksilver !important;
}
/* Make navbar fixed at top */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: top 0.3s ease;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* When scrolling down, hide navbar */
.navbar.navbar-hidden {
    top: -100px; /* or - your navbar height */
}

a{
  text-decoration: none;
}
.navbar-brand img {
  width: 250px;
  margin-left: -50px;
}
.navbar-nav {
  align-items: center;
}
.navbar .navbar-nav .nav-link {
  color: var(--color);
  font-size: 17px;
  font-weight: 400;
  padding: 15px;
  transition: all .5s ease-in-out;
}
.navbar .navbar-nav .nav-link:hover{
  color: #e53824;
  transition: all .5s ease-in-out;

}
.nav-link.active {
    color: #e53824 !important;
    font-weight: bold;
}

.navbar{
    padding: 20px;
}
@media screen and (min-width: 768px) {
 
  .navbar-brand {
    margin-right: 0;
    padding: 0 1em;
  }
}
.logo-w{
    width: 250px;
}


/* home slider */

.bigTitle {
  font-family: "CabinetGrotesk-extrabold", sans-serif;
  line-height: 0.9;
  font-size: 13vw;
}
@media (min-width: 425px) {
  .bigTitle {
    font-size: 10vw;
  }
}
@media (min-width: 1024px) {
  .bigTitle {
    font-size: 6vw;
  }
}
.bigTitle .orangeIcon {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background-color: #f7970e;
  display: inline-block;
  margin-left: 5px;
}
@media (min-width: 768px) {
  .bigTitle .orangeIcon {
    width: 13px;
    height: 13px;
  }
}
@media (min-width: 1440px) {
  .bigTitle .orangeIcon {
    width: 16px;
    height: 16px;
  }
}

.arrow-button {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-family: "CabinetGrotesk-extrabold", sans-serif;
  color: var(--color);
  transition: padding 1s cubic-bezier(0.16, 1, 0.3, 1);
  width: fit-content;
  font-size: 12px;
}
.arrow-button svg {
  width: 33px;
  margin-left: 10px;
}
.arrow-button svg circle {
  transition: fill 0.75s ease;
  fill: transparent;
}
@media (min-width: 425px) {
  .arrow-button {
    font-size: 16px;
  }
  .arrow-button svg {
    width: 45px;
  }
}
@media (min-width: 1024px) {
  .arrow-button {
    font-size: 20px;
  }
  .arrow-button svg {
    width: 62px;
  }
  .arrow-button:hover {
    padding-left: 20px;
  }
  .arrow-button:hover svg circle {
    fill: #8c97d0;
  }
}
@media (min-width: 1440px) {
  .arrow-button {
    font-size: 15px;
  }
  .arrow-button svg {
    width: 60px;
  }
}
@media (min-width: 1920px) {
  .arrow-button {
    font-size: 18px;
  }
  .arrow-button svg {
    width: 70px;
  }
}

.home-showcase {
  padding: 0 var(--columnExt) 0;
  position: relative;
}
.home-showcase .home-showcaseSlider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
  position: relative;
  height: 92vh;
  overflow: hidden;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
  padding: 0px 5vw;
  height: 100vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: flex-end;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
  max-width: 100%;
  margin: 0 0 5rem;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
  transform: translate(-140%, 0);
  transition: transform 1.15s cubic-bezier(0.58, 0, 0.28, 0.99) 0.4s;
  color: var(--wcolor);
  margin: 0 0 2.5rem;
  text-shadow: #21212121 0px 0px 5px;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button {
  transform: translate(-160%, 0);
  transition: transform 0.6s cubic-bezier(0.58, 0, 0.28, 0.99) 1s;
  width: fit-content;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button .arrow-button {
  color: var(--wcolor);
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg path {
  fill: var(--wcolor);
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button svg circle {
  stroke: var(--wcolor);
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .container-arrow-button:hover svg circle {
  stroke: #8c97d0;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .filter {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.5;
  transition: opacity 0.8s ease-in 0.5s;
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .bigTitle,
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .text-container .container-arrow-button {
  transform: translate(0, 0);
}
.home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide-active .swiper-image .filter {
  opacity: 0;
}
.home-showcase .home-showcaseSlider .swiper-pagination {
  position: relative;
  bottom: 0;
  left: 0;
  width: fit-content;
  padding: 3.5% 0;
}
.home-showcase .home-showcaseSlider .swiper-pagination-bullet {
  width: 4vw;
  border-radius: 50px;
  height: 2px;
  background-color: #8f9397;
  opacity: 1;
  transition: width 0.8s ease-in-out, 0.4s ease-in-out;
  margin: 0 4px !important;
}
.home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
  background-color: #fff;
  width: 8vw;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav {
  display: flex;
  flex-direction: row;
  padding: 0 0 3.5% 5%;
  padding-right: 0;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
  position: static;
  display: flex;
  align-items: flex-end;
  font-weight: 900;
  margin: 0 2vw;
  width: 20px;
  height: auto;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled {
  opacity: 1;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev.swiper-button-disabled:after,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next.swiper-button-disabled:after {
  color: #8f9397;
}
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
  font-size: 4vw;
  color: #fff;
}
.home-showcase .home-showcaseSlider #macaron {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  margin: 5%;
  width: 30%;
}
.home-showcase .home-showcaseSlider #macaron #text-circle {
  animation: rotate-360 12s linear 0s infinite reverse forwards;
  transform-origin: center;
}
.home-showcase .scrollSliderButton {
  position: absolute;
  left: 50%;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translate(-50%, 0%);
  color: var(--wcolor) !important;
  text-decoration: none;
  font-size: 3.5vw;
  height: 21vw;
  font-family: "CabinetGrotesk-light", sans-serif;
}
.home-showcase .scrollSliderButton .line {
  height: 15vw;
  width: 1px;
  background: #8c97d0;
  margin-top: 5px;
  animation: scroll-anim-mobile 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
}
@media (min-width: 1024px) {
  .home-showcase {
    margin-top: 96px;
  }
  .home-showcase .home-showcaseSlider {
    display: block;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide {
    height: clamp(51rem, 75vh, 5000px);
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image {
    align-items: center;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container {
    max-width: 75%;
    margin: 0;
  }
  .home-showcase .home-showcaseSlider .swiper-wrapper .swiper-slide .swiper-image .text-container .bigTitle {
    margin: 0 0 1.25rem;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 0 0 2.5% 5%;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination-bullet {
    width: 1.5vw;
    height: 3px;
    margin: 0 8px !important;
  }
  .home-showcase .home-showcaseSlider .swiper-pagination-bullet-active {
    width: 3vw;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 0 5% 2.5% 5%;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next {
    margin: 0 0.6vw;
  }
  .home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-prev::after,
.home-showcase .home-showcaseSlider .showcaseSlider-nav .showcaseSlider-next::after {
    font-size: 1vw;
  }
  .home-showcase .home-showcaseSlider #macaron {
    width: fit-content;
    width: 8.4vw;
  }
  .home-showcase .scrollSliderButton {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translate(-50%, 40%);
    color: var(--wcolor) !important;
    text-decoration: none;
    font-size: 0.9vw;
    height: 4.8vw;
    font-family: "CabinetGrotesk-light", sans-serif;
  }
  .home-showcase .scrollSliderButton .line {
    height: 4.8vw;
    width: 2px;
    background: #8c97d0;
    margin-top: 5px;
    animation: scroll-anim 1.6s cubic-bezier(0.62, 0.01, 0.71, 0.47) 0s infinite normal forwards;
  }
}

/* end home slider */

/* lamoinate coolleetion */
.lami-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    padding-top: 50px;
}
.collection-lami{
    padding: 100px 0;
    background-color: #e9e9e9;
}
.laminate{
    text-align: center;   
}
.laminate h2{
    color: var(--color);
    font-size: var(--section-heading);
}
.laminate h5{
    font-size: 25px;
    color:var(--color);
}
.grid-img .img{
    width: 100%;
    /* height: 35vh; */
}
.grid-img .logo {
    width: 200px;
    display: flex;
    margin: auto;
    margin-top: 25px;
}
.grid-img {
    border: 1px solid #0000002b;
    padding: 10px;
}

/*  */
.new-trende{
    padding: 100px 0;
}
.tab {
  width: 100%;
  display: flex;
  gap: 15px;
}

/* Style the buttons inside the tab */
.tab button {
    display: block;
    background-color: inherit;
    color: black;
    padding: 10px 25px;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 20px;
    text-align: center;
    border: 1px solid #36363661;
    width: 100%;
    font-weight: 300;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #e53824;
    color: #fff;
    border: 1px solid #e53824;

    /* background: linear-gradient(332deg, rgb(229 56 36 / 57%) 49%, rgb(252 195 8 / 55%) 100%); */
}

/* Create an active/current "tab button" class */
.tab button.active {
      background-color: #e53824;
    color: #fff;
    border: 1px solid #e53824;
    /* background: linear-gradient(332deg, rgb(229 56 36 / 57%) 49%, rgb(252 195 8 / 55%) 100%); */
}

/* Style the tab content */

.trend h2{
    font-size: var(--section-heading);
    text-align: center;
    padding-bottom: 50px;
}
.product-show {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 20px;
    padding-top: 50px;
}

.product-l {
    position: relative;
    /* background-color: #fff; */
    transition: background 0.5s ease;
    overflow: hidden;
    border: 1px solid #ebe6e6;;
}

.product-img-container {
    position: relative;
    width: 100%;
    height: 45vh;
}

.product-l img {
    width: 100%;
    height: 45vh;
    object-fit: cover;
    display: block;
    transition: opacity 0.5s ease;
    background: #f5f5f5;
}

/* Overlay */
.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Icons */
.product-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.product-icons .icon {
    background: white;
    border-radius: 50%;
    padding: 13px 15px;
    cursor: pointer;
    font-size: 18px;
}


.product-l:hover .product-overlay {
    opacity: 0.5;
}

.product-l:hover img {
    opacity: 0.5;
}

.product-l:hover .product-icons {
    opacity: 1;
}

.product-l h3 {
    text-align: center;
    margin-top: 15px;
    color: #000;
    transition: color 0.3s ease;
    font-family: "Lexend", sans-serif;
    font-size: 22px;
    font-weight: 300;
}

.product-l:hover h3 {
    color: #000;
}
.catalog{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  padding-top: 50px;
}
.catalog .catalogue-g {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border: 1px solid #cec7c7;
    padding: 15px;
}
.catalog img{
  width: 100%;
}
.catalog-sec{
  background: #e9e9e9;
    padding: 100px 0;
}
.selar-grid{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 25px;
  padding-top: 50px;
}
.bast-selar{
  padding: 100px 0;
}
.best h2{
  font-size: var(--section-heading);
  text-align: center;
}
.newr{
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.trend{
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.grid-img .logo-15 {
    width: 150px;
    display: flex;
    margin: auto;
    margin-top: 25px;
}
.grid-img .mts {
    width: 200px;
    display: flex;
    margin: auto;
    margin-top: 30px;
}
.fullli{
  background:linear-gradient(0deg, rgba(0, 0, 0, 0.712), rgba(0, 0, 0, 0.685)),url('../img/collection-view/company4.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.full-img h3{
  color: #fff;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  font-family: Quicksilver;
      line-height: 55px;
}
.mts{
    margin-top: 35px;
  
}
.laminate{
  display: flex;
  justify-content: center;
  align-items: start;
}
.full-img img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    object-position: bottom;
}
.sty-here {
  padding: 100px 0;
}
.sty-here video{
  width: 100%;
  display: flex;
  margin: auto;
  padding-top: 50px;
}
.stay h2{
  text-align: center;
  font-size: var(--section-heading);
}
.blogs{
  background: #e9e9e9;
  padding: 100px 0;
}
.blog-headi h2{
  font-size: var(--section-heading);
  text-align: center;
  padding-bottom: 50px;
}
.blog-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
  padding-top: 50px;
}
.blog-data img{
  width: 100% ;
}
.blog-data{
  position: relative;
}
.blog-data h5{
      position: absolute;
    bottom: 60px;
    z-index: 999; 
    padding: 0px 20px;
    color: #fff;
}
.blog-data h6{
      position: absolute;
    top: 20px;
    z-index: 999;
    padding: 10px;
    color: #fff;
    right: 10px;
    background: #00000078;
}
.blog-data a{
     position: absolute;
    bottom: 20px;
    z-index: 999;
    color: #fff;
    left: 20px;
    padding: 5px 0px;
    transition: all .5s ease-in-out;
    font-weight: 300;
    font-size: 18px;
}
/* .blog-data a:hover{

  border-bottom: 1px solid #e53824;
    transition: all .5s ease-in-out;

    color: #e53824;

} */
.blog-data {
    width: 100%;
    margin: auto;
}

.blog-img-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

/* Overlay styles */
.blog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    z-index: 1;
}

/* Hover effect */
.blog-img-container:hover .blog-overlay {
    opacity: 0.5;
}

.blog-img-container:hover img {
    transform: scale(1.05); /* optional zoom effect */
}

.blog-data h5 {
    margin-top: 10px;
    font-size: 22px;
    /* text-align: center; */
    line-height: 35px;
        font-weight: 400;
}


#text {
  display: none;
}
.btn-container {
  margin: auto;
  height: 44px;
  width: 166.23px;
}
.about-sevtion{
  padding: 100px 0;
}
.about-grow h2{
  text-align: center;
  font-size: var(--section-heading);
  padding-bottom: 30px;
}
#toggle{
  background-color: #e53824;
  color: #fff;
  padding: 6px 25px;
  border: 1px solid #e53824;
  transition: all .5s ease-in-out;
}

#toggle:hover{
  background-color: #fff;
  color: #e53824;
  padding: 6px 25px;
  border: 1px solid #e53824;
  transition: all .5s ease-in-out;

}
.footer-logo{
  width: 300px;
  display: flex;
  margin: auto;
}
.footer-tagline{
  width: 200px;
  display: flex;
  margin: auto;
}
.footer{
  border-top: 1px solid #f5f5f5;
  background: linear-gradient(332deg, rgb(47 90 165 / 72%) 0%, rgb(229 56 36 / 57%) 49%, rgb(252 195 8 / 55%) 100%);
    backdrop-filter: blur(1px);
    background: #f5f5f5;

}
.footer-inner{
  padding: 100px 50px 10px ;
    backdrop-filter: blur(1px);
    
}
.social-media{
  display: flex;
  justify-content: end;
  gap: 20px;
  padding: 0px 0 15px;
}

.social-media a{
  color: #e53824;
  font-size: 20px;
  border: 1px solid #e53824;
  padding: 7px 10px;
  border-radius: 50%;
  transition: all .5s ease-in-out;
}
.social-media a:hover{
  color: #fff;
  font-size: 20px;
  border: 1px solid #e53824;
  padding: 7px 10px;
  border-radius: 50%;
  background-color: #e53824;
  transition: all .5s ease-in-out;

}
.footer-grid-sec{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
  padding: 30px 0 30px; 
  border-bottom: 1px solid #fff;
}
.footer-detail li{
  list-style-type: none;
  display: flex;
}
.footer-detail ul{
  padding-left: 0;
}
.footer-detail a{
  font-size: 18px;
  padding-bottom: 10px;
  color: #000;
  font-weight: 300;
  transition: all .5s ease-in-out;

}
.footer-detail a:hover{
  transition: all .5s ease-in-out;
  color: #e53824;
}
.contact a{
  padding-bottom: 0px;
}
.footer-detail p{
  font-size: 18px;
  color: #000;
  font-weight: 300;
}

.footer-detail h3{
  padding-bottom: 15px;
  color: #000;
}
.copyright{
  text-align: center;
  padding-top: 20px;
  font-size: 18px;
  color: #000;
  font-weight: 300;
}
.footer-detail p{
  display: flex;
  gap: 15px;
  align-items: center;
}
.grid-img:hover .img{
  transform: scale(1.02);
  transition: all .5s ease-in-out;
}
/* .grid-img:hover{
  transition: all .5s ease-in-out;
  background: #fff;
} */

.footer-logo-sec{
  display: flex;
  justify-content: space-between;
}
.about_section{
  background:linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url("../img/collection-view/9126..jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  margin-top: 95px;
}
.about-head h2{
  color: #fff;
  font-size: 80px;
  text-align: center;
}
.about-grows{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
  align-items: center;
}
.about-grow-text h2{
  text-align: left;
  font-size: var(--section-heading);
}
.about-grow-text{
  padding-left: 100px;
}
.grow-sec{
  padding: 100px 0;
}
.about-grow-img img{
  width: 100%;
}

.phylosophy{
  padding: 100px 0;
  background-color: #f5f5f5;
  background:linear-gradient(0deg, rgb(0 0 0 / 86%), rgb(0 0 0 / 68%)), url(../img/collection-view/9317.jpg);
  background-position: center;
  background-size: cover ;
}
.phylo-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  
}
.vis-mis-val{
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 20px;
  text-align: center;
      background: #ffffff12;
    backdrop-filter: blur(15px);
    border-radius: 20px;
    color: #fff;
}
.vis-mis-val h3{
  padding-top: 20px;
}


.why-choose{
  padding: 100px 0;
}
.why-choose-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
  align-items: center;
}
.pr-100{
  padding-right: 100px;
}
.why-img img{
  width: 100%;
}
.question {
  font-size: 20px;
  font-weight: 400;
  padding: 20px 80px 20px 0px;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.container-d{
  border-bottom: 1px solid #f5f5f5;
}
.question::after {
  content: "\002B";
  font-size: 22px;
  position: absolute;
  right: 20px;
  transition: 0.2s;
}

.question.active::after {
  transform: rotate(45deg);
}

.answercont {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
}

.answer {
  padding: 0 0px 20px;
  line-height: 1.5rem;
  font-size: 15px;
}



/* From Uiverse.io by Yaya12085 */ 
.playstore-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e53824;
  border-radius: 9999px;
  background-color: #e53824;
  padding: 0.625rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  outline: 0;
  transition: all  .2s ease;
  text-decoration: none;
}

.playstore-button:hover {
  background-color: transparent;
  color: #e53824;
}

/* .icon {
  height: 1.5rem;
  width: 1.5rem;
} */

.texts {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stay img{
  width: 250px;
}
.text-1 {
  font-size: 18px;
  line-height: normal;
}

.why-hed h2{
  font-size: var(--section-heading);
  text-align: center;
  padding-bottom: 20px;
}

/*  */
.catalog-coll{
  padding: 100px 0;
}
.catalogue{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 50px;
  
}
.catalogue-g img{
  width: 100%;
}
.catalogue-g {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    border: 1px solid #edecec;
    padding: 15px;
}
.catalogue-g h3{
  font-size: 22px;
    font-weight: 300;
}
/*  */
.event-media{
  padding: 100px 0;
}
.gallary{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}
.gallary img{
  width: 100%;
  height: 45vh;
  object-fit: cover;
  object-position: left;
  overflow: hidden;
  transition:all 0.5s cubic-bezier(.4,0,.25,1);

}
.card-des{
    padding: 10px;
    border: 1px solid #e8e0e0;
    box-shadow: rgb(50 50 93 / 14%) 0px 30px 60px -12px, rgb(0 0 0 / 5%) 0px 18px 36px -18px;
    transition:all 0.5s cubic-bezier(.4,0,.25,1);
}
.card-des:hover{
  transform:perspective(800px) rotateY(-5deg) translateX(0px) scale(0.96);
  box-shadow:5px 0px 15px rgba(0, 0, 0, 0.05);
  transition:all 0.5s cubic-bezier(.4,0,.25,1);
}
.card-des:hover img{
  transform:scale(1.1);
  transition:all 0.5s cubic-bezier(.4,0,.25,1);

}
.blog-grids{
  display: grid;
  grid-template-columns: repeat(1,1fr);
  gap: 50px;
}
.blogdata {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: space-between;
    align-items: start;
}
.blog-field{
  padding: 100px 0;
}
.blogslayout{
  background-color: #f5f5f5;
  display: grid;
  grid-template-columns: repeat(2,1fr);
}
.blogslayout img{
  width: 100%;
}
.b-content h3{
  font-family: Quicksilver;
  padding-bottom: 10px;
}
.connect-us{
  padding: 100px 0;
}
/*  */



.form {
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #f5f5f5;
}

.contact-form {
  background-color: #f5f5f5;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #f5f5f5);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #f5f5f5;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.titles {
  color: #000;
  font-weight: 500;
  font-size: 45px;
  font-family: Quicksilver;
  line-height: 1;
  margin-bottom:30px;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #000;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #000;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #000;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
  padding: 0.6rem 1.3rem;
  background-color: #000;
  border: 2px solid #000;
  font-size: 0.95rem;
  color: #1abc9c;
  line-height: 1;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: 0.3s;
  margin: 0;
  width: 100%;
}

.btn:hover {
  background-color: transparent;
  color: #000;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 15px;
  background-color: #f5f5f5;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-info .title {
  color: #000;
  font-size: 45px;
  font-family: Quicksilver;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
  font-size: 17px;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 17px;
      align-items: baseline;
      gap: 15px;
}

.information i {
  color: #000000;
}

/* .icon {
  width: 28px;
  margin-right: 0.7rem;
} */

.social-medias {
  padding: 2rem 0 0 0;
}

.social-medias p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 30px;
    background: linear-gradient(45deg, #000, #000);
    color: #fff;
    text-align: center;
    line-height: 50px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}


.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #f5f5f5, #f5f5f5);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  /* .container {
    padding: 1.5rem;
  } */

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .information p{
    margin-bottom: 0px !important;
  }
  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  /* .icon {
    width: 23px;
  } */

  .input {
    padding: 0.45rem 1.2rem;
  }

  .btn {
    padding: 0.45rem 1.2rem;
  }
}

.product-l {
    position: relative;
    overflow: hidden;
}

.product-l img {
    width: 100%;
    display: block;
    transition: opacity 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    height: 45vh;
    object-fit: cover;
}

.product-l .default-img {
    opacity: 1;
    z-index: 1;
}

.product-l .hover-img {
    opacity: 0;
    z-index: 2;
}

.product-l:hover .default-img {
    opacity: 0;
}

.product-l:hover .hover-img {
    opacity: 1;
}


/* Stack both images on top of each other */
.product-img-container {
    position: relative;
    width: 100%;
    height: 45vh;
    overflow: hidden;
}

.product-img-container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
    background: #f5f5f5;
}

/* Image visibility logic */
.default-img {
    opacity: 1;
    z-index: 1;
}

.hover-img {
    opacity: 0;
    z-index: 1;
}

.product-l:hover .default-img {
    opacity: 0.5; /* Already in your original style */
}

.product-l:hover .hover-img {
    opacity: 1;
}


.animated-link {
  /* Basic Text Styles */
  color: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  padding-bottom: 5px; /* Space between text and border */
  position: relative;
  display: inline-block; /* Essential for containing the ::after element */
}

.animated-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    transform: translateX(0%);
    height: 2px;
    width: 20px;
    background-color: #fff;
    transition: width 0.3s ease-out;
}

.animated-link:hover::after {
  /* Hover State (Expanded Border) */
  width: 100%; /* **Expands to 100% width** */
}



/* ================= about page ================================== */
.row1 {
  gap: 50px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e53824;
  border-radius: 9999px;
  background-color: #e53824;
  padding: 0.625rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  outline: 0;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  color: #e53824;
  background-color: transparent;
}

/* HERO */
.about-hero {
  position: relative;
  padding: 200px 0 100px;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/about/factory-baners.png") top/cover no-repeat;
    margin: 0 !important;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: bottom;
}

.about-hero .sub-headline {
  font-size: 20px !important;
  /* font-weight: 700; */
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.about-hero .sub-headline :hover {
  color: #fff;
}
.about-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* hero  */

/* ======= UNIQUE SECTION (abt-sec-new) ======= */
.abt-sec-new-section {
  width: 100%;
  padding: 100px 0;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.abt-sec-new-img-container {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.abt-sec-new-img1 {
  width: 48%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  height: 450px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.abt-sec-new-img2 {
  width: 48%;
  margin-top: 100px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
  height: 450px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.abt-sec-new-content {
  flex: 1 1 400px;
}

.abt-sec-new-content h4 {
  margin-bottom: 8px;
  letter-spacing: 1px;
  font-weight: 300;
}

.abt-sec-new-content h2 {
  font-size: 52px;
  /* font-weight: 700; */
  /* margin-bottom: 15px; */
  color: #111;
}

.abt-sec-new-content p {
  color: #555;
  font-size: 18px;
  /* margin-bottom: 5px; */
}

.abt-sec-new-features {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

.abt-sec-new-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.abt-sec-new-icon {
  color: #fff;
  padding: 5px;
  /* border: 1px solid black; */
  /* border-radius: 50%; */
  font-size: 16px;
  width: 100px;
}

.abt-sec-new-icon img {
  width: 100%;
  height: 100%;
}

.abt-sec-new-feature-item h5 {
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 400;
  color: #111;
}

.abt-sec-new-feature-item p {
  font-size: 18px;
  color: #666;
}

.abt-sec-new-stats {
  /* margin-top: 0px; */
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  /* flex-wrap: wrap; */
  /* justify-content: space-between; */
  gap: 20px;
  /* border-top: 1px solid #eee; */
  padding-top: 5px;
}

.abt-sec-new-stat-box {
  border: 1px solid black;
  flex: 1 1 200px;
  text-align: center;
  border-radius: 0px 55px 60px 0px;
  padding: 15px 0;
}

.abt-sec-new-stat-box h3 {
  font-size: 35px;
  color: #111;
  font-weight: 500;
  /* margin-bottom: 5px; */
}

.abt-sec-new-stat-box p {
  color: #777;
  margin-bottom: 5px;
  font-size: 18px;
}

/* ===== Perfected Grid Layout
   vision mission values ===== */
.vision-mission-values {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto 370px;
  gap: 25px;
  padding: 100px 0px;
  align-items: stretch;
}

/* ===== Dynamic Display Box (Intro Left) ===== */
.vmv-display-card {
  color: #000;
  border-radius: 10px;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vmv-display-card .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(39, 16, 16, 0.08);
  padding: 6px 12px;
  border-radius: 999px;
  width: max-content;
  margin-bottom: 16px;
}

.vmv-display-card h2 {
  font-size: 32px;
  line-height: 1.3;
  letter-spacing: 1px;
  margin-bottom: 12px;
  font-weight: 500;
}

.vmv-display-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
  margin: 0;
}

/* ===== Info Cards (Vision, Mission, Values) ===== */
.vmv-card {
  background: #fff;
  box-shadow: 1px 3px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}

.vmv-card h3 {
  font-size: 24px;
  color: #222;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vmv-card h3 img {
  width: 80px;
  height: 80px;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

/* .vmv-card:hover h3 img {
      transform: scale(1.2);
    } */

.vmv-card p {
  font-size: 18px;
  text-align: center;
  color: #000;
  line-height: 1.7;
}

/* ===== Lower Image with Hover Text ===== */
.vmv-image {
  grid-column: 1 / 3;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.vmv-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: top;
  transition: transform 0.6s ease;
  border-radius: 10px;
}

.vmv-image:hover img {
  transform: scale(1.05);
}

.vmv-image-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.vmv-image:hover .vmv-image-text {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(-10px);
}

.vmv-image-text h3 {
  font-size: 28px;
  margin-bottom: 6px;
}

.vmv-image-text p {
  font-size: 18px;
  text-align: center;
}

/* why choose us 11 */

.why-choose-section {
  padding: 100px 0;
  background: #e9e9e9;
  position: relative;
}

.why-choose-section h2 {
  text-align: center;
  /* font-weight: 800; */
  /* margin-bottom: 20px; */
  font-size: 55px;
  /* color: #222; */
}

.accordion-header {
  text-align: center;
  /* font-weight: 800; */
  /* margin-bottom: 30px; */
  font-size: 48px;
  letter-spacing: 2px;
  font-family: Lexend, sans-serif !important;
  color: #222;
}

.why-choose-section p.subtitle {
  text-align: center;
  color: #000;
  margin-bottom: 25px;
  font-size: 18px;
}

.why-choose-container {
  display: flex;
  padding-top: 50px;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
}

/* Accordion styling */
.accordion {
  flex: 1;
}

.accordion-item {
  /* border-radius: 12px; */
  margin-bottom: 15px;
  /* border: 1px solid rgb(182, 180, 180); */
  overflow: hidden;
  /* box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08); */
  transition: all 0.3s ease;
}

.accordion-item:hover {
  transform: translateY(-3px);
  /* box-shadow: 0 10px 25px rgba(229, 56, 36, 0.2); */
}

.accordion-button {
  background-color: #fff !important;
  /* color: #000; */
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 1px;
  padding: 1rem 1.5rem;
  border: 1px solid #e9e9e9;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background-color: #fff !important;
  color: red !important;
}

.accordion-button::after {
  background-image: none;
  font-family: "Bootstrap-icons";
  content: "\f282";
  font-size: 1.2rem;
  /* color: red; */
  transition: transform 0.3s ease;
}
.accordion-button:not(.collapsed)::after {
  background-image: none !important;
  transform: var(--bs-accordion-btn-icon-transform);
}

.accordion-body {
  background-color: #fff;
  /* color: #000; */
  font-size: 18px;
  line-height: 1.7;
  padding: 1.2rem 1.5rem;
}

/* Image Display */
.why-choose-image {
  flex: 1;
  position: relative;
  overflow: hidden;
  /* border-radius: 20px; */
  /* box-shadow: 0 8px 3px rgba(0, 0, 0, 0.15); */
}

.why-choose-image img {
  width: 100%;
  height: 95%;
  object-fit: cover;
  /* border-radius: 20px; */
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}

.why-choose-image img.hidden {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

.hidden {
  display: none !important;
}

/* ===========================BLOG PAGE==========================================  */

/* HERO */
.blog-hero {
  position: relative;
  padding: 200px 0 100px;
  color: #fff;
  margin: 0 !important;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/banner/blog2new.jpg") center/cover no-repeat;
}

.blog-hero .sub-headline {
  font-size: 20px !important;
  /* font-weight: 700; */
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.blog-hero .sub-headline:hover {
  color: #fff;
}
.blog-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* HERO */

/* blog-recent */
.blog-new-recent-section {
  padding: 100px 0;
}

.blog-new-recent-left {
  /* flex: 2; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.blog-new-recent-content {
  flex: 1;
}

.blog-new-recent-title {
  font-size: 24px;
  font-weight: 400;
  /* font-family: lexen; */
  padding: 5px 0;
  color: #222;
}

.blog-new-recent-text {
  color: #555;
  font-size: 14px;
  padding: 0 0 45px;
  line-height: 1.5rem;
}

.blog-new-recent-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 0px 25px rgb(218 218 218 / 70%);
  /* margin-bottom: 30px;
  margin-top: 20px; */
  display: flex;
  position: relative;
  /* margin-bottom: 60px; */
}

.blog-new-recent-image {
  margin-top: -40px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 25px rgb(218 218 218 / 70%);
  /* margin-bottom: 50px; */
  margin-bottom: 0px;
  margin-right: 30px;
  width: 320px;
  height: auto;
}

.blog-new-recent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-new-recent-date {
  position: absolute;
  left: 20px;
  top: 30px;
  background-color: #e53824;
  color: #fff;
  font-size: 14px;
  line-height: 28px;
  padding: 5px 15px 5px 0px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  margin-right: 10px;
  z-index: 1;
}

.blog-new-recent-date:before {
  content: "";
  position: absolute;
  left: -28px;
  bottom: -8px;
  z-index: -1;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 0px solid transparent;
  border-top: 8px solid #e53824;
}

.blog-new-recent-date:after {
  content: "";
  background-color: #e53824;
  position: absolute;
  top: 0px;
  left: -30px;
  bottom: 0px;
  width: 30px;
  z-index: -1;
}

.blog-new-recent-date img {
  width: 20px;
  height: 20px;

  filter: brightness(0) invert(1); /* white icon */
}
/* blog-recent */

/* blog 3 section */
.new-blog-section {
  padding-bottom: 100px;
}

.new-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.new-blog-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
}

.new-blog-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

/* The bottom overlay that always stays visible */
.new-blog-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 25px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.new-blog-date {
  position: absolute;
  top: 15px;
  left: 15px; /* left-aligned now */
  background: white;
  color: #000;
  padding: 6px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 20;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.new-blog-date img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  /* filter: brightness(0) invert(1); white icon */
}

/* Tag */
.new-blog-tag {
  background: #fff;
  padding: 4px 10px;
  color: #000;
  width: max-content;
  font-size: 12px;
  border-radius: 40px;
  display: inline-flex;
}

/* Title */
.new-blog-title {
  font-size: 24px;
  font-weight: 500;
  margin: 0;
}

/* --- Hidden extra content --- */
.extra-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transform: translateY(15px);
  transition: all 1s ease;
}

/* Show extra content on hover */
.new-blog-card:hover .extra-content {
  opacity: 1;
  max-height: 150px;
  transition: all 3s ease;
  transform: translateY(0);
}

.new-blog-desc {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 20px;
}

#toggle1 {
  background-color: #e53824;
  color: #fff;
  font-size: 16px;
  padding: 3px 10px;
  border: 1px solid #e53824;
  transition: all 0.5s ease-in-out;
}

#toggle1:hover {
  background-color: #fff;
  color: #e53824;
  /* padding: 6px 18px; */
  border: 1px solid #e53824;
  transition: all 0.5s ease-in-out;
}
/* blog 3 section */
/* blog page end  */

/* ===========================EVENT-GALLERY PAGE==========================================  */
.toggle {
  display: block;
  background-color: inherit;
  color: black;
  padding: 10px 25px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 20px;
  text-align: center;
  border: 1px solid #36363661;
  width: 100%;
  font-weight: 300;
}

.toggle:hover {
  background-color: #e53824;
  color: #fff;
}

/* ACTIVE STATE */
.toggle.active {
  background-color: #e53824;
  color: #fff;
  transition: all 0.5s ease-in-out;
  border: 1px solid #e53824;

}

.toggle-readmore {
  display: block;
  background-color: inherit;
  color: black;
  padding: 10px 20px;
  outline: none;
  cursor: pointer;
  font-size: 18px;
  text-align: center;
  border: 1px solid #36363661;
  width: max-content;
  position: absolute;
  bottom: 20px;
  /* margin-top: auto !important; pushes button to bottom */
}
.toggle-readmore:hover {
  background-color: #e53824;
  color: #fff;
  border: 1px solid #e53824;
}

.toggle-submit {
  display: block;
  background-color: inherit;
  color: black;
  padding: 10px 25px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
  text-align: center;
  border: 1px solid #36363661;
  width: max-content;
  font-weight: 300;
}

.toggle-submit:hover {
  background-color: #e53824;
  color: #fff;
}

#toggle-readmore {
  display: block;
  background-color: inherit;
  color: white;
  padding: 5px 10px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
  text-align: center;
  border: 1px solid #fff;
  width: max-content;
  font-weight: 300;
}

#toggle-readmore:hover {
  background-color: #e53824;
  color: #fff;
  border: 1px solid #36363661;
}

.gallery-hero {
  position: relative;
  padding: 200px 0 100px;
  margin: 0 !important;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/collection-view/9158.jpg") center/cover no-repeat;
}

.gallery-hero .sub-headline {
  font-size: 20px !important;
  /* font-weight: 700; */
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.gallery-hero .sub-headline:hover {
  color: #fff;
}

.gallery-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}
/* HERO */
.event-hero {
  position: relative;
  padding: 200px 0 100px;
  margin: 0 !important;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/event/9.jpeg") center/cover no-repeat;
}

.event-hero .sub-headline {
  font-size: 20px !important;

  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.event-hero .sub-headline:hover {
  color: #fff;
}

.event-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* HERO */

/* event gallery sect */
.event-sect {
  padding: 100px 0;
  background: #fff;
}
.event-button {
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  width: max-content;
  padding-bottom: 50px;
}

.event {
  display: grid;
  gap: 20px;
  transition: all 0.5s ease;
}

/* Main Grid */
.gallery-slider .gallery-slider-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  justify-content: center;
  border-radius: 10px;
  align-items: center;
}

/* Card */
.gallery-slider-card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 10px;
  overflow: hidden;
}

/* Image wrapper */
.gallery-slider-image {
  /* padding-top: 70%; */
  height: 300px;
  width: 100%;
  position: relative;
}

/* Images */
.gallery-slider-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event {
  display: none; /* Hidden by default */
  grid-template-columns: 1fr; /* single column for event content */
  justify-items: center;
  text-align: center;
  font-size: 18px;
  color: #333;
}

.img-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
}

.modal-content-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: white;
  font-size: 40px;
  cursor: pointer;
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
}

.modal-prev {
  left: 40px;
}
.modal-next {
  right: 40px;
}

/* event card start */
.events-type {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.event-card {
  position: relative;
  border-radius: 10px;
  /* border: 1px solid lightgrey; */
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* IMAGE SECTION */
.event-image {
  padding: 10px;
  position: relative;
  overflow: hidden;
}

.event-image img {
  width: 100%;
  border-radius: 10px;
  /* height: 300px; */
  transition: transform 0.4s ease;
}

/* .event-card:hover img {
  transform: scale(1.02);
} */

/* FIXED DATE (always visible) */
.fixed-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 3;
}

.fixed-date .date-day {
  font-size: 22px;
  line-height: 1;
}

.fixed-date .date-month {
  font-size: 14px;
  text-transform: capitalize;
  line-height: 1;
}
.fixed-active {
  position: absolute;
  top: 15px;
  right: 20px;
  background: #e53824;
  padding: 8px;
  border-radius: 15px;
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  z-index: 3;
}

.fixed-active .active-btn {
  font-size: 10px;
  line-height: 1;
  color: white;
  /* font-weight: 400; */
}
/* Hover overlay using transform instead of bottom */
.event-hover {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 25px;
  transform: translateY(100%); /* hidden below */
  transition: transform 0.45s ease;
  pointer-events: none; /* prevents accidental blocking */
}

/* Slide up on card hover */
.event-card:hover .event-hover {
  transform: translateY(0%);
  pointer-events: auto;
}

/* Inside hover content (unchanged) */
.hover-content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
}

/* Location button */
.hover-location {
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  width: 40px;
  padding: 10px;
  height: 40px;
  /* border-radius: 6px; */
  background-color: #e53824;
  border: 2px solid #e53824;
  cursor: pointer;
  transition: all 0.6s ease;
}

.hover-location i {
  transition: all 0.6s ease;
}

.hover-location:hover {
  background: #fff;
  color: #e53824;
  /* border: 1px solid #fff; */
}

.hover-location:hover i {
  transform: translateY(2px);
  opacity: 1;
}

/* Event content section */
.event-content {
  padding: 10px;
  background: #fff;
  /* border-top: 1px solid #eee; */
}

/* Title style */
.event-title {
  font-size: 22px;
  font-weight: 500;
  /* padding: 5px 0; */
  color: #222;
  text-align: left;
  letter-spacing: 0.3px;
  transition: color 0.4s ease;
}

/* Meta section - creative layout */
.event-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* gap: 12px; */
  /* padding-top: 6px; */
}

/* Individual meta item */
.meta {
  font-size: 15px;
  color: #555;
  display: flex;
  align-items: center;
  /* gap: 4px; */
  transition: all 0.3s ease;
}

.meta img {
  width: 17px;
  height: 17px;
  /* margin:0 5px; */
}

/* Clock + Location icons styling */
.meta i {
  font-size: 20px;
  color: #afafaf;
  transition: all 0.4s ease;
}

.meta:hover i {
  transform: scale(1.1);
}

.toggleview {
  background-color: #e53824;
  color: #fff;
  font-size: 16px;
  padding: 6px 10px;
  border: 1px solid #e53824;
  transition: all 0.5s ease-in-out;
}

.toggleview:hover {
  background-color: #fff;
  color: #e53824;
  /* padding: 6px 18px; */
  border: 1px solid #e53824;
  transition: all 0.5s ease-in-out;
}

/* TEXT */
.toggleview .btn-text {
  transition: all 0.7s ease;
}

/* event-gallery page end  */

/* ===========================EVENT-SLIDER PAGE==========================================  */
/* event slider  */
.event-slider-sect {
  padding: 100px 0;
  text-align: center;
}

.event-heading {
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 20px;
}

.event-desc {
  font-size: 18px;
  color: #000;
  /* max-width: 850px; */
  margin-bottom: 40px;
}

/* Grid Layout */
.event-singleslider-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Card */
.event-singleslider-card {
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}

.event-singleslider-card-image {
  height: 300px;
  /* padding-top: 70%; Controls image height ratio */
  width: 100%;
  position: relative;
}
/* Actual Image */
.event-singleslider-card-image img {
  position: absolute;

  width: 100%;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

/* event-slider page end  */

/* contact-page start  */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e53824;
  border-radius: 9999px;
  background-color: #e53824;
  padding: 8px 12px;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  outline: 0;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  color: #e53824;
  background-color: transparent;
}

/* HERO */
.contact-hero {
  position: relative;
  padding: 200px 0 100px;
  margin: 0 !important;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/gmail.png") center/cover no-repeat;
}

.contact-hero .sub-headline {
  font-size: 20px !important;
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.contact-hero .sub-headline:hover {
  color: #fff;
}
.contact-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* hero  */

.call-sect-wrapper {
  padding: 100px 0;
}

/* HEADER */
.call-sect-header {
  text-align: center;
  margin: 0 auto 40px auto;
}

.call-sect-header h2 {
  font-size: 55px;
  margin-bottom: 10px;
  font-weight: 400;
}

.call-sect-header p {
  font-size: 16px;
}

/* MAIN GRID */
.call-sect-container {
  /* margin: auto; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* align-items: center; */
  gap: 25px;
  flex-wrap: wrap;
}

/* FORM BOX */
.call-sect-form-box {
  /* flex: 1 1 30%; */
  background: #f5f5f5;
  padding: 25px;
  border-radius: 10px;
  /* border: 1px solid #ddd; */
}

.call-sect-form-box h3 {
  margin-bottom: 20px;
}
.call-form {
  padding: 0px;
}

.call-sect-row {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

/* .call-sect-row input { */
/* flex: 1; */
/* } */

.call-sect-full {
  width: 100%;
  height: 200px;
  /* margin-bottom: 15px; */
}

.input-box {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.input-box input,
.input-box textarea {
  padding: 12px;
  border-radius: 6px;
  border: none;
  /* border: 1px solid #ccc; */
  font-size: 16px;
}

.error {
  color: red;
  font-size: 13px;
  margin-top: 3px;
}

.call-sect-details h3 {
  padding-top: 25px;
  margin-bottom: 10px;
}

.call-sect-details p {
  font-size: 16px;
  padding-bottom: 1px;
}

/* CONTACT INFO BOXES */
.call-sect-detail-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
.call-sect-detail-grid p {
  margin-bottom: 0px;
}
.call-sect-detail-box {
  display: flex;
  gap: 12px;
  align-items: center;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  border: 1px solid #e9e9e9;
}

.call-sect-icon {
  /* width: 40px; */
  /* height: 40px; */
  /* border: 1px solid #ddd; */
  border-radius: 10px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  padding: 10px;
}
.call-sect-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* width: 240px; */
}
.call-sect-desc h4 {
  margin-bottom: 4px !important;
  font-size: 18px;
}

.call-sect-desc p a {
  position: relative;
  font-size: 14px;
  font-weight: 300;
  color: black;
  margin-bottom: 4px !important;
  text-decoration: none;
}

/* underline before hover */
.call-sect-desc p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px; /* adjust under spacing */
  width: 0%;
  height: 1px;
  background-color: #e53824;
  transition: width 0.8s ease;
}

/* underline on hover */
.call-sect-desc p a:hover::after {
  width: 100%;
}

/* text color change */
.call-sect-desc p a:hover {
  color: #e53824;
}

/* SOCIAL ICONS */
.call-sect-social-wrapper {
  margin-top: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.call-sect-social-icons {
  /* font-size: 25px; */
  width: 50px;
  height: 50px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding: 6px 0; */
  margin-right: 12px;
  cursor: pointer;
  /* border: 1px solid #e9e9e9; */
  border-radius: 50%;
  color: #555;
}

.call-sect-social-icons a {
  color: #e53824;
  font-size: 20px;
  border: 1px solid #e53824;
  padding: 7px 10px;
  border-radius: 50%;
  transition: all 0.5s ease-in-out;
}

.call-sect-social-icons a:hover {
  color: #fff;
  font-size: 20px;
  border: 1px solid #e53824;
  padding: 7px 10px;
  border-radius: 50%;
  background-color: #e53824;
  transition: all 0.5s ease-in-out;
}

/* Full Width Map Section */
.fullmap-section {
  width: 100%;
  height: 500px;
  padding: 0;
}

.fullmap-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* contact-page end */

/* CATALOGUE PAGE */

/* HERO */
.catalogue-hero {
  position: relative;
  padding: 200px 0 100px;
  margin: 0 !important;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/banner/catalogue.jpg") bottom/cover no-repeat;
}

.catalogue-hero .sub-headline {
  font-size: 20px !important;
  /* font-weight: 700; */
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.catalogue-hero .sub-headline:hover {
  color: #fff;
}
.catalogue-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* hero  */

/* catalogue-box */
.catalogue-box {
  padding: 100px 0;
  background-color: #fff;
}
.catalogue__title {
  padding: 15px 0;
  font-weight: 400;
  font-size: 55px;
  text-align: center;
  letter-spacing: 1px;
}
.catalogue-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* padding-top: 50px; */
}

.catalogue-card {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  border: 1px solid #cec7c7;
  padding: 15px;
}

.catalogue-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: all 0.3s ease;
}
.catalogue-card:hover img {
  transform: scale(1.07);
  transition: all 3s ease;
  /* transition: 
    opacity 1.8s ease,
    transform 1.8s ease; */
}
.collection-head {
  font-weight: 200;
  /* text-align: center; */
  font-size: 22px;
  /* padding-bottom: 5px; */
}
.collection-head2 {
  font-weight: 200;
  font-size: 22px;
  text-align: center;
  /* padding-bottom: 5px; */
}
.download-view-btn {
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  /* margin-top: 15px; */
}
.download-view-btn1 {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
  /* margin-top: 15px; */
}
.playstore-btn {
  /* display: flex;
  align-items: center;
  justify-content: center; */
  border: 2px solid #e53824;
  border-radius: 9999px;
  background-color: #e53824;
  padding: 0.625rem 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 1);
  outline: 0;
  transition: all 0.2s ease;
  text-decoration: none;
  /* width: 40%; */
  /* font-weight: 300; */
  /* margin: auto; */
}

.playstore-btn:hover {
  background-color: transparent;
  color: #e53824;
}

/* catalogue-box */

/* ===========================BLOG-DETAIL PAGE==========================================  */

/* HERO */
.blogsingle-hero {
  position: relative;
  padding: 200px 0 100px;
  margin: 0 !important;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/banner/blog-detail.webp") center/cover no-repeat;
}

.blogsingle-hero .sub-headline {
  font-size: 20px;
  /* font-weight: 700; */
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}

.blogsingle-hero .sub-headline:hover {
  color: #fff;
}

.blogsingle-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* HERO */

#blog-single-sec {
  padding: 100px 0 0px;
}

.blog__image-box {
  width: 100%;
  /* border-radius: 10px; */
  /* border: 1px solid lightgrey; */
  /* overflow:hidden; */
}

.blog__image {
  width: 100%;
  height: 600px;
  /* border-radius: 10px; */
  object-fit: cover;
  display: block;
}

.blog__image-box2 {
  width: 100%;
  border-radius: 10px;
  height: 550px;
  /* border: 1px solid lightgrey; */
  /* overflow:hidden; */
}

.blog__image2 {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  display: block;
}

.blog__title {
  /* margin: 15px 0; */
  font-weight: 400;
  font-size: 55px;
  letter-spacing: 1px;
}

.blog_para {
  font-size: 24px;
  font-weight: 400;
}
.blog__text {
  line-height: 1.6;
  font-size: 18px;
  /* margin: 20px 0; */
  color: #555;
}
.blog__text1 {
  line-height: 1.6;
  font-size: 18px;
  margin-top: 10px;
  color: #555;
}
.blog__quote {
  font-size: 18px;
  font-weight: 400;
  /* text-align: center; */
  /* margin: 20px 0; */
  /* line-height:; */
  /* font-style: italic; */
}

.image-blog-grid {
  margin: 30px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.image-blog-grid img {
  width: 100%;
  border-radius: 10px;
}

.two-col-container {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.two-col-image {
  width: 40%;
  border-radius: 10px;
}

.two-col-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
  /* border-radius: 4px; */
}

.two-col-content {
  width: 60%;
  line-height: 1.6;
  font-size: 18px;
  color: #555;
}

/* .two-col-content p {
  margin-bottom: 10px;
} */

.space-flex-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 0;
  border-bottom: 1px solid lightgrey;
}

.space-flex-content {
  width: 50%;
  /* padding: 20px; */
  /* border: 1px solid lightgrey; */
}

.space-flex-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  /* margin-bottom: 16px; */
}

.space-flex-image {
  width: 50%;
  /* height: 350px; */
  /* border: 5px solid lightgrey; */
}

.space-flex-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

.space-flex-sec1 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 0;
  border-bottom: 1px solid lightgrey;
}

.space-flex-content1 {
  width: 50%;
  /* padding: 20px; */
  /* border: 1px solid lightgrey; */
}

.space-flex-content1 p {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  /* margin-bottom: 16px; */
}

.space-flex-image1 {
  width: 50%;
  /* height: 350px; */
  /* border: 5px solid lightgrey; */
}

.space-flex-image1 img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: block;
}

.conclusion-sec {
  padding: 50px 0;
}

.conclusion-text,
.conclusion-bottom {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 25px;
}

.conclusion-list {
  padding: 0;
  display: flex;
  width: 100%;
  flex-direction: column;
  /* margin: 20px 0; */
}

.conclusion-list li {
  font-size: 16px;
  margin: 10px 0;
  padding: 10px;
  background: #f5f5f5;
  /* border-radius: 6px; */
  color: #000;
  display: inline-block;
  width: 100%;

  text-align: left;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.conclusion-list li:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09);
}

.faq-item {
  /* border: 1px solid #ccc; */
  padding-bottom: 15px;
  /* border-radius: 4px; */
  overflow: hidden;
}

.faq-header {
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  font-size: 20px;
  cursor: pointer;
  color: #111;
  /* font-weight: 300; */
  justify-content: space-between;
}

.faq-header span {
  flex-grow: 1;
  text-align: left;
}

.faq-icon {
  font-size: 24px;
  /* font-weight: bold; */
  width: 30px;
  text-align: right !important;
}

.faq-item.active .faq-header {
  color: #e53824 !important;
  font-weight: 500;
}

.faq-body {
  padding: 15px;
  display: none;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  font-size: 18px;
  line-height: 1.6;
}

.kf-title {
  font-size: 24px;
  font-weight: 400;
  /* margin-bottom: 20px; */
  color: #111;
}

.kf-intro,
.kf-conclusion {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  /* margin-bottom: 20px; */
}

.kf-list {
  margin: 20px 0;
  padding-left: 20px;
}

.kf-list li {
  font-size: 18px;
  line-height: 1.6;
  color: #555;
  /* margin-bottom: 12px; */
}

.kf-list li strong {
  color: #000;
}

.simple-faq-sec {
  padding-top: 50px;
}

.faq-title {
  font-size: 55px;
  font-weight: 400;
  /* margin-bottom: 40px; */
}

.faq-question {
  font-size: 20px;
  color: #111;
  font-weight: 400;
  /* margin-bottom: 15px; */
}

.faq-answer {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
}
.recent-blog {
  font-size: 55px;
  text-align: center;
  padding-bottom: 25px;
}

/* ===========================BLOG-DETAIL PAGE==========================================  */

/* ===========================FAQ PAGE=================================== */

/* HERO */
.faq-hero {
  position: relative;
  margin: 0 !important;
  padding: 200px 0 100px;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/banner/faq2.jpg") center/cover no-repeat;
}

.faq-hero .sub-headline {
  font-size: 20px !important;
  /* font-weight: 700; */
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.faq-hero .sub-headline:hover {
  color: #fff;
}
.faq-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}
/* MAIN */
.faq-sec-main {
  padding: 100px 0;
  display: flex;
  gap: 30px;
}

/* SIDEBAR */
.faq-sec-sidebar {
  width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: sticky;
  top: 100px; /* adjust according to your header height */
  height: fit-content;
}

.faq-sec-tab {
  display: block;
  background-color: inherit;
  color: black;
  padding: 10px 25px;
  border: none;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
  font-size: 18px;
  text-align: center;
  border: 1px solid #36363661;
  width: 100%;
  font-weight: 300;
}

.faq-sec-tab:hover {
  background-color: #e53824;
  color: #fff;
}
.faq-sec-tab.active {
  background-color: #e53824;
  color: #fff;
}

/* RIGHT CONTENT */
.faq-sec-content {
  flex: 1;
}
.faq-sec-group {
  border: 1px solid #ddd;
  margin-bottom: 10px;
}
.faq-sec-title {
  padding: 10px 20px;
  font-size: 24px;
  text-transform: capitalize;
  font-weight: 400;
}

/* ITEM BOX */
.faq-sec-item {
  border: 1px solid #ddd;
  /* margin-bottom: 10px; */
  margin: 10px 20px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-sec-question {
  padding: 14px 18px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 300;
  display: flex;
  border-bottom: 1px solid #ddd;
  justify-content: space-between;
  /* background: #f9f9f9; */
}
.faq-sec-item.open .faq-sec-question {
  color: #e53824;
  font-weight: 400; /* optional for emphasis */
}

.faq-sec-arrow {
  font-size: 20px;
  font-weight: 400;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* ROTATE ARROW */
.faq-sec-item.open .faq-sec-arrow {
  transform: rotate(180deg);
  color: #e53824;
}

/* ANSWER */
.faq-sec-answer {
  height: 0;
  overflow: hidden;
  padding: 0 18px;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  transition: height 0.3s ease;
}

.faq-sec-item.open .faq-sec-answer {
  padding: 12px 18px 16px;
}

/* ===========================FAQ PAGE=================================== */

/* ===========================TIMELINE PAGE=================================== */

.timeline__title {
  font-size: 55px;
  text-transform: capitalize;
  color: #000;
  text-align: center;
  padding: 20px 0;
  /* position: absolute; */
  /* top: -50px; */
  line-height: 0;
}

/* CONTROLS */
.controls {
  width: 40px;
  height: 40px;
  position: absolute;
  left: 0px;
  top: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.controls:after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  border-left: 4px solid #000;
  border-bottom: 4px solid #000;
  transition: 500ms all;
}

.controls.next {
  left: auto;
  right: 0px;
  top: 50%;
  transform: rotate(180deg);
}
.timeline {
  padding: 10px 0;
  position: relative;
  overflow-x: hidden;
}
/* TIMELINE */
.time-line {
  width: 100%;
  height: 650px;
  /* background-color: #e5e5e5; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 0 100px;

}

.time-line .dates-overflow {
  left: 0;
  width: 100%;
  position: absolute;
  bottom: 50px;
  height: 50px;
}

.time-line .dates-wrap {
  display: inline-block;
  position: absolute;
  height: 100%;
  width: max-content;
  left: calc(50% - 80px);
}

.time-line .date {
  width: 160px;
  position: relative;
  float: left;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
}

.time-line .date .date-content {
  visibility: hidden;
  position: absolute;
  width: 1200px;
  height: 500px;
  display: flex;
  /* align-items: center; */
  justify-content: center;
  /* grid-template-columns: repeat(2,1fr) !important; */
  bottom: 100%;
  padding-bottom: 70px;
  border-radius: 3px;
  transform-origin: 50% 100%;
  transform: scale(0.7);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0);
}

.time-line .date .date-content:after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  top: 85%;
  margin-top: 8px;
  height: 45px;
  opacity: 0;
  background-color: #e53824;
  transform: scaleY(0);
  transform-origin: 100% 100%;
  transition: 800ms all cubic-bezier(0.23, 1, 0.32, 1);
}

.time-line .date .date-content .date-image {
  width: 40%;
}
.time-line .date .date-content .date-image img {
  width: 100%;
  height: 100%;
}
.time-line .date .date-content > div {
  opacity: 0;
  transform: translateY(40px);
}

.time-line .date .date-content .date-text {
  width: 40%;
  padding: 20px;
  height: auto;
  /* background-color:
  drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5)); */
  background-color: #fff;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, 0.09));
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* align-items: center; */
  color: #000;
  text-align: left;
}
.time-line .date .date-content .date-text .timeline-year {
  font-size: 14px;
  margin: 5px 0 !important;
  /* font-weight: 100; */
}
.time-line .date .date-content .date-text .timeline-head {
  font-size: 30px;
  margin: 5px 0 !important;
  font-weight: 400;
}
.time-line .date .date-content .date-text .timeline-para {
  font-size: 18px;
  margin: 5px 0;
  /* font-weight: 100; */
  line-height: 1.2;
}
/* DATE YEAR */
.time-line .date .date-year {
  opacity: 0.4;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.time-line .date .date-year:hover {
  opacity: 1 !important;
}

.time-line .date .date-year:hover:after {
  transform: scale(1) !important;
}

.time-line .date .date-year p {
  /* position: absolute; */
  padding-top: 10px;
  line-height: 0;
  color: #000;
  font-size: 35px;
  font-weight: 500;
  transform: scale(0.4);
  z-index: 2;
}

.time-line .date .date-year:after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #000;
  bottom: 100%;
  margin-bottom: -7px;
  border-radius: 50%;
  transform: scale(0.4);
  transition: 500ms all;
}

.time-line .date .date-year:before {
  content: "";
  position: absolute;
  top: 0;
  width: 200%;
  height: 1px;
  background-color: #e53824;
}

/* SIBLING DATE */
.time-line .date.sibling .date-year {
  opacity: 0.6;
}

.time-line .date.sibling .date-year:after {
  transform: scale(0.8);
}

.time-line .date.sibling .date-year p {
  transform: scale(0.6);
}

/* ACTIVE DATE */
.time-line .date.active + .date .date-year {
  opacity: 0.6;
}

.time-line .date.active + .date .date-year:after {
  transform: scale(0.8);
}

.time-line .date.active + .date .date-year p {
  transform: scale(0.6);
}

.time-line .date.active .date-year {
  opacity: 1;
}

.time-line .date.active .date-year:before {
  width: calc(200% - 11px);
}

.time-line .date.active .date-year:after {
  transform: scale(1);
}

.time-line .date.active .date-year p {
  transform: scale(1.2);
}

.time-line .date.active .date-content {
  transform: scale(1);
  visibility: visible;
}

.time-line .date.active .date-content:after {
  transition-delay: 200ms;
  opacity: 1;
  transform: scaleY(1);
}

.time-line .date.active .date-content div {
  /* transition-delay: 200ms; */
  opacity: 1;
  transform: translateY(0px) scale(1);
}

/* ===========================TIMELINE PAGE=================================== */

/* --------------------------------------- */
/* STEP NAVIGATION DOTS (Mobile + Tablet)  */
/* --------------------------------------- */

.step-nav {
  width: 100% !important;
  margin-top: 25px !important;
  display: none !important;
  justify-content: center !important;
  gap: 12px !important;
}

.step-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: #bdbdbd !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.step-dot.active {
  background: #000 !important;
  transform: scale(1.25) !important;
}

/* ===========================Product PAGE=================================== */
/* HERO */
.product-hero {
  position: relative;
  padding: 200px 0 100px;
  margin: 0 !important;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/unique-laminate.jpg") top/cover no-repeat;
}

.product-hero .sub-headline {
  font-size: 20px !important;
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.product-hero .sub-headline:hover {
  color: #f3f3f3;
}

.product-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}

  /* product-list 2 */

  .new-products-page {
    padding: 100px 0;
    background: #fff;
  }

  .new-product-layout {
    display: flex;
    margin: 0 50px;
    gap: 30px;
    align-items: flex-start;
  }

  /* ==============================
   LEFT SIDEBAR
================================= */
  .left-filter-panel {
    width: 320px;
    background: #fff;
    /* border-radius: 6px; */
    padding: 18px 15px 5px;
    /* box-shadow: 0px 5px 1px rgba(0, 0, 0, 0.08); */
    border: 1px solid #dfdfdf;
    position: sticky;
    top: 20px;
  }

  /* Search Box */
  /* Search Wrapper */
  .sidebar-search-wrapper {
    position: relative;
    width: 100%;
  }

  /* SEARCH INPUT */
  .sidebar-search-wrapper input {
    width: 100%;
    border: 1px solid #bfbfbf;
    border-radius: 4px;
    padding: 8px 35px 8px 10px;
    font-size: 14px;
    outline: none;
  }

  .sidebar-search-wrapper input:focus {
    border-color: #111;
  }

  /* SEARCH ICON RIGHT SIDE */
  .sidebar-search-wrapper .search-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    color: #999;
    pointer-events: none;
  }

  /* CLEAR (X) BUTTON */
  .sidebar-search-wrapper .clear-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    padding: 0 4px;
    cursor: pointer;
    display: none;
    /* default hidden */
    font-weight: bold;
    color: #777;
  }

  .sidebar-search-wrapper .clear-btn:hover {
    color: #e53824 !important;
  }


  /* ==============================
   FILTER BLOCKS
================================= */
  .filter-block {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    /* margin-bottom: 10px; */
    padding: 5px;
  }

  .filter-block:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }


  .filter-title {
    /* background: #22; */
    color: #000;
    padding: 5px 2px;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }


  .filter-title .arr {
    font-size: 18px;
    font-weight: 600;
  }

  .filter-body {
    display: none;
    padding: 8px 10px 5px;
  }

  .filter-body.open {
    display: block;
  }

  /* Filter Checkbox Options */
  .filter-body label {
    display: flex;
    align-items: center;
    font-size: 14px;
    cursor: pointer;
    margin-bottom: 6px;
  }

  .filter-body input {
    margin-right: 10px;
  }

  /* ==============================
   RIGHT PRODUCT GRID
================================= */
  .right-product-list {
    flex: 1;
  }

  #productGrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    /* padding: 10px 0; */
  }
  .product-l a{
    color: #000;
  }

  .product-l a:hover{
    color: #000;
  }

  #paginationContainer {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding: 20px 0;
  }

  .p-btn {
    padding: 6px 14px;
    border: 1px solid #ccc;
    background: #fff;
    cursor: pointer;
    /* border-radius: 6px; */
  }

  .p-btn.active {
    background: #e53824;
    border-color: #e53824;
    color: #fff;
  }

  .p-btn:disabled {
    opacity: .4;
    pointer-events: none;
  }
.filter-buttons-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 10px;
}
.delete-btn {
  display: none;
  background: #e53824;
  color: #fff;
  border: 1px solid #e53824;
  padding: 5px 10px;
  /* border-radius: 6px; */
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  transition: all .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.delete-btn i {
  font-size: 15px;
}

.delete-btn:hover {
  background: #fff;
  color: #e53824;
  border-color: #e53824;
  transform: translateY(-2px);
}

.delete-btn:active {
  transform: translateY(0);
}

/****** KEYWORD STORAGE BOX****/
#keywordStorage {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding-top: 10px;
}

.stored-key {
  padding: 5px 12px;
  background: #f4f4f4;
  border-radius: 20px;
  border: 1px solid #c9c9c9;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.stored-key i {
  cursor: pointer;
  color: #333;
  font-weight: bold;
}

.stored-key i:hover {
  color: red;
}
.mobile-filter-btn {
    display: none;
}


/* overlay behind sidebar */
.mobile-overlay {
  display: none;
  position: fixed;
  background: rgba(0,0,0,0.4);
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 9998;
}

.left-filter-panel {
  transition: left 0.35s ease;
}

/* ===========================Product PAGE=================================== */

/* ===========================Product Detail PAGE=================================== */
/* HERO */
.pro-detail-hero {
  position: relative;
  padding: 200px 0 100px;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/collection-view/9307.jpg") center/cover no-repeat;
  margin: 0 !important;
}

.pro-detail-hero .sub-headline {
  font-size: 20px !important;
  /* font-weight: 700; */
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.pro-detail-hero .sub-headline :hover {
  color: #fff;
}
.pro-detail-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}

/* hero  */

/* PRODUCT DETAIL SECTION */
.product-detail-sect {
  padding: 100px 0;
  background: #fff;
}

/* Left Image Display Box */
.product-detail-sect-img-display {
  width: 100%;
  overflow: hidden; /* 🔥 ensures only 1 image is visible */
  border: 1px solid #e4e4e4;
  background: #fff;
}

/* Slider Wrapper */
.product-detail-sect-showcase-wrapper {
  display: flex; /* Images arrange in a row */
  transition: transform 0.5s ease;
  width: 100%;
  height: 500px;
}

/* Each Slide */
.product-detail-sect-showcase-wrapper .slide {
  min-width: 100%;
  /* display: flex; */
  justify-content: center;
  align-items: center;
}

/* Slide Images */
.product-detail-sect-showcase-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
}

/* ================================
   THUMBNAILS SECTION
================================ */
.product-detail-sect-thumb-list {
  margin-top: 12px;
  display: flex;
  /* display: grid;
  grid-template-columns: repeat(4, 1fr); */
  gap: 10px;
}

.product-detail-sect-thumb-item {
  border: 1px solid #e4e4e4;
  cursor: pointer;
  /* padding: 4px; */
  background: #fff;
}

.product-detail-sect-thumb-item img {
  width: 100%;
  height: 100px;
  object-fit: contain;
  border: 2px solid transparent;
}

.product-detail-sect-thumb-item img.active-thumb {
  border-color: #000; /* Active border color */
  opacity: 1; /* Full visibility */
}

.product-detail-sect-thumb-item:hover img {
  opacity: 0.7;
  border-color: #555;
}

/* ================================
   RIGHT SIDE PRODUCT CONTENT
================================ */
.product-detail-sect-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* align-items: center; */
  gap: 1.5rem;
}

.product-detail-sect-content {
  padding: 1.5rem 2rem;
  height: max-content;
  border: 1px solid #e4e4e4;
  background: #fff;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); soft premium shadow */
  transition: box-shadow 0.2s ease;
}

.like {
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* TITLE + LIKE BUTTON WRAP */
.pd-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eee;
}

/* PRODUCT TITLE */
.product-title {
  font-size: 32px;
  font-weight: 500;
  /* letter-spacing: 0.5px; */
  color: #222;
}

/* LIKE ICON */
.like-btn {
  font-size: 30px;
  cursor: pointer;
  transition: 0.2s ease;
}

.like-btn.liked {
  color: #ff3b3b;
}

/* SECTION TITLES (Description, Characteristics) */
.detail-sub-title {
  font-size: 22px;
  font-weight: 400;
  padding-top: 25px;
  padding-bottom: 10px;
  color: #111;
  letter-spacing: 0.3px;
}

/* PRODUCT DESCRIPTION */
.product-desc {
  font-size: 16px;
  padding-top: 10px;
  margin: 0;
  color: #444;
  line-height: 1.6;
}

/* CHARACTERISTICS TABLE */
.char-table-inner {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background: #fff;
}

.char-table-inner tr {
  border-bottom: 1px solid #dcdcdc;
}

.char-table-inner tr:last-child {
  border-bottom: none;
}

.char-table-inner th {
  text-align: left;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.char-table-inner th img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* border: 1px solid #dcdcdc; */
  object-fit: none;
}
.char-table-inner td {
  text-align: right;
  padding: 12px 0;
  font-size: 16px;
  color: #444;
}
.char-table-inner td img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #dcdcdc;
  object-fit: none;
}
/* BEAUTIFUL SPACING */
.product-detail-right {
  padding: 10px;
}

/* .related-products-section */

.related-products-section {
  padding: 0 0 100px;
  background: #fff;
}

.rp-header h2 {
  font-size: 55px;
  font-weight: 500;
  color: #222;
}

.related-products-wrapper {
  padding-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after{
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
}

/* ===========================Product Detail PAGE end=================================== */

 /* specification-page */

/* HERO */
.specification-hero {
  position: relative;
  padding: 200px 0 100px;
  color: #fff;
  text-align: center;
  background: linear-gradient(rgba(104, 104, 104, 0.1), rgba(10, 9, 9, 0.6)),
    url("../img/banner/specification.jpg") center/cover no-repeat;
    margin: 0 !important;
}

.specification-hero .sub-headline {
  font-size: 20px !important;
  /* font-weight: 700; */
  letter-spacing: 1px;
  color: #fff;
  text-transform: capitalize;
}
.specification-hero .sub-headline :hover {
  color: #fff;
}
.specification-hero .main-head {
  font-size: 55px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
}
/* hero  */

.specification-table{
    padding: 100px 0;
}
.spec-table {
    width: 100%;
  border-collapse: collapse;
  /* border-radius: 10px; */
  overflow: hidden;
  /* box-shadow: 0 4px 10px rgba(0,0,0,0.08); */
}

.spec-table thead tr {
  background: #e53824;
  color: white;
}

.spec-table th {
  padding: 14px;
  text-align: center;
  font-weight: 500;
    border: 1px solid #eee;
  font-size: 18px;
  color: #fff;
}

.spec-table td {
  padding: 14px;
  /* border-top: none; */
    border: 1px solid #eee;
  font-size: 16px;
  /* text-align: center; */
  color: #444;
  vertical-align: top;
}

.spec-table td:first-child {
  text-align: end;
}

.spec-check {
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.spec-table tbody tr:hover {
  background: #fff8f8ff;
  transition: 0.3s ease;
}

.specification-keywords{
  padding: 0 0 100px;
}

.keywords-wrapper {
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 20px;
padding-top: 50px;
}

.keyword-card {
  padding: 20px; 
  transition: 0.3s ease;
  /* border: 1px solid #c0c0c0ff; */
}


.icon-wrap {
  width: 80px;
  height: 80px;
  background: #f4f4f4;
  border-radius: 50%;
  margin: 0 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrap img {
  width: 50px;
  height: 50px;
  filter: invert(24%) sepia(92%) saturate(7437%) hue-rotate(0deg) brightness(80%) contrast(118%);
}

.red-icon {
  fill: #e53824;
}

.keyword-card p {
  font-size: 16px;
  /* font-weight: 400; */
  color: #444;
  margin: 0;
}
 /* specification-page */





.features-keywords{
  padding: 0 0 100px;
}
.features-title{
  font-size: 55px;
  text-align: center;
  font-weight: 500;
  padding-bottom: 10px;
}
.features-wrapper {
display: grid;
grid-template-columns: repeat(5,1fr);
/* gap: 20px; */
}

.feature-card {
  padding: 20px; 
  transition: 0.3s ease;
  /* border: 1px solid #ccc; */
}


.feature-icon {
  width: 80px;
  height: 80px;
  /* background: #f4f4f4; */
  /* border-radius: 50%; */
  margin: 0 auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-icon img {
  width: 50px;
  height: 50px;
  filter: invert(24%) sepia(92%) saturate(7437%) hue-rotate(0deg) brightness(80%) contrast(118%);
}

.red-icon {
  fill: #e53824;
}

.feature-card h4 {
  font-size: 18px;
  /* font-weight: 400; */
  text-align: center;
  text-transform: capitalize;
  /* letter-spacing: 2px; */
  margin: 0;
  /* margin-bottom: 5px; */
}

.quality-sec{
  padding-top: 100px;
}
.quality-sec h2{
    color: var(--color);
    font-size: var(--section-heading);
    text-align: center;

}
.sustainability{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
  align-items: center;
  padding-top: 30px;
}
.enviremont{
  padding-bottom: 50px;
}
.sustain-img img{
  width: 100%;
}
.sustainability h2{
  color: var(--color);
    font-size: var(--section-heading);
}
.specification-table h2{
  color: var(--color);
    font-size: var(--section-heading);
    padding-bottom: 25px;
}
.keywords-title{
  color: var(--color);
    font-size: var(--section-heading);
}

.experience-grow{
  padding: 80px 0;
}
.exper-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  /* gap: 50px; */
  align-items: center;
}
.exper-img img{
  width: 100%;
}
.experience-data{
  padding-left: 50px;
}
.experience-datas{
  padding-right: 50px;
}
.flex-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 50px;
  align-items: center;
  padding-top: 25px;
}
.ul-flex-end{
      display: grid;
      grid-template-columns: repeat(3,1fr);
      gap: 10px;
    /* justify-content: end; */
}
.ul-flex-end{
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}
.ul-flex-end li{
  font-size: 17px;
}