@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400&display=swap');

    .view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #9A221B;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.view-more-btn:hover {
  background: #7b1915;
}

.view-more-btn .circle-arrow {
  background: #fff;
  color: #9A221B;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

  body {
    
    background-color: #070e11;
    color: white;
    overflow-x: hidden;
  }

  /* Transparent Navbar */
  .navbar {
    background: transparent !important;
    padding: 0.8rem 1rem;
    z-index: 10;
    position: fixed; /* overlay on video */
    width: 100%;
  }

  .navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
  }

  .navbar-nav .nav-link:hover {
    color: #d32f2f !important;
  }

  

  .navbar-brand img {
    height: 35px;
    width: 200px;
  }
 


  .category-link {
  text-decoration: none;
  color: #333;
  display: block;
}

.category-link:hover {
  color: #9A221B;
}

  /* Responsive Video Section */
  .video-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
.scroll-down {
  position: absolute;
  left: 8%;
  bottom: 10px; 
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-color: white;
  border: 3px solid #9A221B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-down i {
  color: #9A221B;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.scroll-down:hover i {
  transform: translateY(5px);
}

@media (min-width: 1400px) {
  .scroll-down {
    left: 25%;
  }
}


  .background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    filter: brightness(1.3);
    z-index: 1;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 244, 244, 0.2);
    z-index: 2;
  }

  /* Optional: text visibility */
  .navbar-nav
  .contact-btn {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  }

.cd-submenu {
  display: none;
  margin-left: 15px;
  padding-top: 5px;
  
}

/* Toggle layout */
.cd-toggle {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cd-toggle i {
  transition: transform 0.3s ease;
}


.cd-dropdown.open .cd-submenu {
  display: block;
}

.cd-dropdown.open .cd-toggle i {
  transform: rotate(180deg);
}

.cd-submenu li a {
  color: #333;       
  text-decoration: none;  
  font-size: 0.95rem;
}

.cd-submenu li a:hover {
  color: #9A221B;    
}
 .about-us-section {
  background-color: #fff;
  color: #333;
}

.about-us-section h2 {
  font-weight: 700;
  font-size: 2rem;
  color: #a32a2a; 
}

.about-us-section p {
  font-size: 1rem;
  line-height: 1.7;
}

.progress-circle {
  transition: transform 0.3s ease;
}

.progress-circle:hover {
  transform: scale(1.05);
}

.about-us-section img {
  transition: transform 0.3s ease;
}

.about-us-section img:hover {
  transform: scale(1.02);
}

/* Transparent navbar for large screens */
.custom-navbar {
  background: transparent;
  transition: background-color 0.4s ease;
  z-index: 1000;
}

/* Navbar text color */
.custom-navbar .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.custom-navbar .nav-link:hover {
  color: #d32f2f !important;
}

/* Contact button styling */
.contact-btn {
  background-color: #a32a2a;
  color: white;
  border-radius: 50px;
  padding: 8px 10px;
  font-weight: 600;
  border: none;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #d32f2f;
}





@media (max-width: 992px) {
  .custom-navbar {
    background-color: black !important; 
  }
  .cd-submenu li a{
    text-align: center;
  }

  .custom-navbar .navbar-collapse {
    background-color:black; 
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px 0;
  }

  .custom-navbar .nav-link {
    color: white !important;
  }

  .custom-navbar .nav-link:hover {
    color: #d32f2f !important;
  }

  
}

/* Allow navbar items to wrap on medium screens */
@media (max-width: 1400px) {
  .navbar-nav {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.3rem; 
  }

  .navbar .contact-btn {
    padding: 6px 14px;
    font-size: 0.9rem;
  }

  .navbar-brand img {
    height: 40px; 
  }
  
}

/* For even smaller (tablet) screens before mobile collapse */
@media (max-width: 992px) {
  .navbar-nav {
    flex-direction: column !important;
    align-items: center;
  }
}
/* Base nav links */
.navbar-nav .nav-link {
  color: white !important;
  font-weight: 500;
  margin: 0 5px;
  padding: 6px 16px;
  border-radius: 20px; /* pill shape */
  transition: all 0.3s ease;
}

/* Hover effect (like your screenshot) */
.navbar-nav .nav-link:hover {
  background-color: #a32a2a; 
  color: #fff !important;
}

/* Optional: show active link with same style */
.navbar-nav .nav-link.active {
  background-color: #a32a2a;
  color: #fff !important;
}

* {
  font-family: 'Rubik', sans-serif;
}
.product-slider-section {
  background-color: #fff;
  position: relative;
}




.owl-carousel .item {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  margin: 8px; 
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
}

.owl-carousel .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
}

