  /* ==========================================================
           3. ABOUT SECTION CLASSES (.tfm-ab-*)
           ========================================================== */
        .tfm-ab-sec {
            padding: 90px 0;
            background: #ffffff;
            border-top: 1px solid var(--tfm-line-color);
        }
        .tfm-ab-heading-box {
            text-align: center;
            max-width: 650px;
            margin: 0 auto 60px;
        }
        .tfm-ab-feature-card {
            background: #ffdede6e;
            border: 1px solid #ffdede6e;
            border-radius: 16px;
            padding: 32px 24px;
            height: 100%;
            box-shadow: 0 4px 16px rgba(0,0,0,0.02);
            transition: all 0.3s ease;
        }
        .tfm-ab-feature-card:hover {
            transform: translateY(-5px);
            border-color: #7a0000;
            box-shadow: 0 12px 24px rgba(0,0,0,0.06);
        }
        .tfm-ab-icon-holder {
            background: #fff;
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            margin-bottom: 20px;
        }

        /* ==========================================================
           4. ROOMS SECTION CLASSES (.tfm-rm-*)
           ========================================================== */
        .tfm-rm-sec {
            padding: 90px 0;
            background: var(--tfm-soft-bg);
            border-top: 1px solid var(--tfm-line-color);
            border-bottom: 1px solid var(--tfm-line-color);
        }
        .tfm-rm-card {
            background: #ffffff;
            border: 1px solid var(--tfm-line-color);
            border-radius: 16px;
            overflow: hidden;
            height: 100%;
            box-shadow: 0 4px 16px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }
        .tfm-rm-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 32px rgba(0,0,0,0.08);
        }
        .tfm-rm-card-img {
            height: 220px;
            width: 100%;
            object-fit: cover;
        }
        .tfm-rm-card-body {
            padding: 28px;
        }

        /* ==========================================================
           5. SCHEDULE SECTION CLASSES (.tfm-sc-*)
           ========================================================== */
        .tfm-sc-sec {
            padding: 90px 0;
            background: #ffffff;
        }
        .tfm-sc-main-card {
            background: #ffffff;
            border: 1px solid var(--tfm-line-color);
            border-radius: 20px;
            padding: 36px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }
        .tfm-sc-row-item {
            position: relative;
            padding-left: 32px;
            border-left: 2px dashed var(--tfm-line-color);
            padding-bottom: 28px;
        }
        .tfm-sc-row-item:last-child {
            border-left: 2px solid transparent;
            padding-bottom: 0;
        }
        .tfm-sc-row-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--tfm-brand-color);
            box-shadow: 0 0 0 4px #fff0f3;
        }
        .tfm-sc-time-tag {
            background: var(--tfm-soft-bg);
            border: 1px solid var(--tfm-line-color);
            color: var(--tfm-muted-text);
            font-size: 0.8rem;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 8px;
        }

        /* ==========================================================
           6. PASSES SECTION CLASSES (.tfm-ps-*)
           ========================================================== */
        .tfm-ps-sec {
            padding: 90px 0;
            background: var(--tfm-soft-bg);
            border-top: 1px solid var(--tfm-line-color);
            border-bottom: 1px solid var(--tfm-line-color);
        }
        .tfm-ps-card {
            background-color: #f8f4f4;
            border: 1px solid var(--tfm-line-color);
            border-radius: 20px;
            padding: 36px 22px;
            height: 100%;
            position: relative;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
         
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .tfm-ps-card:hover {
            animation: tfmFloat 1.8s infinite ease-in-out;
 
        }
        /* Continuous Up and Down Floating Animation */
@keyframes tfmFloat {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px); /* Upwards movement */
  }
  100% {
    transform: translateY(0px); /* Back to original position */
  }
}
        .tfm-ps-card-highlight {
            background: radial-gradient(1000px 500px at 20% 20%, rgba(212, 175, 55, 0.18), transparent 55%), linear-gradient(135deg, #C70404 0%, #831414 55%, #521313 100%);
    color: #ffffff;
            border: 2px solid var(--tfm-brand-color);
            box-shadow: 0 16px 32px rgba(0,0,0,0.08);
        }
        .tfm-ps-top-tag {
            position: absolute;
            top: -14px;
            left: 50%;
            transform: translateX(-50%);
            background: #f59e0b;
            color: #ffffff;
            font-size: 0.75rem;
            font-weight: 800;
            padding: 4px 16px;
            border-radius: 50px;
            text-transform: uppercase;
        }
        .tfm-ps-price-text {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--tfm-dark-text);
        }
        .tfm-ps-action-btn {
            border-radius: 50px;
            font-weight: 600;
            padding: 10px;
            width: 100%;
        }

        /* ==========================================================
           7. REGISTRATION SECTION CLASSES (.tfm-rg-*)
           ========================================================== */
        .tfm-rg-sec {
            padding: 90px 0;
            background: #ffffff;
        }
        .tfm-rg-form-card {
            background: #ffffff;
            border: 1px solid var(--tfm-line-color);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 16px 32px rgba(0,0,0,0.06);
        }
        .tfm-rg-field {
            background-color: var(--tfm-soft-bg);
            border: 1px solid var(--tfm-line-color);
            border-radius: 10px;
            height: 48px;
            padding: 10px 16px;
            font-size: 0.95rem;
        }
        .tfm-rg-field:focus {
            background-color: #ffffff;
            border-color: var(--tfm-brand-color);
            box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
        }

        /* ==========================================================
           8. FOOTER SECTION CLASSES (.tfm-ft-*)
           ========================================================== */
        .tfm-ft-sec {
            background: #ffffff;
            padding: 60px 0 30px;
            border-top: 1px solid var(--tfm-line-color);
        }
        .tfm-ft-title {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--tfm-muted-text);
            margin-bottom: 12px;
        }

        @media (max-width: 991px) {
            .tfm-hero-heading { font-size: 2.4rem; }
            .tfm-hero-sec { padding: 120px 0 60px; }
            .tfm-rg-form-card { padding: 24px; }
        }







        
