/* --- Base & Variables --- */
:root {
  --new-auth-gradient: linear-gradient(92deg, #A35DFF 1.66%, #667BFF 61.25%, #00AFFF 98.58%);
  --new-auth-bg-overlay: linear-gradient(83deg, #291151 6.81%, rgba(35, 12, 82, 0.00) 77.51%);
  --new-auth-purple-dark: #291151;
  --new-auth-text-dark: #1a1a1a;
  --new-auth-text-light: #f5f5f5;
  --new-auth-border: rgba(255, 255, 255, 0.20);
  --new-auth-font-main: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: var(--new-auth-font-main);
  background-color: #f9faff;
  color: #333;
  overflow-x: hidden;
}

/* =========================
     HEADER BANNER (No hero slider)
  ========================== */
  .new-auth-header{
    position: relative;
    min-height: 170px;
    /* overflow: hidden; */
    background: #1b0a39;
  }

  /* Use image OR video - image used here */
  .new-auth-header-media{
    position:absolute;
    inset:0;
    background-image: url("../images/FRAME (3).png"); /* <-- replace */
    background-size: cover;
    background-position: center;
    filter: saturate(1.05);
  }

  /* overlay to match readability */
  .new-auth-header-overlay{
    position:absolute;
    inset:0;
    background:
      linear-gradient(90deg, rgba(22, 4, 54, 0.90) 0%, rgba(22,4,54,0.45) 60%, rgba(22,4,54,0.75) 100%);
  }

  .new-auth-header-inner{
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 20px 18px 22px;
  }

  .new-auth-breadcrumb{
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 12px;
  }

  .new-auth-page-title{
    font-size: 26px;
    font-weight: 900;
    line-height: 1.15;
    color: #fff;
    max-width: 920px;
  }






/* --- Utilities --- */
.new-auth-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.new-auth-gradient-text {
  background: var(--new-auth-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

.new-auth-section-heading {
  font-size: 36px;
  text-align: center;
  margin-bottom: 10px;
}

.new-auth-section-desc {
  text-align: center;
  color: #666;
  max-width: 800px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

/* --- Hero Section --- */
.new-auth-hero {
  position: relative;
  min-height: 54vh;
  background-image: url('/themes/custom/telcomeservices/images/FRAME (3).png');
  /* Placeholder */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 40px;
  /* overflow: hidden; */
}

.new-auth-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--new-auth-bg-overlay);
  z-index: 1;
}

.new-auth-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
  background: rgba(41, 17, 81, 0.3);
  backdrop-filter: blur(5px);
}

.new-auth-nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding-right: 40px;
}

.new-auth-nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: transform 0.2s;
}

.new-auth-nav-link:hover {
  transform: scale(1.05);
}

/* Hero Content Layout - Split Left/Right */
.new-auth-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  height: 100%;
}

.new-auth-hero-left {
  flex: 1;
  max-width: 55%;
}

.new-auth-hero-right {
  flex: 1;
  max-width: 450px;
  /* The "Box" container for slider + CTA */
  background: rgba(35, 11, 86, 0.4);
  border: 1px solid var(--new-auth-border);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.new-auth-hero-title {
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Hero Carousel */
.new-auth-carousel-wrapper {
  width: 100%;
  position: relative;
}

.new-auth-carousel {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 5px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.new-auth-carousel::-webkit-scrollbar {
  display: none;
}

.new-auth-slide {
  min-width: 280px;
  /* Slightly smaller to fit inside the right box */
  flex: 0 0 auto;
  padding: 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.new-auth-slide h3 {
  margin-bottom: 8px;
  font-size: 18px;
  color: #A35DFF;
}

.new-auth-slide p {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.85);
}

/* CTAs inside the slider box */
.new-auth-hero-ctas {
  display: flex;
  gap: 10px;
  width: 100%;
}

.new-auth-btn {
  flex: 1;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  text-align: center;
}

.new-auth-btn-primary {
  background: var(--new-auth-gradient);
  color: white;
}

.new-auth-btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
}

.new-auth-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(163, 93, 255, 0.4);
}

/* ===========================
   STICKY NAV – Default (pill) + Figma design when stuck
=========================== */
.new-auth-sticky-bar:has(.is-stuck) {
  color: gray;
  background-color: gold;
  border: 2px dotted red;
}

.new-auth-sticky-bar {
  position: absolute;
  /* top: 300px; */
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 70%);
  z-index: 998;
  width: fit-content;
  max-width: 95vw;
  margin: -30px auto 0;
  padding: 0px 16px;
  border-radius: 70px;
  border: 1px solid #B6C1C7;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  /* transition: all 0.3s ease; */
}
.page-node-1907 .new-auth-sticky-bar {
  top: 68%;
}

/* Figma sticky design: when menu reaches top */
.new-auth-sticky-bar.is-stuck {
  position: fixed;
  top: 70px;
  bottom: auto;
  left: 0;
  width: 100%;
  transform: translateX(0);
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid #dde4f0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.new-auth-sticky-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 1200px;
  margin: 0 auto;
}

.new-auth-sticky-title,
.new-auth-sticky-toggle {
  display: none;
}

.new-auth-sticky-bar.is-stuck .new-auth-sticky-inner {
  justify-content: space-between;
  gap: 24px;
  padding: 12px 20px;
}

