:root {
        --white: #ffffff;
        --container-max: 1440px;
        --border-ui: rgba(255, 255, 255, 0.1);
     }

.our-network {
  font-family: "Inter", sans-serif;
  background: #00a3e0;
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Section */
section {
  padding: 120px 8%;
  background: #00a3e0;
}

/* --- HERO SECTION --- */
.our-network .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 8%;
  overflow: hidden;
  background-image: url("../img/hero.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.our-network .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.4)
  );
  z-index: 1;
}

.our-network .hero-content {
  position: relative;
  z-index: 10;
  max-width: 950px;
  color: white;
}

.our-network .hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.our-network .hero h1 .accent {
  color: #00a3e0;
}

.our-network .hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 650px;
}

.our-network .hero-actions {
  display: flex;
  gap: 14px;
}

.our-network .btn-primary,
.our-network .btn-outline {
  position: relative;
  overflow: hidden;
  padding: 12px 26px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.35s ease;
}

.our-network .btn-primary {
  background: #0077c8;
  color: #fff;
}

.our-network .btn-outline {
  border: 1.5px solid #fff;
  color: #fff;
}

.our-network .btn-primary::before,
.our-network .btn-outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transition: all 0.5s ease;
}

.our-network .btn-primary:hover::before,
.our-network .btn-outline:hover::before {
  left: 100%;
}

.our-network .btn-primary:hover {
  background: #00a3e0;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 163, 224, 0.5);
}

.our-network .btn-outline:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 1024px) {
  .our-network .hero {
    padding: 0 5%;
  }

  .our-network .hero-content {
    max-width: 700px;
  }
}

