body {
  background: #f9f9f9;
}

/* Header styling */
.header {
  background: #ffffff;
  height: 175px; /* directly height set kar do */
  display: flex;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);

  position: sticky;
  top: 0;
  z-index: 1000;
}


.header img {
  height: 150px;
}

.header .center-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}


/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .header {
    height: 100px; /* chhoti height mobile me */
    padding: 10px 0;
  }

  .header img {
    height: 70px; /* logo chhota */
  }
}

/* ✅ Extra small devices (phones < 480px) */
@media (max-width: 480px) {
  .header {
    height: 80px;
    padding: 8px 0;
  }

  .header img {
    height: 50px; /* aur chhota logo */
  }
}

/* Video grid styling */
.video-grid {
  padding: 0px 20px;
}

/* .video-grid video {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: block;
        } */

.video-grid video {
  width: 100%;
  /* max-width: 1500px; */
  height: 850px;
  /* fixed height */
  /* border-radius: 10px; */
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); */
  display: block;
  object-fit: cover;
}

/* Caption styling */
.video-caption {
  text-align: center;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  color: #8d0b0b;
}

/* contact page css */

.location-card {
  /* background: #fff; */
  padding: 25px;
  text-align: center;
  border-radius: 12px;
  /* box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15); */
  transition: transform 0.3s ease;
}

.location-card:hover {
  transform: translateY(-8px);
}

.location-card img {
  height: 80px;
  margin-bottom: 15px;
}

.location-card h3 {
  font-size: 22px;
  color: #8d0b0b;
  margin-bottom: 10px;
  font-weight: 700;
}

.location-card p {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
}

.btn-location {
  /* background: #8d0b0b; */
  color: #8d0b0b;
  border-radius: 6px;
  padding: 8px 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

/* .btn-location:hover {
      background: #600606;
      color: #fff;
    } */

/* Contact Section */
.contact-section {
  background: #fff;
  padding: 60px 40px;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  /* max-width: 900px;  */
  margin-left: auto;
  margin-right: auto;
}

.contact-section h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #8d0b0b;
}

.contact-section h5 {
  color: #8d0b0b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.contact-section p {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.btn-submit {
  background: #8d0b0b;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #600606;
}

.footer {
  background: rgb(241, 241, 241);
  padding: 15px 0;
  color: #fff;
  /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);  */
}

.footer-social a {
  color: #c02026;
  font-size: 20px;
  margin-right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #c02026;
  color: #fff;
}
.footer-center small {
  color: #c02026;
}
.footer-right a {
  color: #c02026;
}
/* .footer-right a:hover {
  color: #fff;
} */
/* Responsive Footer for Mobile */
@media (max-width: 768px) {
  .footer .container {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .footer-social {
    margin-bottom: 10px;
  }

  .footer-right {
    margin-top: 10px;
  }
}
