.hero-global-comm {
  background-color: #0f0f0f; /* Dark background */
  color: #ffffff;
  text-align: center;
  padding: 25px 20px;
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.hero-global-comm-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
}

.hero-global-comm-content p {
  font-size: 1.1rem;
  color: #c4c4c4;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-global-comm-btn {
  background-color: #c6a567;
  color: #000;
  padding: 12px 32px;
  font-weight: 500;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-global-comm-btn:hover {
  background-color: #d8b878;
}


.global-dome-section {
  position: relative;
  background-color: #0d0d0d;
  padding: 0;
  overflow: hidden;
  text-align: center;
}



.dome-structure {
  max-width: 900px;
  width: 90%;
  margin: 0 auto;
}

.dome-bg-left,
.dome-bg-right {
  position: absolute;
  top: 0;
  width: 160px;
  height: auto;
  z-index: 1;
}

.dome-bg-left {
  left: 0;
  top: 237px;
}

.dome-bg-right {
  right: 0;
  top: 277px;
}

.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;
  }
}

.telecom-steps {
  background-color: #0d0d0d;
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.telecom-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 40px;
}

.telecom-heading .highlighted {
  background-color: #0033cc;
  padding: 4px 12px;
  border-radius: 5px;
  color: #ffffff;
}

.steps-wrapper {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
}

.step-box {
  background-color: transparent;
  color: #ccc;
  border-radius: 8px;
  border: 1px solid  #cfae74;
  width: 220px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
}

.step-box.active {
  background-color: #cfae74;
  color: #000;
}

.step-box h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 10px;
}

.step-box p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.step-icon {
  width: 12px;
  height: 12px;
  background-color: #0055ff;
  border-radius: 50%;
}

/* Responsive */
@media (max-width: 768px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
  }
  .steps-wrapper{
    gap:30px !important;
  }

  .step-box {
    width: 90%;
    max-width: 400px;
  }
  .telecom-hero-section{
        padding: 3px 20px 60px !important;
  }
  .pricing-section {
    padding: 13px 20px !important;
  }
  .pricing-slider {
    gap: 39px;
    padding: 0 10px 20px;
    width: 100%;
  }
}

.telecom-hero-section {
  background-color: #0d0d0d;
  color: #fff;
  position: relative;
  padding: 80px 20px 60px;
  overflow: hidden;
  z-index: 1;
}

.telecom-hero-bg-top,
.telecom-hero-bg-bottom {
  position: absolute;
  width: 200px;
  height: 200px;
  background: url("cd08e95b-92ab-488a-81f5-decceaf0dd40.png") no-repeat center/contain;
  z-index: 0;
  opacity: 0.15;
  pointer-events: none;
}

.telecom-hero-bg-top {
  top: 0;
  left: 0;
}

.telecom-hero-bg-bottom {
  bottom: 0;
  left: 0;
  transform: rotate(180deg);
}

.telecom-hero-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.telecom-hero-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.telecom-highlight-box {
  background-color: #0033cc;
  color: #fff;
  padding: 4px 12px;
  border-radius: 5px;
}

.telecom-hero-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.telecom-hero-left {
  flex: 1;
  min-width: 300px;
}

.telecom-hero-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ccc;
}

.telecom-hero-left h3 {
  font-size: 1.1rem;
  color: #f5c46b;
  margin-bottom: 10px;
}

.telecom-hero-left ul {
  list-style: none;
  padding-left: 0;
}

.telecom-hero-left li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #ccc;
}

.telecom-hero-left li strong {
  color: #ffffff;
}

.telecom-hero-right {
  flex: 1;
  text-align: center;
  min-width: 300px;
}

.telecom-hero-right img {
  max-width: 100%;
  border-radius: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .telecom-hero-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .telecom-hero-left p,
  .telecom-hero-left li {
    text-align: left;
  }

  .telecom-hero-heading {
    font-size: 1.6rem;
  }
}



.telecom-services-section {
  background-color: #0d0d0d;
  color: #fff;
  padding: 0px 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: 44px;
  width: 80%;
  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;
}


  .pricing-section {
      padding: 0px 20px;
      text-align: center;
      color: #fff;
    }

    .pricing-title {
      font-size: 2rem;
      font-weight: bold;
      margin-bottom: 100px;
    }

    .highlight-pill {
      background: #002b80;
      color: #fff;
      padding: 4px 14px;
      border-radius: 6px;
      margin-left: 10px;
    }

    .pricing-section {
  padding: 0px 20px;
  text-align: center;
  color: #fff;
  max-width: 100%;
  overflow-x: hidden;
}

