.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: 529px !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;
  }
}


.telecom-services-section {
  background-color: #0d0d0d;
  color: #fff;
  padding: 50px 20px;
  text-align: center;

}

.telecom-services-heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.highlight-box {
  background: #0033cc;
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
}

.telecom-services-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(337px, 1fr));
    gap: 50px;
    width: 90%;
    justify-content: center;
    align-items: stretch;
    margin: 20px auto;
}

.telecom-card {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 30px 20px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: border 0.3s ease;
  z-index: 1;
}

.telecom-card.highlighted {
  border-color: #BD9C6A;
}

.telecom-card-bg {
    /* background: radial-gradient(103.26% 114.79% at 103.26% 0%, rgba(28, 28, 28, 0.48) 20.29%, rgba(189, 156, 106, 0.48) 34.91%, rgba(28, 28, 28, 0.48) 60.69%); */
   background: radial-gradient(103.26% 114.79% at 103.26% 0%, rgba(28, 28, 28, 0.48) 20.29%, rgba(189, 156, 106, 0.48) 34.91%, rgba(28, 28, 28, 0.48) 60.69%) /* warning: gradient uses a rotation that is not supported by CSS and may not behave as expected */;

  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
}


.telecom-card-icon img {
  width: 80px;
  height: 80px;
}

.telecom-card h3 {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #fff;
}

.telecom-card p {
  font-size: 0.9rem;
  color: #ccc;
}

@media (max-width: 1340px) {
  .about-text{
    left:0px !important;
  }
}