body {
    font-family: 'Inter', sans-serif;
    
  
  }
  #seekbar-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(to right, #ff0000, #ff4d4d);
    z-index: 9999;
    transition: width 0.4s ease;
  }

  body.loaded #seekbar-loader {
    width: 100%;
    transition: width 0.6s ease;
  }

  /* Optional fade out */
  #seekbar-loader.done {
    opacity: 0;
    transition: opacity 0.5s ease 0.4s;
  }

  .navbar {
    padding: 0.8rem 1.5rem;
    background: #000;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.2); /* gold glow */
  }
  
  .navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ffd700 !important; /* gold text */
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    letter-spacing: 1px;
  }
  
  .navbar-brand img {
    height: 36px;
  }
  
  .navbar-nav .nav-link {
    color: #f5f5f5 !important;
    font-weight: 500;
    margin-left: 1.2rem;
    transition: all 0.3s ease;
  }
  
  .navbar-nav .nav-link:hover {
    color: #ffd700 !important;
    transform: translateY(-2px);
  }
  
  .btn-outline-light {
    border-color: #ffd700;
    color: #ffd700;
  }
  
  .btn-outline-light:hover {
    background-color: #ffd700;
    color: #000;
  }
  
  .offcanvas {
    background-color: #000;
  }
  
  .offcanvas-header {
    background-color: #111;
  }
  
  .offcanvas-title {
    color: #ffd700;
  }
  
  .offcanvas-body a {
    display: block;
    color: #f5f5f5;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: background-color 0.2s ease;
  }
  
  .offcanvas-body a:hover {
    background-color: #222;
    color: #ffd700;
  }
  
  .main-content {
    padding: 40px 20px;
  }
  
  /* Logo center on mobile only */
  .logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  
  @media (min-width: 992px) {
    .logo-container {
      position: static;
      transform: none;
    }
  }
  
  .text-gold {
    color: #ffd700;
  }
  
  

  .shorts-section h2 {
    color: gold;
    font-weight: bold;
  }

  .video-card {
    background-color: #1e1e1e;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .video-card:hover {
    transform: scale(1.03);
  }

  .video-thumb {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .video-thumb video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
  }

  .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 36px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 10px 14px;
    pointer-events: none;
  }

  h5 {
    font-size: 1rem;
    padding: 10px 0;
  }
  /* Responsive video height for small screens */
@media (max-width: 576px) {
    .video-thumb video {
      height: 180px;
      object-fit: cover;
    }
  }
  
  .video-thumb {
    position: relative;
    height: 60%; /* Reduced height */
    background: #000;
  }
  
  .video-thumb video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem; /* Slightly smaller play button */
    color: #ffd700;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    padding: 8px 12px;
    pointer-events: none;
  }
  
  h5 {
    font-size: 1rem; /* Smaller title */
    margin-top: 10px;
    color: #fff;
    text-align: center;
  }
  
  /* Responsive grid, adjust for smaller screens */
  @media (min-width: 576px) {
    .video-card {
      height: 220px; /* Slightly shorter for smaller devices */
    }
  }
  
  @media (min-width: 992px) {
    .col-sm-6 {
      max-width: 18%; /* Adjust video card width for larger screens */
    }
  }
.media-player {
    background-color: #111;
    padding: 40px 0;
  }

  .video-player-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
  }

  .video-player {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  .video-thumbnail-overlay {
    position: relative;
    cursor: pointer;
  }

  .thumbnail-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
  }

  .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    font-size: 40px;
    padding: 20px 25px;
    color: #000;
    transition: background 0.3s ease;
  }

  .play-button:hover {
    background: rgba(255, 255, 255, 1);
  }

  h2 {
    color: #ffd700; /* Gold color */
    font-size: 2rem;
  }
  .text-gold { color: #ffd700; }

  .video-thumb {
    position: relative;
    cursor: pointer;
    overflow: hidden;
  }

  .video-thumb img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
  }

  .video-thumb:hover img {
    transform: scale(1.02);
  }

  .play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 18px;
    border-radius: 50%;
    pointer-events: none;
  }

  @media (max-width: 576px) {
    .play-icon {
      font-size: 1.8rem;
      padding: 10px 12px;
    }
  }.text-gold {
    color: #ffd700;
  }
  .video-icon-box {
    background: linear-gradient(135deg, #1e1e2f, #292942);
    border-radius: 16px;
    padding: 30px 0;
    color: gold;
    font-size: 2rem;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .video-icon-box:hover {
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 204, 0, 0.3);
  }
  
  .category-label {
    margin-top: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
  }
  .about-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 10px;
  }

  .about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .about-card-body {
    background-color: #f8f9fa;
    padding: 20px;
    text-align: center;
  }

  .about-card img {
    border-radius: 10px;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .about-card img:hover {
    transform: scale(1.05);
  }

  .about-title {
    font-size: 36px;
    font-weight: 600;
    color: #333;
    text-align: center;
  }

  .social-links a {
    margin: 0 10px;
    font-size: 24px;
    color: #333;
    transition: color 0.3s ease;
  }

  .social-links a:hover {
    color: #007bff;
  }
#contact-us {
    background-color: #f8f9fa;
  }
  
  .animated-card {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s forwards;
  }
  
  @keyframes fadeInUp {
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Google Map Container */
  .map-container iframe {
    border-radius: 8px;
  }
  
  /* Customizing Button */
  .btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
  }
  
  .btn-primary:hover {
    background-color: #004085;
    border-color: #003366;
  }
    
  /* General Styles */


/* Footer Styles */
.chouhan-footer {
    background-color: #000;
    color: #fff;
    padding-top: 60px;
    font-size: 14px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-logo img {
    max-width: 180px;
    height: 90px;
    margin-bottom: 20px;
}

.footer-about p {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #fff;
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #ff0000;
    color: #fff;
    transform: translateY(-3px);
}

.footer-heading {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #ff0000;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #ff0000;
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #ff0000;
    margin-right: 10px;
    font-size: 16px;
    margin-top: 3px;
}

.footer-contact span {
    color: #aaa;
    flex: 1;
    line-height: 1.5;
}

.footer-newsletter h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    background: #222;
}

.newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 15px;
    color: #fff;
    outline: none;
}

.newsletter-form button {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 0 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #d40000;
}

.footer-bottom {
    background: #111;
    padding: 20px 0;
    border-top: 1px solid #222;
}

.copyright {
    color: #aaa;
    margin: 0;
    font-size: 13px;
}

.footer-policy {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.footer-policy li a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-policy li a:hover {
    color: #ff0000;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .footer-top .col-md-4 {
        margin-bottom: 30px;
    }
    
    .footer-heading {
        margin-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .footer-top .col-md-2,
    .footer-top .col-md-3 {
        margin-bottom: 30px;
    }
    
    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 15px;
    }
    
    .footer-policy {
        justify-content: center;
    }
    
    .copyright {
        text-align: center !important;
    }
}
.video-card-style {
  transition: transform 0.3s ease;
}

.video-card-style:hover {
  transform: scale(1.03);
}

.video-thumb img {
  transition: transform 0.3s ease;
}

.video-card-style:hover .video-thumb img {
  transform: scale(1.05);
}

.video-title {
  font-size: 15px;
  line-height: 1.4;
}