.new-auth-sticky-bar.is-stuck .new-auth-sticky-title {
  display: block;
}

.new-auth-sticky-bar.is-stuck .new-auth-sticky-menu,
.new-auth-sticky-bar.is-stuck .new-auth-sticky-container {
  width: fit-content;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.new-auth-sticky-title {
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  background: linear-gradient(90deg, #7E4CFF 0%, #2E9BFF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Default: pill container / ul menu */
.new-auth-sticky-menu,
.new-auth-sticky-container {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 4px;
  padding: 6px 0px;
  margin: 0;
  height: auto;
  white-space: nowrap;
  list-style: none;
  /* overflow-y: auto; */
      max-width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    /* hide scrollbar */
    scrollbar-width: none; /* Firefox */
}
.new-auth-sticky-menu::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.nav-arrow {
    width: 50px;
    cursor: pointer;
    padding: 10px;
    position: absolute;
    z-index: 2;
    display: none; /* hidden by default */
}
.nav-arrow.left {
    left: 0;
}

.nav-arrow.right {
    right: 0;
}
/* Container */
.new-auth-sticky-bar {
  overflow-y: auto;

  /* Firefox */
  /* scrollbar-width: thin;
  scrollbar-color: #4da3ff #e6f0ff; */
}

/* Chrome, Edge, Safari */
.new-auth-sticky-bar::-webkit-scrollbar {
  width: 2px; /* thin scrollbar */
}

.new-auth-sticky-bar::-webkit-scrollbar-track {
  background: #c1d5f3;
  border-radius: 10px;
}

.new-auth-sticky-bar::-webkit-scrollbar-thumb {
  background: var( --new-auth-bg-overlay);
   background-clip: content-box;
  border-radius: 10px;
}

.new-auth-sticky-bar::-webkit-scrollbar-thumb:hover {
   background: var(--new-auth-gradient);
  background-clip: content-box;
}

.new-auth-sticky-menu li {
  margin: 0;
  padding: 0;
}

.new-auth-sticky-bar.is-stuck .new-auth-sticky-menu,
.new-auth-sticky-bar.is-stuck .new-auth-sticky-container {
  justify-content: flex-end;
  gap: 20px;
}

/* Hamburger – hidden until stuck on mobile */
.new-auth-sticky-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: #fff;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.new-auth-sticky-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #374151;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Pill links – default */
.new-auth-sticky-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  color: #3b3b3b;
  border: 1px solid #d7d7d7;
  background: rgba(255, 255, 255, 0.85);
  transition: all 0.25s ease;
}

.new-auth-sticky-link.active {
  color: #6B4DFF;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #d7d7d7;
}

.new-auth-sticky-link:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, #7E4CFF 0%, #2E9BFF 100%);
  box-shadow: 0 10px 25px rgba(46, 155, 255, 0.25);
}

.new-auth-sticky-link.active:hover {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, #7E4CFF 0%, #2E9BFF 100%);
}

/* Stuck state: Figma-style links (no pills) */
.new-auth-sticky-bar.is-stuck .new-auth-sticky-link {
  padding: 8px 0;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #374151;
  position: relative;
}

.new-auth-sticky-bar.is-stuck .new-auth-sticky-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7E4CFF 0%, #2E9BFF 100%);
  transition: width 0.2s ease;
}

.new-auth-sticky-bar.is-stuck .new-auth-sticky-link:hover,
.new-auth-sticky-bar.is-stuck .new-auth-sticky-link.active {
  color: #4f46e5;
  background: transparent;
  box-shadow: none;
}

.new-auth-sticky-bar.is-stuck .new-auth-sticky-link:hover::after,
.new-auth-sticky-bar.is-stuck .new-auth-sticky-link.active::after {
  width: 100%;
}

