   
  /* product-heading Styles */
 .product-heading h1 {
    font-family: 'Special Gothic Condensed One';
    font-weight: 600;
    font-size: 50px;
    text-transform: uppercase;
    text-align: center;
    color: #0956a4;
	 font-family: "Special Gothic Condensed One", sans-serif;
border-top:3px solid blue;
margin-bottom:60px;
padding-top:50px;
margin-top:5px;
}
  

  .swiper-container {
    width: 100%;
    height: 100vh;
  
  }

  .productslider-main-container{
    margin:1vh 0;
	border-top:3px solid red;
  }
  

  .card {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  .card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
  }

  
  
  .card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: rgba(0, 0, 0, 0.8); 
    color: var( --text-white);
    padding: 15px 20px;
    text-align: left;
  }
  
	.card-content h2 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 5px;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Special Gothic Condensed One';
}
  
  .card-content p {
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Futura Md BT", sans-serif;
    font-style: italic;
  }
  
 
  .swiper-card {
    display: flex;
    width: 33.33%;
    transition: transform 0.3s ease-in-out;
  }

  .swiper-card:hover {
    .card img {
      transform: scale(1.2);
    }
  }
  
  /* Media Queries for Responsiveness */
  
 
  @media (max-width: 768px) {
    .product-heading h1 {
      font-size:45px; 
	  text-align:left;
      margin-top: 1rem;
	  padding-top:20px;
	  padding-left:20px;
      margin-bottom:20px;
	  
    }
  
    .card {
      height: 400px; 
      width: 100%;
    }
  
    .card-content h2 {
      font-size: 1.5rem;
    }
  
    .card-content p {
      font-size: 0.9rem;
    }
  
    .swiper-card {
      width: 100%;
    }
  
    .swiper-card-container {
      height: auto; 
    }
  }
  
  /* Tablets (768px to 1024px) */
  @media (min-width: 768px) and (max-width: 1024px) {
    .product-product-heading h1 {
      font-size: 2.8rem;
      margin-top: 1.2rem;
      margin-bottom: 1.2rem;
    }
  
    .card {
      height: 350px;
    }
  
    .card-content h2 {
      font-size: 1.8rem;
    }
  
    .card-content p {
      font-size: 1.1rem;
    }
  
    .swiper-card {
      width: 50%; /* Show 2 slides on tablets */
    }
  }
  
  /* Desktops (1025px and above) */
  @media (min-width: 1024px) {
    .product-product-heading h1 {
      font-size: 3.5rem;
      margin-top: 1.5rem;
      margin-bottom: 1.5rem;
    }
  
    .swiper-card {
      width: 33.33%; /* Show 3 slides at a time on desktops */
    }
  }