
/* HEADER */
.vyom-sticky-header {
  position: sticky;
  top: 90px; /* 👈 IMPORTANT */
  z-index: 9999;
}

/* SPACING FIX (NO HERO CHANGE NEEDED) */
.vyom-sticky-header::after {
  content: '';
  display: block;
  /* height: 70px; */
}
/* WRAPPER */
.header-wrapper {
  max-width: 1600px;
  margin: auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #ffffff;
}

/* BRAND */
.brand-identity {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2b6eff, #0069ff);
  -webkit-background-clip: text;
  color: transparent;
  text-decoration: none;
}

/* NAV LINKS */
.navigation-links {
  display: flex;
  gap: 5rem;
  list-style: none;
}

.navigation-links li a {
  text-decoration: none;
  font-weight: 600;
  color: #0069ff;
  font-size: 0.95rem;
  position: relative;
  transition: 0.2s;
}

.navigation-links li a:hover {
  color: #0069ff;
}

/* ACTIVE LINK */
.navigation-links li a.active-item {
  color: #0069ff;
}

.navigation-links li a.active-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background:#0069ff;
}

/* MOBILE BUTTON */
.mobile-menu-btn {
  display: none;
  font-size: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #0069ff;
}

/* MOBILE */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: block;
  }

  .navigation-links {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 1rem 2rem;
    display: none;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }

  .navigation-links.show {
    display: flex;
  }
}

/* ========================= */
/* NAV LINK BUTTON EFFECT */
/* ========================= */

.navigation-links li a {
  padding: 8px 16px;
  border-radius: 8px;
  background: rgba(43, 110, 255, 0.05);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.navigation-links li a:hover {
  background: #0069ff;
  color: white;
  box-shadow: 0 4px 12px rgba(43, 110, 255, 0.3);
  transform: translateY(-2px);
}

/* ACTIVE BUTTON */
.navigation-links li a.active-item {
  background: #0069ff;
  color: white;
  box-shadow: 0 4px 12px rgba(43, 110, 255, 0.3);
}

/* REMOVE OLD UNDERLINE */
.navigation-links li a.active-item::after {
  display: none;
}
/* Hide sub-navbar on mobile */
@media (max-width: 768px) {
  .vyom-sticky-header {
    display: none;
  }
}

/* ========================= */
/* VYOM DDOS SECTION */
/* ========================= */

.vyom-ddos-section {
  padding: 3rem;
  background: #f8fafc;
}
@media (max-width: 768px) {
  .vyom-ddos-section {
    padding: 1rem;
  }
  .vyom-steps-container{
    padding: 0px !important;
  }
}

.vyom-ddos-container {
  max-width: 1500px;
  margin: auto;
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
}

/* BADGE */
.vyom-ddos-badge {
  display: block;
  width: fit-content;
  margin: 0 auto 20px auto;
  padding: 8px 16px;
  background: rgba(139, 92, 246, 0.1);
  color: #006affbf;
  border-radius: 20px;
  font-size: 14px;
  text-align: center;
}
.parent-container {
  text-align: center;
}
/* TITLE */
.vyom-ddos-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
  text-align: center;
}

/* DESCRIPTION */
.vyom-ddos-desc {
  color: #475569;
  max-width: 100%;
  margin-bottom:30px;
  text-align: center;
}