/* Tablet */
@media (max-width: 1024px) {
  .new-auth-sticky-bar {
    top: 12px;
    padding: 12px 12px;
    border-radius: 60px;
    max-width: 96vw;
  }

  .new-auth-sticky-menu,
  .new-auth-sticky-container {
    gap: 10px;
  }

  .new-auth-sticky-link {
    font-size: 16px;
    padding: 12px 18px;
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-inner {
    padding-inline: 16px;
  }

  .new-auth-sticky-title {
    font-size: 16px;
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-menu,
  .new-auth-sticky-bar.is-stuck .new-auth-sticky-container {
    gap: 16px;
  }
}

/* Mobile – default pill scroll */
@media (max-width: 768px) {
  .new-auth-sticky-bar {
    width: calc(100% - 18px);
    max-width: none;
    margin: 10px auto 0;
    padding: 10px 10px;
    border-radius: 28px;
    top: 220px;
    /* left: 10px; */
  }
  .page-node-1907 .new-auth-sticky-bar {
  top: 70%;
}

  .new-auth-sticky-inner {
    min-width: 0;
    overflow: hidden;
  }

  .new-auth-sticky-menu,
  .new-auth-sticky-container {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 6px;
    min-width: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .new-auth-sticky-menu::-webkit-scrollbar,
  .new-auth-sticky-container::-webkit-scrollbar {
    display: none;
  }

  .new-auth-sticky-menu li,
  .new-auth-sticky-container li {
    flex: 0 0 auto;
  }

  .new-auth-sticky-link {
    font-size: 15px;
    padding: 10px 16px;
    flex: 0 0 auto;
  }

  /* Stuck: Figma mobile – heading left, hamburger right */
  .new-auth-sticky-bar.is-stuck .new-auth-sticky-inner {
    padding-block: 10px;
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-title {
    font-size: 15px;
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-toggle {
    display: flex !important;
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-menu,
  .new-auth-sticky-bar.is-stuck .new-auth-sticky-container {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    top: 100%;
    margin-top: 0;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(0, 0, 0, 0.05);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    display: none;
    z-index: 999;
  }

  .new-auth-sticky-bar.is-stuck.menu-open .new-auth-sticky-menu,
  .new-auth-sticky-bar.is-stuck.menu-open .new-auth-sticky-container {
    display: flex;
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-menu li,
  .new-auth-sticky-bar.is-stuck .new-auth-sticky-container li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-menu li:last-child,
  .new-auth-sticky-bar.is-stuck .new-auth-sticky-container li:last-child {
    border-bottom: none;
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-link {
    display: block;
    width: 100%;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-link::after {
    bottom: 12px;
  }

  .new-auth-sticky-bar.menu-open .new-auth-sticky-toggle {
    border-color: #9ca3af;
    background: #f9fafb;
  }

  .new-auth-sticky-bar.menu-open .new-auth-sticky-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .new-auth-sticky-bar.menu-open .new-auth-sticky-toggle span:nth-child(2) {
    opacity: 0;
  }

  .new-auth-sticky-bar.menu-open .new-auth-sticky-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

@media (max-width: 480px) {
  .new-auth-sticky-bar {
    padding: 8px 8px;
    border-radius: 22px;
    top: 220px;
    /* left: 10px; */
  }
  .page-node-1907 .new-auth-sticky-bar {
  top: 75%;
}

  .new-auth-sticky-menu,
  .new-auth-sticky-container {
    gap: 8px;
    padding: 6px 6px;
  }

  .new-auth-sticky-link {
    font-size: 14px;
    padding: 9px 14px;
  }

  .new-auth-sticky-bar.is-stuck .new-auth-sticky-title {
    font-size: 14px;
  }
}


/* --- Content Sections CSS (Shared) --- */
.new-auth-about-section {
  padding: 80px 0;
  background: #fff;
  scroll-margin-top: 60px;
}

.new-auth-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.new-auth-about-text h2 {
  font-size: 40px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.new-auth-about-text p {
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.new-auth-about-text ul li {
  font-size: 14px;
  font-weight: 600;
}

.new-auth-about-diagram {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-auth-circle-center {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  position: relative;
  border: 2px solid #e0e0efff;
}

.new-auth-orbit-item {
  position: absolute;
  background: white;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  z-index: 1;
  align-items: center;
  gap: 8px;
  width: 160px;
  opacity: 0;
  transition: transform 0.3s ease;
}

.new-auth-orbit-item:hover {
  transform: scale(1.05);
}

.new-auth-orbit-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.new-auth-orbit-2 {
  top: 25%;
  right: 0;
}

.new-auth-orbit-3 {
  bottom: 25%;
  right: 0;
}

.new-auth-orbit-4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.new-auth-orbit-5 {
  bottom: 25%;
  left: 0;
}

.new-auth-orbit-6 {
  top: 20%;
  left: 10%;
}

/*        .new-auth-ring { position: absolute; border: 3px dashed #d1d1d1; border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 1; }*/
.new-auth-ring-1 {
  width: 250px;
  height: 250px;
}

.new-auth-ring-2 {
  width: 380px;
  height: 380px;
}

.new-auth-categories-section {
  padding: 60px 0;
  background: #f4f6fc;
  scroll-margin-top: 60px;
}

/* OUTER WHITE SURFACE (like screenshot card container) */


/* Layout exactly like screenshot */
.new-auth-tabs-wrapper {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 10px;
  align-items: start;
}

/* Left tab list */
.new-auth-tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Tab card */
.new-auth-tab-btn {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: start;

  padding: 22px 10px;
  border-radius: 16px;
  cursor: pointer;

  background: #F5F6F6;
  box-shadow: 0 10px 26px rgba(25, 32, 70, 0.10);
  border: 1px solid rgba(0, 0, 0, 0.04);

  transition: transform .2s ease, box-shadow .2s ease;
}

/* Icon tile */
.new-auth-tab-icon {

  display: flex;
  align-items: center;
  justify-content: center;

}

/* Title + subtitle like screenshot */
.new-auth-tab-title {
  font-size: 14px;
  font-weight: 700;
  color: #222;
  line-height: 1.2;
  margin-bottom: 6px;
}

.new-auth-tab-subtitle {
  font-size: 13px;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.62);
}

/* Active indicator line at left */
.new-auth-tab-btn::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 10px;
  background: transparent;
}

/* hover */
.new-auth-tab-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(25, 32, 70, 0.14);
}

/* ACTIVE TAB CONNECTED WITH CONTENT */
.new-auth-tab-btn.active {
  box-shadow: -4px 18px 35px rgba(25, 32, 70, 0.18);
  /*  border: 1px solid rgba(102,123,255,0.28);*/
}

.new-auth-tab-contents {
  position: relative;
  z-index: 1;
}

.new-auth-tab-btn.active {
  z-index: 2;
  color: blue;
}

.new-auth-tab-btn.active .new-auth-tab-title {
  color: blue !important;
}

/* blue indicator */
.new-auth-tab-btn.active::before {
  background: #2563ff;
}

/*
.new-auth-tab-btn.active::after{
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.10));
}
*/

/* CONNECTOR SHAPE (white bridge into content) */
.new-auth-tab-btn.active::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 0;

  /* this must cover the gap between left tab + right content */
  right: -25px;

  /* should match your image width */
  width: 38px;

  background-image: url("/themes/custom/telcomeservices/images/curve (1).svg");
  /* <-- your curved image */
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;

  z-index: 999;
  pointer-events: none;
}

/* CONTENT PANEL RIGHT SIDE */
.new-auth-tab-contents {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(25, 32, 70, 0.12);
  overflow: hidden;
}

/* content panel visible */
.new-auth-tab-content-panel {
  display: none;
  padding: 18px;
}

.new-auth-tab-content-panel.active {
  display: block;
  animation: fadeInTab .25s ease;
}

@keyframes fadeInTab {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Right side wrapper */
.new-auth-right-ui {
  width: 100%;
}

/* 2x2 grid like reference */
.new-auth-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Service Card */
.new-auth-service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 35px rgba(25, 32, 70, 0.12);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Gradient top strip */
.new-auth-service-head {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;

  color: #fff;
  font-weight: 700;
  font-size: 14px;

  background: linear-gradient(90deg, #7E4CFF 0%, #2E9BFF 100%);
}

.new-auth-service-head-arrow-auth {
  font-size: 22px;
  opacity: .95;
}

/* Inside content */
.new-auth-service-body {
  padding: 18px;
}

.new-auth-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Column split line like screenshot */
.new-auth-col {
  position: relative;
  padding-right: 12px;
}

.new-auth-two-col .new-auth-col:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  padding-right: 16px;
}

.new-auth-two-col .new-auth-col:last-child {
  padding-left: 8px;
}

/* headings inside */
.new-auth-col h4 {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: #222;
}

/* list bullets with blue dots */
.new-auth-col ul {
  margin: 8px 0 12px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.new-auth-col ul li {
  font-size: 10px;
  color: rgba(0, 0, 0, 0.65);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.new-auth-col ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #2563ff;
  margin-top: 5px;
  flex: 0 0 5px;
}

/* View details link */
.new-auth-view-link {
  display: inline-flex;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-decoration: none;
  color: #5e66ff;
  margin-top: 4px;
}

.new-auth-view-link:hover {
  text-decoration: underline;
}

/* Bottom Reference bar */
.new-auth-ref-bar {
  margin-top: 26px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 140px;
  align-items: stretch;


  background: linear-gradient(0deg, rgba(34, 193, 195, 0) 34%, rgb(126 77 255) 34%, rgb(46 154 255) 87%, rgba(253, 187, 45, 0) 87%)
}

.new-auth-ref-left {
  padding: 32px 20px;
  color: #fff;
}

.new-auth-ref-title {
  font-weight: 800;
  font-size: 12px;
  line-height: 1.50;
}

.new-auth-ref-sub {
  margin-top: 12px;
  font-size: 11px;
  opacity: .75;
}

/* PDF icon */
.new-auth-ref-pdf {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  position: relative;
}

.new-auth-ref-pdf img {
  width: 100px;
  height: auto;

}

/* Responsive */
@media (max-width: 980px) {
  .new-auth-right-grid {
    grid-template-columns: 1fr;
  }

  .new-auth-ref-bar {
    grid-template-columns: 1fr;
  }

  .new-auth-ref-pdf {
    justify-content: flex-start;
    padding-left: 20px;
    padding-bottom: 22px;
  }
}

.new-auth-comparison-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f4f6ff 100%);
  scroll-margin-top: 60px;
}

.new-auth-compare-wrap {
  max-width: 1500px;
  margin: 0 auto;
  border-radius: 26px;
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  padding: 22px 22px 26px;
}

/* Header row */
.new-auth-compare-head {
  display: grid;
  grid-template-columns: 1fr 0px 1fr;
  align-items: center;
  gap: 0px;
  margin-bottom: 20px;
}

.new-auth-head-pill {
  height: 58px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: .2px;
  color: #fff;
}

.new-auth-head-pill.left {
  background: #9B5BFF;
}

.new-auth-head-pill.right {
  background: #04A7E8;
}

/* center refresh icon */
.new-auth-refresh-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.new-auth-refresh-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9B5BFF 0%, #04A7E8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

.new-auth-refresh-circle span {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid rgba(255, 255, 255, 0.85);
  color: #fff;
  font-size: 34px;
  line-height: 1;
  font-weight: 800;
}

/* main body grid */
.new-auth-compare-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 10px 14px 0;
}

/* rows */
.new-auth-row {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
}

/* left icon circles */
.new-auth-badge {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.new-auth-badge.purple {
  background: #9B5BFF;
}

.new-auth-badge.blue {
  background: #04A7E8;
}

/* tiny icon */
.new-auth-icon {
  width: 34px;
  height: 34px;
  display: block;
}

.new-auth-icon svg {
  width: 35px;
  height: 28px;
}

.new-auth-title {
  font-size: 14px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 10px;
}

.new-auth-sub {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(31, 41, 55, 0.72);
  max-width: 560px;
}

/* right column includes tick */
.new-auth-row-right {
  display: grid;
  grid-template-columns: 62px 1fr 52px;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
}

.new-auth-tick {
  font-size: 20px;
  font-weight: 900;
  color: #04A7E8;
  margin-top: 6px;
  text-align: center;
}

/* Keep exact spacing like screenshot */
.new-auth-compare-body .new-auth-row,
.new-auth-compare-body .new-auth-row-right {
  border-top: 0;
}

/* Responsive */
@media(max-width:1100px) {
  .new-auth-compare-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .new-auth-refresh-mid {
    display: none;
  }

  .new-auth-compare-body {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .new-auth-row-right {
    grid-template-columns: 92px 1fr;
  }

  .new-auth-tick {
    display: none;
  }
}

.new-auth-migration-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff 0%, #f4f6ff 100%);
  scroll-margin-top: 60px;
}

.new-auth-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.new-auth-card-grid-bottom {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.new-auth-migration-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid #eaeaea;
  transition: transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
}

.new-auth-migration-card h3 {
  font-size: 14px;
}

.new-auth-migration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.new-auth-mig-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  border-radius: 8px;
  background: #eee;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== FAQ wrapper ===== */
.new-auth-faq-wrap {
  max-width: 1500px;
  margin: 0 auto;
}

.new-auth-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ===== ITEM CARD ===== */
.new-auth-accordion-item {
  width: 100%;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--faq-border);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

/* header row */
.new-auth-accordion-btn {
  width: 100%;
  border: none;
  background: transparent;
  cursor: pointer;

  display: grid;
  grid-template-columns: 82px 1fr 80px;
  align-items: center;
  padding: 20px;
  text-align: left;
}

/* left icon circle */
.new-auth-faq-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #edf1f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* icon svg */
.new-auth-faq-icon svg {
  width: 28px;
  height: 28px;
  stroke: #2f6bff;
  fill: none;
  stroke-width: 2;
}

/* title + subtitle */
.new-auth-faq-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.new-auth-faq-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--faq-blue);
  line-height: 1.15;
}

.new-auth-faq-sub {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  color: #5b6b86;
  background: rgba(47, 107, 255, 0.10);
  border: 1px solid rgba(47, 107, 255, 0.22);
  width: fit-content;
}


/* right plus */
.new-auth-faq-plus {
  justify-self: end;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 34px;
  font-weight: 400;
  color: #0b2d63;
  line-height: 1;
}

/* expanded state -> minus */
.new-auth-accordion-item.active .new-auth-faq-plus {
  transform: rotate(180deg);
}

/* content panel */
.new-auth-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 26px;
}

.new-auth-accordion-item.active .new-auth-accordion-content {
  padding: 0 26px 26px;
  display: inline;
}

.new-auth-faq-section {
  padding: 60px 0px;
}

.new-auth-accordion-content p {
  padding-left: 82px;
  /* aligns with title like screenshot */
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0, 0, 0, .70);
}

/* bottom button */
.new-auth-view-all-btn {
  width: 100%;
  margin-top: 26px;
  padding: 20px 22px;
  border: none;
  border-radius: 12px;
  cursor: pointer;

  background: var(--new-auth-gradient);
  color: #fff;
  font-size: 22px;
  font-weight: 500;

  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.10);
}

/* responsive */
@media (max-width: 900px) {
  .new-auth-accordion-btn {
    grid-template-columns: 64px 1fr 52px;
    padding: 18px 18px;
  }

  .new-auth-faq-icon {
    width: 46px;
    height: 46px;
  }

  .new-auth-faq-title {
    font-size: 18px;
  }

  .new-auth-faq-sub {
    font-size: 14px;
  }

  .new-auth-accordion-content p {
    padding-left: 64px;
    font-size: 15px;
  }

  .new-auth-faq-plus {
    font-size: 28px;
    width: 36px;
    height: 36px;
  }

  .new-auth-view-all-btn {
    font-size: 18px;
    padding: 16px;
  }
}

@keyframes fadeInStagger {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInTab {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.new-auth-animate-in {
  animation: fadeInStagger 1s forwards;
}

/* --- MOBILE MEDIA QUERY (Responsive) --- */
@media (max-width: 1024px) {

  .new-auth-about-grid,
  .new-auth-comparison-container,
  .new-auth-tabs-wrapper {
    grid-template-columns: 1fr;
  }

  .new-auth-comparison-container {
    gap: 50px;
  }

  .new-auth-refresh-icon {
    transform: rotate(90deg);
    height: 50px;
  }

  .new-auth-card-grid,
  .new-auth-card-grid-bottom {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
  }

  .new-auth-sticky-menu,
  .new-auth-sticky-container {
    gap: 15px;
    overflow-x: auto;
    justify-content: flex-start;
    padding-left: 20px;
  }

  .new-auth-sticky-link {
    white-space: nowrap;
  }
}

/* Hero and Mobile Specifics */
@media (max-width: 768px) {

  /* Hero stacks on mobile */
  .new-auth-hero-content {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .new-auth-hero-left {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .new-auth-hero-title {
    font-size: 40px;
  }

  .new-auth-hero-right {
    max-width: 100%;
    width: 100%;
  }

  /* About/Diagram responsiveness */
  .new-auth-section-heading {
    font-size: 28px;
  }

  .new-auth-about-diagram {
    height: auto;
    padding: 40px 0;
  }

  .new-auth-orbit-item {
    position: relative;
    margin: 10px auto;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    justify-content: center;
  }

  .new-auth-ring {
    display: flex;
  }

  .new-auth-circle-center {
    margin: 0 auto 30px auto;
  }
}


/* ================================
   INLINE STYLE REMOVAL - HERO LEFT TEXT
================================ */
.new-auth-hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  max-width: 90%;
}

/* ================================
   INLINE STYLE REMOVAL - ABOUT TEXT
================================ */
.new-auth-about-desc {
  line-height: 1.8;
  color: #555;
  margin-top: 20px;
}

.new-auth-about-list {
  margin-top: 20px;
  list-style-position: inside;
  color: #444;
  line-height: 2;
}

/* About buttons wrapper (margin top:30px) */
.new-auth-about-actions {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

/* About Button: Read More */
.new-auth-btn-outline-blue {
  background: #fff;
  color: #667BFF;
  border: 1px solid #667BFF;
}

/* About Button: Get Started */
.new-auth-btn-gap-left {
  margin-left: 10px;
}

/* ================================
   INLINE STYLE REMOVAL - ORBIT CARDS (transition delays)
================================ */
.new-auth-orbit-item.delay-01 {
  transition-delay: 0.1s;
}

.new-auth-orbit-item.delay-02 {
  transition-delay: 0.2s;
}

.new-auth-orbit-item.delay-03 {
  transition-delay: 0.3s;
}

.new-auth-orbit-item.delay-04 {
  transition-delay: 0.4s;
}

.new-auth-orbit-item.delay-05 {
  transition-delay: 0.5s;
}

/* ================================
   INLINE STYLE REMOVAL - TAB CONTENT CARD (h4 spacing)
================================ */
.new-auth-col .new-auth-h4-gap {
  margin-top: 14px;
}

/* ================================
   INLINE STYLE REMOVAL - COMPARISON SECTION HEADING + POLICY BADGE
================================ */
.new-auth-policy-badge-wrap {
  text-align: center;
}

.new-auth-policy-badge {
  background: #A35DFF;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  display: inline-block;
}

.new-auth-comp-title {
  margin-top: 10px;
}

/* ================================
   INLINE STYLE REMOVAL - MIGRATION CARD TEXT
================================ */
.new-auth-mig-card-desc {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
}

/* Optional (if you want widths without inline styles for bottom cards) */
.new-auth-migration-card.w-350 {
  width: 350px;
}

/* Migration card animation delays */
.new-auth-migration-card.delay-01 {
  transition-delay: 0.1s;
}

.new-auth-migration-card.delay-02 {
  transition-delay: 0.2s;
}

.new-auth-migration-card.delay-03 {
  transition-delay: 0.3s;
}

.new-auth-migration-card.delay-04 {
  transition-delay: 0.4s;
}


/* ===== Slider Card ===== */
.overview-slider {

  max-width: 100%;
  padding: 20px 15px 80px;
  border-radius: 22px;
  background: rgba(60, 20, 100, 0.55);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .45);
  position: relative;
  overflow: hidden;
}

/* ===== Slides ===== */
.slide {
  display: none;
  animation: fadeSlide .6s ease;
}

.slide.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide h3 {
  margin: 0 0 16px;
  font-size: 20px;
  font-weight: 600;
}

.slide p {
  font-size: 14px;
  line-height: 1.7;
  color: #e9e9ff;
}

/* ===== Navigation arrow-auths ===== */
.arrow-auth {
  position: absolute;
  bottom: 21px;
  right: 90px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 22px;
  transition: .3s;
}

.arrow-auth.next {
  right: 30px;
}

.arrow-auth:hover {
  background: #fff;
  color: #4c1aa6;
}

/* ===== Dots ===== */
.dots {
  position: absolute;
  bottom: 36px;
  left: 50px;
  display: flex;
  gap: 12px;
}

.dota {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  cursor: pointer;
  transition: .3s;
}

.dota.active {
  background: #6fb3ff;
}

/* ===== Buttons ===== */
.actions {
  position: absolute;
  bottom: -34px;
  left: 40px;
  display: flex;
  gap: 20px;
}

.new-auth-btn {
  padding: 14px 36px;
  border-radius: 40px;
  font-size: 18px;
  cursor: pointer;
  border: none;
}

.new-auth-btn.signup {
  background: linear-gradient(90deg, #9b6cff, #55b6ff);
  color: #fff;
}

.new-auth-btn.login {
  background: #fff;
  color: #6a39ff;
}

.di-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px 10px 16px;
  border-radius: 999px;
  opacity: 0.85;

  background: linear-gradient(90deg,
      #EAD9FF 0%,
      #E6E1FF 32%,
      #E4F0E9 68%,
      #F1FFE9 100%);

  box-shadow:
    0 6px 18px rgba(0, 0, 0, .12),
    inset 0 0 0 1px rgba(255, 255, 255, .6);
}

/* Icon Circle */
.di-icon {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6B1F8E;
  font-size: 18px;
  font-weight: 700;

  background: rgba(255, 255, 255, .65);
  box-shadow:
    inset 0 0 0 2px rgba(107, 31, 142, .25);
}

/* Text */
.di-text {
  font-size: 12px;
  font-weight: 500;
  color: #6B1F8E;
  letter-spacing: .2px;
}

/* ===========================================
   Diagram Container
=========================================== */
.new-auth-about-diagram {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  background-image: url("/themes/custom/telcomeservices/images/about-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  /* or contain */
}

/* ===========================================
   Center Circle
=========================================== */
.new-auth-circle-center {
  width: 140px;
  height: 140px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 5;
  position: relative;
  border: 2px solid #e0e0efff;

  /* subtle rotating "feel" */
  animation: newAuthCenterFloat 3.8s ease-in-out infinite;
  transform-origin: center;
}

@keyframes newAuthCenterFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

/* ===========================================
   Orbit Rings (rotating)
=========================================== */
.new-auth-ring {
  position: absolute;
  border: 3px dashed rgba(0, 0, 0, 0.06);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

.new-auth-ring-1 {
  width: 285px;
  height: 285px;
  animation: ringRotateCW 116s linear infinite;
}

.new-auth-ring-2 {
  width: 385px;
  height: 385px;
  animation: ringRotateCCW 222s linear infinite;
}

/* Clockwise */
@keyframes ringRotateCW {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Anti-clockwise */
@keyframes ringRotateCCW {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

/* ===========================================
   Moving Dots (attached to rings)
   -> dots rotate with ring because they are inside it
=========================================== */
.new-auth-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 6px rgba(170, 120, 255, .10);
  top: 50%;
  left: 50%;
  transform-origin: 0 0;
}

/* Dots placed on ring edge using translate radius */
.new-auth-ring-1 .new-auth-dot-1 {
  transform: rotate(30deg) translateX(125px);
}

.new-auth-ring-1 .new-auth-dot-2 {
  transform: rotate(210deg) translateX(125px);
}

.new-auth-ring-2 .new-auth-dot-3 {
  transform: rotate(40deg) translateX(190px);
}

.new-auth-ring-2 .new-auth-dot-4 {
  transform: rotate(160deg) translateX(190px);
}

.new-auth-ring-2 .new-auth-dot-5 {
  transform: rotate(300deg) translateX(190px);
}

/* Optional: tiny pulse */
.new-auth-dot {
  animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.25);
  }
}

/* ===========================================
   Orbit Cards Floating + Fade In
=========================================== */
.new-auth-orbit-item {
  position: absolute;
  background: white;
  padding: 10px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 160px;

  /* Initial */
  opacity: 0;
  transform: translateY(18px);
  will-change: transform, opacity;
  transition: transform 0.3s ease;

  /* Appear + Float loop */
  animation:
    orbitItemIn 0.7s ease forwards,
    orbitFloat 4.6s ease-in-out infinite;
}

/* Fade + slide in */
@keyframes orbitItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating movement */
@keyframes orbitFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Hover */
.new-auth-orbit-item:hover {
  transform: scale(1.05) translateY(-6px);
}

/* different floating timing for each card */
.new-auth-orbit-1 {
  animation-delay: .1s, 0s;
}

.new-auth-orbit-2 {
  animation-delay: .2s, .3s;
}

.new-auth-orbit-3 {
  animation-delay: .3s, .6s;
}

.new-auth-orbit-4 {
  animation-delay: .4s, .15s;
}

.new-auth-orbit-5 {
  animation-delay: .5s, .45s;
}

.new-auth-orbit-6 {
  animation-delay: .6s, .75s;
}

/* ===========================================
   Orbit Positions
=========================================== */
.new-auth-orbit-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.new-auth-orbit-2 {
  top: 25%;
  right: 0;
}

.new-auth-orbit-3 {
  bottom: 25%;
  right: 0;
}

.new-auth-orbit-4 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.new-auth-orbit-5 {
  bottom: 25%;
  left: 0;
}

.new-auth-orbit-6 {
  top: 20%;
  left: 10%;
  transform: translateX(-50%);
}

/* =====================================================
   RESPONSIVE MEDIA QUERY (ABOUT + CATEGORIES TABS)
===================================================== */

/* ---------- Laptop small / Tablet ---------- */
@media (max-width: 1024px) {

  /* ABOUT SECTION */
  .new-auth-about-section {
    padding: 60px 0;
  }

  .new-auth-about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .new-auth-about-text h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .new-auth-about-text p {
    line-height: 1.6;
  }

  .new-auth-about-diagram {
    height: 360px;
  }

  /* CATEGORIES / TABS SECTION */
  .new-auth-tabs-wrapper {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .new-auth-tab-buttons {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
    gap: 12px;

    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .new-auth-tab-buttons::-webkit-scrollbar {
    display: none;
  }

  .new-auth-tab-btn {
    min-width: 320px;
    flex: 0 0 auto;
  }

  /* Disable connector curve on tablet */
  .new-auth-tab-btn.active::after {
    display: none;
  }
}


/* ---------- Mobile ---------- */
@media (max-width: 768px) {

  /* ABOUT SECTION */
  .new-auth-about-section {
    padding: 45px 0;
  }

  .new-auth-about-text h2 {
    font-size: 26px;
    margin-bottom: 12px;
  }

  .new-auth-about-text p {
    font-size: 14px;
    line-height: 1.6;
  }

  .new-auth-about-text ul li {
    font-size: 13px;
  }

  /* ✅ Hide right side diagram on mobile */
  .new-auth-about-diagram {
    display: none !important;
  }


  /* CATEGORIES SECTION */
  .new-auth-categories-section {
    padding: 45px 0;
  }

  .new-auth-tabs-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Tabs scroll */
  .new-auth-tab-buttons {
    gap: 10px;
    padding-bottom: 10px;
  }

  .new-auth-tab-btn {
    min-width: 280px;
    padding: 16px 14px;
    border-radius: 14px;
  }

  .new-auth-tab-title {
    font-size: 13px;
  }

  .new-auth-tab-subtitle {
    font-size: 12px;
  }

  /* Right side cards 1 column */
  .new-auth-right-grid {
    grid-template-columns: 1fr;
  }

  /* Internal column becomes single */
  .new-auth-two-col {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .new-auth-two-col .new-auth-col:first-child {
    border-right: 0;
    padding-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 14px;
    margin-bottom: 10px;
  }

  .new-auth-two-col .new-auth-col:last-child {
    padding-left: 0;
  }

  /* Reference bar */
  .new-auth-ref-bar {
    grid-template-columns: 1fr;
  }

  .new-auth-ref-left {
    padding: 22px 16px;
  }

  .new-auth-ref-pdf {
    justify-content: flex-start;
    padding: 14px 16px 20px;
  }

  .new-auth-ref-pdf img {
    width: 80px;
  }

  /* Disable connector curve on mobile */
  .new-auth-tab-btn.active::after {
    display: none !important;
  }
}


/* ---------- Small Mobile ---------- */
@media (max-width: 480px) {

  .new-auth-tab-btn {
    min-width: 250px;
  }

  .new-auth-service-head {
    padding: 0 14px;
    font-size: 13px;
  }

  .new-auth-col ul li {
    font-size: 11px;
  }
}

/* ====================================== Old Saral CSS start ===================*/

/* ================= LAYOUT ================= */
.old-saral-wrapper{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 340px;
  gap:24px;
}

/* ================= CARDS ================= */
.old-saral-card{
  background:#ffffff;
  border-radius:14px;
  padding:28px;
  color:var(--old-saral-text);
}

/* ================= TYPOGRAPHY ================= */
.old-saral-card h2{
  font-size:24px;
  font-weight:700;
  margin-bottom:18px;
  color:#111827;
}

.old-saral-card p{
  font-size:14px;
  line-height:1.7;
  margin-bottom:14px;
  color:#374151;
}

.old-saral-bold{
  font-weight:600;
  color:#111827;
}

/* ================= BADGES ================= */
.old-saral-badges{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:20px;
}

.old-saral-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 16px;
  font-size:13px;
  font-weight:600;
  border-radius:8px;
  text-decoration:none;
  color:#000 ;

  border:1px solid var(--old-saral-border);
  background:#f7f7f7;
  box-shadow:var(--old-saral-shadow);

  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.old-saral-badge:hover{
  opacity:.95;
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(0,0,0,.15);
}

/* ================= SIDEBAR ================= */
.old-saral-sidebar{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* ================= PROFILE ================= */
.old-saral-profile{
  background:#ffffff;
  border-radius:16px;
  padding:18px;
  text-align:center;
}

.old-saral-avatar{
  width:92px;
  height:92px;
  border-radius:50%;
  margin:0 auto 12px;
  overflow:hidden;
}

.old-saral-avatar img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.old-saral-name{
  font-weight:700;
  color:#2563eb;
  margin-bottom:4px;
  font-size:15px;
}

.old-saral-designation{
  font-size:13px;
  color:var(--old-saral-muted);
  margin-bottom:10px;
}

/* ================= SOCIAL ICONS ================= */
.old-saral-socials{
  display:flex;
  justify-content:center;
  gap:12px;
}

.old-saral-social-icon{
  width:34px;
  height:34px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:14px;
  font-weight:700;
  color:#ffffff;

  border:1px solid var(--old-saral-border);
  background: var(--new-auth-gradient);
  box-shadow:var(--old-saral-shadow);

  transition:transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.old-saral-social-icon:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(0,0,0,.18);
}

/* ================= QUICK LINKS ================= */
.old-saral-quick-links{
  background:#ffffff;
  border-radius:16px;
  padding:18px;
}

.old-saral-quick-title{
  background: var(--new-auth-gradient);
  color:#ffffff;
  text-align:center;
  padding:10px 18px;
  border-radius:20px;
  font-weight:700;
  font-size:14px;
  margin-bottom:12px;

  border:1px solid var(--old-saral-border);
  box-shadow:var(--old-saral-shadow);
}

.old-saral-quick-links ul{
  list-style:none;
}

.old-saral-quick-links li{
  margin:10px 0;
}

.old-saral-quick-links a{
  color:#2563eb;
  text-decoration:none;
  font-size:14px;
}

.old-saral-quick-links a:hover{
  text-decoration:underline;
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
  .old-saral-wrapper{
    grid-template-columns:1fr;
  }
}

/* ========================================= Old Saral CSS end =====================================*/