/* Googlefont Poppins CDN Link */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: "Nunito Sans", sans-serif; */
}
body {
    font-family: "Nunito Sans", sans-serif;
  
}
h1{
    font-size: 72px;
    font-weight: 700;
    font-family: "Nunito Sans", sans-serif;

}
h2{
    font-size: 48px;
    font-weight: 700;
    font-family: "Nunito Sans", sans-serif;


}
h3{
    font-size: 32px;
    font-family: "Nunito Sans", sans-serif;

}
p{
    font-size: 18px;
    color: #636363;
    font-family: "Nunito Sans", sans-serif;
    
}
h4{
    font-family: "Nunito Sans", sans-serif;

}
li{
  
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 70px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  z-index: 99;
}
nav .navbar {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  /* background: red; */
  padding: 0px;
}
.navbar .logo a {
  font-size: 30px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}
.logo img{
    width: 150px;
}
nav .navbar .nav-links {
  line-height: 70px;
  height: 100%;
}
nav .navbar .links {
  display: flex;
  margin-bottom: 0;
}
nav .navbar .links li {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  padding: 0 14px;
}
nav .navbar .links li a {
  height: 100%;
  text-decoration: none;
  white-space: nowrap;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.links li:hover .htmlcss-arrow,
.links li:hover .js-arrow {
  transform: rotate(180deg);
}

nav .navbar .links li .arrow {
  /* background: red; */
  height: 100%;
  width: 22px;
  line-height: 70px;
  text-align: center;
  display: inline-block;
  color: #000;
  transition: all 0.3s ease;
}
nav .navbar .links li .sub-menu {
  position: absolute;
  top: 70px;    
  left: 0;
  line-height: 40px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 4px 4px;
  display: none;
  z-index: 2;
  padding-left: 0;
}
nav .navbar .links li:hover .htmlCss-sub-menu,
nav .navbar .links li:hover .js-sub-menu {
  display: block;
}
.navbar .links li .sub-menu li {
  padding: 0 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  width: 200px;
}
.navbar .links li .sub-menu a {
  color: #000;
  font-size: 15px;
  font-weight: 500;
}
.navbar .links li .sub-menu .more-arrow {
  line-height: 40px;
}
.navbar .links li .htmlCss-more-sub-menu {
  /* line-height: 40px; */
}
.navbar .links li .sub-menu .more-sub-menu {
  position: absolute;
  top: 0;
  left: 100%;
  border-radius: 0 4px 4px 4px;
  z-index: 1;
  display: none;
}
.links li .sub-menu .more:hover .more-sub-menu {
  display: block;
}
.navbar .search-box {
  position: relative;
  height: 40px;
  width: 40px;
}
.navbar .search-box i {
  position: absolute;
  height: 100%;
  width: 100%;
  line-height: 40px;
  text-align: center;
  font-size: 22px;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.navbar .search-box .input-box {
  position: absolute;
  right: calc(100% - 40px);
  top: 80px;
  height: 60px;
  width: 300px;
  background: #3e8da8;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s ease;
}
.navbar.showInput .search-box .input-box {
  top: 65px;
  opacity: 1;
  pointer-events: auto;
  background: #3e8da8;
}
.search-box .input-box::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  background: #3e8da8;
  right: 10px;
  top: -6px;
  transform: rotate(45deg);
}
.search-box .input-box input {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  transform: translate(-50%, -50%);
  height: 35px;
  width: 280px;
  outline: none;
  padding: 0 15px;
  font-size: 16px;
  border: none;
}
.navbar .nav-links .sidebar-logo {
  display: none;
}
.navbar .bx-menu {
  display: none;
}
@media (max-width: 920px) {
  nav .navbar {
    max-width: 100%;
    padding: 0 25px;
  }

  nav .navbar .logo a {
    font-size: 27px;
  }
  nav .navbar .links li {
    padding: 0 10px;
    white-space: nowrap;
  }
  nav .navbar .links li a {
    font-size: 15px;
  }
}
@media (max-width: 800px) {
  nav {
    /* position: relative; */
  }
  .navbar .bx-menu {
    display: block;
  }
  nav .navbar .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    display: block;
    max-width: 270px;
    width: 100%;
    background: #fff;
    line-height: 40px;
    padding: 20px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.5s ease;
    z-index: 1000;
  }
  .navbar .nav-links .sidebar-logo {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sidebar-logo .logo-name {
    font-size: 25px;
    color: #fff;
  }
  .sidebar-logo i,
  .navbar .bx-menu {
    font-size: 25px;
    color: #000000;
  }
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
  }

  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    transform: rotate(180deg);
  }
  .navbar .nav-links.show2 .links .more-arrow {
    transform: rotate(90deg);
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}