@media (max-width: 768px) {
  .our-network .hero {
    background-attachment: scroll;
    text-align: center;
    justify-content: center;
  }

  .our-network .hero-overlay {
    background: rgba(0, 0, 0, 0.7);
  }

  .our-network .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .our-network .hero-actions {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .our-network .hero {
    padding: 0 20px;
    min-height: 70vh;
    background-size: cover;
  }

  .our-network .hero h1 {
    margin-bottom: 15px;
    font-size: 26px;
  }

  .our-network .hero-desc {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }

  .our-network .hero-actions {
    width: 100%;
  }

  .our-network .btn-primary,
  .our-network .btn-outline {
    padding: 12px 20px;
  }
}

     /* trust-strip Section   */
      .trust-strip {
        position: relative;
        z-index: 10;
        background: #002d72;
        padding: 20px 0;
        color: #ffac1c;
          font-family: "Inter", sans-serif;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
      }

      .trust-strip-inner {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        text-align: center;
        gap: 30px;
        max-width: 1300px;
        margin: 0 auto;
      }

      .trust-num {
        font-size: 2rem;
        font-weight: 900;
        color: #f76e26;
      }

      .trust-label {
        font-size: 0.8rem;
        text-transform: uppercase;
        font-weight: 600;
        color: white;
      }

      .section-label {
        color: #002d72;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.85rem;
        margin-bottom: 15px;
        display: block;
      }

      .section-label h2 {
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 25px;
      }

      .hubs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin-top: 60px;
      }

      .hub-card {
        background: white;
        padding: 50px 40px;
        border-radius: 12px;
        border: 1px solid var(--border-light);
        transition: 0.4s ease;
      }

      .hub-card:hover {
        transform: translateY(-10px);
        border-color: #0077c8;
        box-shadow: 0 20px 40px rgba(0, 119, 200, 0.08);
      }

      .hub-card h3 {
        color: #002d72;
        font-size: 1.6rem;
        margin-bottom: 15px;
      }

      .global-coverage {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 60px;
      }

      .global-graphic {
        position: relative;
        width: 100%;
        height: 400px;
        background: white;
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--border-light);
      }

      .global-graphic-placeholder {
        width: 80%;
        height: 80%;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(0, 119, 200, 0.1),
          rgba(0, 119, 200, 0.1) 10px,
          transparent 10px,
          transparent 20px
        );
        border: 2px dashed #0077c8;
        border-radius: 12px;
      }

       .section-label {
        color: #002d72;
        font-weight: 800;
        text-transform: uppercase;
        font-size: 0.85rem;
        margin: 40px 0 15px 5%;
        display: block;
      }

      .section-label h2 {
        font-size: clamp(1.8rem, 6vw, 3rem);
        font-weight: 900;
        margin: 0 0 25px 5%;
      }

      .hubs-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        padding: 0 5%;
      }

      .hub-card {
        background: white;
        padding: 40px;
        border-radius: 12px;
        border: 1px solid #e0e0e0;
        transition: 0.4s ease;
      }

      .global-coverage {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        align-items: center;
        gap: 40px;
        padding: 60px 5%;
      }

      @media (max-width: 1024px) {
        .trust-strip-inner {
          gap: 20px;
        }
      }

      @media (max-width: 768px) {
        .trust-strip-inner {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px 15px;
        }
      }

      @media (max-width: 380px) {
        .trust-strip-inner {
          gap: 20px 10px;
        }

        .trust-num {
          font-size: 1.4rem;
        }
      }

        .srt-viewport-fixed {
        background: linear-gradient(
          135deg,
          #0a1929 0%,
          #1a3a52 50%,
          #0d2438 100%
        );
        color: #ffffff;
        font-family: "Plus Jakarta Sans", sans-serif;
        /* height: 100vh; */
        width: 100%;
        padding: 50px 5%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        box-sizing: border-box;
      }

      .srt-top-bar-div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 3vh;
        padding-bottom: 15px;
      }

      .srt-hero-compact {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: -1px;
        margin: 0;
        line-height: 1.1;
      }

      .srt-gold-text {
        background: linear-gradient(
          135deg,
          #ffac1c 0%,
          #ffac1c 55%,
          #a5d8ff 100%
        );
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
        font-family: "Helvetica Neue", Arial, sans-serif;
      }

     
  

      .srt-explorer-grid {
        flex: 1;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 25px;
        min-height: 0;
        max-width: 1440px;
        width: 100%;
        margin: 0 auto;
      }

      .srt-side-nav {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .srt-nav-tab {
        background: transparent;
        border: 1px solid var(--border-ui);
        padding: 18px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        transition: 0.3s ease;
        text-align: left;
        color: #ffffff;
      }

      .srt-nav-tab:hover {
        border-color: var(--sky-blue-hover);
      }

      .srt-nav-tab.active {
        border-color: var(--sky-blue);
        background: rgba(14, 165, 233, 0.05);
      }

      .srt-nav-idx {
        font-size: 18px;
        font-weight: 800;
        opacity: 0.2;
      }

      .srt-nav-tab.active .srt-nav-idx {
        color: var(--sky-blue);
        opacity: 1;
      }

      .srt-nav-label small {
        display: block;
        font-size: 9px;
        font-weight: 800;
        margin-bottom: 2px;
        text-transform: uppercase;
        color: #ffac1c;
      }

      .srt-nav-label span {
        font-size: 15px;
        font-weight: 700;
      }

      .srt-main-display {
        background: rgba(255, 255, 255, 0.02);
        border: 1px solid var(--border-ui);
        border-radius: 20px;
        position: relative;
        overflow: hidden;
      }

      .srt-pane {
        display: none;
        padding: 5vh 3.5vw;
        height: 100%;
        box-sizing: border-box;
      }

      .srt-pane.active {
        display: block;
        animation: fadeIn 0.4s ease forwards;
      }

      @keyframes fadeIn {
        from {
          opacity: 0;
        }

        to {
          opacity: 1;
        }
      }

      .srt-split {
        display: grid;
        grid-template-columns: 1fr 280px;
        gap: 40px;
        height: 100%;
      }

      .srt-info-scroll {
        overflow-y: auto;
        padding-right: 15px;
        scrollbar-width: none;
      }

      .srt-info-scroll::-webkit-scrollbar {
        display: none;
      }

      .srt-status {
        color: #ffac1c;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 12px;
        display: block;
      }

      .srt-info-scroll h2 {
        font-size: clamp(28px, 4.5vh, 40px);
        font-weight: 800;
        margin-bottom: 1.5vh;
        color: #00d4ff;
      }

      .srt-desc {
        font-size: 16px;
        color: #ffffff;
        line-height: 1.6;
        margin-bottom: 3vh;
        max-width: 640px;
      }

      .srt-list-title {
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #ffffff;
        margin-bottom: 15px;
        font-weight: 700;
      }

      .srt-feature-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
      }

      .srt-item {
        font-size: 13px;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 8px;
        border:1px solid #ffac1c ;
        padding: 10px;
        border-radius: 8px;
      }

      /* .srt-item:hover {
        border:1px solid var(--border-ui);
      } */

      .srt-item span {
        width: 5px;
        height: 5px;
        background-color: var(--sky-blue);
        border-radius: 50%;
        display: block;
      }

      .srt-contact-aside {
        display: flex;
        align-items: center;
      }

      .srt-glass-card {
        border: 1px solid var(--border-ui);
        padding: 30px;
        border-radius: 16px;
        width: 100%;
        background: rgba(255, 255, 255, 0.01);
      }

      .srt-glass-card label {
        display: block;
        font-size: 9px;
        font-weight: 800;
        color: var(--sky-blue);
        letter-spacing: 1px;
        margin-bottom: 10px;
      }

      .srt-glass-card p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 15px;
        color: #ffffff;
      }

      .srt-divider {
        height: 1px;
        background:#ffac1c;
        margin: 20px 0;
      }

      .srt-cta-link {
        font-size: 16px;
        font-weight: 700;
        color: #ffac1c;
        text-decoration: none;
        display: block;
        margin-bottom: 5px;
      }

      .srt-mail-link {
        font-size: 13px;
        color: #ffffff;
        text-decoration: none;
        transition: 0.3s;
      }

      .srt-mail-link:hover {
        opacity: 1;
        color: var(--sky-blue);
      }

      @media (max-width: 1100px) {
        .srt-split {
          grid-template-columns: 1fr;
        }

        .srt-explorer-grid {
          grid-template-columns: 1fr;
        }

        .srt-side-nav {
          flex-direction: row;
          overflow-x: auto;
          padding-bottom: 15px;
          scrollbar-width: none;
        }

        .srt-side-nav::-webkit-scrollbar {
          display: none;
        }

        .srt-nav-tab {
          min-width: 200px;
          flex-shrink: 0;
        }
      }

      @media (max-width: 600px) {
        .srt-hero-compact {
          font-size: 26px;
        }

        .srt-info-scroll {
          padding-left: 0;
        }

        .srt-info-scroll h2 {
          font-size: 24px;
        }

        .srt-desc {
          font-size: 14px;
        }

        .srt-top-bar-div {
          flex-direction: column;
          align-items: flex-start;
        }


        .srt-feature-grid {
          grid-template-columns: 1fr;
        }

        .srt-viewport-fixed {
          padding: 30px 20px;
        }

        .srt-main-display {
          border-radius: 16px;
        }
      }

      @media (max-width: 375px) {
        .srt-nav-tab {
          min-width: 160px;
          padding: 15px;
        }

        .srt-nav-label span {
          font-size: 16px;
        }
      }


   #global-coverage {
        background: linear-gradient(
          135deg,
          #0a1929 0%,
          #1a3a52 50%,
          #0d2438 100%
        );
        display: flex;
        align-items: center;
        padding: 50px 5%;
        position: relative;
        font-family: "Plus Jakarta Sans", sans-serif;
        overflow: hidden;
      }

      .panorama-grid {
        display: flex;
        gap: 30px;
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
      }

      .content-side {
        display: flex;
        flex-direction: column;
        flex: 1.3;
      }

      .graphic-side {
        display: flex;
        justify-content: center;
        position: relative;
        flex: 0.7;
      }

      .main-heading {
        margin-bottom: 25px;
      }

      .main-heading h2 {
        font-size: 36px;
        color: #fff;
        font-weight: 900;
        line-height: 1.1;
      }

      .main-heading h2 mark {
        background: linear-gradient(
          135deg,
          #ffac1c 0%,
          #ffac1c 55%,
          #a5d8ff 100%
        );
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
        font-family: "Helvetica Neue", Arial, sans-serif;
      }

      .four-card-grid {
        display: flex;
        flex-wrap: wrap;
        gap: 15px;
      }

      .luxury-card {
        background: white;
        padding: 20px;
        border-radius: 20px;
        border: 1px solid rgba(0, 45, 114, 0.05);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
        transition: 0.3s ease;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        min-height: 200px;
        width: calc(50% - 7.5px);
        box-sizing: border-box;
        border-left: 5px solid #ffcc00;
      }

      .card-header {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
      }
       .card-header .icon {
    color: #111;
    font-weight: 700;
}

      .card-header h4 {
        font-weight: 900;
        color: #002d72;
        font-size: 1rem;
        text-transform: uppercase;
        margin: 0;
      }

      .card-content {
        font-size: 16px;
        /* line-height: 1.4; */
        color: #555;
        margin-bottom: 12px;
      }

      .region-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
      }

      .region-tag {
        font-size: 12px;
        font-weight: 600;
        background: #f76e26;
        color: #fff;
        padding: 3px 8px;
        border-radius: 4px;
        text-transform: uppercase;
      }

      .mascot-frame {
        width: 100%;
        border-radius: 30px;
        overflow: hidden;
        position: absolute;
        top: 7%;
      }

      .mascot-frame img {
        width: 100%;
        height: 100%;
        object-position: top center;
      }

      .floating-overlay {
        position: absolute;
        top: 70%;
        left: 20px;
        right: 20px;
        /* top: 0; */
        background: rgba(255, 255, 255, 0.98);
        padding: 15px;
        border-radius: 15px;
        display: flex;
        justify-content: space-around;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      }

      .stat-mini h6 {
        font-size: 10px;
        text-transform: uppercase;
        margin-bottom: 2px;
        margin: 0;
        color: #000;
      }

      .stat-mini p {
        font-size: 16px;
        font-weight: 900;
        color: #002d72;
        margin: 0;
      }

     

      @media(max-width:1440px){
        .mascot-frame {
    
    top: 12%;
}
      }
  @media (max-width: 1300px) {
        .mascot-frame {
          width: 100%;
          border-radius: 30px;
          overflow: hidden;
          position: absolute;
          top: 32%;
        }
      } 
      @media (max-width: 1024px) {
        #global-coverage {
          height: auto;
          padding: 80px 5%;
          overflow-y: auto;
        }

        .panorama-grid {
          flex-direction: column;
        }

        .content-side,
        .graphic-side {
          width: 100%;
          flex: none;
        }

        .mascot-frame {
          position: relative;
          top: 0;
          max-width: 400px;
          margin: 0 auto;
        }
      }

      /* Media Query for Mobile - CARDS SCROLLER ENABLED */
      @media (max-width: 600px) {
        .main-heading h2 {
          font-size: 26px;
        }

        #global-coverage {
          padding: 30px 0 0;
        }

        .main-heading {
          padding: 0 20px;
          text-align: center;
          margin-bottom: 0;
        }

        .four-card-grid {
          flex-wrap: nowrap;
          overflow-x: auto;
          padding: 20px;
          gap: 20px;
          -webkit-overflow-scrolling: touch;
          scrollbar-width: none;
        }

        .four-card-grid::-webkit-scrollbar {
          display: none;
        }

        .luxury-card {
          min-width: 100%;
          width: 85%;
          min-height: 250px;
        }

        .graphic-side {
          padding: 0 20px;
        }

        .floating-overlay {
          flex-wrap: nowrap;
          width: 95%;
          top: 70%;
          height: 62px;
        }

        .stat-mini p {
          font-size: 10px;
        }

        .region-tag {
          font-size: 10px;
        }

        .mascot-frame {
          max-width: 290px;
        }

        .mascot-frame img {
          width: 70%;
        }
      }      

   /* services section */
      #unique-stage-section {
        background: linear-gradient(
          135deg,
          #0a1929 0%,
          #1a3a52 50%,
          #0d2438 100%
        );
        color: #ffffff;
        font-family: "Plus Jakarta Sans", sans-serif;
        min-height: 100vh;
        width: 100%;
        padding: 50px 5%;
        box-sizing: border-box;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      .container {
        margin: 0 auto;
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 1440px;
      }

      .header-wrap {
        margin-bottom: 40px;
        text-align: left;
      }

      .header-wrap h2 {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: -2px;
        line-height: 1.1;
      }

      .header-wrap h2 span {
        background: linear-gradient(
          135deg,
          #ffac1c 0%,
          #ffac1c 55%,
          #a5d8ff 100%
        );
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
      }

      .unconventional-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
        align-items: start;
        margin-bottom: 30px;
      }

      .stage-card {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid #ffcc00;
        padding: 30px 25px;
        position: relative;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-radius: 0 30px 0 30px;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        cursor: pointer;
      }

      .stage-card:hover {
        background: rgba(255, 255, 255, 0.07);
        border-color: #ffac1c;
        transform: scale(1.05) !important;
        box-shadow: 0 20px 50px rgba(255, 172, 28, 0.2);
        z-index: 10;
      }

      .card-icon {
        font-size: 28px;
        color: #f76e26;
        margin-bottom: 15px;
        transition: 0.4s;
      }

      .stage-card h3 {
        font-size: 20px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 10px;
        color: #00d4ff;
      }

      .stage-card p {
        font-size: 16px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.7);
      }

      .stage-card::after {
        content: "";
        position: absolute;
        width: 25px;
        height: 25px;
        border-bottom: 2px solid #ffac1c;
        border-right: 2px solid #ffac1c;
        bottom: 15px;
        right: 15px;
        transition: 0.4s;
        opacity: 0.6;
      }

      .nav-controls {
        display: none;
        gap: 15px;
        margin-top: 25px;
      }

      .nav-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: blur(5px);
      }
      @media(max-width: 1440px){
        .stage-card {
          height: 280px;
        }

      }
      @media (max-width: 1024px) {
        .unconventional-grid {
          display: flex;
          overflow-x: auto;
          scroll-snap-type: x mandatory;
          scrollbar-width: none;
          gap: 20px;
          padding: 20px 0;
        }

        .unconventional-grid::-webkit-scrollbar {
          display: none;
        }

        .stage-card {
          flex: 0 0 70%;
          /* Show part of next card */
          scroll-snap-align: center;
          min-height: 250px;
        }

        .nav-controls {
          display: flex;
        }
      }

      @media (max-width: 600px) {
        #unique-stage-section {
          padding: 20px 5%;
        }

        .stage-card {
          flex: 0 0 100%;
          width: 100%;
          text-align: center;
        }

        .header-wrap h2 {
          font-size: 26px;
        }

        .stage-card p {
          font-size: 14px;
        }
      }

      .unconventional-grid {
        padding: 0;
      }
      
          /* <!-- Import Export  --> */
     #why-viewport-accordion {
        position: relative;
        min-height: 100vh;
        width: 100%;
        display: flex;
        flex-direction: column;
        padding: 50px 5%;
        color: #ffffff;
        font-family: "Plus Jakarta Sans", sans-serif;
        background-color: #0f172a;
        overflow: hidden;
      }

      #why-viewport-accordion::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("https://img.freepik.com/premium-photo/aerial-view-container-terminal-port-tianjin-busy-modern-logistics-harbor_631068-760.jpg");
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        z-index: 0;
      }

      .bg-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, #0a1929 0%, #1a3a52 50%, #0d2438 100%);
        z-index: 1;
        opacity: 0.92;
      }

      .section-header {
        position: relative;
        z-index: 2;
      }

      .section-header h2 {
        font-size: 36px;
        font-weight: 800;
        line-height: 1.1;
        margin: 0;
      }

      .section-header h2 span {
        background: linear-gradient(135deg, #ffac1c 0%, #ffac1c 55%, #a5d8ff 100%);
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
        font-family: "Helvetica Neue", Arial, sans-serif;
      }

      .section-intro {
        font-size: 18px;
        color: #fff;
        margin: 20px 0;
        max-width: 800px;
        line-height: 1.6;
      }

      .accordion-list {
        position: relative;
        z-index: 2;
        width: 100%;
      }

      .accordion-item {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        cursor: pointer;
        padding: 35px 0;
        transition: all 0.4s ease;
        position: relative;
      }

      .accordion-item:last-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .accordion-item::before,
      .accordion-item::after {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ffac1c, transparent);
        transform: scaleX(0);
        transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        z-index: 3;
      }

      .accordion-item::before {
        top: 0;
        transform-origin: left;
      }

      .accordion-item::after {
        bottom: 0;
        transform-origin: right;
      }

      .accordion-item:hover::before,
      .accordion-item:hover::after {
        transform: scaleX(1);
      }

     
      .item-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: opacity 0.3s ease, transform 0.4s ease;
        position: relative;
        z-index: 5;       
        background: transparent;
      }

      .header-left {
        display: flex;
        align-items: center;
        gap: 40px;
      }

      .header-left i {
        font-size: 24px;
        color: #f76e26;
        width: 40px;
        text-align: center;
      }

      .item-header h3 {
        font-size: clamp(22px, 2.5vw, 32px);
        font-weight: 800;
        letter-spacing: -1px;
        margin: 0;
        color: #ffffff;
        transition: color 0.2s;
      }

      .header-right-stat {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        border-right: 2px solid #ffac1c;
        padding-right: 25px;
        min-width: 150px;
      }

      .stat-val {
        font-size: 36px;
        font-weight: 800;
        color: #ffffff;
        line-height: 1;
      }

      .stat-lbl {
        font-size: 9px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #ffac1c;
        margin-top: 5px;
      }

      .item-content {
        position: absolute;
        top: 35px;
        left: 0;
        width: 100%;
        padding-left: 140px;
        padding-right: 8%;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        pointer-events: none;
        z-index: 2;
      }

      .content-left p {
        font-size: 18px;
        line-height: 1.8;
        color: rgba(255, 255, 255, 0.92);
        margin: 0;
        max-width: 100%;
      }

 
      .accordion-item:hover .item-header {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
      }

   
      .accordion-item:hover .item-content {
        position: relative;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        top: 0;
        margin-top: 20px;
        margin-bottom: 10px;
        padding-left: 80px;   
        padding-right: 8%;
        transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
        pointer-events: auto;
      }

      @media (min-width: 1025px) {
        .accordion-item:hover .item-content {
          padding-left: 100px;  
        }
      }
      
      /* On tablet screens */
      @media (max-width: 1024px) {
        .accordion-item:hover .item-content {
          padding-left: 30px;
        }
      }
      
      .accordion-item:hover {
        padding-bottom: 24px;
        background: rgba(255, 255, 255, 0.03);
        transition: padding-bottom 0.4s ease;
      }
      
     
      @media (max-width: 1024px) {
        .header-right-stat {
          display: none;
        }
        .accordion-item:hover {
          padding-bottom: 24px;
        }
        .accordion-item:hover .item-content {
          padding-left: 20px;
          margin-top: 15px;
        }
        .item-content {
          top: 25px;
        }
      }
      
      @media (max-width: 600px) {
        #why-viewport-accordion {
          padding: 20px 5%;
        }
        .section-header h2 {
          font-size: 26px;
        }
        .section-intro {
          font-size: 14px;
        }
        .item-header h3 {
          font-size: 20px;
        }
        .content-left p {
          font-size: 14px;
        }
        .accordion-item {
          padding: 20px 0;
        }
        .accordion-item:hover {
          padding-bottom: 24px;
        }
        .accordion-item:hover .item-content {
          padding-left: 15px;
          margin-top: 12px;
        }
        .header-left {
          gap: 15px;
        }
        .header-left i {
          font-size: 20px;
          width: 30px;
        }
      }
      
      @media (min-width: 1440px) {
        .accordion-item:hover .item-content {
          padding-left: 120px;
        }
      }
      
      .item-content .content-left p {
        font-weight: 400;
        letter-spacing: 0.2px;
      }
      
      .accordion-item:hover .item-header h3 {
        color: #ffac1c;
        transition: color 0.2s ease;
      }
      
      /* keep icon colors consistent */
      .accordion-item:hover .header-left i {
        color: #ffac1c;
        transition: 0.2s;
      }
      
      .accordion-item .item-content {
        position: absolute;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
      }
      
      
      .accordion-item:hover .item-header {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
      }
      
      .header-right-stat .stat-val, .header-right-stat .stat-lbl {
        transition: 0.2s;
      }
      
      .accordion-item:hover .stat-val {
        color: #ffac1c;
      }
      
      
      .accordion-item {
        transition: padding-bottom 0.3s ease, background 0.2s;
      }
      
    
      

      /*  Why Our Network Section */
      #why-simple-grid {
        background: linear-gradient(
          135deg,
          #0a1929 0%,
          #1a3a52 50%,
          #0d2438 100%
        );
        color: #ffffff;
        font-family: "Plus Jakarta Sans", sans-serif;
        padding: 50px 5%;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
      }

      .why-simple-grid-heading {
        font-size: 18px;
        color: #fff;
        margin: 20px 0;
        /* max-width: 700px; */
        line-height: 1.6;
      }

      .simple-container {
        max-width: 1440px;
        margin: 0 auto;
      }

      .simple-header {
        text-align: center;
        margin-bottom: 50px;
      }

      .simple-header h2 {
        font-size: 36px;
        font-weight: 800;
        letter-spacing: -1px;
        margin: 0;
      }

      .simple-header h2 span {
        background: linear-gradient(
          135deg,
          #ffac1c 0%,
          #ffac1c 55%,
          #a5d8ff 100%
        );
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
        font-family: "Helvetica Neue", Arial, sans-serif;
      }

      .grid-layout {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
      }

      .grid-item {
        padding: 30px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid rgba(255, 172, 28, 0.3);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 12px;
        text-align: left;
      }

      /* Icon Styling */
      .item-icon {
        font-size: 40px;
        color: #f76e26;
        margin-bottom: 0px;
        display: inline-block;
        transition: transform 0.3s ease;
      }

      .grid-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
        border-color: #ffac1c;
      }

      .grid-item:hover .item-icon {
        color: #ffffff;
        transform: scale(1.1);
        animation-play-state: paused;
        /* Hover par animation ruk jayegi */
      }

      .grid-item h3 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 15px;
        line-height: 1.3;
      }

      .grid-item p {
        font-size: 16px;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.7);
        margin: 0;
      }

      @media (max-width: 1024px) {
        .grid-layout {
          grid-template-columns: repeat(2, 1fr);
        }
      }

      @media (max-width: 768px) {
        .grid-layout {
          grid-template-columns: 1fr;
        }

        .grid-item {
          padding: 15px;
          text-align: center;
        }

        #why-simple-grid {
          padding: 30px 5%;
        }

        .simple-header h2 {
          font-size: 26px;
          line-height: 28px;
        }

        .grid-item p {
          font-size: 14px;
        }

        .item-icon {
          font-size: 24px;
        }

        .why-simple-grid-heading {
          font-size: 14px;
        }

        .grid-item h3 {
          font-size: 14px;
        }
      }

        /* Cta Section    */
      #srt-industrial-cta {
        background: linear-gradient(
          135deg,
          #0a1929 0%,
          #1a3a52 50%,
          #0d2438 100%
        );
        color: #ffffff;
        font-family: "Plus Jakarta Sans", sans-serif;
        padding: 50px 5%;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
      }

      #srt-industrial-cta::before {
        content: "SRT";
        position: absolute;
        bottom: -50px;
        left: 16%;
        font-size: 25vw;
        font-weight: 900;
        color: rgba(255, 255, 255, 0.02);
        line-height: 1;
        pointer-events: none;
        z-index: 1;
      }

      .srt-cta-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
        width: 100%;
        max-width: 1440px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
      }

      .srt-main-title {
        font-size: clamp(34px, 5vw, 60px);
        font-weight: 800;
        line-height: 1.05;
        letter-spacing: -2px;
        margin-bottom: 30px;
      }

      .srt-main-title span {
        background: linear-gradient(
          135deg,
          #ffac1c 0%,
          #ffac1c 55%,
          #a5d8ff 100%
        );
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-shadow: 0 0 80px rgba(0, 212, 255, 0.3);
        font-family: "Helvetica Neue", Arial, sans-serif;
      }

      .srt-sub-desc {
        font-size: 18px;
        line-height: 1.7;
        color: #fff;
        max-width: 550px;
        margin-bottom: 40px;
        font-weight: 300;
      }

      .srt-tag-cloud {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
      }

      .srt-tag {
        font-size: 12px;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 1px;
        padding: 10px 22px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 50px;
        color: #ffffff;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
      }

      .srt-tag i {
        color: #f76e26;
        font-size: 16px;
      }

      .srt-tag:hover {
        transform: translateY(-5px);
        background: rgba(255, 204, 0, 0.1);
        border-color: #cb5312;
        box-shadow: 0 10px 25px rgba(255, 204, 0, 0.15);
      }

      .srt-action-card {
        background: radial-gradient(
          circle at 50% 50%,
          #00707e 0%,
          #162150 100%
        );
        padding: 50px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-left: 5px solid #ffcc00;
        display: flex;
        flex-direction: column;
        justify-content: center;
        box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
      }

      .srt-btn-solid {
        background: #00a3e0;
        color: #fff;
        text-decoration: none;
        padding: 14px;
        text-align: center;
        font-weight: 800;
        font-size: 16px;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 20px;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-radius: 8px;
      }

      .srt-btn-solid i {
        font-size: 20px;
        transition: transform 0.7s ease;
      }

      .srt-btn-solid:hover {
        background: #ffffff;
        transform: translateY(-3px);
        box-shadow: 0 20px 40px rgba(255, 204, 0, 0.25);
        color: #000000;
      }

      .srt-btn-solid:hover i {
        transform: rotate(360deg);
      }

      .srt-btn-outline {
        color: #ffffff;
        background: transparent;
        text-decoration: none;
        padding: 14px;
        text-align: center;
        font-weight: 600;
        font-size: 16px;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;

        border: 2px solid transparent;
        border-radius: 20px;
        background-image:
          linear-gradient(#051124, #051124),
          linear-gradient(135deg, #ffac1c 0%, #ffac1c 55%, #a5d8ff 100%);
        background-origin: border-box;
        background-clip: padding-box, border-box;
      }

      .srt-btn-outline i {
        font-size: 18px;
        color: #ffcc00;
      }

      .srt-btn-outline:hover {
        border-color: #ffcc00;
        background: rgba(255, 204, 0, 0.05);
        color: #ffcc00;
      }

      .srt-btn-outline:hover i {
        animation: phone-ringing 0.5s infinite alternate;
      }

      @keyframes phone-ringing {
        0% {
          transform: rotate(0);
        }

        25% {
          transform: rotate(15deg);
        }

        50% {
          transform: rotate(-15deg);
        }

        75% {
          transform: rotate(10deg);
        }

        100% {
          transform: rotate(0);
        }
      }

      .srt-status-cta {
        margin-top: 25px;
        font-size: 13px;
        text-align: center;
        color: rgba(255, 255, 255, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        letter-spacing: 0.5px;
      }

      .srt-dot-pulse {
        width: 10px;
        height: 10px;
        background: #00ff88;
        /* Green Status */
        border-radius: 50%;
        animation: glow-pulse 1.5s infinite;
      }

      @keyframes glow-pulse {
        0% {
          box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
        }

        70% {
          box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
        }

        100% {
          box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
        }
      }

      @media (max-width: 992px) {
        .srt-cta-grid {
          grid-template-columns: 1fr;
          gap: 18px;
        }

        #srt-industrial-cta {
          padding: 80px 5%;
        }

        .srt-action-card {
          padding: 20px;
          align-items: center;
        }

        .srt-main-title {
          text-align: center;
        }

        .srt-sub-desc {
          text-align: center;
          margin: 0 auto 20px;
          font-size: 14px;
        }

        .srt-tag-cloud {
          justify-content: center;
        }
      }

      @media (max-width: 768px) {
        #srt-industrial-cta {
          padding: 30px 5%;
        }

        .srt-btn-solid,
        .srt-btn-outline {
          width: 78%;
          padding: 8px;
          font-size: 12px;
          font-weight: 500;
        }

        .srt-tag {
          font-weight: 500;
        }

        .srt-main-title {
          font-size: 26px;
          line-height: 28px;
        }
      }


       /*  FAQ Section SSection   */
      #srt-masonry-faq {
        background: linear-gradient(
          135deg,
          #0a1929 0%,
          #1a3a52 50%,
          #0d2438 100%
        );
        color: #ffffff;
        padding: 50px 5%;
        font-family: "Plus Jakarta Sans", sans-serif;
      }

      .srt-faq-title-v4 {
        margin-bottom: 30px;
      }

      .srt-faq-title-v4 h2 {
        font-size: 36px;
        font-weight: 800;
        line-height: 1.1;
        color: #ffffff;
      }

      .srt-faq-title-v4 h2 span {
        background: linear-gradient(
          135deg,
          #ffac1c 0%,
          #ffac1c 55%,
          #a5d8ff 100%
        );
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .srt-faq-columns {
        display: flex;
        gap: 20px;
        align-items: flex-start;
      }

      .faq-column {
        flex: 1;
        display: flex;
        flex-direction: column;
      }

      .srt-faq-node-v4 {
        width: 100%;
        background: #132C44;
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 20px;
        margin-bottom: 20px;
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
      }

      .srt-faq-node-v4.active {
        border-color: #ffcc00;
        background: rgba(255, 204, 0, 0.05);
      }

      .srt-faq-head-v4 {
        width: 100%;
        padding: 25px 30px;
        background: none;
        border: none;
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
        text-align: left;
        color: #ffffff;
      }

      .srt-faq-head-v4 h3 {
        font-size: 18px;
        font-weight: 700;
        margin: 0;
        padding-right: 20px;
        color: #fff;
      }

      .srt-faq-node-v4.active h3 {
        color: #ffcc00;
      }

      .srt-faq-icon-v4 {
        width: 32px;
        height: 32px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: 0.4s;
      }

      .srt-faq-node-v4.active .srt-faq-icon-v4 {
        background: #ffcc00;
        transform: rotate(45deg);
      }

      .srt-faq-icon-v4 i {
        font-size: 10px;
        color: #fff;
      }

      .srt-faq-node-v4.active .srt-faq-icon-v4 i {
        color: #000;
      }

      .srt-faq-panel-v4 {
        max-height: 0;
        overflow: hidden;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        padding: 0 30px;
      }

      .srt-faq-node-v4.active .srt-faq-panel-v4 {
        max-height: 500px;
        padding-bottom: 30px;
      }

      .srt-faq-panel-v4 p {
        font-size: 16px;
        color: #cbd5e0;
        line-height: 1.7;
        margin: 0;
        padding-top: 15px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
      }

      @media (max-width: 991px) {
        #srt-masonry-faq {
          padding: 20px 5%;
        }

        .srt-faq-columns {
          flex-direction: column;
          gap: 10px;
        }

        .srt-faq-title-v4 h2 {
          font-size: 26px;
        }

        .srt-faq-head-v4 h3 {
          font-size: 16px;
        }

        .srt-faq-panel-v4 p {
          font-size: 14px;
        }

        .srt-faq-title-v4 {
          margin-bottom: 0;
        }
      }
