  /*            INFO SECTION            */
  .flip-card {
    background-color: transparent;
    width: 100%;
    perspective: 1000px;
    height: 250px;
  }
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s ease;
    transform-style: preserve-3d;
  }
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    backface-visibility: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  .flip-card-front {
    background-color: #fff;
    padding: 20px;
  }
  .flip-card-back {
    background-color: #f8f9fa;
    transform: rotateY(180deg);
    padding: 20px;
  
  }
  
  /*  shop by category css    */
  
  /* Section Title Styling */
  .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
  }
  .section-heading::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #000;
    display: block;
    margin: 0 auto;
    margin-top: 8px;
    border-radius: 10px;
  }
  .section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 10px;
  }
  
  /* Category Card Styling */
  /* Section Title Styling */
  .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
  }
  .section-heading::after {
    content: "";
    width: 60%;
    height: 3px;
    background: #000;
    display: block;
    margin: 0 auto;
    margin-top: 8px;
    border-radius: 10px;
  }
  .section-subtitle {
    font-size: 1rem;
    color: #6c757d;
    margin-top: 10px;
  }
  
  /* Card Container */
  .category-card {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    height: 240px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  }
  
  /* Background Image */
  .category-img {
    background-size: cover;
    background-position: center;
    height: 100%;
    transition: transform 0.5s ease, filter 0.3s ease;
  }
  .category-card:hover .category-img {
    transform: scale(1.1);
    filter: brightness(65%);
  }
  
  /* Overlay for Title + Button */
  .category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    z-index: 2;
    padding: 1rem;
  }
  .category-title {
    position: absolute;
    top: 10%;
    font-size: 1.1rem;
    font-weight: bold;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  }
  
  /* Premium CTA Button */
  .premium-btn {
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid #fff;
    border-radius: 30px;
    padding: 6px 18px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
  }
  .premium-btn:hover {
    background-color: #fff;
    color: #000;
  }
  
  /*  Inforamtive section   */
  
  .gradient-title {
    background: linear-gradient(90deg, #000, #333, #000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
  
  @media (max-width: 767px) {
    .gradient-title {
      font-size: 1.8rem;
    }
  }
  @media only screen and (max-width: 768px) {
    .info-section {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
  }

  /*  measurement section css  */


.measurement-video-section {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
  }
  
  .measurement-video-section h2 span {
    color: #007bff;
  }
  
  .measurement-video-section iframe {
    border: none;
  }
  
  /*  why trust us section   */
  /* Trust Card Section Styling */
  .trust-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .trust-card .icon-container {
    transition: transform 0.3s ease;
  }
  
  /* Text is always visible, no changes needed */
  .trust-card .card-title, 
  .trust-card .card-text {
    opacity: 1;  /* Text is always visible by default */
  }
  
  .trust-card:hover {
    transform: translateY(-10px);  /* Lift the card on hover */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);  /* Add a shadow effect */
  }
  
  .trust-card:hover .icon-container {
    transform: translateY(-10px); /* Icon moves up when the card is hovered */
  }
  
  .trust-card:hover .card-title {
    color: #007bff; /* Change title color to blue on hover */
  }
  
  /* Optional: Keep Text Visible, Fade-in Effect Removed */
  .trust-card .card-text {
    opacity: 1; /* Ensuring text is visible by default */
    transition: opacity 0.4s ease-in-out; /* Optional if you want smooth fade-in for texts */
  }
  
  /* Hover effect for icons only */
  .trust-card:hover .icon-container {
    transform: translateY(-10px); /* Move icon upwards on hover */
    color: #007bff; /* Optional: Change icon color on hover */
  }
  
  
  /*  info section 2   */
  .banner-section {
    position: relative;
    background-image: url('./hero1.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    image-rendering: auto; /* Prevent pixelation */
  }
  
  .banner-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    z-index: 1;
  }
  
  .banner-title {
    animation: fadeInDown 1.2s ease-in-out;
    font-size: 2.8rem;
  }
  
  .banner-subtitle {
    animation: fadeInUp 1.5s ease-in-out;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.25rem;
  }
  
  .btn-banner {
    animation: fadeInUp 2s ease-in-out;
    border: 2px solid #fff;
    padding: 0.75rem 2rem;
    font-size: 1.1rem;
    border-radius: 50px;
    color: #fff;
    text-transform: uppercase;
    transition: all 0.3s ease;
  }
  
  .btn-banner:hover {
    background-color: #fff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
  }
  
  /* Animations */
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(40px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .banner-title {
      font-size: 2.2rem;
    }
    .banner-subtitle {
      font-size: 1.1rem;
    }
  }
  