/* GRID */
.vyom-ddos-grid {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

/* CARDS */
.vyom-ddos-card {
  flex: 1;
  padding: 20px;
  border-radius: 15px;
}

.vyom-ddos-left {
  background: #eef2ff;
}

.vyom-ddos-right {
  background: #f5f3ff;
}

/* CARD TEXT */
.vyom-ddos-card h3 {
  margin-bottom: 15px;
}

.vyom-ddos-card ul {
  list-style: none;
  padding: 0;
}

.vyom-ddos-card ul li {
  margin-bottom: 10px;
  color: #334155;
}

/* CTA */
.vyom-ddos-cta {
  background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
  color: white;
  text-align: center;
  padding: 25px;
  border-radius: 15px;
}

.vyom-ddos-cta span {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  opacity: 0.9;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {
  .vyom-ddos-title {
    font-size: 1.8rem;
  }

  .vyom-ddos-grid {
    flex-direction: column;
  }

  .vyom-ddos-container {
    padding: 25px;
  }
}


    /* ============================================
       UNMATCHED ADVANTAGES SECTION
       Perfectly styled with unique class names
    ============================================ */
    .vyom-advantages-wrap {
      padding: 100px 0;
      background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
      position: relative;
    }

    .advantages-container {
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 3rem;
    }

    /* Header Styles */
    .advantages-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .advantages-badge {
      display: inline-block;
      background: rgba(43, 110, 255, 0.08);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #2b6eff;
      margin-bottom: 1.2rem;
      text-transform: uppercase;
    }

    .advantages-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #0f172a;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .advantages-title span {
      background: #0069ff;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
    }

    .advantages-divider {
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #2b6eff, #8b5cf6);
      margin: 1.5rem auto 0;
      border-radius: 4px;
    }

    .advantages-subtitle {
      max-width: 700px;
      margin: 1.5rem auto 0;
      font-size: 1.1rem;
      color: #475569;
      line-height: 1.6;
      font-weight: 500;
    }

    /* Benefits Grid - 3x2 Layout */
    .benefits-grid-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 3rem 0 4rem;
    }

    /* Individual Benefit Card */
    .benefit-card-item {
      background: #ffffff;
      border-radius: 28px;
      padding: 2rem 1.8rem;
      transition: all 0.35s ease;
      border: 1px solid #eef2ff;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
      position: relative;
      overflow: hidden;
    }

    .benefit-card-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #2b6eff, #8b5cf6);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .benefit-card-item:hover {
      transform: translateY(-6px);
      border-color: rgba(43, 110, 255, 0.25);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(43, 110, 255, 0.08);
    }

    .benefit-card-item:hover::before {
      transform: scaleX(1);
    }

    /* Icon Container */
    .card-icon-wrapper {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #eef4ff, #ffffff);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: all 0.3s ease;
    }

    .benefit-card-item:hover .card-icon-wrapper {
      transform: scale(1.05);
      background: linear-gradient(135deg, #e2eaff, #ffffff);
    }

    .card-icon-wrapper i {
      font-size: 1.8rem;
      color: #2b6eff;
    }

    /* Card Content */
    .card-heading {
      font-size: 1.35rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }

    .card-description-text {
      font-size: 0.95rem;
      color: #475569;
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* Bottom Stats Section */
    .performance-stats-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
      padding: 2rem 2.5rem;
      background: linear-gradient(135deg, #f8fcff, #ffffff);
      border-radius: 32px;
      border: 1px solid #eef2ff;
    }

    .stat-metric {
      text-align: center;
      flex: 1;
      min-width: 140px;
    }

    .stat-number-large {
      font-size: 2rem;
      font-weight: 800;
      color: #2b6eff;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label-text {
      font-size: 0.85rem;
      color: #475569;
      font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .benefits-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
      }
    }

    @media (max-width: 768px) {
      .vyom-advantages-wrap {
        padding: 60px 0;
      }

      .advantages-container {
        padding: 0 1.25rem;
      }

      .benefits-grid-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0 3rem;
      }

      .benefit-card-item {
        padding: 1.5rem;
      }

      .card-icon-wrapper {
        width: 48px;
        height: 48px;
      }

      .card-icon-wrapper i {
        font-size: 1.5rem;
      }

      .card-heading {
        font-size: 1.2rem;
      }

      .performance-stats-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
      }

      .stat-metric {
        width: 100%;
      }

      .advantages-title {
        font-size: 1.8rem;
      }

      .advantages-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .benefits-grid-layout {
        grid-template-columns: repeat(2, 1fr);
      }
    }



    /* ============================================
       UNMATCHED ADVANTAGES SECTION
       Perfectly styled with unique class names
    ============================================ */
    .vyom-advantages-wrap {
      padding: 100px 0;
      background: linear-gradient(135deg, #ffffff 0%, #f8fcff 100%);
      position: relative;
    }

    .advantages-container {
      max-width: 1600px;
      margin: 0 auto;
      padding: 0 3rem;
    }

    /* Header Styles */
    .advantages-header {
      text-align: center;
      margin-bottom: 3.5rem;
    }

    .advantages-badge {
      display: inline-block;
      background: rgba(43, 110, 255, 0.08);
      padding: 6px 18px;
      border-radius: 40px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #2b6eff;
      margin-bottom: 1.2rem;
      text-transform: uppercase;
    }

    .advantages-title {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      letter-spacing: -0.02em;
      color: #0f172a;
      margin-bottom: 1rem;
      line-height: 1.2;
    }


    .advantages-divider {
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, #2b6eff, #8b5cf6);
      margin: 1.5rem auto 0;
      border-radius: 4px;
    }

    .advantages-subtitle {
      max-width: 700px;
      margin: 1.5rem auto 0;
      font-size: 1.1rem;
      color: #475569;
      line-height: 1.6;
      font-weight: 500;
    }

    /* Benefits Grid - 3x2 Layout */
    .benefits-grid-layout {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 3rem 0 4rem;
    }

    /* Individual Benefit Card */
    .benefit-card-item {
      background: #ffffff;
      border-radius: 28px;
      padding: 2rem 1.8rem;
      transition: all 0.35s ease;
      border: 1px solid #eef2ff;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
      position: relative;
      overflow: hidden;
    }

    .benefit-card-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #2b6eff, #8b5cf6);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .benefit-card-item:hover {
      transform: translateY(-6px);
      border-color: rgba(43, 110, 255, 0.25);
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 0 0 1px rgba(43, 110, 255, 0.08);
    }

    .benefit-card-item:hover::before {
      transform: scaleX(1);
    }

    /* Icon Container */
    .card-icon-wrapper {
      width: 56px;
      height: 56px;
      background: linear-gradient(135deg, #eef4ff, #ffffff);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: all 0.3s ease;
    }

    .benefit-card-item:hover .card-icon-wrapper {
      transform: scale(1.05);
      background: linear-gradient(135deg, #e2eaff, #ffffff);
    }

    .card-icon-wrapper i {
      font-size: 1.8rem;
      color: #2b6eff;
    }

    /* Card Content */
    .card-heading {
      font-size: 1.35rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }

    .card-description-text {
      font-size: 0.95rem;
      color: #475569;
      line-height: 1.6;
      margin-bottom: 0;
    }

    /* Bottom Stats Section */
    .performance-stats-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 2rem;
      margin-top: 2rem;
      padding: 2rem 2.5rem;
      background: linear-gradient(135deg, #f8fcff, #ffffff);
      border-radius: 32px;
      border: 1px solid #eef2ff;
    }

    .stat-metric {
      text-align: center;
      flex: 1;
      min-width: 140px;
    }

    .stat-number-large {
      font-size: 2rem;
      font-weight: 800;
      color: #2b6eff;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label-text {
      font-size: 0.85rem;
      color: #475569;
      font-weight: 500;
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
      .benefits-grid-layout {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.8rem;
      }
    }

    @media (max-width: 768px) {
      .vyom-advantages-wrap {
        padding: 60px 0;
      }

      .advantages-container {
        padding: 0 1.25rem;
      }

      .benefits-grid-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0 3rem;
      }

      .benefit-card-item {
        padding: 1.5rem;
      }

      .card-icon-wrapper {
        width: 48px;
        height: 48px;
      }

      .card-icon-wrapper i {
        font-size: 1.5rem;
      }

      .card-heading {
        font-size: 1.2rem;
      }

      .performance-stats-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
      }

      .stat-metric {
        width: 100%;
      }

      .advantages-title {
        font-size: 1.8rem;
      }

      .advantages-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
      }
    }

    @media (min-width: 769px) and (max-width: 1024px) {
      .benefits-grid-layout {
        grid-template-columns: repeat(2, 1fr);
      }
    }


    /* ========================= */
/* VYOM STEPS SECTION */
/* ========================= */

.vyom-steps-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.vyom-steps-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 3rem;
}

/* TITLE */
.vyom-steps-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: #0f172a;
  text-align: center;
}

/* SUBTITLE */
.vyom-steps-subtitle {
  max-width: 700px;
  margin: auto;
  color: #475569;
  margin-bottom: 50px;
  font-size: 1.05rem;
   text-align: center;
}

/* GRID */
.vyom-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* ITEM */
.vyom-steps-item {
  padding: 10px;
  border-radius: 12px;
  position: relative;
  background: #fff; /* inner background */
}

/* GRADIENT BORDER */
.vyom-steps-item::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1.5px; /* border thickness */
  background: linear-gradient(135deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3, #54a0ff);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

/* ICON */
.vyom-steps-icon {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 15px;
}

/* TITLE */
.vyom-steps-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* TEXT */
.vyom-steps-item p {
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 992px) {
  .vyom-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .vyom-steps-grid {
    grid-template-columns: 1fr;
  }

  .vyom-steps-title {
    font-size: 1.8rem;
  }
}