body {
  background-color: #0d1117 !important; /* dark background */
}
.navbar {
  background-color: #1b2126; /* same dark navbar */
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #67c191; /* greenish text */
}

.navbar-brand:hover {
  color: #67c191;
}

.nav-link {
  color: #fff !important;
  margin: 0 12px;
}

.nav-link:hover {
  color: #67c191 !important;
}

.btn-login {
  background-color: #67c191;
  color: #000;
  font-weight: 500;
  border-radius: 10px;
  padding: 6px 20px;
}

.btn-login:hover {
  background-color: #67c191;
  color: #000;
}

.navbar-brand img {
  height: 30px;
  margin-right: 8px;
}

/* ✅ Responsive Navbar Styles */
@media (max-width: 768px) {
  .navbar-brand {
    font-size: 1.2rem;
  }

  .nav-link {
    margin: 8px 0;
    display: block; /* links stack in vertical */
    text-align: center;
    font-size: 0.95rem;
  }

  .btn-login {
    display: block;
    margin: 10px auto;
    padding: 8px 18px;
    font-size: 0.9rem;
  }

  .navbar-brand img {
    height: 26px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1rem;
  }

  .nav-link {
    font-size: 0.9rem;
    margin: 6px 0;
  }

  .btn-login {
    width: 100%; /* full width button */
    font-size: 0.85rem;
  }

  .navbar-brand img {
    height: 22px;
  }
}

.hero-section {
  position: relative;
  text-align: center;
  padding: 120px 30px;
  background-color: #0d1117;

  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) !important;
  background-size: 50px 50px !important; /* grid effect */
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1fb6ff; /* light blue heading */
}

.hero-subtitle {
  font-size: 1rem;
  color: #aaa;
  margin-top: 15px;
  margin-bottom: 30px;
  padding-left: 10px;
  padding-right: 10px;
}

.discover-btn {
  width: 240px;
  height: 56px;
  background: #67c191;
  border-radius: 12px;
  border: none;
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 23px;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  padding-top: 15px;
}

/* Hover / Active Variant */
.discover-btn:hover {
  color: #ffffff;
  box-shadow: 0px 1px 28.1px #4b9e72;
  background-color: #67c191;
}

/* Left & Right Icons */
.hero-icon-left {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 180px;
}

.hero-icon-right {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  right: 180px;
}

.hero-icon img {
  width: 50px;
  height: 50px;
}

/* ✅ Responsive Styles */
@media (max-width: 992px) {
  /* Tablet */
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 0.95rem;
  }
  .discover-btn {
    width: 200px;
    height: 52px;
    font-size: 18px;
    padding-top: 13px;
  }
  .hero-icon-left {
    left: 80px;
  }
  .hero-icon-right {
    right: 80px;
  }
  .hero-icon img {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 576px) {
  /* Mobile */
  .hero-section {
    padding: 80px 20px;
  }
  .hero-title {
    font-size: 1.6rem;
  }
  .hero-subtitle {
    font-size: 0.85rem;
    margin-bottom: 20px;
  }
  .discover-btn {
    width: 180px;
    height: 48px;
    font-size: 16px;
    padding-top: 12px;
  }
  .hero-icon-left,
  .hero-icon-right {
    display: none; /* Mobile pe icons hide */
  }
}

.feature-section {
  padding: 80px 0;
  text-align: center;
}
.feature-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 1.1rem;
  font-weight: 500;
}
.feature-box i {
  font-size: 2rem;
  color: #8ab4f8 !important; /* light blue icon */
}
.feature-box strong {
  color: #94a4b1;
  font-size: 1.3rem;
}
.divider {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  height: 50px;
  margin: auto;
}
.section4-heading {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
}

.btn4-outline-green {
  border: 1px solid #67c191;
  color: #fff;
  border-radius: 8px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn4-outline-green:hover {
  background: #67c191;
  color: #000;
}

.feature4-card {
  background: #1b2126;
  border-radius: 16px;
  padding: 20px;
  color: #94a3b8;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.feature4-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

/* Feature Image */
.feature4-icon img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  animation: zoomEffect 4s ease-in-out infinite;
}

@keyframes zoomEffect {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3); /* Zoom more (30% bigger) */
  }
}

.feature4-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 20px 0 10px;
  color: #fff !important;
  padding-top: 20px;
}

.feature4-text {
  font-size: 0.95rem;
  color: #94a3b8;
}
.why-choose {
  background: #1b2126; /* Dark background */
}

.choose-box img {
  width: 50px;
  height: 50px;
}

/* Rotate Animation */
.rotate-icon {
  animation: rotateAnim 6s linear infinite;
}

@keyframes rotateAnim {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.choose-box h5 {
  font-size: 1.1rem;
  font-weight: 600;
  padding-top: 20px;
}

.choose-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #94a4b1 !important;
}

