* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body,
html {
  height: 100%;
  overflow: hidden;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  /* background: #f0e2de; */
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
}

/* ---------- HEADER ---------- */
.search-box {
  width: 560px;
  /*background: #f9f9f9;*/
  border-radius: 20px;
  padding: 12px 20px;
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.15),
    -4px -4px 12px rgba(255, 255, 255, 0.8);
}
.dropdown-menu-custom {
  min-width: 14rem;
}
.nav-item .dropdown-menu {
  border-radius: 8px;
}

/* video section */
/* Floating Particles */
.particles-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  50% {
    transform: translateY(-100px) rotate(180deg);
    opacity: 0.8;
  }
}

/* Hero Container */
/* hero section style  */

/* popular cities */
/* 
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #f9f9f9;
  color: #333;
} */

.trending-section {
  padding: 20px 0px;
  padding-left: 20px;
  text-align: center;
  gap: 20px;
  overflow-x: auto;
}
.city-container {
  max-width: 1700px;
  position: relative;
  z-index: 1;
  margin: 10px 0px;
  padding: 0px 20px;
}
.trending-city-title {
  font-weight: 700;
}
.city-title {
  color: #ff4b2b;
  font-weight: bold;
  font-size: 18px;
}

.city-title .icon {
  margin-right: 8px;
}

h1 {
  font-size: 34px;
  margin: 10px 0;
}

p {
  color: #555;
  margin-bottom: 5px;
  font-size: 25px;
  font-weight: 500;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  cursor: grab;
}
.carousel.dragging {
  cursor: grabbing;
}

.cards-wrapper {
  display: flex;
  transition: transform 0.5s ease;
  overflow-x: auto; /* allow horizontal scroll */
  scroll-behavior: smooth; /* smooth scrolling */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  height: 400px;
  padding: px;
}
.cards-wrapper {
  -ms-overflow-style: none; /* Hide scrollbar on IE and Edge */
  scrollbar-width: none; /* Hide scrollbar on Firefox */
}

.cards-wrapper::-webkit-scrollbar {
  display: none; /* Hide scrollbar on Chrome, Safari and Opera */
}

.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  margin: 0 10px;
  min-width: 280px;
  max-width: 280px;
  transition: transform 0.3s;
  flex: 0 0 auto;
  scroll-snap-align: start;
  height: 380px;
  margin-top: 10px;
}

.card:hover {
  transform: translateY(-10px);
}

.card-image {
  position: relative;
  width: 100%;
  height: 180px; /* 👈 fixed height for all images */
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 👈 this makes sure images fill the box and crop nicely */
  display: block;
}

.badge {
  position: absolute;
  top: 10px;
  background: #fff;
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
}

.badge.trending {
  left: 10px;
  color: rgb(243, 66, 39);
}

.badge.rating {
  right: 10px;
  color: gold;
}

.card-content {
  padding: 20px;
  text-align: left;
}

.card-content h3 {
  margin-bottom: 5px;
}

.card-content p {
  margin: 4px 0;
  font-size: 14px;
}

.activities {
  color: #ff4d3a;
  font-weight: bold;
}

.growth {
  color: green;
  margin-left: 8px;
}

.card-content button {
  margin-top: 10px;
  background: #ff4d3a;
  border: none;
  padding: 10px 20px;
  color: #fff;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.card-content button:hover {
  background: #ff4d3a;
}

.carousel {
  position: relative;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  height: 40px;
  width: 40px;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10; /* 👈 makes sure they sit on top */
  cursor: pointer;
}

.carousel-btn.prev {
  left: 10px; /* 👈 enough inside */
  display: none;
}

.carousel-btn.next {
  right: 10px; /* 👈 enough inside */
  display: none;
}
.carousel-pagination {
  text-align: center;
  margin-top: 15px;
}

