/* General Footer Styling */

.black-bg {
  background-color: #111111;
  color: #ffffff;
}

.tp-footer-widget p {
  color: #a0a0a0;
  line-height: 1.6;
  font-size: 16px;
}

.tp-footer-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #fff;
}

/* Sitemap Links */
.tp-footer-widget ul {
  list-style: none;
  padding: 0;
}

.tp-footer-widget ul li {
  margin-bottom: 12px;
}

.tp-footer-widget ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  transition: 0.3s;
}

.tp-footer-widget ul li a:hover {
  opacity: 0.7;
}

/* Newsletter Input */
.tp-footer-subscribe-form {
  position: relative;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.tp-footer-subscribe-form input {
  background: transparent;
  border: none;
  color: #fff;
  width: 100%;
  padding-right: 30px;
}

.tp-footer-subscribe-form button {
  position: absolute;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Bottom Bar */
.tp-footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
}

.tp-footer-copyright p {
  font-size: 14px;
  margin: 0;
}

/* Social Buttons */
.tp-footer-social a {
  display: inline-block;
  border: 1px solid #333;
  padding: 8px 25px;
  border-radius: 30px;
  margin-left: 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.tp-footer-social a:hover {
  background: #fff;
  color: #000;
}
/* General Layout fixes */
.tp-header-area {
  margin: -15px;
  transition: all 0.3s ease;
}

.tp-header-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* Mobile Toggle Button */
.mobile-menu-toggle {
  background: #000;
  /* Change to your brand color */
  color: #fff;
  border: none;
  padding: 10px 15px;
  font-size: 20px;
  border-radius: 5px;
  cursor: pointer;
  margin-left: 15px;
}

/* Mobile Sidebar Styles */
.tp-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  /* Hidden by default */
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 9999;
  padding: 40px 20px;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease-in-out;
}

.tp-mobile-menu.active {
  right: 0;
  /* Slide in */
}

.mobile-menu-close {
  font-size: 30px;
  position: absolute;
  top: 15px;
  right: 20px;
  cursor: pointer;
}

.tp-mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-top: 50px;
}

.tp-mobile-menu ul li {
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.tp-mobile-menu ul li a {
  color: #333;
  text-decoration: none;
  font-weight: 600;
  display: block;
}

.tp-header-menu ul {
  gap: 0px !important;
}

.about-hero-area {
  padding: 150px 0 100px;
  position: relative;
  overflow: hidden;
}

.about-hero-area .container {
  position: relative;
  z-index: 1;
}

/* Optional: Video ke upar ek halka dark layer (overlay) */
.about-hero-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Industrial dark look ke liye */
  z-index: 1;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ye image cover ki tarah kaam karega */
  z-index: 0; /* Content ke peeche rakhne ke liye */
  pointer-events: none; /* Taaki video clicks ko block na kare */
}

@media (max-width: 768px) {
  .about-hero-area {
    padding: 100px 0 50px;
  }
  .vision-card {
    padding: 30px;
  }
}

/* Sticky header on scroll */
.tp-header-area.tp-header-sticky{
  position: sticky;
  top: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
}

/* Mobile menu above hero video/cards */
.tp-mobile-menu{ z-index: 10001; }

.vision-section {
  background: #fff;

  padding: 100px 0;
  border-top: 1px solid #1a1a1a;
}

.tp-btn {
  border-radius: 20px !important;
  background-color: #fff !important;
}
.about-hero-title {
  font-size: clamp(40px, 8vw, 100px);
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 30px;
}

.about-hero-subtitle {
  color: #888;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* HERO SLIDER SMOOTHING: stable dimensions + consistent transforms */
.heroImageSlider{
  --slide-w: 600px;
  --slide-h: 400px;
}

/* Keep slide dimensions stable between active/inactive to avoid layout jump */
.heroImageSlider .swiper-slide{
  width: var(--slide-w) !important;
  height: var(--slide-h) !important;
  will-change: transform, filter;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  filter: brightness(0.4) grayscale(1) !important;
  transform: scale(0.8) translateY(40px) !important;
}


.heroImageSlider .swiper-slide-active{
  filter: brightness(1) grayscale(0) !important;
  transform: scale(1.08) translateY(0) !important;
}

/* Responsive (mobile): only change sizing; keep same transform approach */
@media (max-width: 991px){
  .heroImageSlider{
    overflow:hidden;
    padding-top:10px !important;
    --slide-w: 85%;
    --slide-h: 250px;
  }

  .heroImageSlider .swiper-slide{
    /* slightly reduced scale on mobile */
    transform: scale(0.98) translateY(12px) !important;
  }

  .heroImageSlider .swiper-slide-active{
    transform: scale(1) translateY(0) !important;
  }

  .heroImageSlider .swiper-pagination{
    bottom:0 !important;
    margin-bottom:8px;
  }
}