.owl-carousel .item img {
  max-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #9A221B;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.view-more-btn:hover {
  background: #7b1915;
}

.view-more-btn .circle-arrow {
  background: #fff;
  color: #9A221B;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}


/* Navigation Arrows */
.owl-nav {
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;

  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background-color: #8b0000 !important;
  color: white !important;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px !important;
  pointer-events: all;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

/* Arrow positions */
.owl-nav button.owl-prev {
  border-radius: 50px;
  left: -25px; 
}

.owl-nav button.owl-next {
  right: -25px; 
}

/* Hover color */
.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background-color: #a30000 !important;
}

.owl-dots {
  margin-top: 25px;
}

.owl-dots .owl-dot span {
  background: #ccc;
  width: 10px;
  height: 10px;
  margin: 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.owl-dots .owl-dot.active span {
  background: #8b0000;
}





  /* existing product slider styles... */
.brands-section h2 {
  font-size: 2rem;
  line-height: 1.3;
}

.explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #9A221B;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.explore-btn:hover {
  background: #7b1915;
  color: #fff;
}

.explore-btn .circle-arrow {
  background: #fff;
  color: #9A221B;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}


/* ---- Carousel Styling ---- */
.owl-carousel .item {
  background: #fff;
  border-radius: 15px;
  transition: all 0.3s ease-in-out;
}



/* ---- Arrows ---- */
.owl-nav button {
  background-color: #8b0000 !important;
  color: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.owl-nav button.owl-prev {
  left: -25px;
}

.owl-nav button.owl-next {
  right: -25px;
}

.owl-nav button:hover {
  background-color: #a30000 !important;
  
}

.owl-nav i {
  font-size: 18px;
}

@media (max-width: 992px) {
  .brands-section {
    text-align: center;
  }
  .owl-nav button.owl-prev {
    left: -10px;
  }
  .owl-nav button.owl-next {
    right: -10px;
  }
}
.owl-carousel .item :hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

  




.marquee-section {
  width: 100%;
  background-color: #9A221B; 
  color: white;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.track {
  display: inline-block;
  white-space: nowrap;
  will-change: transform;
  animation: scroll-left 25s linear infinite;
}

.track span {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.marquee:hover .track {
  animation-play-state: paused;
}



 
.stats-section {
  padding: 5rem 4rem;
  background-color: #fff;
  font-family: 'Rubik', sans-serif;
}

.stats-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.stats-text {
  flex: 1;
  max-width: 350px;
}

.stats-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 1rem;
}

.stats-text h2 span {
  color: #9A221B;
  font-weight: 700;
}

.stats-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #9A221B;
  color: #fff;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: #7b1915;
}

.circle-arrow {
  background: #fff;
  color: #9A221B;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

/* Right Stats Grid */
.stats-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1rem;
}

.stat-card {
  text-align: center;
}

.stat-card h3 {
  font-family: 'Inria Serif', serif;
  font-size: 4rem;
  font-weight: 500;
  color: #8B1A16;
  margin-bottom: 0.5rem;
}


.stat-card p {
  color: #555;
  font-size: 1rem;
}

.stat-card span{
  font-family: 'Inria Serif', serif;
}

/* Responsive */
@media (max-width: 991px) {
  .stats-content {
    flex-direction: column;
    text-align: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}



.trusted-section {
  background-color: #fff;
  font-family: 'Rubik', sans-serif;
}



/* Card layout */
.testimonial-carousel .card {
  border-radius: 15px;
  width: 260px;
  height: 300px;
  margin: auto;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-carousel .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Buttons */
.testimonial-prev, .testimonial-next {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-width: 2px;
  transition: all 0.3s ease;
}

.testimonial-prev:hover, .testimonial-next:hover {
  background-color: #9A221B;
  color: #fff;
  transform: scale(1.1);
}

.testimonial-prev i, .testimonial-next i {
  font-size: 1.2rem;
}

/* Responsive fix */
@media (max-width: 768px) {
  .row.align-items-center.mb-4 {
    text-align: center;
  }

  .row.align-items-center.mb-4 .col-md-6 {
    justify-content: center !important;
    text-align: center !important;
  }

  .testimonial-carousel .card {
    width: 90%;
    height: auto;
  }
}



.footer {
  background-color: #9A221B;
  color: #fff;
  position: relative;
  padding: 4rem 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer-logo{
 /* background-color: black; */
 width: 250px;
 height: auto;
 /* padding: 1rem; */
 border-radius: 1rem;
}

.footer-logo img {
  width: 210px;
  object-fit: cover;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex: 1;
  gap: 10rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 0.6rem;
}

.footer-links ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #ffcccb;
}

/* Social icons */
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-social a {
 
  color: #9A221B;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #9A221B;
  color: #fff;
  transform: translateY(-5px);
  
}

/* Scroll to top button */
.scroll-top {
  position: absolute;
  top: -35px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  background-color: white;
  border: 3px solid #9A221B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-top i {
  color: #9A221B;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.scroll-top:hover i {
  transform: translateY(-5px);
}

.scroll-top:hover {
 
  border-color: #9A221B;
}


/* Responsive */
@media (max-width: 768px) {
  .footer-links {
    flex-direction: row;
    gap: 1.5rem;
    text-align: left;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 1001px){
 .footer-social{
  flex-direction: row;
 }

 .footer-logo{
  padding: 0rem;
 }
}


/* Base section */
.video-section {
  position: relative;
  height: 100vh; 
  overflow: hidden;
}

/* Background video covers whole section */
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1; 
}

/* Transparent dark overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: NONE;
  z-index: 2;
}

/* News Card */
.news-card {
  position: relative;
  z-index: 3; 
  max-width: 380px;
  margin-right: -68px; 
  margin-bottom: 10px; 
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .news-card {
    margin-right: 40px;
    margin-bottom: 40px;
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .news-card {
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: 90%;
   
  }
}












:root{
  --accent:#9A221B;
}

/* Arrows */
.arrow-btn{
  width:44px;
  height:44px;
  border-radius:50%;
  border:2px solid var(--accent);
  background:#fff;
  color:var(--accent);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  transition:all .18s ease;
}
.arrow-btn:hover{
  background:var(--accent);
  color:#fff;
  transform:translateY(-2px);
}

/* Header titles */
.trusted-section h5{letter-spacing:0.6px;}
.trusted-section h2{letter-spacing:0.8px;}

/* Slider */
.testimonial-slider{
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none; /* firefox */
}
.testimonial-slider::-webkit-scrollbar{display:none;} 

.testimonial-card{
  min-width:260px;     
  max-width:320px;
  width: calc(27vw);    
  background:#fff;
  border-radius:12px;
  border:1px solid #f1d9d9;
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition:transform .2s ease,box-shadow .2s ease;
}
.testimonial-card:hover{ transform:translateY(-6px); box-shadow:0 10px 25px rgba(0,0,0,0.08); }

h6{
  color: black;
} 

h5,h2{
  font-family: "Rubik" sans-serif;
}

@media (max-width: 991px){
  .testimonial-card { width: 320px; min-width: 280px; }
}
@media (max-width: 575px){
              
  .testimonial-card { width: 90%; min-width: unset; margin-inline:auto; } 
  .testimonial-slider{ gap:1rem; padding-bottom:0.5rem; }
  .trusted-section .row { text-align:center; } 
}

.text-brand-grey{color:#555}
.text-brand-red { color:#9A221B !important; }






/* scrolled state (use !important to override existing transparent !important) */
.custom-navbar.scrolled {
  background-color:black !important; /* dark semi-transparent */
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: background-color 0.35s ease, box-shadow 0.35s ease;
}

/* if you want slightly different look when menu is open on mobile */
.custom-navbar.menu-open {
  background-color: black !important;
}

/* keep transparent default but allow JS to toggle */
.custom-navbar {
  transition: background-color 0.35s ease;
}





/* Base position */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 600px;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.35s ease;
  z-index: 999;
}


@media (min-width: 769px) {
  .nav-item.dropdown:hover .mega-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* Headings and items */
.mega-heading {
  margin-bottom: 10px;
  color: #9A221B;
}

.mega-menu ul li {
  color: #111;
  margin-bottom: 6px;
  cursor: pointer;
  transition: color 0.25s ease;
}

.mega-menu ul li:hover {
  color: #d32f2f;
}

/* ✅ Mobile view */
@media (max-width: 768px) {
  .mega-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border-top: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none; 
    background: rgba(255, 255, 255, 0.98);
    margin-top: 10px;
  }

  .mega-menu.show {
    display: block; 
  }

  .mega-menu .row {
    flex-direction: column;
  }

  .mega-menu .col-12 {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  .navbar-collapse {
    max-height: 80vh; 
    overflow-y: auto; 
    scrollbar-width: thin;
  }

  /* Optional: smooth scroll inside dropdown */
  .mega-menu {
    max-height: 60vh;
    overflow-y: auto;
  }
}



.product-slider-wrapper {
  position: relative;
  padding: 0 40px;
}

.product-slider {
  overflow: hidden;
}

.product-track {
  display: flex;
  transition: transform 0.5s ease;
}

.product-card {
  flex: 0 0 25%;
  padding: 15px;
}

.product-card img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #9A221B;
  color: #fff;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 8px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10;
}

.slider-arrow.left { left: 0; }
.slider-arrow.right { right: 0; }

/* responsive */
@media (max-width: 991px) {
  .product-card { flex: 0 0 50%; }
}

@media (max-width: 575px) {
  .product-card { flex: 0 0 100%; }
}

/* Default: show mobile logo, hide desktop logo */
.logo-mobile {
  display: block;
}

.logo-desktop {
  display: none;
}

/* Large screens and above */
@media (min-width: 992px) {
  .logo-mobile {
    display: none;
  }

  .logo-desktop {
    display: block;
  }
}


/* Loader Wrapper */
#page-loader {
  position: fixed;
  inset: 0;
  background:white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* Logo Animation */
.loader-logo {
  width: 240px;     
  animation: pulse 1.5s ease-in-out infinite;
}

/* Pulse Keyframes */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.08);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
}

/* Fade out effect */
#page-loader.hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader .loader-content p {
  font-family: 'Inria', sans-serif; 
  font-weight: 900; 
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9A221B;
  margin-top: 1rem;
  text-align: center;

 
  animation: pulse 1.5s ease-in-out infinite;
}


@keyframes pulseText {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}








.product-card1 {
  background: #fff;
  height: 420px;                 /* increase card height */
  border-radius: 18px;
  overflow: hidden;              /* hide overflow */
  /* box-shadow: 0 10px 25px rgba(0,0,0,0.1); */
  display:block;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Image fills the card */
.product-card1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;             /* fills card, no black space */
  border-radius: 12px;
}
@media (max-width: 991px) {
  .product-card1 {
    height: 300px;       /* reduce card height */
    padding: 10px;
  }

  .product-card1 img {
    object-fit: contain;   /* show full image */
  }
}

.product-card1 h6 {
  font-weight: 700;
  color: #9A221B;
}

/* Arrow styling */

/* Arrow button container */
/* Red arrows without background */
#ftirProductSlider .carousel-control-prev-icon,
#ftirProductSlider .carousel-control-next-icon {
  background-image: none; /* Remove default icon */
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
}

/* Create custom arrow shapes using CSS */
#ftirProductSlider .carousel-control-prev-icon::after,
#ftirProductSlider .carousel-control-next-icon::after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  border-top: 4px solid #9A221B;
  border-right: 4px solid #9A221B;
  transform: rotate(-135deg); /* Left arrow */
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
}

#ftirProductSlider .carousel-control-next-icon::after {
  transform: rotate(45deg); /* Right arrow */
}

/* Optional: hover effect to make arrows more dynamic */
#ftirProductSlider .carousel-control-prev:hover::after,
#ftirProductSlider .carousel-control-next:hover::after {
  border-color: #ff4d4d; /* lighter red on hover */
  transform: scale(1.2) rotate(45deg);
  transition: all 0.3s ease;
}

  .animate-on-scroll {
    opacity: 0;
    transform: translateX(0);
  }

  .animate-on-scroll.animated {
    opacity: 1;
  }

  /* Smoother easing */
  .animate__animated {
    --animate-duration: 1.6s;
    animation-timing-function: cubic-bezier(0.25, 0.8, 0.25, 1);
  }

/* Increase gap between arrows */
#ftirProductSlider .carousel-control-prev {
  left: -120px;   /* move left arrow outward */
}

#ftirProductSlider .carousel-control-next {
  right: -70px;  /* move right arrow outward */
}

/* Mobile adjustment */
@media (max-width: 991px) {
  #ftirProductSlider .carousel-control-prev {
    left: -20px;
    top: -200px;
  }

  #ftirProductSlider .carousel-control-next {
    right: -20px;
    top: -200px;
  }
}



    
