.hero-static-content {
  position: absolute;
  left: 8%;
  bottom: 20%;
  max-width: 700px;
  color: #fff;
  z-index: 20;
}

.hero-static-content h1 {
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero-static-content p {
  font-size: 18px;
  opacity: 0.9;
}

.luxury-nav {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(6px);
  transition: all 0.4s ease;
}

.luxury-nav::after {
  font-size: 16px;
  color: #fff;
}

.luxury-nav:hover {
  background: #fff;
}

.luxury-nav:hover::after {
  color: #000;
}

/* Position */
.swiper-button-prev {
  left: 40px;
}

.swiper-button-next {
  right: 40px;
}
.carousel-home.auto-hero,
.carousel-home .autoSwiper {
  height: 100vh;
  width: 100%;
  position: relative;
}

.carousel-home .slide {
  background-size: cover;
  background-position: center;
}

/* Images */
.bentley { background-image: url("https://ba.segwaytour.in/wp-content/themes/bird/assets/slides/bentaly-home.jpg"); }
.porsche { background-image: url("https://ba.segwaytour.in/wp-content/themes/bird/assets/slides/porsche.jpg"); }
.bmw { background-image: url("https://ba.segwaytour.in/wp-content/themes/bird/assets/slides/bmw.jpg"); }
.mini { background-image: url("https://ba.segwaytour.in/wp-content/themes/bird/assets/slides/mini.jpg"); }
.citroen { background-image: url("https://ba.segwaytour.in/wp-content/themes/bird/assets/slides/citron.jpg"); }

.swiper-button-next:after, .swiper-button-prev:after{font-size:20px!important;font-weight:600;}
.swiper-button-next, .swiper-button-prev{width:50px!important;height:50px!important;}


.defender-testimonials {
  background: #e0dbd9;
  padding: 60px 0;
  overflow: hidden;
}

.defenderTestimonialSwiper {
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
  overflow: visible; /* IMPORTANT */
}

.defenderTestimonialSwiper .swiper-slide {
  position: relative;
  height: 500px;
  border-radius: 14px;
  overflow: hidden;
  transform: scale(0.88)!important;
  transition: transform 0.6s ease, opacity 0.6s ease;
  opacity: 0.5;
}

/* Background image */
.defenderTestimonialSwiper .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.defenderTestimonialSwiper .slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.8),
    rgba(0,0,0,0.3)
  );
}

/* Active slide */
.defenderTestimonialSwiper .swiper-slide-active {
  transform: scale(1.0)!important;
  opacity: 1;
  z-index: 10;
}

/* Testimonial content */
.testimonial-box {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  color: #fff;
  z-index: 2;
}

.testimonial-box .profile {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 2px solid rgba(255,255,255,0.7);
}

.testimonial-box .text {
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 20px;
}

.testimonial-box h4 {
  font-size: 18px;
  margin: 0;
}

.testimonial-box span {
  font-size: 14px;
  opacity: 0.7;
}

/* Arrows */
.defenderTestimonialSwiper .swiper-button-next,
.defenderTestimonialSwiper .swiper-button-prev {
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .defenderTestimonialSwiper {
    padding-left: 8%;
    padding-right: 8%;
  }

  .defenderTestimonialSwiper .swiper-slide {
    height: 420px;
  }
}





.faq-section {
  padding: 60px 16px;
  background: #f9f9f9;
}

.faq-container {
  max-width: 820px;
  margin: auto;
}

.faq-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 34px);
  margin-bottom: 32px;
  font-weight: 600;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid #e6e6e6;
}

.faq-question {
  width: 100%;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 500;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  min-height: 56px; /* better tap area on mobile */
}

.faq-icon {
  width: 18px;
  height: 18px;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: #111;
  transition: transform 0.3s ease;
}

.faq-icon::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  transform: translateY(-50%);
}

.faq-icon::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease;
  padding: 0 20px;
}

.faq-answer p {
  margin: 0;
  padding-bottom: 18px;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-top: 10px;
}

.faq-item.active .faq-icon::after {
  transform: scaleY(0);
}


.lightbg2.cnt{margin:auto;}


.faq .it-banner .breadcrumb-item,.faq .it-banner .breadcrumb-item:last-child,.faq .breadcrumb-item.active{background-color:#fff!important;}

 .sustainability-section2 .videoplay_inpoup .row{background:#fff!important;background-color:#fff!important;}

.coming-soon-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  padding: 60px 20px;
}

.coming-soon-inner {
  text-align: center;
  max-width: 600px;
  color: #fff;
}

.cs-logo img {
  max-width: 360px;
  margin-bottom: 30px;
}

.cs-title {
  font-size: clamp(30px, 5vw, 44px);
  margin-bottom: 15px;
}

.cs-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 40px;
  line-height: 1.6;
}

.cs-countdown {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 35px;
}

.cs-box {
  background: rgba(255,255,255,0.12);
  padding: 16px 18px;
  border-radius: 14px;
  min-width: 72px;
}

.cs-box span {
  font-size: 26px;
  font-weight: 600;
  display: block;
}

.cs-box small {
  font-size: 12px;
  opacity: 0.8;
}

.cs-contact {
  font-size: 14px;
}

.cs-contact a {
  color: #00ffd5;
  text-decoration: none;
}



.manifesto-content ol li{
    font: 300 1rem var(--secondry-font);
    color: #061059c1;
    line-height: 1.3rem;
	padding-bottom:12px;
}

.manifesto-content ol{padding-left:32px;}

.home-banner-txt2.upFade,.contac.upFade{color:#fff;}
.contac.upFade{margin-top:16%;}


.sustainability-section2.p-5.for-desktop .row{    background-image: url(https://ba.segwaytour.in/wp-content/themes/bird/assets/sustainabilty/sustainability.jpg) !important;}
.sustainability-section2.gau .row{    background-image: url(https://ba.segwaytour.in/wp-content/themes/bird/assets/banner/bannerv5.jpg) !important;}

.sustainability-section2.p-5.for-desktop .videoFrame .row{background-image:none!important;}

#footer-section .pages-link h6{color:#fff;}



/* Bottom-right location text */
.slide-location {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.5px;
  z-index: 5;
  opacity: 1;
}

/* Pin icon */
.slide-location .pin {
  font-size: 14px;
  opacity: 0.9;
}

/* City name */
.slide-location .city {
  font-weight: 500;
  white-space: nowrap;
}

/* Horizontal line */
.slide-location .line {
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}

/* Area text */
.slide-location .area {
  white-space: nowrap;
  font-weight: 400;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
  .slide-location {
    left: 20px;
    bottom: 20px;
	  display:flow;
    font-size: 12px;
  }

  .slide-location .line {
    width: 40px;
  }
	.testimonial-box .text{font-size:12px;}
}


.slide-location img{width:120px;}

.sustainability-section2.gau.about .row{height:auto!important;background-image: none !important;}