
            .footer-social-icon a {
                pointer-events: auto;
                z-index: 10;
                position: relative;
            }

            .overlay {
                pointer-events: none;
            }
            
   
   /* ===== Modal size ===== */
   .modal-dialog {
      max-width: 380px;
      margin: auto;
   }

   /* ===== Smooth entry animation ===== */
   .modal.fade .modal-dialog {
      transform: translateY(40px) scale(.92);
      opacity: 0;
      transition: .45s cubic-bezier(.25, .8, .25, 1);
   }

   .modal.show .modal-dialog {
      transform: translateY(0) scale(1);
      opacity: 1;
   }

   /* ===== Card ===== */
   .id-app-card {
      background: linear-gradient(180deg, #ffffff, #f5f9ff);
      border-radius: 26px;
      overflow: hidden;
      border: none;
      box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
      position: relative;
   }

   /* ===== Header ===== */
   .id-header {
      background: linear-gradient(135deg, #1a2fff, #0066ff, #00c6ff);
      color: #fff;
      padding: 15px;
      text-align: center;
      font-weight: 600;
      letter-spacing: .5px;
      position: relative;
   }

   /* Header glow */
   .id-header:after {
      content: '';
      position: absolute;
      bottom: -18px;
      left: 0;
      width: 100%;
      height: 18px;
      background: linear-gradient(to bottom, rgba(0, 198, 255, .45), transparent);
   }

   /* Close */
   .id-header .close {
      position: absolute;
      right: 12px;
      top: 8px;
      color: #fff;
      opacity: 1;
   }

   /* ===== Logo ===== */
   .id-logo {
      text-align: center;
      margin-top: 14px;
   }

   .id-logo img {
      max-width: 125px;
      filter: drop-shadow(0 4px 6px rgba(0, 0, 0, .25));
   }

   /* ===== Profile ===== */
   .id-profile {
      text-align: center;
      margin-top: 12px;
   }

   /* Glowing profile ring */
   .id-profile img {
      width: 95px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 4px solid #fff;
      background: #fff;
      box-shadow:
         0 0 0 4px #ff8c00,
         0 0 25px rgba(255, 140, 0, .9);
      animation: pulse 2.5s infinite;
   }

   /* Pulse animation */
   @keyframes pulse {
      0% {
         box-shadow: 0 0 0 4px #ff8c00, 0 0 15px rgba(255, 140, 0, .6);
      }

      50% {
         box-shadow: 0 0 0 7px #ffae42, 0 0 28px rgba(255, 174, 66, .9);
      }

      100% {
         box-shadow: 0 0 0 4px #ff8c00, 0 0 15px rgba(255, 140, 0, .6);
      }
   }

   /* Name */
   .id-name {
      font-size: 18px;
      font-weight: 700;
      margin-top: 8px;
      color: #1c1c1c;
   }

   /* Badge */
   .id-badge {
      display: inline-block;
      background: linear-gradient(135deg, #ff8c00, #ffb347);
      color: #fff;
      font-size: 12px;
      padding: 4px 14px;
      border-radius: 30px;
      margin-top: 6px;
      box-shadow: 0 6px 14px rgba(255, 140, 0, .45);
   }

   /* ===== Details ===== */
   .id-details {
      padding: 14px 20px;
      font-size: 13px;
   }

   .id-details div {
      display: flex;
      justify-content: space-between;
      margin-bottom: 7px;
      border-bottom: 1px dashed rgba(0, 0, 0, .08);
      padding-bottom: 5px;
   }

   .id-details span:last-child {
      font-weight: 600;
      color: #111;
   }

   .id-details {
      padding: 20px 50px;
      font-size: 14px;
      font-weight: 900;
   }

   /* ===== Bottom ===== */
   .id-bottom {
      background: linear-gradient(135deg, #ff8c00, #ffb347);
      color: #fff;
      padding: 12px;
      /* display:flex; */
      justify-content: space-around;
      text-align: center;
      font-size: 13px;
   }

   .id-bottom b {
      font-size: 15px;
   }

   .income-card:hover {
      transform: translateY(-10px) scale(1.03);
   }

   /* Optional: glowing effect for chart points */
   canvas {
      filter: drop-shadow(0 0 6px rgba(0, 212, 255, 0.6));
   }

   .upcoming-wrapper {
      display: flex;
      justify-content: center;
      padding: 10px 15px 0px 15px;
   }

   .upcoming-content {
      background: linear-gradient(135deg, #ffffff, #f8f9ff);
      padding: 35px 30px;
      border-radius: 18px;
      max-width: 720px;
      width: 100%;
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
   }

   /* ITEM */
   .upcoming-item {
      background: #fff;
      border-radius: 14px;
      padding: 18px 20px;
      margin-bottom: 15px;
      display: flex;
      align-items: center;
      gap: 16px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transition: all 0.35s ease;
      position: relative;
      overflow: hidden;
   }

   .upcoming-item:last-child {
      margin-bottom: 0;
   }

   .upcoming-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 5px;
      height: 100%;
      background: linear-gradient(180deg, #fca61f, #ffcc70);
   }

   /* ICON */
   .upcoming-item i {
      font-size: 28px;
      color: #fca61f;
      min-width: 36px;
   }

   /* TEXT */
   .upcoming-item span {
      font-size: 12px;
      color: #777;
      text-transform: uppercase;
      letter-spacing: 1px;
   }

   .upcoming-item h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 600;
      color: #333;
   }

   /* HOVER */
   .upcoming-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
   }

   /* COLOR VARIANTS */
   .upcoming-item.diamond i {
      color: #00c6ff;
   }

   .upcoming-item.diamond::before {
      background: linear-gradient(180deg, #00c6ff, #0072ff);
   }

   .upcoming-item.gold i {
      color: #fca61f;
   }

   .upcoming-item.manager i {
      color: #7b61ff;
   }

   @media(max-width:768px) {
      .upcoming-item h3 {
         font-size: 16px;
      }
   }

   /* ENTRY ANIMATION */
   .upcoming-item {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeUp 0.8s ease forwards;
   }

   /* STAGGER EFFECT */
   .upcoming-item:nth-child(1) {
      animation-delay: 0.2s;
   }

   .upcoming-item:nth-child(2) {
      animation-delay: 0.4s;
   }

   .upcoming-item:nth-child(3) {
      animation-delay: 0.6s;
   }

   /* FADE UP */
   @keyframes fadeUp {
      to {
         opacity: 1;
         transform: translateY(0);
      }
   }

   /* GLOW PULSE (UPCOMING EFFECT) */
   .upcoming-item::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 14px;
      box-shadow: 0 0 0 rgba(252, 166, 31, 0.4);
      animation: glowPulse 2.5s infinite;
      pointer-events: none;
   }

   @keyframes glowPulse {
      0% {
         box-shadow: 0 0 0 0 rgba(252, 166, 31, 0.4);
      }

      70% {
         box-shadow: 0 0 0 10px rgba(252, 166, 31, 0);
      }

      100% {
         box-shadow: 0 0 0 0 rgba(252, 166, 31, 0);
      }
   }

   /* SHIMMER FUTURE LINE */
   .upcoming-item::before {
      animation: shimmer 3s linear infinite;
   }

   @keyframes shimmer {
      0% {
         transform: translateY(-100%);
      }

      100% {
         transform: translateY(100%);
      }
   }

   /* General Titles */
   .section-title1 {
      font-size: 2.7rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 15px;
      text-align: center;
      line-height: 41px;

   }

   .section-subtitle1 {
      font-size: 1.2rem;
      color: #424242;
      /* margin-bottom: 50px; */
      text-align: center;
   }

   /* Premium Gradient Section */
   .premium-company-vision {
      background: linear-gradient(135deg, #f0f5ff, #eef6ff);
      color: #000330;
      padding: 90px 0;
   }

   /* Glassmorphism Cards */
   .glass-card {
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 30px;
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
      transition: all 0.4s ease;
   }

   .glass-card p {
      font-size: 1rem;
      /* text-align: justify; */
   }

   .glass-card:hover {
      transform: translateY(-12px) scale(1.03);
      box-shadow: 0 25px 50px rgba(0, 0, 0, 0.45);
   }

   /* Card Titles & Text */
   .info-card1 h3,
   .service-card h4,
   .partner-card h4 {
      color: #2f6117;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 12px;
   }


   .service-card p,
   .partner-card p {
      font-size: 15px;
      color: #363636;
   }

   /* Our Services */


   .our-services .service-box {
      padding: 20px;
      border-radius: 15px;
      text-align: center;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .our-services .service-box:hover {
      transform: translateY(-12px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
   }

   .our-services .service-box img {
      max-height: 60px;
      margin-bottom: 10px;
      transition: transform 0.3s ease;
   }

   .our-services .service-box:hover img {
      transform: scale(1.15);
   }

   .our-services .service-box h6 {
      font-size: 0.85rem;
      margin-top: 0.5rem;
      font-weight: 600;
      color: #333;
      transition: color 0.3s ease;
   }

   .our-services .service-box:hover h6 {
      color: #00d1ff;
   }

   .glass-card a {
      text-decoration: none;
      color: #530505;
      /* font-size: 1rem; */

   }

   .service-box h6 {
      font-size: 12px !important;

   }

   @media (max-width: 768px) {
      .servicesIcon {
         width: 30px;
      }

      .glass-card a {
         font-size: 8px;
      }

      .our-services .service-box {
         padding: 20px 0px 20px 0px;
      }
   }

   .key-feature-title {
      text-align: center;
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 20px;
      color: #010753;
      position: relative;
   }

   .key-feature-title::after {
      content: '';
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, #00d1ff, #00ffb5);
      display: block;
      margin: 10px auto 0;
      border-radius: 10px;
   }

   .timeline-list {
      list-style: none;
      padding-left: 0;
      position: relative;
      max-width: 600px;
      margin: 50px auto;
   }

   .timeline-list::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(to bottom, #00d1ff, #00ffb5);
      border-radius: 2px;
   }

   .timeline-list li {
      position: relative;
      margin: 20px 0 20px 50px;
      padding: 15px 20px;
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(10px);
      border-radius: 10px;
      color: #160038;
      font-weight: 600;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      font-size: 22px;
   }

   .timeline-list li::before {
      content: '';
      position: absolute;
      left: -36px;
      top: 50%;
      transform: translateY(-50%);
      width: 14px;
      height: 14px;
      background: #00d1ff;
      border-radius: 50%;
      border: 2px solid #fff;
   }

   .timeline-list li:hover {
      transform: translateX(5px);
      box-shadow: 0 8px 20px rgba(0, 209, 255, 0.4);
   }

   @media (max-width: 768px) {
      .timeline-list li {
         font-size: 14px;

      }
   }


   .dashboard-card:hover {
      transform: translateY(-10px) scale(1.02);
   }

   .swiper-slide img {
      transition: transform 0.3s, box-shadow 0.3s;
   }

   .swiper-slide img:hover {
      transform: scale(1.05);
      box-shadow: 0 10px 30px rgba(0, 212, 255, 0.5);
   }

   .swiper-button-next,
   .swiper-button-prev {
      color: #00d4ff;
   }

   .swiper-pagination-bullet {
      background: rgba(255, 255, 255, 0.7);
   }

   .swiper-pagination-bullet-active {
      background: #00d4ff;
   }

   .income-card:hover,
   .dashboard-card:hover {
      transform: translateY(-10px) scale(1.03);
   }