.banner-content-button > a {
    margin-right: 10px;
    margin-top: 14px;
    background: #fff;
    display: inline-block;
    padding: 10px 15px 10px 15px;
    border-radius: 10px;
    font-weight: 500;
    color: #000;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #c70404;
    transition: .3s ease-in-out;
    text-decoration: none;
}
/* =====================================================
   FLEXIBLE PRICING STRIP
====================================================== */

.nshp26-participate-bottom {
  position: relative;
  margin-top: 24px;
  padding: 24px 26px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  background: #fafafa;
  overflow: hidden;
}

.nshp26-participate-bottom::before {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  top: -80px;
  right: -60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.025);
}

.nshp26-participate-bottom::after {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  left: -50px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.02);
}

.nshp26-participate-bottom-inner {
  position: relative;
  z-index: 2;
}

.nshp26-participate-pricing {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #5d646d;
}

.nshp26-participate-pricing strong {
  color: #171717;
  font-weight: 800;
}

/* Continuous Slow Zoom In / Zoom Out (Pulse) Animation */
@keyframes nsSlowPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(153, 0, 0, 0.2);
  }
  50% {
    transform: scale(1.06); /* Slightly bigger */
    box-shadow: 0 8px 24px rgba(153, 0, 0, 0.45); /* Soft pop-out shadow */
  }
  100% {
    transform: scale(1);
    box-shadow: 0 4px 12px rgba(153, 0, 0, 0.2);
  }
}

/* Apply to Button Class */
.nshp26-participate-btn {
font-size: 12px;
    font-weight: 800;
  display: inline-block;
  background: linear-gradient(135deg, #990000 0%, #590000 100%);
  color: #ffffff !important;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  
  /* Infinite Pulse Animation */
  animation: nsSlowPulse 2.2s infinite ease-in-out;
}

/* Optional: Pause or enlarge slightly more on Hover */
.nshp26-participate-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(153, 0, 0, 0.5);
}

