.about-section {
  background-color: #111; /* dark background */
      padding-top:104px;
      padding-bottom:30px;
    background: url(../images/bgforall.png);
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    width: 95%;
    margin: auto;
    height: 300px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  margin: 0 auto;
  flex-wrap: wrap;
}
.about-image img{
  display: none;
}

.logo-slider {
  overflow: hidden;
  margin: 40px auto;
  padding: 20px 0;
  max-width: 100%;
  position: relative;
  background-color: #0d0d0d;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 20s linear infinite;
  gap: 60px;
  align-items: center;
}

.logo-track img {
  height: 50px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

.logo-track img:hover {
  transform: scale(1.05);
  opacity: 1;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .dome-bg-left,
  .dome-bg-right {
    width: 100px;
  }

  .logo-track {
    gap: 30px;
  }

  .logo-track img {
    height: 40px;
  }
  .about-section {
    display: flex;
    flex-direction: column-reverse;
    background-image: none; 
    /* Remove background image */
    margin-bottom: 320px !important;
  }

  .about-container {
    display: flex;
    flex-direction: column-reverse;
  }

  .about-image img {
    width: 100%;
    position: relative;
    bottom: 190px;
    display: inline-block !important;
  }
  .about-text {
    background-color: #1d1d1d;
    border-radius: 10px;
    padding: 30px;
    max-width: 451px;
    flex: 1;
    color: #eee;
    position: relative;
    left: 0px !important;
    top: 482px !important;
}
}

.about-text {
 background-color: #1d1d1d;
    border-radius: 10px;
    padding: 30px;
    max-width: 451px;
    flex: 1;
    color: #eee;
    position: relative;
    left: -119px;
    top: -70px;
}

.about-badge {
  display: inline-block;
  background-color: #BD9C6A;
  color: #000;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 15px;
}

.about-text h2 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 600;
}

.about-text p {
  line-height: 2.3;
  font-size: 15px;
  color: #ccc;
}

.about-image {
  flex: 1;
  max-width: 550px;
  text-align: center;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text, .about-image {
    max-width: 100%;
  }

  .about-text {
    text-align: center;
  }
}



.help-section {
  background-color: #0f0f0f;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: Arial, sans-serif;
}

.help-header h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 40px;
}

.help-header span {
  background-color: #093b89;
  padding: 4px 12px;
  border-radius: 5px;
  color: #fff;
}

.help-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.help-card {
  background-color: #1c1c1c;
  border-radius: 6px;
  padding: 20px 25px;
  max-width: 414px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: background 0.3s ease;
}

.help-card:hover {
  background-color: #252525;
}

.help-icon {
  background-color: #000;
  border-radius: 50%;
  padding: 12px;
  min-width: 48px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.help-icon img {
  width: 24px;
  height: 24px;
}

.help-info strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 5px;
}

.help-info p {
  color: #bbb;
  font-size: 0.85rem;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .help-cards {
    flex-direction: column;
    align-items: center;
  }
  .help-section{
    padding: 0px 20px !important;
  }
  .help-header h2{
    line-height: 50px;
  }

  .help-card {
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .help-info {
    margin-top: 10px;
  }
}
@media (max-width: 1340px) {
  .about-text{
    left:1px !important;
  }
}