.slider-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-1;
}
.slide-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.52),
      rgba(0, 0, 0, 0.52));
    z-index: -1;
}
.slide-inner{
    position:relative;
    height:100vh;
    overflow:hidden;
}
.containers {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    gap: 20px;
}
.banner-vid-sec {
    color: #fff;
}
.theme-btn-s2{
    font-size: 20px;
    border: 1px solid #fff;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 10px;
    transition: all .5s ease-in-out;
}
.theme-btn-s2:hover{
    font-size: 20px;
    border: 1px solid #c93429;
    color: #fff;
    padding: 8px 20px;
    text-decoration: none;
    border-radius: 10px;
    background-color: #c93429;
    transition: all .5s ease-in-out;

}

.insta-slider-wrapper{
    position:relative;
    padding:40px 0;
}

.insta-slider{
    display:flex;
    gap:20px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.insta-slide{
    min-width: 400px;
    height: 250px;
    border-radius:20px;
    overflow:hidden;
    position:relative;
    cursor:pointer;
}

.insta-slide img{
    width:100%;
    height:100%;
    object-fit:fill;
    transition:.5s;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:.4s;
}
.slide-text p{
  color: #fff;
}
.overlay i{
    color:#fff;
    font-size:38px;
    transform:scale(.5);
    transition:.4s;
}

.insta-slide:hover img{
    transform:scale(1.1);
}

.insta-slide:hover .overlay{
    opacity:1;
}

.insta-slide:hover .overlay i{
    transform:scale(1);
}

/* NAV BUTTON */
.nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:#000;
    color:#fff;
    border:none;
    padding:12px 15px;
    cursor:pointer;
    border-radius:50%;
}

.prev{ left:0; }
.next{ right:0; }







.footer-section{
    background-color: #000;
    padding: 60px 0 20px;
    color: #fff;
    position: relative;
}
.footer-section p{
  color: #fff;
}
.footer-newsleter{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 25px;
    align-items: center;
}
.logo-sec{
    max-width: 400px;
}
.logo-sec img{
    width: 200px;
    padding-bottom: 20px;
}
.inps{
    display: flex;
    gap: 5px;
}
.subscribe-mail{
    background-color: #c93429;
    padding: 5px 25px;
    color: #fff;
    border: 1px solid #c93429;
    border-radius: 5px;
    text-decoration: none;
}
.footer-copyright{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 15px;
    align-items: center;
    border-top: 1px solid #686868;
    padding: 20px 0;
    
}

.footer-copyright span{
  color: #c93429;
}
.footer-copyright a{
  color: #c93429;
  text-decoration: none;
  font-weight: 700;
}
.footer-copyright p{
  color: #fff;
  text-decoration: none;
}
.social-icon a{
    color: #fff;
    background-color: #c93429;
    padding: 8px 10px;
    border-radius: 30px;
    border: 1px solid #c93429;
    transition: all .5s ease-in-out;
}
.social-icon a:hover{
    color: #fff;
    background-color: transparent;
    padding: 8px 10px;
    border: 1px solid #fff;
    transition: all .5s ease-in-out;
    border-radius: 30px;
}
.social-icon{
    display: flex;
    justify-content: end;
    gap: 5px;
}
.footer-menu-grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    padding: 60px 0 40px;
}
.menu-footer ul{
    list-style-type: none;
    padding-left: 0;
}
.menu-footer h4{
    color: #6b6b6b;
    margin-bottom: 15px;
    font-weight: 600;
    font-size: 22px;
}
.menu-footer a{
    text-decoration: none;
    color: #fff;
    padding-bottom: 5px;
}
.company-info{
    display: flex;
    flex-direction: column;
    gap: 15px !important;
}
.menu-footer ul{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.menu-footer ul li a {
    position: relative;
    text-decoration: none;
    display: inline-block;
    padding-bottom: 4px;
}

.menu-footer ul li a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #c93429; /* change color */
    transition: width 0.5s ease;
}

.menu-footer ul li a:hover::after {
    width: 100%;
    
}