.nshp26-participate-btn:hover {
  transform: translateY(-2px);
  background: #262626;
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}
   /* =====================================================
    MOBILE
 ====================================================== */

 @media (max-width: 767.98px) {
      .nshp26-participate-bottom {
       padding: 21px;
     }
 }
     /* =====================================================
       SMALL MOBILE
    ====================================================== */

    @media (max-width: 575.98px) {
	  .nshp26-participate-btn {
    width: 100%;
    margin-top: 15px;
  }
	}




    
    /* =====================================================
       UNIQUE EVENT SCHEDULE
    ====================================================== */

    .nsx26-event-schedule {
      position: relative;
     
      overflow: hidden;
   
    }


    .nsx26-event-schedule *,
    .nsx26-event-schedule *::before,
    .nsx26-event-schedule *::after {
      box-sizing: border-box;
    }


    .nsx26-event-schedule::before {
      content: "";
      position: absolute;

      width: 320px;
      height: 320px;

      top: -190px;
      right: -145px;

      border-radius: 50%;

      background: radial-gradient(
        circle,
        rgba(0, 0, 0, 0.045),
        rgba(0, 0, 0, 0) 72%
      );

      pointer-events: none;
    }


    .nsx26-event-schedule::after {
      content: "";
      position: absolute;

      width: 280px;
      height: 280px;

      left: -135px;
      bottom: -175px;

      border-radius: 50%;

      background: radial-gradient(
        circle,
        rgba(50, 65, 120, 0.035),
        rgba(50, 65, 120, 0) 72%
      );

      pointer-events: none;
    }


    .nsx26-event-schedule__inner {
      position: relative;
      z-index: 2;
    }


    /* =====================================================
       HEADER
    ====================================================== */

    .nsx26-event-schedule__header {
      margin-bottom: 27px;
    }


    .nsx26-event-schedule__title {
      margin: 0;

      font-size: 40px;
      line-height: 1.1;

      font-weight: 800;

      letter-spacing: -1.4px;

      color: #111111;
    }


    .nsx26-event-schedule__date {
      display: inline-flex;

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

      padding: 10px 16px;

      border: 1px solid #e3e6ea;

      border-radius: 50px;

      background: #ffffff;

      box-shadow:
        0 7px 20px rgba(16, 24, 40, 0.05);

      font-size: 12px;

      font-weight: 700;

      color: #565d66;
    }


    .nsx26-event-schedule__date::before {
      content: "";

      width: 8px;
      height: 8px;

      margin-right: 8px;

      border-radius: 50%;

      background: #111111;
    }


    /* =====================================================
       MAIN PANEL
    ====================================================== */

    .nsx26-event-schedule__panel {
      
      
    }


    /* =====================================================
       CUSTOM TABS
       NO BOOTSTRAP ACTIVE CLASS
    ====================================================== */

    .nsx26-event-schedule__tabbar {
      display: flex;

      align-items: center;
      justify-content: space-between;

      gap: 15px;

      margin-bottom: 8px;

      padding: 6px;

      border: 1px solid #e6e8ec;

      border-radius: 12px;

      background: #ffffff;
    }


    .nsx26-event-schedule__tab-list {
      display: flex;

      align-items: center;

      gap: 5px;

      margin: 0;
      padding: 0;

      list-style: none;
    }


    .nsx26-event-schedule__tab-button {
      appearance: none;
      -webkit-appearance: none;

      display: block;

      padding: 11px 20px;

      border: 0;

      border-radius: 8px;

      outline: none;

      background: transparent;

      font-family: 'Inter', sans-serif;

      font-size: 12px;
      line-height: 1;

      font-weight: 700;

      color: #777e88;

      cursor: pointer;

      transition:
        background 0.25s ease,
        color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
    }


    .nsx26-event-schedule__tab-button:hover {
          background: linear-gradient(135deg, #b30000, #7a0000);

      color: #fff;
    }


    /*
      CUSTOM SELECTED CLASS
      NO .active USED
    */

    .nsx26-event-schedule__tab-button--selected {
          background: linear-gradient(135deg, #b30000, #7a0000);

      color: #ffffff !important;

      box-shadow:
        0 7px 18px rgba(0, 0, 0, 0.15);
    }


    .nsx26-event-schedule__tab-button--selected:hover {
    
    }


    .nsx26-event-schedule__tab-meta {
      padding-right: 11px;

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

      letter-spacing: 0.8px;

      text-transform: uppercase;

      color: #a1a6ad;
    }


    /* =====================================================
       TABLE HEADER
    ====================================================== */

    .nsx26-event-schedule__table-header {
      margin: 0 0 6px;

      padding: 12px 15px;

      border-radius: 9px;

       background: radial-gradient(1000px 500px at 20% 20%, rgba(212, 175, 55, 0.18), transparent 55%), linear-gradient(135deg, #C70404 0%, #831414 55%, #521313 100%);

      color: #ffffff;
    }


    .nsx26-event-schedule__table-label {
      margin: 0;

      font-size: 11px;

      font-weight: 700;

      letter-spacing: 0.8px;

      text-transform: uppercase;
    }


    /* =====================================================
       CUSTOM TAB PANES
    ====================================================== */

    .nsx26-event-schedule__pane {
      display: none;
    }


    .nsx26-event-schedule__pane--visible {
      display: block;
      animation: nsx26FadePane 0.25s ease;
    }


    @keyframes nsx26FadePane {

      from {
        opacity: 0;
        transform: translateY(3px);
      }

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

    }


    /* =====================================================
       SCHEDULE ITEM
    ====================================================== */

    .nsx26-event-schedule__item {
      position: relative;

      min-height: 64px;

      margin-left: 0;
      margin-right: 0;
      margin-bottom: 6px;

      border: 1px solid #e7e9ed;

      border-radius: 11px;

      background: #ffffff;

      overflow: hidden;

      transition:
        transform 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease;
    }


    .nsx26-event-schedule__item:last-child {
      margin-bottom: 0;
    }


    /* VERTICAL HOVER LINE */

    .nsx26-event-schedule__item::before {
      content: "";

      position: absolute;

      top: 50%;
      left: 0;

      width: 4px;
      height: 0;

      border-radius: 0 6px 6px 0;

      background: #111111;

      transform: translateY(-50%);

      transition:
        height 0.32s ease;

      z-index: 4;
    }


    .nsx26-event-schedule__item:hover::before {
      height: 70%;
    }


    /* DECORATIVE CIRCLE */

    .nsx26-event-schedule__item::after {
      content: "";

      position: absolute;

      width: 85px;
      height: 85px;

      right: -48px;
      bottom: -50px;

      border-radius: 50%;

         background: radial-gradient(1000px 500px at 20% 20%, rgba(212, 175, 55, 0.18), transparent 55%), linear-gradient(135deg, #C70404 0%, #831414 55%, #521313 100%);

      transition:
        width 0.3s ease,
        height 0.3s ease,
        transform 0.3s ease;

      z-index: 0;
    }


    .nsx26-event-schedule__item:hover {
      transform: translateY(-3px);

      border-color: #d4d8de;

      box-shadow:
        0 10px 26px rgba(16, 24, 40, 0.08);
    }


    .nsx26-event-schedule__item:hover::after {
      width: 105px;
      height: 105px;

      transform: translate(-5px, -5px);
    }


    /* =====================================================
       TIME
    ====================================================== */

    .nsx26-event-schedule__time {
      position: relative;
      z-index: 2;

      display: flex;

      align-items: center;

      width: 100%;
      height: 100%;

      padding: 14px 15px;

      border-right: 1px solid #eceef1;

      background: #fbfbfc;

      font-size: 12.5px;

      line-height: 1.45;

      font-weight: 700;

      color: #202124;
    }


    .nsx26-event-schedule__dot {
      flex: 0 0 8px;

      width: 8px;
      height: 8px;

      margin-right: 10px;

      border-radius: 50%;

      background: #111111;

      box-shadow:
        0 0 0 4px #eef0f2;
    }


    /* =====================================================
       ACTIVITY
    ====================================================== */

    .nsx26-event-schedule__activity {
      position: relative;
      z-index: 2;

      display: block;

      align-items: center;

      width: 100%;
      height: 100%;

      padding: 14px 16px;

      font-size: 12.7px;

      line-height: 1.55;

      font-weight: 500;

      color: #555d67;
    }


    .nsx26-event-schedule__activity strong {
      color: #111111;

      font-weight: 750;
    }


    /* =====================================================
       SPECIAL TYPES
    ====================================================== */

    .nsx26-event-schedule__item--break
    .nsx26-event-schedule__dot {
      background: #9ca1a8;
    }


    .nsx26-event-schedule__item--break::before {
      background: #9ca1a8;
    }


    .nsx26-event-schedule__item--meal
    .nsx26-event-schedule__dot {
      background: #b88625;
    }


    .nsx26-event-schedule__item--meal::before {
      background: #b88625;
    }


    .nsx26-event-schedule__item--ceremony
    .nsx26-event-schedule__dot {
      background: #606975;
    }


    .nsx26-event-schedule__item--ceremony::before {
      background: #606975;
    }


    /* =====================================================
       TABLET
    ====================================================== */

    @media (max-width: 991.98px) {

      .nsx26-event-schedule {
        padding: 54px 0;
      }


      .nsx26-event-schedule__title {
        font-size: 35px;
      }


      .nsx26-event-schedule__tab-button {
        padding: 10px 16px;

        font-size: 11px;
      }


      .nsx26-event-schedule__time {
        padding: 13px 12px;

        font-size: 11.7px;
      }


      .nsx26-event-schedule__activity {
        padding: 13px 14px;

        font-size: 11.9px;
      }

    }


    /* =====================================================
       MOBILE
    ====================================================== */

    @media (max-width: 767.98px) {

      .nsx26-event-schedule {
        padding: 42px 0;
      }


      .nsx26-event-schedule__header {
        margin-bottom: 21px;

        text-align: center;
      }


      .nsx26-event-schedule__title {
        margin-bottom: 12px;

        font-size: 30px;
      }


      .nsx26-event-schedule__date {
        font-size: 10.5px;
      }


      .nsx26-event-schedule__panel {
        padding: 7px;

        border-radius: 15px;
      }


      .nsx26-event-schedule__tabbar {
        display: block;

        padding: 5px;

        overflow: hidden;
      }


      .nsx26-event-schedule__tab-list {
        display: flex;

        width: 100%;

        overflow-x: auto;

        white-space: nowrap;

        scrollbar-width: none;
      }


      .nsx26-event-schedule__tab-list::-webkit-scrollbar {
        display: none;
      }


      .nsx26-event-schedule__tab-list li {
        flex: 1 0 auto;
      }


      .nsx26-event-schedule__tab-button {
        width: 100%;

        padding: 10px 14px;

        font-size: 10.5px;

        text-align: center;
      }


      .nsx26-event-schedule__tab-meta {
        display: none;
      }


      .nsx26-event-schedule__table-header {
        display: none;
      }


      .nsx26-event-schedule__item {
        min-height: 0;

        margin-bottom: 8px;
      }


      .nsx26-event-schedule__time {
        padding: 10px 12px;

        border-right: 0;

        border-bottom: 1px solid #eceef1;

        font-size: 11.3px;
      }


      .nsx26-event-schedule__activity {
        padding: 11px 12px 12px;

        font-size: 11.4px;

        line-height: 1.5;
      }


      .nsx26-event-schedule__item:hover {
        transform: none;
      }

    }


    /* =====================================================
       SMALL MOBILE
    ====================================================== */

    @media (max-width: 575.98px) {

      .nsx26-event-schedule {
        padding: 34px 0;
      }


      .nsx26-event-schedule .container {
        padding-left: 14px;
        padding-right: 14px;
      }


      .nsx26-event-schedule__title {
        font-size: 27px;
      }


      .nsx26-event-schedule__tab-button {
        padding: 9px 12px;

        font-size: 10px;
      }

    }




        .ns-fm-section-title {
      font-weight: 800;
      color: #1a1a1a;
      margin-bottom: 8px;
    }
    .ns-fm-section-subtitle {
      color: #6c757d;
      font-size: 1.1rem;
    }
    
    .ns-fm-card {
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      overflow: hidden;
     background-color: #f8f4f4;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .ns-fm-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }

    .ns-fm-img-container {
      width: 100%;
      height: 100%;
      min-height: 220px;
    }
    
    .ns-fm-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    
    .ns-fm-card-body {
      padding: 24px;
    }

    .ns-fm-card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 12px;
    }

    .ns-fm-card-text {
      color: #475569;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .ns-fm-list {
      list-style: none;
      padding-left: 0;
      margin-bottom: 0;
    }

    .ns-fm-list li {
      font-size: 0.9rem;
      color: #334155;
      margin-bottom: 8px;
      display: flex;
      align-items: flex-start;
    }

    .ns-fm-list li i {
      color: #22c55e;
      margin-right: 8px;
      margin-top: 3px;
    }

    /* Badges for Before/After */
    .ns-fm-badge {
      display: inline-block;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 0.75rem;
      font-weight: 700;
      
      margin-bottom: 10px;
    }
    .ns-fm-badge-danger {
      background-color: #fee2e2;
      color: #dc2626;
    }
    .ns-fm-badge-success {
      background-color: #dcfce7;
      color: #16a34a;
    }






    /* Container Box */
.ns-sfr-roadmap-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px; /* Increased padding */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  width: 100%;
}

/* Main Heading */
.ns-sfr-card-heading {
  font-weight: 800;
  color: #0f172a;
  font-size: 1.35rem; /* Balanced size */
  margin-bottom: 18px !important;
}

/* Individual Paragraph Card/Block */
.ns-sfr-para-block {
  background: #f8fafc;
  border-left: 4px solid #990000;
  border-radius: 6px;
  padding: 14px 16px; /* Medium padding */
  transition: background 0.3s ease;
}

/* Sub-heading Title */
.ns-sfr-block-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  line-height: 1.35;
}

/* Paragraph Text Description */
.ns-sfr-block-desc {
  font-size: 0.84rem; /* Readability balance */
  color: #475569;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Spacing between blocks */
.ns-sfr-para-block.mb-3 {
  margin-bottom: 14px !important;
}

/* Responsive Handling */
@media (max-width: 991.98px) {
  .ns-sfr-roadmap-box {
    padding: 20px;
  }
}




.banner-content-button > a:hover {
    transform: translateY(-5px);
    color: #fff;
       background: linear-gradient(135deg, #b30000, #7a0000);
    text-decoration: none;
}


 <!-- NeuSource Inspired Custom CSS -->
 
    /* Scope Prefix: ns-sb- (NeuSource Stats Bar) */
    .ns-sb-wrapper {
   
    }

    /* Section Header Styling */
    .ns-sb-header-tag {
      background: #eff6ff;
      color: #1d4ed8;
      border: 1px solid #bfdbfe;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 1.2px;
      padding: 6px 16px;
      border-radius: 50px;
      display: inline-block;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .ns-sb-main-title {
      font-family: 'Montserrat', sans-serif;
      font-size: calc(1.5rem + 1vw);
      font-weight: 800;
      color: #0f172a;
      line-height: 1.25;
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }

    .ns-sb-sub-title {
      font-size: 1.05rem;
      color: #64748b;
      font-weight: 400;
      line-height: 1.6;
      max-width: 680px;
      margin: 0 auto;
    }

    /* Main Container Box */
    .ns-sb-box {
     
      border: 1px solid #e2e8f0;
      border-radius: 20px;
      padding: 35px 20px;
      box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.08);
      position: relative;
    }

    /* Top Brand Accent Line */
    .ns-sb-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 1%;
      right: 1%;
      height: 6px;
     background: radial-gradient(1000px 500px at 20% 20%, rgba(212, 175, 55, 0.18), transparent 55%), linear-gradient(135deg, #C70404 0%, #831414 55%, #521313 100%);
      border-radius: 0 0 10px 10px;
    }

    /* Individual Stat Item */
    .ns-sb-item {
      padding: 15px 10px;
      transition: transform 0.3s ease;
    }

    .ns-sb-item:hover {
      transform: translateY(-5px);
    }

    /* Icon Box - NeuSource Blue Themes */
    .ns-sb-icon-wrap {
      width: 58px;
      height: 58px;
      border-radius: 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 12px;
      transition: all 0.3s ease;
    }

    /* Individual Icon Styling */
    .ns-ic-blue {     background: #fff;
    color: #c70404;
    border: 1px solid #fff;}
    .ns-ic-indigo { background: #e0e7ff; color: #4338ca; border: 1px solid #c7d2fe; }
    .ns-ic-sky { background: #e0f2fe; color: #0284c7; border: 1px solid #bae6fd; }
    .ns-ic-amber { background: #fffbeb; color: #d97706; border: 1px solid #fde68a; }

    /* Number & Labels */
    .ns-sb-number-wrapper {
      font-family: 'Montserrat', sans-serif;
      font-size: 2.3rem;
      font-weight: 800;
      color: #0f172a;
      line-height: 1.1;
      letter-spacing: -0.5px;
    }

    .ns-sb-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      color: #1e293b;
      margin-top: 6px;
      margin-bottom: 2px;
    }

    .ns-sb-subtitle {
      font-size: 0.78rem;
      color: #64748b;
      font-weight: 500;
      margin-bottom: 0;
    }

    /* Vertical Divider for Large Desktop Screens */
    @media (min-width: 992px) {
      .ns-sb-col:not(:last-child) .ns-sb-item::after {
        content: '';
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background-color: #e2e8f0;
      }
    }

    /* Tablets (Medium) Layout Adjustments */
    @media (max-width: 991.98px) and (min-width: 576px) {
      .ns-sb-col:nth-child(1),
      .ns-sb-col:nth-child(2) {
        margin-bottom: 25px;
      }
    }

    /* Mobile Phones Layout Adjustments */
    @media (max-width: 575.98px) {
      .ns-sb-wrapper {
       
      }
      .ns-sb-sub-title {
        font-size: 0.9rem;
      }
      .ns-sb-box {
        padding: 20px 10px;
        border-radius: 16px;
      }
      .ns-sb-item {
        padding: 12px 5px;
      }
      .ns-sb-icon-wrap {
        width: 48px;
        height: 48px;
        font-size: 1.15rem;
        border-radius: 12px;
        margin-bottom: 8px;
      }
      .ns-sb-number-wrapper {
        font-size: 1.75rem;
      }
      .ns-sb-title {
        font-size: 0.82rem;
      }
      .ns-sb-subtitle {
        font-size: 0.7rem;
      }
    }

/* =========================================================
   CHIEF GUEST & CHIEF HOST
========================================================= */

.chief-guest-host-section {
    position: relative;
    width: 100%;
    padding: 60px 0 28px;
    background: #f7f9fc;
    overflow: hidden;
}

    .chief-guest-host-section .container {
        width: 100%;
        max-width: 1540px;
        margin: 0 auto;
        padding: 0 24px;
    }


/* =========================================================
   SECTION HEADING
========================================================= */

.cg-section-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-bottom: 32px;
}

    .cg-section-heading h2 {
        margin: 0;
        padding: 0;
        color: #08244b;
        font-size: 38px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: -0.7px;
        text-align: center;
    }

        .cg-section-heading h2 span {
            color: #b57913;
        }

        .cg-section-heading h2 b {
            color: #08244b;
            font-weight: 800;
            margin: 0 5px;
        }




/* =========================================================
   CARDS WRAPPER
========================================================= */

.cg-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    width: 100%;
}


/* =========================================================
   CARD
========================================================= */

.cg-card {
    position: relative;
    display: grid;
    grid-template-columns: 50% 50%;
    width: 100%;
   
    background: #ffffff;
    border: 1px solid #e7ebf0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(8, 36, 75, 0.08);
}


/* =========================================================
   IMAGE BOX
========================================================= */

.cg-image-box {
    position: relative;
    width: 100%;
  
    overflow: hidden;
    background: #142033;
}


/* =========================================================
   PERSON IMAGE
========================================================= */

.cg-person-image {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transform: none !important;
    z-index: 2;
}


/* =========================================================
   PANKAJ IMAGE
========================================================= */

.cg-card:first-child .cg-person-image {
    object-position: center center;
}


/* =========================================================
   HEMANT IMAGE
========================================================= */

.cg-card:nth-child(2) .cg-person-image {
    object-position: center center;
}


/* =========================================================
   DECORATIVE GOLD CIRCLE
========================================================= */

.cg-circle {
    position: absolute;
    width: 310px;
    height: 310px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient( circle, rgba(210, 160, 50, 0.24) 0%, rgba(210, 160, 50, 0.10) 38%, transparent 72% );
    z-index: 1;
    pointer-events: none;
}


/* =========================================================
   GOLD DECORATIVE CURVES
========================================================= */

.cg-image-box::before {
    content: "";
    position: absolute;
   

    left: -215px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(205, 157, 47, 0.42);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}

.cg-image-box::after {
    content: "";
    position: absolute;
   

    left: -165px;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid rgba(205, 157, 47, 0.20);
    border-radius: 50%;
    z-index: 3;
    pointer-events: none;
}


/* =========================================================
   DOTS
   Keep dots in safe corner - not over face
========================================================= */

.cg-dots {
    position: absolute;
    width: 58px;
    height: 52px;
    top: 22px;
    left: 20px;
    z-index: 4;
    background-image: radial-gradient( #d5a536 1.25px, transparent 1.25px );
    background-size: 9px 9px;
    opacity: 0.55;
    pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.cg-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    min-width: 0;
    padding: 30px 32px;
    background: #ffffff;
    z-index: 5;
}


/* =========================================================
   LABEL
========================================================= */

.cg-label {
    
    align-items: center;
    justify-content: center;
    gap: 13px;
    margin: 0 0 15px;
    color: #ae7718;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
}

  


/* =========================================================
   PERSON NAME
========================================================= */

.cg-content h3 {
    margin: 0 0 14px;
    padding: 0;
    color: #08244b;
    font-size: 30px;
    line-height: 0.95;
    font-weight: 800;
    letter-spacing: -1.2px;
    text-transform: uppercase;
}

    .cg-content h3 strong {
        color: #08244b;
        font-weight: 800;
    }


/* =========================================================
   DESIGNATION
========================================================= */

.cg-designation,
.cg-host-designation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    color: #18385e;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

    .cg-designation strong,
    .cg-host-designation strong {
        font-weight: 700;
    }

    .cg-designation i,
    .cg-host-designation i,
    .cg-sub-designation i {
        display: inline-block;
        width: 1px;
        height: 14px;
        flex-shrink: 0;
        background: #bd8b27;
    }


/* =========================================================
   SUB DESIGNATION
========================================================= */

.cg-sub-designation {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 3px;
    color: #294565;
    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.cg-description {
    width: 100%;
    margin-top: 19px;
    padding: 14px 15px;
    color: #425670;
    background: #f0f4f9;
    border-radius: 11px;
    font-size: 13px;
    line-height: 1.55;
    box-sizing: border-box;
}


/* =========================================================
   LINKEDIN BUTTON
========================================================= */

.cg-linkedin {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: max-content;
    max-width: 100%;
    margin-top: 16px;
    padding: 8px 12px;
    gap: 8px;
    color: #ffffff !important;
    background: #06244c;
    border: 1px solid #d09a2d;
    border-radius: 7px;
    text-decoration: none !important;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

    .cg-linkedin:hover {
        color: #06244c !important;
        background: #d09a2d;
        transform: translateY(-2px);
    }


/* =========================================================
   LINKEDIN ICON
========================================================= */

.linkedin-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #06244c;
    background: #ffffff;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
}

.cg-linkedin b {
    margin-left: 4px;
    color: inherit;
    font-size: 19px;
    line-height: 1;
    font-weight: 400;
}


/* =========================================================
   BOTTOM TAGLINE
========================================================= */

.cg-bottom-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 28px;
}

    .cg-bottom-line > span {
        display: block;
        width: 105px;
        height: 2px;
        flex-shrink: 0;
        background: #c9962e;
    }

    .cg-bottom-line p {
        margin: 0;
        padding: 0;
        color: #a7751b;
        font-size: 12px;
        line-height: 1.5;
        font-weight: 600;
        letter-spacing: 4px;
        text-align: center;
    }

        .cg-bottom-line p b {
            margin: 0 10px;
            color: #08244b;
        }


/* =========================================================
   LARGE DESKTOP
========================================================= */

@media (max-width: 1400px) {

    .chief-guest-host-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cg-cards {
        gap: 24px;
    }

    

  

    .cg-content {
        padding: 27px 28px;
    }

        .cg-content h3 {
            font-size: 25px;
        }

    .cg-description {
        font-size: 12px;
    }
}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 1100px) {

    .chief-guest-host-section {
        padding-top: 50px;
    }

    .cg-section-heading {
        gap: 15px;
    }

        .cg-section-heading h2 {
            font-size: 31px;
        }

 

    .cg-cards {
        grid-template-columns: 1fr;
        max-width: 850px;
        margin-left: auto;
        margin-right: auto;
    }

    .cg-card {
        grid-template-columns: 48% 52%;
        min-height: 440px;
    }

  

    .cg-content h3 {
        font-size: 25px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .chief-guest-host-section {
        padding: 45px 0 25px;
    }

    .cg-section-heading {
        margin-bottom: 25px;
    }

        .cg-section-heading h2 {
            font-size: 28px;
        }

   

    .cg-card {
        grid-template-columns: 46% 54%;
      
    }

    

    .cg-content {
        padding: 24px;
    }

        .cg-content h3 {
            font-size: 35px;
        }

    .cg-description {
        margin-top: 15px;
        padding: 12px;
        font-size: 12px;
    }

    .cg-linkedin {
        margin-top: 14px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .chief-guest-host-section {
        padding: 40px 0 22px;
    }

        .chief-guest-host-section .container {
            padding-left: 14px;
            padding-right: 14px;
        }


    /* Heading */

    .cg-section-heading {
        gap: 8px;
        margin-bottom: 22px;
    }

        .cg-section-heading h2 {
            font-size: 21px;
            line-height: 1.2;
            letter-spacing: -0.3px;
        }

   


    /* Cards */

    .cg-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cg-card {
        display: flex;
        flex-direction: column;
        min-height: auto;
        border-radius: 17px;
    }


    /* Image */

   

    .cg-person-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: none !important;
    }


    /* Pankaj */

    .cg-card:first-child .cg-person-image {
        object-position: center 28%;
    }


    /* Hemant */

    .cg-card:nth-child(2) .cg-person-image {
        object-position: center 25%;
    }


    /* Decorative elements */

    .cg-dots {
        width: 50px;
        height: 45px;
        top: 17px;
        left: 16px;
        background-size: 8px 8px;
    }

    .cg-circle {
        width: 250px;
        height: 250px;
    }


    /* Content */

    .cg-content {
        padding: 25px 20px 23px;
    }


    /* Label */

    .cg-label {
        font-size: 9px;
        letter-spacing: 3px;
        gap: 9px;
    }



    /* Name */

    .cg-content h3 {
        margin-bottom: 13px;
        font-size: 25px;
        line-height: 0.95;
        letter-spacing: -0.8px;
    }


    /* Designation */

    .cg-designation,
    .cg-host-designation {
        font-size: 11px;
        line-height: 1.5;
    }

    .cg-sub-designation {
        font-size: 10px;
    }


    /* Description */

    .cg-description {
        margin-top: 16px;
        padding: 13px;
        font-size: 12px;
        line-height: 1.55;
    }


    /* LinkedIn */

    .cg-linkedin {
        width: 100%;
        max-width: none;
        justify-content: center;
        margin-top: 14px;
        padding: 9px 12px;
        font-size: 10px;
    }


    /* Bottom */

    .cg-bottom-line {
        gap: 9px;
        margin-top: 22px;
    }

        .cg-bottom-line > span {
            width: 25px;
        }

        .cg-bottom-line p {
            font-size: 8px;
            line-height: 1.7;
            letter-spacing: 1.5px;
        }

            .cg-bottom-line p b {
                margin: 0 3px;
            }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .chief-guest-host-section {
        padding-top: 34px;
    }

    .cg-section-heading h2 {
        font-size: 18px;
    }

   

   


    .cg-card:first-child .cg-person-image {
        object-position: center 28%;
    }

    .cg-card:nth-child(2) .cg-person-image {
        object-position: center 24%;
    }


    .cg-content {
        padding: 22px 17px 20px;
    }


        .cg-content h3 {
            font-size: 30px;
        }


    .cg-description {
        font-size: 11.5px;
    }


    .cg-bottom-line {
        display: block;
        text-align: center;
    }

        .cg-bottom-line > span {
            display: none;
        }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 340px) {

    .cg-section-heading h2 {
        font-size: 16px;
    }

    .cg-content h3 {
        font-size: 30px;
    }

  

    .cg-bottom-line p {
        font-size: 7px;
        letter-spacing: 1px;
    }
}
/* =========================================================
   FINAL CHIEF GUEST / CHIEF HOST IMAGE FIX
========================================================= */

/* Dots completely remove */
.cg-dots {
    display: none !important;
}


/* Image box */
.cg-image-box {
    position: relative;
    overflow: hidden;
    background: #18202b;
}


/* Common image */
.cg-person-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: none !important;
    z-index: 2;
}


/* =========================================================
   PANKAJ
   Portrait image - cover is okay
========================================================= */

.cg-card:first-child .cg-person-image {
    object-fit: cover;
    object-position: center center;
}


/* =========================================================
   HEMANT
   Don't crop his hand
========================================================= */

.cg-card:nth-child(2) .cg-person-image {
    object-fit: contain;
    object-position: center center;
    width: 100%;
    height: 100%;
    transform: none !important;
}


/* =========================================================
   HEMANT IMAGE BACKGROUND
========================================================= */

.cg-card:nth-child(2) .cg-image-box {
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   Remove decorative circles also
   if they are crossing the person
========================================================= */

.cg-card .cg-image-box::before,
.cg-card .cg-image-box::after {
    display: none;
}

.cg-circle {
    display: none !important;
}


/* =========================================================
   DESKTOP
========================================================= */

@media (min-width: 992px) {

    .cg-card {
        grid-template-columns: 50% 50%;
    }

    


    /* Pankaj */
    .cg-card:first-child .cg-person-image {
        object-fit: cover;
        object-position: center center;
    }

    /* Hemant - complete body/hand */
    .cg-card:nth-child(2) .cg-person-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Hand ko right side se bachane ke liye */
        object-position: 55% center;
        transform: none !important;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) and (min-width: 768px) {

    .cg-card {
        grid-template-columns: 48% 52%;
    }

   

    .cg-card:first-child .cg-person-image {
        object-fit: cover;
        object-position: center center;
    }

    .cg-card:nth-child(2) .cg-person-image {
        object-fit: contain;
        object-position: center center;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .cg-card {
        display: flex;
        flex-direction: column;
    }

    .cg-image-box {
        width: 100%;
      

    }


    /* Pankaj */
    .cg-card:first-child .cg-person-image {
        object-fit: cover;
        object-position: center 30%;
    }


    /* Hemant - hand won't be cut */
    .cg-card:nth-child(2) .cg-person-image {
        object-fit: contain;
        object-position: center center;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

   


    .cg-card:first-child .cg-person-image {
        object-position: center 28%;
    }

    .cg-card:nth-child(2) .cg-person-image {
        object-fit: contain;
        object-position: center center;
    }
}
/* =========================================================
   CHIEF GUEST / HOST - MOBILE IMAGE FIX
========================================================= */
@media (max-width: 767px) {

    .cg-card .cg-image-box {
        height: 360px !important;
        min-height: 360px !important;
        flex: 0 0 360px !important;
        overflow: hidden !important;
    }

    .cg-card .cg-person-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
    }

    /* Pankaj - top crop kam */
    .cg-card:first-child .cg-person-image {
        object-position: center top !important;
    }

    /* Hemant - top bhi visible + hand */
    .cg-card:nth-child(2) .cg-person-image {
        object-position: 38% top !important;
    }
}


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

    .cg-card .cg-image-box {
        height: 340px !important;
        min-height: 340px !important;
        flex-basis: 340px !important;
    }

    .cg-card:first-child .cg-person-image {
        object-position: center top !important;
    }

    .cg-card:nth-child(2) .cg-person-image {
        object-position: 38% top !important;
    }
}