
    body {
      background: #fff;
   
    }
    strong{
      color: #a50c0c;
    }
    p{
      text-align: justify;
      font-size: 22px;
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    }
    @media (max-width: 780px) {
      p {
        font-size: 16px; /* ya jo chhota size chahiye ho */
      }
    }
    .custom-img {
      width: 100%;
      height: 100%;         /* ensure it fills the height */
      object-fit: cover;    /* crop & fill */
      
    }
    
      
    .banner {
      width: 100%;
      
      margin: 0 auto;
      display: block;
    }
    h3 a {
      position: relative;
      display: inline-block;
      font-weight: bold;
      color: #505355;
      font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      text-decoration: none;
      transition: color 0.3s ease, letter-spacing 0.2s ease;
    }
    
    h3 a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      left: 0;
      bottom: -5px;
      background-color: #a50c0c;
      transition: width 0.3s ease;
    }
    
    h3 a:hover {
      color: #a50c0c;
      /* letter-spacing: 0.5px; */
    }
    
    h3 a:hover::after {
      width: 100%;
    }
    
    
    
    
    .video-card {
      margin-bottom: 20px;
    }
    .video-thumb {  
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .video-title {
      font-weight: 500;
      margin-top: 5px;
    }
    .card-body {
      height: 100px;
      background-color: #0a0a0a; /* slightly lighter black for contrast */
      padding: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      border-top: 1px solid #333; /* subtle border for separation */
      border-radius: 0 0 8px 8px;
    }
    
    .card-body a {
      text-decoration: none;
      color: #eff5fa; /* muted light grey */
      font-weight: 600;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: color 0.3s ease, letter-spacing 0.2s ease;
    }
    
    .card-body a:hover {
      color: #a50c0c; /* brighter red */
      /* letter-spacing: 0.5px; */
    }
            
    #scrollTopBtn {
      position: fixed;
      bottom: 20px;
      right: 30px;
      z-index: 99;
      border: none;
      outline: none;
      background-color: #a50c0c;
      color: white;
      cursor: pointer;
      padding: 10px 20px;
      border-radius: 5px;
      font-size: 20px;
      display: none;
      transition: all 0.3s ease-in-out;
    }
    
    #scrollTopBtn:hover {
      background-color: #000000;
        transform: scale(1.05);

    }
    
    
#contact-tab {
  position: fixed;
  bottom: 90px;
  right: 30px;
  padding: 10px 15px;
  background-color: #505355;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

#contact-tab:hover {
  background-color: #3a3d3f;
  transform: scale(1.05);
}

#contact-message {
  position: fixed;
  bottom: 74px;
  right: 80px;
  background-color: white;
  border: 1px solid #ccc;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  display: none;
  max-width: 250px;
  font-size: 16px;
  z-index: 9998;
  transition: all 0.3s ease;
}

#contact-message:hover {
  box-shadow: 0 6px 10px rgba(0,0,0,0.2);
}