.about-hero{
    background:#f9f9f9;
    padding:0px 0 60px;
}

.about-grid{
    display:flex;
    gap:100px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:0px;
}

.about-image{
    width:50%;
}

.about-content{
    width:50%;
    padding-right: 150px;
}

.tag{
    letter-spacing:3px;
    font-size:16px;
    color:#414141;
    text-transform: capitalize;
}

.about-content h2{
    margin:15px 0;
    line-height:1.2;
    font-weight: 700;
}


.cta-btn{
    display:inline-block;
    border:1px solid #c93429;
    color:#c93429;
    padding:6px 25px;
    border-radius:30px;
    text-decoration:none;
    margin:10px 0 30px;
    transition:.3s;
    font-size: 20px;
}

.cta-btn:hover{
    background:#c93429;
    color:#fff;
}

.small-info h4{
    margin-bottom:15px;
    font-weight: 600;
}


/* FEATURES */
.about-features{
    display:flex;
    justify-content:space-between;
    margin-top:80px;
}

.feature{
    display:flex;
    align-items:center;
    gap:0px;
}

.number{
    font-size:100px;
    color:#c93429;
    font-weight:bold;
}

.feature h5{
        font-size: 22px;
    font-weight: 600;
}

.about-section{
    padding: 60px 0;
}
.about-grids{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 50px;
    align-items: center;
}
.about-img img{
    width: 100%;
        filter: drop-shadow(0px 0px 4px #777777);
}
.about-content-d h2{
    font-weight: 700;
    margin: 15px 0;
}
.about-content-d span{
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 16px;
    color: #414141;
    margin-bottom: 10px;
}

.panel-section{
    background:#f9f9f9;
    padding:60px 0;
    text-align:center;
}

.panel-section-four{
     background:#f9f9f9;
    padding:60px 0;
    text-align:center;
}

.sec-title{
    font-size:42px;
    margin-bottom:15px;
    font-weight: 700;
}

.sec-desc{
    color:#777;
    margin:0 auto 60px;
    line-height:1.7;
}

.panel-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.panel-card{
    background:#fff;
    padding:10px;
    border-radius:20px;
    /* transition:.4s; */
    opacity:0;
    transform:translateY(60px);
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition: .5s ease-in-out;
}

.panel-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 40px rgba(0,0,0,.12);
    transition: .5s ease-in-out;

}


.panel-card h4{
    font-size:16px;
    margin-bottom:5px;
}

.panel-card span{
    color:#777;
}

.center-btn{
    margin-top:50px;
}

.explore-btn{
    border:1px solid #e53935;
    color:#e53935;
    padding:12px 28px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.explore-btn:hover{
    background:#e53935;
    color:#fff;
}
.img-box{
    position:relative;
    background:#f1f1f1;
    padding:25px;
    border-radius:15px;
    height:35vh;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
        margin-bottom: 20px;
}

/* Both images */
.img-box img{
    position:absolute;
    height:40vh;
    transition:.8s ease;
}

/* default image */
.img-front{
    opacity:1;
    transform:scale(1);
}

/* hover image */
.img-hover{
    opacity:0;
    transform:scale(1.2);
}

/* ON HOVER */
.panel-card:hover .img-front{
    opacity:0;
    transform:scale(.8);
        transition:.8s ease;

}

.panel-card:hover .img-hover{
    opacity:1;
    transform:scale(1);
    transition:.8s ease;

}

.img-box img{
    position:absolute;
    /* height:160px; */
    transition:
        opacity .6s cubic-bezier(.4,0,.2,1),
        transform .6s cubic-bezier(.4,0,.2,1);
    will-change: transform, opacity;
}

/* Default image */
.img-front{
    opacity:1;
    transform: scale(1) translateY(0);
}

/* Hover image */
.img-hover{
    opacity:0;
    transform: scale(1.15) translateY(15px);
}

/* Hover Animation */
.panel-card:hover .img-front{
    opacity:0;
    transform: scale(.9) translateY(-15px);
}

.panel-card:hover .img-hover{
    opacity:1;
    transform: scale(1) translateY(0);
}


header,
main {
  /* width: 80vw; */
  margin: 0 auto;
}

header {
  /* height: 35vh; */
  display: grid;
  place-items: center;
  /* margin-bottom: 80px; */
  text-align: center;
}

#cards {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(var(--numcards), var(--card-height));
  gap: var(--card-margin);
  padding-bottom: calc(var(--numcards) * var(--card-top-offset));
  margin-bottom: 50px;
  margin-top: -70px;
}