/* Fix pricing slider overflow */
.pricing-slider {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden; /* prevent vertical scroll */
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  gap: 20px;
  padding: 0 10px 20px;
  box-sizing: border-box;
  width: 80%;
  margin: auto;
}

/* Card width adjustment */
.pricing-card {
  background: #001A4B;
  padding: 30px 20px;
  border-radius: 16px;
  /* width: 260px; */
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
  color: #fff;
  flex: 0 0 80%;
  max-width: 100%;
  scroll-snap-align: center;
  margin: 0 auto;
  transition: transform 0.3s ease;
}

    .pricing-card.active {
      transform: scale(1.18);
      z-index: 1;
    }

    .pricing-card h3 {
      font-size: 1.2rem;
      margin-bottom: 15px;
    }

    .price {
      font-size: 1.6rem;
      font-weight: bold;
      margin-bottom: 15px;
      color: rgba(189, 156, 106, 1);
    }

    .price s {
      font-size: 0.9rem;
      color: #999;
    }

    .price small {
      font-size: 0.9rem;
      color: #ccc;
    }

    .pricing-card ul {
      list-style: none;
      padding: 0;
      margin-bottom: 20px;
    }

    .pricing-card ul li {
      margin: 8px 0;
      font-size: 0.95rem;
    }

    .buy-btn {
      background: rgba(189, 156, 106, 1);
      color: #000;
      padding: 10px 22px;
      border: none;
      border-radius: 25px;
      font-weight: bold;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .buy-btn:hover {
      background: #e0b843;
    }

    .read-more {
      margin-top: 70px;
      background: transparent;
      border: 1px solid #fff;
      color: #fff;
      padding: 10px 26px;
      border-radius: 50px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .read-more:hover {
      background: #fff;
      color: #000;
    }

    .pricing-nav {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }

    .nav-btn {
      background-color: rgba(189, 156, 106, 1);
      border: none;
      color: black;
      font-size: 1.5rem;
      padding: 10px 18px;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .nav-btn:hover {
      background-color: #e0b843;
    }

   /* Responsive steps */
@media (min-width: 600px) {
  .pricing-card {
    flex: 0 0 60%;
  }
}

@media (min-width: 900px) {
  .pricing-card {
    flex: 0 0 30%;
  }
}

/* Hide native scrollbars (optional but cleaner) */
.pricing-slider::-webkit-scrollbar {
  display: none;
}

.pricing-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}



.telecom-section {
  padding: 60px 20px;
  text-align: start;
  background-color: rgba(28, 27, 27, 1);
  color:white;
}

.telecom-subtitle {
  color: #bbb;
  font-size: 1rem;
  margin-bottom: 10px;
  text-align: start;
}

.telecom-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  text-align: start;
}

.telecom-desc {
  color: #aaa;
  font-size: 0.95rem;
  text-align: start;
}

/* Service Tags Container */
.telecom-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 70px 20px;
  background: #000;
  border-radius: 10px;
}

/* Tag Base Style */
.telecom-tag {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Tag Colors */
.orange { background: #ffb84d; color: #000; }
.green { background: #1aff66; color: #000; }
.blue { background: #66ccff; color: #000; }
.neon-green { background: #ccff00; color: #000; }
.pink { background: #ff4d88; color: #fff; }
.dark { background: #333; color: #fff; }
.purple { background: #9933ff; color: #fff; }
.lime { background: #bfff00; color: #000; }
.sky { background: #66ccff; color: #000; }
.peach { background: #ffcc99; color: #000; }
.rose { background: #ff6699; color: #fff; }
.green-circle { background: #99ff66; color: #000; border-radius: 50%; width: 32px; height: 32px; justify-content: center; }
.gold-border { border: 1px solid gold; padding: 8px 14px;  color:white;}

/* Section 2: Support Box */
.telecom-support {
  padding: 60px 20px;
  margin: auto;
    width: 90%;
}

.telecom-support-box {
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
              url('../images/unsplash_mHusyBu4bxM.png') center/cover no-repeat;
  border-radius: 16px;
  padding: 40px;
  max-width: 1250px;
  text-align: center;
}

.telecom-support-box h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  margin-top: 55px;
  color: white;
}

.telecom-support-box p {
  font-size: 0.95rem;
  color: #ddd;
  margin-bottom: 20px;
}

.support-btn {
  background:rgba(0, 26, 75, 1);
  color:rgba(189, 156, 106, 1);
  padding: 12px 90px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.support-btn:hover {
  background: #0033cc;
}

/* Responsive */
@media (max-width: 768px) {
  .telecom-tag {
    font-size: 0.8rem;
    padding: 6px 12px;
  }
  .telecom-title {
    font-size: 1.5rem;
  }
  .telecom-support-box {
    padding: 20px;
  }
}