.carousel-pagination .dot {
  height: 10px;
  width: 10px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.carousel-pagination .dot.active {
  background-color: #ff4d3a;
}

@media (max-width: 768px) {
  .carousel-btn {
    display: none;
  }

  .cards-wrapper {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .card {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}

/* popular categories */

.category-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
  margin-left: 33px;
  color: #111827;
  text-align: center;
}
.category-subtitle {
  color: #555;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

/* // new category .................. */

.category-card {
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.category-card img {
  max-width: 80px;
  height: auto;
}

.category-link {
  text-decoration: none;
  color: #333;
  display: block;
  text-align: center;
  transition: color 0.3s;
}

.category-link:hover {
  color: #007bff;
}

/* Section Styling */

/* new discovery .........................  */
.discovery-section {
  padding: 50px 20px;
  text-align: center;
}

.discovery-section h2 {
  font-size: 2.6em;
  font-weight: 800;
  margin-bottom: 15px;
  color: #222;
}

.discovery-section h2 span {
  color: #ff2f2f;
}

.discovery-section p {
  font-size: 1.7em;
  color: #555;
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.6;
  font-weight: 600;
}

.cards-wrapper-discovery {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 1000px;
  margin: 0 auto;
}

.info-card-discovery {
  display: flex;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.info-card-discovery:hover {
  transform: translateY(-6px);
}

.card-image-discovery {
  width: 35%;
  height: 290px;
  object-fit: cover;
}

.card-content-discovery {
  padding: 35px 30px;
  text-align: left;
  flex: 1;
}

.card-content-discovery h3 {
  font-size: 1.6em;
  font-weight: 700;
  margin-bottom: 15px;
  color: #111;
}

.card-content-discovery p {
  font-size: 1.25em;
  color: #444;
  margin-bottom: 20px;
  line-height: 1.7;
  font-weight: 600;
}

.stat-box-discovery {
  display: inline-block;
  background: #fbeeee;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1.25em;
  font-weight: 500;
}

.stat-box-discovery strong {
  color: #f33535;
  font-size: 1.15em;
}

/* Responsive */
@media (max-width: 900px) {
  .info-card-discovery {
    flex-direction: column;
  }
  .card-image-discovery {
    width: 100%;
    height: 220px;
  }
  .card-content-discovery {
    text-align: center;
  }
}

/* reach customer */

/* //////hero new  */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero {
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  padding-top: 20px;
  position: relative;
  overflow: hidden;
}

.hero-badge-customers {
  display: inline-block;
  background: #fff;
  color: #333;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  animation: fadeInDown 1s ease;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 20px 0;
  animation: fadeInUp 1.2s ease;
}

.gradient-text {
  background: linear-gradient(to right, #ff2f2f, #f73c3c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.5rem;
  color: #555;
  margin-bottom: 30px;
  animation: fadeInUp 1.4s ease;
  font-weight: 500;
}

.hero-buttons .primary-button,
.hero-buttons .secondary-button {
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  border: none;
  margin-right: 10px;
  transition: all 0.3s ease;
  animation: fadeInUp 1.6s ease;
}

.primary-button {
  background: #ff4d3a;
  color: white;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: #9c2d21;
}

.secondary-button {
  background: transparent;
  border: 2px solid #007bff;
  color: #ff4d3a;
}

.secondary-button:hover {
  background: #ff4d3a;
  color: white;
  transform: translateY(-2px);
}

.hero-img {
  animation: fadeInRight 1.2s ease;
  max-width: 100%;
}
.hero-video {
  width: 35rem;
}

/* Small screens (mobile) */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-description {
    font-size: 1.2rem;
  }
  .hero-buttons .primary-button,
  .hero-buttons .secondary-button {
    width: 100%; /* buttons stack full width */
    margin: 8px 0;
  }
  .hero-video {
    width: 23rem;
  }
  .hero-badge-customers {
    font-size: 1rem;
    padding: 5px 12px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .hero-title {
    font-size: 26px;
  }
  .hero-description {
    font-size: 1rem;
  }
  .hero-video {
    width: 18rem;
  }
  .hero-badge-customers {
    font-size: 0.9rem;
    padding: 4px 10px;
  }
}

/* feature section  */

/* animated feature section  */
.features {
  position: relative;
  padding: 0px 0;
}

.container-feature {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  position: relative;
  opacity: 0;
  animation: fadeInDown 1s ease forwards;
}
.gradient-text-feature {
  background: linear-gradient(90deg, #ff2f2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  /* background: #dc3545; */
  background: linear-gradient(90deg, #ff2f2f);
  border-radius: 2px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-md-6 {
  width: 50%;
  padding: 0 15px;
  margin-bottom: 30px;
}

.feature-card {
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  text-align: center;
  height: 100%;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.5s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #dc3545, #ff6b6b);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.feature-card:hover::before {
  transform: scaleX(1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.icon-circle {
  width: 80px;
  height: 80px;
  border: 2px solid #dc3545;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #dc3545;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.icon-circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: #dc3545;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
  z-index: 0;
}

.icon-circle i {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.feature-card:hover .icon-circle {
  transform: rotate(360deg);
  border-color: #dc3545;
}

.feature-card:hover .icon-circle::before {
  width: 100%;
  height: 100%;
}

.feature-card:hover .icon-circle i {
  color: white;
  transform: scale(1.2);
}

.feature-title {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: #333;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
  color: #dc3545;
}

.feature-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  min-height: 60px;
  transition: color 0.3s ease;
}

.feature-card:hover .feature-description {
  color: #444;
}

.btn-feature {
  display: inline-block;
  padding: 10px 20px;
  font-size: 0.9rem;
  border-radius: 30px;
  border: 2px solid #dc3545;
  color: #dc3545;
  background: transparent;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #dc3545;
  transition: left 0.5s ease;
  z-index: 0;
}

.btn-feature span {
  position: relative;
  z-index: 1;
}

.btn-feature:hover::before {
  left: 0;
}

.btn-feature:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(220, 53, 69, 0.3);
}

/* Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Staggered animation for cards */
.feature-card:nth-child(1) {
  animation: fadeInUp 0.6s ease 0.1s forwards;
}
.feature-card:nth-child(2) {
  animation: fadeInUp 0.6s ease 0.2s forwards;
}
.feature-card:nth-child(3) {
  animation: fadeInUp 0.6s ease 0.3s forwards;
}
.feature-card:nth-child(4) {
  animation: fadeInUp 0.6s ease 0.4s forwards;
}
.feature-card:nth-child(5) {
  animation: fadeInUp 0.6s ease 0.5s forwards;
}
.feature-card:nth-child(6) {
  animation: fadeInUp 0.6s ease 0.6s forwards;
}
.feature-card:nth-child(7) {
  animation: fadeInUp 0.6s ease 0.7s forwards;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .col-md-6 {
    width: 100%;
    padding-left: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Floating animation for icons */
@keyframes float-feature-icon {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.icon-circle {
  animation: float-feature-icon 3s ease-in-out infinite;
}

.feature-card:hover .icon-circle {
  animation-play-state: paused;
}

/* explore cityhangaround */
.container-explore {
  width: 100%;
  padding: 10px 20px;
  /* background: linear-gradient(135deg, #f9f9f9, #ffffff); */
  margin-top: 4rem;
}

.header-explore {
  text-align: center;
  margin-bottom: 0px;
}
.explore-content {
  font-size: 1.25rem;
  font-weight: 500;
}
.header-explore h2 {
  color: #2c2c2c;
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 800;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gradient-text-cityhangaround {
  background: linear-gradient(90deg, #ff2f2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header-explore h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff2f2f);
  border-radius: 2px;
}

.stats-container {
  overflow-x: auto;
  padding: 20px 80px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.stats-container::-webkit-scrollbar {
  display: none;
}

.stats-section {
  display: flex;
  gap: 60px;
  min-width: max-content;
  padding: 15px;
}

.stat {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  min-width: 260px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  position: relative;
}

.stat:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.icon-explore {
  width: 65px;
  height: 65px;
  margin: 0 auto 15px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.stat:nth-child(1) .icon-explore {
  background: linear-gradient(135deg, #ff4d3a, #ff874d);
}
.stat:nth-child(2) .icon-explore {
  background: linear-gradient(135deg, #444, #888);
}
.stat:nth-child(3) .icon-explore {
  background: linear-gradient(135deg, #f94a29, #ff7e5f);
}
.stat:nth-child(4) .icon-explore {
  background: linear-gradient(135deg, #555, #999);
}

.count {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  position: relative;
}

.count::after {
  content: "+";
  color: #ff4d3a;
  font-size: 28px;
  margin-left: 4px;
}

.stat p {
  font-size: 18px;
  font-weight: 500;
  color: #555;
  margin-top: 10px;
  line-height: 1.5;
}

/* ✨ Responsive */
@media (max-width: 768px) {
  .stats-section {
    gap: 20px;
    padding: 10px;
  }
  .stat {
    min-width: 220px;
    padding: 30px 20px;
  }
  .stats-container {
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .stat {
    min-width: 200px;
    padding: 25px 15px;
  }
  .count {
    font-size: 28px;
  }
}

/* // new counter  */
.counter-section {
  padding: 0, 0;
}

.counter-section h2 {
  font-weight: 700;
}

.counter-item {
  text-align: center;
  margin-top: 30px;
}

.counter-item h4 {
  font-size: 26px;
  font-weight: 700;
  margin-top: 15px;
}

.counter-item p {
  margin: 0;
  font-size: 1.25rem;
}

.tagline {
  background: #f1ecfd;
  color: #ff5722;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
/* client section */

/* nee client  */

.trusted-text {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  border-left: 4px solid #ff2f2f;
  padding-left: 15px;
}

.client-logo {
  max-height: 70px;
  margin: 15px 0;
  opacity: 0.85;
  transition: all 0.3s ease-in-out;
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Vertical line styling */
.vertical-line {
  width: 2px;
  background-color: #0d6efd;
  height: 100%;
  min-height: 350px;
  margin: auto 0;
  border-radius: 1px;
}

.col-md-1.d-none.d-md-flex {
  align-items: stretch;
}

/* Horizontal line styling */
.client-hr {
  border: none;
  border-top: 2px solid #f93f3f;
  margin: 20px 0;
}

@media (max-width: 767px) {
  .trusted-text {
    text-align: center;
    border-left: none;
    padding-left: 0;
    border-bottom: 3px solid #ff2f2f;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  /* Hide vertical line on small screens */
  .vertical-line {
    display: none;
  }
}
/* Custom styles for the section */
.client-section {
  padding: 50px 0;

  text-align: center;
}

.client-logo-box {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 150px; /* Standard height for all logo boxes */
  margin-bottom: 30px; /* Space between rows */
}

.client-logo-box img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  /* Optional: Add a smooth grayscale effect on hover */
  /* filter: grayscale(100%);
        opacity: 0.7; */
  transition: all 0.3s ease-in-out;
}

.client-logo-box img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

.section-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  /* border-b: 4px solid #ff2f2f; */
  padding-left: 15px;
}

/* Adjust columns for different screen sizes */
/* md: 5 columns on medium and larger screens */
/* sm: 3 columns on small screens */
/* xs: 2 columns on extra-small screens */
@media (min-width: 768px) {
  .col-md-5-custom {
    width: 20%; /* 100% / 5 logos = 20% */
  }
}
/* testimonials */

.testimonials-container {
  margin: 0 auto;
  padding: 30px 50px;
  position: relative;
  /* background: linear-gradient(
    135deg,
    #f4f1f1 0%,
    rgb(253, 251, 251) 50%,
    #fcfafa 100%
  ); */
  min-height: 100vh;
  overflow-x: hidden;
}

/* Header Section */
.test-header-section {
  text-align: center;
  margin-bottom: 30px;
}

.test-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(132, 131, 131, 0.2);
  color: #282827;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(4, 2, 2, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    box-shadow: 0 0 20px rgba(36, 36, 36, 0.3);
  }
  to {
    box-shadow: 0 0 30px rgba(46, 45, 45, 0.5);
  }
}

.main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: rgb(40, 38, 38);
  margin-bottom: 15px;
  line-height: 1.2;
}

.test-gradient-text {
  background: linear-gradient(45deg, #e91f1f, #e66102);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.subtitle {
  font-size: 1.25rem;
  color: #3a3838;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Controls Section */
.testimonials-container {
  padding: 20px 20px;
  /* background: #f9fafc; light background */
  text-align: center;
}

/* Header */
.test-header-section {
  margin-bottom: 50px;
}

.test-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffe9e3;
  color: #ff5722;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 20px 0 10px;
  color: #222;
}

.test-gradient-text {
  background: linear-gradient(90deg, #ff2f2f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  color: #555;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Carousel */

.video-frame {
  display: none;
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 61.25%; /* 16:9 ratio */
  overflow: hidden;
  border-radius: 10px;
}

.video-frame video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* object-fit: cover;/ */
}
.test-container {
  position: relative;
  overflow-x: auto; /* llow horizontal scroll */
  overflow-y: hidden;
  margin-bottom: 40px;
  scroll-behavior: smooth; /* smooth scroll */
}

.test-track {
  display: flex;
  gap: 40px;
  padding: 10px 20px;
  /* transition hata do yaha se, ye sirf slider ke liye hota hai */
}

.testimonial-card {
  flex: 0 0 330px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.video-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.testimonial-card:hover .play-overlay {
  opacity: 1;
}

.play-button {
  width: 60px;
  height: 60px;
  background: #ff5722;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
  background: #e64a19;
}

/* Card Content */
.card-content {
  padding: 20px;
  text-align: left;
}

.rating i {
  color: #ff9800;
}

.card-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 10px 0;
  color: #111;
}

.card-content p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 15px;
}

.avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ff6b35, #ff2d55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

.author-info .name {
  color: #222;
  font-weight: 600;
}

.author-info .title {
  color: #777;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .testimonial-card {
    flex: 0 0 280px;
  }
  .main-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    flex: 0 0 240px;
  }
}

/* Faq section  */
.faq {
  max-width: 1080px;
  margin: 0px auto;
  padding: 0 20px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #222;
  font-size: 2.2em;
  position: relative;
}
.faq h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
  width: 7rem;
  height: 4px;
  background: linear-gradient(90deg, #ff2f2f);
  border-radius: 2px;
}
.faq ul {
  list-style: none;
  padding: 0;
}

.faq li {
  background: #fff;
  margin-bottom: 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.faq li:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 18px 25px;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: background 0.3s, color 0.3s;
}

.faq a:hover {
  background: linear-gradient(90deg, #f6d365, #fda085);
  color: #fff;
}

.faq .icon {
  font-size: 20px;
  font-weight: bold;
  transition: transform 0.4s ease;
  color: #f6a623;
}

.faq li.active .icon {
  transform: rotate(45deg);
}

.faq p {
  max-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 25px;
  color: #555;
  line-height: 1.7;
  transition: max-height 0.6s ease, padding 0.6s ease, opacity 0.6s ease;
  opacity: 0;
}

.faq li.active p {
  padding: 15px 25px 20px;
  max-height: 1000px;
  opacity: 1;
  font-size: 1rem;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .faq h2 {
    font-size: 1.8em;
  }
  .faq a {
    padding: 15px 20px;
    font-size: 0.95em;
  }
  .faq p {
    padding: 12px 20px 15px;
    font-size: 0.92em;
  }
}

@media (max-width: 480px) {
  .faq h2 {
    font-size: 1.6em;
  }
  .faq a {
    flex-direction: row;
    justify-content: space-between;
    padding: 12px 18px;
    font-size: 0.9em;
  }
  .faq p {
    padding: 0px 0px 0px;
    font-size: 0.88em;
  }
}
/* footer */
.footer {
  padding: 20px;

  margin-top: 30px;

  display: flex;
  flex-wrap: wrap;
  background-color: rgb(58, 58, 58);
  color: whitesmoke;
}
.footer-column img {
  width: 170px;
  height: 50px;
  margin-bottom: 10px;
  border-radius: 10px;
}

.footer-column {
  flex: 1 1 220px;
  margin: 20px;
}

.footer h3 {
  font-size: 30px;
  color: #ef3f27;
  margin-bottom: 15px;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}

.footer p,
.footer li,
.footer a,
.footer label {
  font-size: 17px;
  color: whitesmoke;
  text-decoration: none;
  margin-bottom: 8px;
  display: block;
  padding: 1px;
  font-family: "Open Sans", sans-serif;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border: 1px solid #ef3f27;
  border-radius: 10px;
  font-size: 15px;
}

.contact-form button {
  background-color: #ca1d06;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Raleway", sans-serif;
}
.contact-form button:hover {
  transform: scale(1.05);
  background-color: #e03f2a;
  border: 2px solid #801001;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 4px 4px 7px whitesmoke;
}

.footer-bottom {
  /* background-color: #f9fafb; */
  background-color: #e5e7eb;
  color: whitesmoke;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 18px;
  font-family: "Raleway", sans-serif;
  gap: 20px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden; /* ✅ Fix for curve cut-off */
}

/* Power text */
.footer-bottom p {
  font-size: 22px;
  color: #1f1e1e;
  margin: 0;
  flex: 1 1 100%;
}

/* Links Styling */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  flex: 1 1 100%;
}

.footer-links a {
  color: #000;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #000;
}

/* Social Icons Styling */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex: 1 1 100%;
}

.social-icons a {
  color: #000;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
  color: #000;
  transform: scale(1.2);
}

/* Large Screen Adjustment */
@media (min-width: 768px) {
  .footer-bottom {
    flex-wrap: nowrap;
    justify-content: space-between;
    text-align: left;

    height: auto;
  }

  .footer-bottom p {
    font-size: 25px;
    flex: none;
  }

  .footer-links,
  .social-icons {
    flex: none;
  }

  .social-icons {
    justify-content: flex-end;
  }
}

/* Media Queries for Responsiveness */
@media (max-width: 992px) {
  .scroll-wrapper {
    padding: 0 10px;
  }
  .video-thumb {
    height: 200px;
  }
  .footer-column {
    flex: 1 1 45%;
  }
}
@media (max-width: 768px) {
  .scroll-container {
    gap: 15px;
    padding: 10px;
  }
  .footer {
    flex-direction: column;
    padding: 20px;
  }
}
@media (max-width: 480px) {
  .footer-column {
    flex: 1 1 100%;
    margin: 10px 0;
  }
  .section-title h2 {
    font-size: 1.5rem;
  }
  .review-card {
    min-width: 90%;
  }
}