#card-1 {
  --index: 1;
}

#card-2 {
  --index: 2;
}

#card-3 {
  --index: 3;
}

#card-4 {
  --index: 4;
}

.card {
  position: sticky;
  top: 100px;
  padding-top: calc(var(--index) * var(--card-top-offset));
  border: none;
      border-radius: 2rem;
          margin-bottom: 25px;
}

.card-content {
  box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.1), 0 1em 2em rgba(0, 0, 0, 0.1);
  background: #ffffff;
  color: #131212;
  border-radius: 2rem;
  overflow: hidden;
  display: grid;
  grid-template-areas: "text img";
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
  align-items: stretch;
  padding: 0;
}

.card-content > div {
  grid-area: text;
  width: 80%;
  max-width: 800px;
  place-self: center;
  text-align: left;
  display: grid;
  gap: 1em;
  place-items: start;
}

.card-content > figure {
  grid-area: img;
  overflow: hidden;
  margin-bottom: 0;
}

.card-content > figure > img {
  width: 100%;
  height: 100%;
  object-fit: none;
  border-radius: 0px;
  margin-bottom: 0;

}

/* h1 {
  font-weight: 300;
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: "Cormorant Garamond", serif;
}

h2 {
  font-weight: bold;
  font-size: 2.5rem;
  font-family: "Cormorant Garamond", serif;
  margin: 0;
}

p {
  font-weight: 300;
  line-height: 1.42;
  font-size: 1.1rem;
} */

/* Animation */
@supports (animation-timeline: works) {
  @scroll-timeline cards-element-scrolls-in-body {
    source: selector(body);
    scroll-offsets: selector(#cards) start 1, selector(#cards) start 0;
    start: selector(#cards) start 1;
    end: selector(#cards) start 0;
    time-range: 4s;
  }

  .card {
    --index0: calc(var(--index) - 1);
    --reverse-index: calc(var(--numcards) - var(--index0));
    --reverse-index0: calc(var(--reverse-index) - 1);
  }

  .card__content {
    transform-origin: 50% 0%;
    will-change: transform;

    --duration: calc(var(--reverse-index0) * 1s);
    --delay: calc(var(--index0) * 1s);

    animation: var(--duration) linear scale var(--delay) forwards;
    animation-timeline: cards-element-scrolls-in-body;
  }

  @keyframes scale {
    to {
      transform: scale(calc(1.1 - calc(0.1 * var(--reverse-index))));
    }
  }
}

.card{
  position: sticky;
  border-radius: 2rem;
  margin-bottom: 25px;
}

/* Each card top offset (10px gap stacking) */

#card-1{
  top:100px;
}

#card-2{
  top:120px;
}

#card-3{
  top:140px;
}

#card-4{
  top:160px;
}
.application{
  background: #c93429;
  height: 45vh;
}
.application h2{
  color: #fff;
  padding-bottom: 20px  ;
}
.application p{
  color: #fff;
}
#cards h2{
  font-weight: 700;
  font-size: 36px;
}
.why-section{
    padding:80px 80px 0;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#fff;
    padding:25px;
    border-radius:14px;
    position:relative;
    transition:.4s;
    /* border:1px solid #eee; */
}

.why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

.why-number{
font-size: 152px;
    font-weight: 700;
    color: #ffa8a1;
    opacity: .10;
    position: absolute;
    top: 0px;
    right: 0px;
    font-family: "Libre Baskerville", serif;
}

.why-card h3{
    font-size:25px;
    margin-bottom:12px;
    color:#222;
    font-weight: 700;
}