/* Divider between columns */
.divider5 {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  height: 150px;
  margin: auto;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
  .divider5 {
    display: none; /* Hide dividers on mobile */
  }
}

.platforms-section {
  background-color: #0d1117; /* Dark background */
}

.platform-btn {
  background: transparent;
  border: 1px solid #fff;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  padding: 10px 5px;
  transition: all 0.3s ease;
  justify-content: center;
  width: 180px;
}

.platform-btn img {
  width: 20px;
  height: 20px;
}

.platform-btn:hover {
  background-color: #67c191;
  color: #000;
  border-color: #67c191;
}

.device-img {
  border-radius: 12px;
  max-width: 90%;
  margin-top: 40px;
}

.discover6-btn {
  position: absolute;
  top: 30px; /* image ke andar thoda neeche */
  left: 230px; /* ya right:20px; karna ho to kar sakte ho */
  background: transparent;
  border: 1px solid #67c191;
  border-radius: 10px;
  padding: 10px 25px;
  color: #fff;
  transition: all 0.3s ease;
}

.discover6-btn:hover {
  background: #67c191;
  color: #000;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .discover6-btn {
    position: static;
    display: inline-block;
    margin-top: 20px;
  }

  .device-img {
    max-width: 100%;
  }

  .platform-btn {
    font-size: 0.9rem;
  }
}
.payments-section {
  background: #1b2126;
  padding: 50px 0;
}

.payments-section h3 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 48px;
  color: #fff;
}

.payment-methods {
  display: flex;
  flex-wrap: nowrap; /* default desktop */
  overflow: hidden;
  position: relative;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 50px;
  gap: 20px;
}

.payment-methods img {
  height: 60px;
  margin: 0 20px;
  animation: wave 2.5s infinite ease-in-out;
  transform-origin: bottom center;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.search-box {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.search-box input {
  width: 60%;
  height: 50px;
  background: #1b2126;
  border: 1px solid #fff;
  border-radius: 8px;
  color: #94a4b1;
  font-size: 18px;
  padding: 0 20px;
  min-width: 200px;
}

.search-box input::placeholder {
  color: #94a4b1;
}

.search-box .btn {
  height: 50px;
  background: #67c191;
  border: 1px solid #67c191;
  border-radius: 12px;
  padding: 0 25px;
  font-family: "Ubuntu", sans-serif;
  font-size: 20px;
  color: #101519;
  white-space: nowrap;
}

/* ✅ Tablet & Mobile Adjustments */
@media (max-width: 991px) {
  .payment-methods {
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }

  .payment-methods img {
    height: 55px;
    max-width: 130px;
  }
}

/* ✅ Mobile (<=768px) */
@media (max-width: 768px) {
  .payments-section h3 {
    font-size: 24px;
    line-height: 34px;
    text-align: center;
  }

  .payment-methods {
    justify-content: flex-start;
    overflow-x: auto; /* horizontal scroll for logos */
    flex-wrap: nowrap;
    padding-bottom: 10px;
  }

  .payment-methods img {
    height: 45px;
    margin: 0 15px;
  }

  .search-box {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }

  .search-box input {
    width: 100%;
  }

  .search-box .btn {
    width: 100%;
    text-align: center;
  }
}

/* ✅ Extra Small (<=576px) */
@media (max-width: 576px) {
  /* ✅ Mobile (<=768px) */
  @media (max-width: 768px) {
    .payment-methods {
      justify-content: flex-start;
      overflow-x: auto; /* horizontal scroll */
      flex-wrap: nowrap;
      gap: 15px;
      padding-bottom: 10px;
      -webkit-overflow-scrolling: touch; /* smooth scroll */
      scrollbar-width: none; /* Firefox */
    }

    .payment-methods::-webkit-scrollbar {
      display: none; /* Chrome/Safari hide scrollbar */
    }

    .payment-methods img {
      height: 45px;
      flex: 0 0 auto; /* force all images visible */
    }
  }

  .payments-section h3 {
    font-size: 20px;
  }

  .search-box input {
    font-size: 16px;
    height: 45px;
  }

  .search-box .btn {
    font-size: 18px;
    height: 45px;
  }
}

.footer-section {
  background: #1b2126;
  color: #94a4b1;
}

.footer-section h6 {
  font-family: "Ubuntu", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-section a {
  color: #94a4b1;
  font-size: 16px;
  text-decoration: none;
}

.footer-section a:hover {
  color: #67c191;
}

.footer-link {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: #67c191;
}

.social-icon {
  font-size: 20px;
  color: #94a4b1;
  transition: 0.3s;
}

.social-icon:hover {
  color: #67c191;
}
