body {
font-family: 'Segoe UI', sans-serif;
}

.hero {
height: 100vh;
}

.hero-slider-section {
  height: 100vh;
  position: relative;
}

.mySwiper {
  height: 100%;
}

.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}

.slide-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.5);
}

.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 20px;
  margin-bottom: 20px;
}

.business-hero {
  min-height: 100vh;
  background: linear-gradient(135deg,#0f2027,#203a43,#2c5364);
  color: white;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-title span {
  color: #ffc107;
}

.hero-sub {
  font-size: 18px;
  margin-bottom: 30px;
}

.hero-search {
  display: flex;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-search input {
  border: none;
  padding: 15px 20px;
  width: 100%;
  outline: none;
}

.hero-search button {
  background: #ffc107;
  border: none;
  padding: 0 25px;
  font-weight: bold;
}

.hero-buttons {
  margin-bottom: 30px;
}

.hero-buttons .btn {
  margin-right: 10px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats h3 {
  font-weight: 700;
  color: #ffc107;
}

.hero-image {
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.business-hero {
  min-height: 93vh;
  position: relative;
  display: flex;
  align-items: center;
  background: linear-gradient(
      135deg,
      #0f2027,
      #203a43,
      #2c5364
  );
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.8), rgba(0,0,0,0.6));
  top: 0;
  left: 0;
}

.hero-title {
  font-size: 55px;
  font-weight: 800;
  animation: fadeLeft 1.2s ease;
}

.hero-title span {
  color: #ffc107;
}

.hero-sub {
  font-size: 18px;
  margin: 20px 0;
  animation: fadeLeft 1.5s ease;
}

.hero-buttons {
  animation: fadeLeft 1.8s ease;
}

.hero-right-text {
  animation: fadeRight 1.5s ease;
}

.hero-list {
  list-style: none;
  padding: 0;
  font-size: 18px;
  margin-bottom: 20px;
}

.hero-list li {
  margin-bottom: 10px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats h3 {
  color: #ffc107;
  font-weight: bold;
}

/* Animations */
@keyframes fadeLeft {
  from {opacity:0; transform:translateX(-50px);}
  to {opacity:1; transform:translateX(0);}
}

@keyframes fadeRight {
  from {opacity:0; transform:translateX(50px);}
  to {opacity:1; transform:translateX(0);}
}

/* ===== Transparent Navbar ===== */
.custom-navbar {
  background: transparent;
  padding: 20px 0;
  transition: all 0.4s ease;
}

/* Navbar after scroll */
.custom-navbar.scrolled {
  background: #111;
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Nav Links */
.custom-navbar .nav-link {
  color: white;
  margin-left: 15px;
  font-weight: 500;
  transition: 0.3s;
}

.custom-navbar .nav-link:hover {
  color: #ffc107;
}

/* ===== Dropdown ===== */
.custom-dropdown {
  background: #1c1c1c;
  border-radius: 12px;
  border: none;
  padding: 10px;
  min-width: 230px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.custom-dropdown .dropdown-item {
  color: white;
  padding: 10px;
  border-radius: 8px;
  transition: 0.3s;
}

.custom-dropdown .dropdown-item:hover {
  background: #ffc107;
  color: black;
  transform: translateX(5px);
}

.trust-slider {
  overflow: hidden;
  background: #f8f9fa;
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
}

.trust-track {
  display: flex;
  width: max-content;
  animation: slideLeft 20s linear infinite;
}

.trust-item {
  display: inline-block;
  padding: 0 60px;
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

/* Animation */
@keyframes slideLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}