.why-card p{
    color:#666;
    line-height:1.6;
    /* font-size:15px; */
}
.pro-des{
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
.after-before{
  padding: 50px 0;
}
.slider-container {
  margin: 0 auto;
  /* margin-top: 5rem; */
  position: relative;
  /* width: 100%;
  max-width: 100%; */
  height: 72vh;
  border-radius: 0.7rem;
  overflow: hidden;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  overflow: hidden;
}

/* Styling the Before/After text */
.before-text,
.after-text {
  position: absolute;
  font-size: 14px;
      font-weight: 600;
    color: #ffffff;
    z-index: 4;
    padding: 10px 20px;
    background-color: #c93429;
  border-radius: 0.3rem;
  letter-spacing: 2px;
  transition: opacity 0.3s ease-in-out;
}

/* Before text */
.before-text {
  left: 20px; /* Position text to the left */
  top: 20px;
  z-index: 5;
}

/* After text */
.after-text {
  right: 20px; /* Position text to the right */
  top: 20px;
  z-index: 3;
}

/* Hide the After text initially */
.after-image .after-text {
  visibility: visible;
  z-index: 3;
}

.after-image {
  clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  z-index: 1;
}
.pulse-container {
  position: relative;
  display: inline-block;
}

.pulse-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px; /* Larger than the SVG */
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff; /* Color of the pulse */
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.slider-line svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
}
/* Prevent text/image selection while dragging */
.slider-container,
.before-image img,
.after-image img {
  user-select: none; /* Disable selection on most browsers */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+ */
  width: 100%;
}

.slider-handle,
.slider-line {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}


.heading {
    line-height: 1.2;
    max-width: 1100px;
    margin-bottom: 50px;
}

.section {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT CONTENT */
.left {
    flex: 1;
}
.left h4{
  font-weight: 700;
  margin-bottom: 15px;
}
.list {
    margin-top: 20px;
    padding-left: 15px;
}

.list li {
    list-style: none;
    margin-bottom: 10px;
}

.list li::before {
    content: "✔";
    color: #c93429;
    margin-right: 10px;
}

.btn {
    margin-top: 20px;
    display: inline-block;
    background: #c93429;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
}

/* CENTER IMAGE */
.center {
    flex: 1;
}

.center img {
    width: 100%;
    border-radius: 4px;
    height: 60vh;
    object-fit: cover;
    object-position: left;
        background: #f5f5f5;
    padding: 10px;
}

/* RIGHT SIDE */
.right {
    flex: 1;
}

.top-img img {
   width: 100%;
    margin-bottom: 20px;
    height: 45vh;
    object-fit: cover;
    position: absolute;
    right: -30px;
    width: inherit;
    z-index: -1;
    top: 105px;
    background: #f5f5f5;
    padding: 10px;
}

.years {
    display: flex;
    align-items: end;
    gap: 20px;
    position: absolute;
    bottom: 50px;
}

.years h1 {
    font-size: 75px;
    color: #c93429;
    margin: 0;
    font-family: "Libre Baskerville", serif;

}

/* .years p {
    font-size: 14px;
    color: #555;
} */

/* Responsive */
@media(max-width: 900px) {
    .section {
        flex-direction: column;
    }
}
.about-main{
    padding: 100px 0;
        margin-top: 40px;
}

.cta-btn-rev{

    display:inline-block;
    border:1px solid #c93429;
    color:#fff;
    background:#c93429;

    padding:6px 25px;
    border-radius:30px;
    text-decoration:none;
    margin:10px 0 30px;
    transition:.3s;
    font-size: 20px;
    margin-top: 20px;

}

.cta-btn-rev:hover{
    background:#fff;
    color:#c93429;
}

.main-about-sec {
    display: flex;
    /* max-width: 1200px;
    margin: 50px auto; */
    gap: 40px;
}

/* LEFT ACCORDION */
.accordion {
    flex: 1;
}

.item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
}

.item-header {
    padding: 18px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
}

.item.active .item-header {
    color: #e53935;
}

.item-content {
    display: none;
    padding: 15px 18px;
    font-size: 18px;
    line-height: 1.6;
    color: #636363;

}

.item.active .item-content {
    display: block;
}

/* RIGHT IMAGE */
.image-box {
    flex: 1;
}

.image-box img {
    width: 100%;
    border-radius: 5px;
    transition: 0.3s;
}

/* ARROW */
.arrow {
    transition: 0.3s;
}

.item.active .arrow i{
    transform: rotate(180deg);
}
.tab-section{
  padding: 80px 0 80px;
  background-color: #f5f5f5;
}
.tab-section h2{
  text-align: center;
}
.tab-section p{
  padding-bottom: 25px;
  text-align: center;
}

.vision-mision {
    padding: 60px 20px;
    text-align: center;
}
.grid-v {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding-top: 35px;
}

.cards-v {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    transition: 0.3s;
    border-top: 4px solid #c93429;
    border-bottom: 2px solid #c93429;
    border-right: 6px solid #c93429;
    border-left: 1px solid #c93429;
}

.cards-v:hover {
    transform: translateY(-5px);
}

.vision-mision{
  padding: 60px 0;
  text-align: center;
}
.cards-v img{
  width: 80px;
  padding-bottom: 25px;
}
.stats-container {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 30px auto;
  padding: 30px 0px 0;
}

.stats-container .stat {
  background: #fff;
  padding: 24px;
  text-align: center;
  color: #000;
  border-radius: 10px;
  font-family: "Libre Baskerville", serif !important;
}

.stats-container .stat .odometer {
  font-size: 68px;
  font-weight: 700;
  /* display: inline-block; */
  font-family: "Libre Baskerville", serif !important;

}

.stats-container .stat .type {
  font-size: 20px;
    font-family: "Nunito Sans", sans-serif;

}

.odometer.plus {
  position: relative;
}

.odometer.plus::after {
  content: "+";
  position: absolute;
  top: 0;
  right: -16px;
  font-size: 20px;
}

@media (max-width: 700px) {
  .stats-container {
    grid-template-columns: 1fr;
  }
}
.odometer.odometer-auto-theme .odometer-digit, .odometer.odometer-theme-default .odometer-digit {
    display: -moz-inline-box;
    -moz-box-orient: vertical;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    width: 48px;
}

.why-section {
    padding: 80px;
    background-color: #f5f5f5;
}

/* LEFT SIDE */
.why-left {
    width: 35%;
}

.why-left h2 {
    color: #000;
    margin-bottom: 20px;
}

.why-left p {
    line-height: 1.6;
}

.divider {
    width: 60px;
    height: 3px;
    background: #000000;
    margin: 20px 0;
}

/* RIGHT SIDE */
.why-right {
    width: 65%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.card-why {
    background: #fff;
    padding: 20px;
    border-radius: 14px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

/* creative offset layout */
/* .card-why:nth-child(2) {
    margin-top: 40px;
}
.card-why:nth-child(4) {
    margin-top: 40px;
} */

/* hover effect */
.card-why:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* icon circle */
.icon-box {
    width: 55px;
    height: 55px;
    /* background: rgba(200,155,60,0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 15px;
}

.icon-box img {
    /* color: #c93429;
    font-size: 22px; */
    width: 70px;
}

.card-why h3 {
    margin: 10px 0
}

.card-why p {
  
    line-height: 1.6;
    font-size: 17px;
}

/* subtle gradient overlay */
.card-why::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(200,155,60,0.05));
    top: 0;
    left: 0;
    opacity: 0;
    transition: 0.3s;
}

.card-why:hover::after {
    opacity: 1;
}
.why-choose-s{
    display: flex;
    gap: 60px;
    align-items: flex-start;
}
/* Responsive */
@media(max-width: 992px){
    .why-section {
        flex-direction: column;
    }

    .why-left,
    .why-right {
        width: 100%;
    }

    .why-right {
        grid-template-columns: 1fr;
    }

    .card-why:nth-child(2),
    .card-why:nth-child(4) {
        margin-top: 0;
    }
}

.footer-icon{
    position: absolute;
    width: 100px;
    bottom: 20px;
    left: 20px;
    filter: invert(0.666);
}
.footer-icon-r{
    position: absolute;
    width: 100px;
    bottom: 20px;
    right: 20px;
    filter: invert(0.666);
        top: 28px;
    transform: rotate(270deg);
}

:root {
  --page-bg: #ffffff;
  --card-bg: #f6f6f6;
  --text-main: #0d0d0d;
  --border-color: #e5e5e5;
  --radius: 16px;
  --padding: 24px;
  --transition: 0.22s ease-out;
}

.faq-section {
  padding: 80px 0px ;
  margin-top: 50px;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

/* Title */
.faq-title {
  margin: 0 0 45px;
  text-align: center;
  font-weight: 700;
}

/* List layout */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Card */
.faq-item {
    background: #f5f5f5e0;
    border-radius: 20px;
    border: 1px solid #dad6d6;
    transition: border-color var(--transition), background-color var(--transition);
}

/* Optional slight border when open for clarity */
.faq-item.is-open {
  border-color: var(--border-color);
}

/* Header (clickable area) */
.faq-header {
  width: 100%;
  padding: var(--padding);
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.faq-header:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq-header:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.faq-question {
  flex: 1;
}

/* Icon base */
.faq-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Horizontal line */
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 2px;
  background: var(--text-main);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transform-origin: center;
}

/* Horizontal line (before) */
.faq-icon::before {
  transform: translate(-50%, -50%);
}

/* Vertical line (after) */
.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* WHEN OPEN → X ICON */
.faq-item.is-open .faq-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* Body */
.faq-body {
  padding: 0 var(--padding);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition), padding-bottom var(--transition),
    padding-top var(--transition);
  will-change: max-height;
  color: var(--text-main);
}

.faq-item.is-open .faq-body {
  padding-top: 0;
  padding-bottom: var(--padding);
   max-height: max-content !important;
}

/* Text inside body */
.faq-body p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 640px) {
  .faq-section {
    padding: 40px 12px 56px;
  }

  .faq-header {
    padding: 20px;
    font-size: 15px;
  }

  .faq-body {
    padding: 0 20px;
  }

  .faq-item.is-open .faq-body {
    padding-bottom: 20px;
  }
}
.blog-section{
  padding: 40px 0 60px;
}
.blog-section h2{
  text-align: center;
}
  .blog-deta-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
  padding-top: 30px;
}

/* CARD */
.blog-card {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.4s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.image-wrapper {
    position: relative;
    overflow: hidden;
}

.image-wrapper img.main {
    width: 100%;
    transition: 0.5s;
}

.blog-card:hover .image-wrapper img.main {
    transform: scale(1.08);
}

/* GRADIENT OVERLAY */
.image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.4));
}

/* OVERLAY IMAGE */
.overlay-img {
    position: absolute;
    right: 15px;
    bottom: -35px;
    width: 110px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* DATE */
.date {
    position: absolute;
    bottom: 10px;
    left: 15px;
    background: #c93429;
    color: #fff;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 3px;
}

/* CONTENT */
.content {
    padding: 20px 20px 25px;
}

.category {
    font-size: 14px;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    color: #222;
    margin-bottom: 20px;
}

/* LINE */
.line {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #c93429, transparent);
    margin-bottom: 20px;
}

/* BUTTON */
.read-more {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 2px;
    text-decoration: none;
    color: #222;
    position: relative;
}

.read-more::after {
    content: "→";
    margin-left: 6px;
    transition: 0.3s;
}

.read-more:hover::after {
    margin-left: 12px;
}

.contact_s{
  margin-top: 50px;
  padding: 80px 0;
}
.contact-details{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 15px;
}

.contactss a{
  color: #6b6b6b;
  text-decoration: none;
}
.contact-data{
       background: #fff;
    padding: 20px;
    border-radius: 14px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.contact-form-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
}

.form-container {
  background: var(--bg-card);
  border-radius: 24px;
  padding: 0 2.5rem;
  box-shadow: var(--shadow-strong);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(10px);
  animation: slideUp 0.6s ease-out 0.2s both;
  position: relative;
  overflow: hidden;
}

.form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-yellow) 0%,
    var(--accent-amber) 100%
  );
}

.form-grid {
  display: grid;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row.two-cols {
    grid-template-columns: 1fr 1fr;
  }
}

.form-group {
  position: relative;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  font-size: 0.9rem;
  letter-spacing: 0.025em;
  transition: color 0.2s ease;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid #c93429;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.2);
  transform: translateY(-1px);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
  border-color: var(--accent-gold);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Inter", sans-serif;
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.2rem;
  padding-right: 3rem;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.submit-btn {
  background: linear-gradient(
    135deg,
    var(--accent-yellow) 0%,
    var(--accent-gold) 100%
  );
  color: #1a1a17;
  padding: 1.25rem 2rem;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.025em;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-strong);
}

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

.submit-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.submit-btn:hover::before {
  left: 100%;
}

.privacy-notice {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 12px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  border-left: 4px solid var(--accent-amber);
}

.required {
  color: var(--accent-amber);
}

.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
  color: #ef4444;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.success-message {
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-gold));
  color: #1a1a17;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  display: none;
  animation: slideDown 0.5s ease-out;
  font-weight: 500;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.circle-1 {
  width: 60px;
  height: 60px;
  background: var(--accent-yellow);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.circle-2 {
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.circle-3 {
  width: 80px;
  height: 80px;
  background: var(--accent-amber);
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(10px) rotate(240deg);
  }
}
.contact-img img{
  width: 100%;
  height: 100%;
}
.contactss{
  padding: 80px 0;
  background-color: #f5f5f5;
}

.advantages-section {
    background: #f7f7f7;
    color: #000;
    padding: 100px 20px;
    text-align: center;
}

.sub-title {
    letter-spacing: 3px;
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
}

.main-title {
    margin-bottom: 50px;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.adv-card {
    padding: 30px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.08);
    transition: 0.4s ease;
}

.adv-card:hover {
    transform: translateY(-10px);
    border-color: #000;
    background: rgba(255,255,255,0.05);
}

.icon img{
    width: 75px;
    margin-bottom: 25px;
}

.adv-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}


.adv-card p {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
}

/* Responsive */
@media(max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

}

.product-features {
    background: #f7f7f7;
    padding: 80px 20px;
    text-align: center;
}

.section-subtitle {
    letter-spacing: 3px;
    font-size: 12px;
    color: #777;
    margin-bottom: 10px;
}

.section-title {
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feature-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.icon {
    font-size: 30px;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

/* Responsive */
@media(max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}
.product-speci{
  padding: 80px 0;
}

    .terms-section {
    padding: 60px 20px;
    background: #f9f9f9;
    margin-top: 50px;
}

.terms-section .container {
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
}

.terms-section h1 {
    font-size: 32px;
    margin-bottom: 25px;
}

.terms-section h2 {
    margin-top: 25px;
    font-size: 20px;
}

.terms-section p {
    line-height: 1.7;
    color: #555;
}

.terms-section ul {
    padding-left: 20px;
}

.terms-section ul li {
    margin-bottom: 8px;
}

.gallery-sec-main{
  padding: 50px 0;
  text-align: center;
  background-color: #c93429;
  color: #fff;
  margin-top: 70px;
}
.custom-background{
  padding: 50px 0;
  text-align: center;
  background-color: #c93429;
  color: #fff;
  margin-top: 70px;
}
.catalogue-design{
  text-align: center;
}
.catalogue-grid{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
}
.catalogue{
  padding: 10px;
  border: 1px solid #aaaaaa;
  text-align: center;
}
.catalogue img{
  width: 100%;
}
.catalogue-design{
  padding: 100px 0 60px
}
.catalogue h3{
  font-weight: 700;
  padding-top: 20px;
}

.containera {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    align-items: center;
}

.main-img {
    width: 100%;
    height: 436px;
    object-fit: contain;
    cursor: pointer;
    border: 1px solid #f5f5f5;
    padding: 10px;
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbs img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid #52525238;
    padding: 5px;
}

.thumbs img:hover {
    border-color: black;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    justify-content: center;
    align-items: center;
}

.popup img {
    width: 60%;
}

.popup span {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

.product-main-section {
    padding: 100px 0;
}

.front-image {
    width: 100%;
    height: 70vh;
    object-fit: cover;
}

/* ✅ Related Products */
.related-products {
    padding: 60px 0;
}

.related-products h2 {
    padding-bottom: 25px
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.related-card {
    border: 1px solid #eee;
    padding: 10px;
    cursor: pointer;
    transition: 0.3s;
    text-align: center;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-card img {
    width: 100%;
    height: 30vh;
    object-fit: contain;
}

.related-card h4 {
    margin-top: 10px;
    font-size: 16px;
}
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .85);
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.popup img {
    width: 60%;
    max-height: 80vh;
    object-fit: contain;
}

/* Close button */
.popup span {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
}

/* Navigation buttons */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.6);
    color: #fff;
    border: none;
    font-size: 30px;
    padding: 10px 15px;
    cursor: pointer;
}

.prev { left: 20px; }
.next { right: 20px; }



  .catalogue-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-top:25px
}

.catalogue {
    border: 1px solid #ddd;
    background: #fff;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

/* IMAGE HOVER ZOOM */
.catalogue img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.catalogue:hover img {
    transform: scale(1.05);
}

/* CARD HOVER EFFECT */
.catalogue:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    /* transform: translateY(-8px); */
}

/* CONTENT */
.catalogur-data {
    text-align: center;
    padding: 20px;
}

.catalogur-data h3 {
    margin-bottom: 15px;
}

/* BUTTONS */
.div-btn {
    display: flex;
    justify-content: center;
    gap: 15px;
}
