   .header-progress {
    margin-top:-45px;
    background: linear-gradient(to right, #3e66f3, #032ec4);
    color: white;
    padding: 10px 0;
    font-weight: 600;
    font-size: 14px;
    text-align:center;
  }
    .draggable-cards {
        display: flex;
        align-items: center;
        overflow-x: auto;
        gap: 20px;
        padding: 30px;
        scroll-behavior: smooth;
        cursor: grab;
    }

    .draggable-cards:active {
        cursor: grabbing;
    }

    .student-card {
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
        padding: 20px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
        min-width: 280px;
        max-width: 400px;
        width: 100%;
    }

    .student-card:hover {
        transform: translateY(-5px);
    }

    .status-badge {
        display: inline-flex;
        align-items: center;
        background-color: #f4f6ff;
        color: #3e66f3;
        font-size: 12px;
        font-weight: 600;
        padding: 6px 12px;
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .status-badge i {
        margin-right: 8px;
    }

    .student-card h3 {
        margin: 10px 0 6px;
        font-size: 13px;
        font-weight: 600;
    }

    .student-card p {
        font-size: 12px;
        color: #000;
        line-height: 1.7;
    }

    /* Custom Scrollbar Styling */
    .draggable-cards::-webkit-scrollbar {
        height: 10px;
    }

    .draggable-cards::-webkit-scrollbar-track {
        background: #fff;
        border-radius: 10px;
    }

    .draggable-cards::-webkit-scrollbar-thumb {
        background: #3e66f3;
        border-radius: 10px;
    }

    .draggable-cards::-webkit-scrollbar-thumb:hover {
        background: #3e66f3;
    }

    @media screen and (max-width: 600px) {
        .student-card {
            min-width: 70%;
        }
    }
 
 .main-container {
      display: flex;
      background: linear-gradient(to top, #f5f5ff, #ffffff);
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      padding: 30px;
      gap: 20px;
    }

    .left-section {
      flex: 1 1 45%;
      max-width: 600px;
    }

    .left-section h1 {
      font-size:22px;
      text-align: left;
      border-left: 4px solid #3e66f3;  /* Left side border */
      padding-top:10px;
      padding-bottom:10px;
      padding-left: 10px;  /* Padding on the left side */
      padding-right: 5px;  /* Optional padding on the right side */
      line-height: 1.5;  /* Adjust line height for better spacing */
      background-color: #f3f8ff;  /* Light yellow background */
      border-top-right-radius: 15px;  /* Border radius on the top-right corner */
      border-bottom-right-radius: 15px;  /* Border radius on the bottom-right corner */
      width: auto;  /* Border length adjusts based on content width */
    }

    .btn-gradient {
      margin-top:10px;
      padding: 12px;
      align: center;
      background: linear-gradient(to right, #3e66f3, #032ec4);
      color: #fff;
      border: none;
      border-radius: 25px;
      font-size: 13px;
      font-weight:600;
      cursor: pointer;
      width: fit-content;
      transition: all 0.3s ease;
    }
    ul.custom-feature-list {
      list-style-type: none;
      padding: 0;
    }

    .custom-item {
      display: flex;
      align-items: center;
      margin: 10px 0;
    }

    .custom-item i {  /* Icon background color */
      color: #3e66f3;  /* Icon color */
      background-color:#fff;
      padding: 10px;
      border-radius: 50%;  /* Rounded shape */
      margin-right: 8px;  /* Space between icon and text */
      box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);  /* Very light border shadow */
      transition: box-shadow 0.3s ease-in-out;  /* Smooth shadow transition */
    }

    .custom-item i:hover {
      box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);  /* Slightly stronger shadow on hover */
    }

    .custom-item span {
      font-size: 13px!important;
      color:#000!important;
      font-weight: 500!important;
    }
    .btn-gradient:hover {
      opacity: 0.9;
    }

    .right-section {
      flex: 1 1 45%;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .network-wrapper {
      padding-top:20px;
      margin-top:30px;
      margin-bottom:20px;
      position: relative;
      width: 100%;
      max-width: 370px;
      height: 400px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .network {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .center {
      position: absolute;
      top: 38%;
      left: 38%;
      width: 24%;
      height: 24%;
      padding:10px;
      background-color: #fff;
      border-radius: 50%;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 0 15px #0d6efdbf;
    }

    .center img {
      width: 90%;
      border-radius:50%;
    }

    .profile {
      position: absolute;
      width: 20%;
      height: 20%;
      border: 2px solid #3e66f3;
      border-radius: 50%;
      overflow: hidden;
      background: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 10;
    }

    .profile img.person {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
    }

    .profile .logo {
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: 50%;
      padding: 3px;
      z-index: 20;
    }

    .profile .logo img {
      width: 20px;
      height: 20px;
    }

    .p1 { top: -5%; left: 40%; }
    .p2 { top: 16%; left: 79%; }
    .p3 { top: 66%; left: 79%; }
    .p4 { top: 86%; left: 40%; }
    .p5 { top: 66%; left: 0%; }
    .p6 { top: 16%; left: 0%; }

  .network-wrapper svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    animation: rotateCircle 36s linear infinite;
    transform-origin: center center;
  }

  @keyframes rotateCircle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
    @media (max-width: 1024px) {
      .main-container {
        flex-direction: column;
        padding: 20px 20px;
      }

      .left-section, .right-section {
        width: 100%;
        max-width: 100%;
        text-align: center;
      }

      .left-section h1 {
        font-size: 22px!important;
      }

      .btn-gradient {
        margin: 0 auto;
      }

      .network-wrapper {
        max-width: 400px;
        height: 400px;
        margin: 0 auto;
      }
    }

    @media (max-width: 600px) {
      .left-section h1 {
        font-size: 20px!important;
      }

      .network-wrapper {
        margin-top:20px;
        margin-bottom:20px;
        padding-left:5px;
        max-width: 340px;
        height: 350px;
      }
    }
  /* ================================ Hero Section Ending ========================================= */
        .instppducts {
            background: linear-gradient(135deg, #f4f7ff 0%, #ffffff 100%);
            max-width: 100%;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }

        .instppducts__badge {
            display: inline-block;
            background: linear-gradient(to right, #3e66f3, #032ec4);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 11px;
            font-weight: 500;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }

        .instppducts__heading {
            background: linear-gradient(to right, #3e66f3, #032ec4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .instppducts__grid {
            display: grid;
            gap: 30px;
            grid-template-columns: 1fr;
            text-align: left;
        }

        .instppducts__card {
            background: white;
            border-radius: 12px;
            padding: 32px 28px;
            box-shadow: 0 4px 20px rgba(62, 102, 243, 0.08);
            transition: all 0.8s ease;
            border: 1px solid #fff;
            position: relative;
            overflow: hidden;
        }

        .instppducts__card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(62, 102, 243, 0.15);
            border-color: #3e66f3;
        }

        .instppducts__card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 24px;
        }

        .instppducts__card-badge {
            display: inline-block;
            background: #fff;
            color: #032ec4;
            padding: 4px 12px;
            border-radius: 10px;
            font-size: 11px;
            font-weight: 500;
            border: 1px solid #032ec4;
        }

        .instppducts__card-icon {
            width: 50px;
            height: 50px;
            border-radius: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            background: linear-gradient(to right, #3e66f3, #032ec4);
            transition: all 0.3s ease;
        }

        .instppducts__card:hover .instppducts__card-icon {
            transform: scale(1.05);
        }

        .instppducts__card-heading {
            font-size: 14px;
            font-weight: 600;
            color: #000;
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .custom-icon-class{
            transform: rotate(-45deg);
        }
        .instppducts__card-description {
            font-size: 13px;
            color: #000;
            line-height: 1.6;
            margin-bottom: 24px;
        }

        .instppducts__card-footer {
            display: flex;
            justify-content: center;
            border-top: 1px solid #e6edff;
            padding-top: 20px;
        }

        .instppducts__card-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(to right, #3e66f3, #032ec4);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .instppducts__card-action:hover {
            transform: translateX(3px);
            box-shadow: 0 4px 12px rgba(62, 102, 243, 0.3);
        }

        /* Mobile Styles */
        @media (max-width: 767px) {
            .instppducts__heading {
                font-size: 18px;
            }
        }

        /* Tablet Styles */
        @media (min-width: 768px) and (max-width: 1023px) {
            .instppducts__heading {
                font-size: 18px;
            }
            
            .instppducts__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop Styles */
        @media (min-width: 1024px) {
            .instppducts__heading {
                font-size: 22px;
            }
            
            .instppducts__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

/* ================================ Products Section Ending ========================================= */
        .istpstgsla {
            background: linear-gradient(135deg, #f8f4ff 0%, #ffffff 100%);
            max-width: 100%;
            margin: 0 auto;
            padding: 80px 20px;
            text-align: center;
        }

        .istpstgsla__badge {
            display: inline-block;
            background: linear-gradient(to right, #bb3ef3, #8504fb);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 11px;
            font-weight: 500;
            margin-bottom: 16px;
        }

        .istpstgsla__heading {
            background: linear-gradient(to right, #bb3ef3, #8504fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .istpstgsla__grid {
            display: grid;
            gap: 30px;
            grid-template-columns: 1fr;
            text-align: left;
        }

        .istpstgsla__card {
            background: white;
            border-radius: 12px;
            padding: 32px 28px;
            box-shadow: 0 4px 20px rgba(187, 62, 243, 0.08);
            transition: all 0.8s ease;
            border: 1px solid #fff;
            position: relative;
            overflow: hidden;
        }

        .istpstgsla__card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(187, 62, 243, 0.15);
            border-color: #bb3ef3;
        }

        .istpstgsla__card-badge {
            display: inline-block;
            background: linear-gradient(to right, #bb3ef3, #8504fb);
            color: white;
            padding: 4px 12px;
            border-radius: 13px;
            font-size: 11px;
            font-weight: 500;
            margin: 0 auto 20px auto;
        }

        .istpstgsla__card-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: white;
            background: linear-gradient(to right, #bb3ef3, #8504fb);
            margin: 0 auto 24px auto;
            transition: all 0.3s ease;
        }

        .istpstgsla__card:hover .istpstgsla__card-icon {
            transform: scale(1.05);
        }

        .istpstgsla__card-heading {
            font-size: 14px;
            font-weight: 600;
            color: #000;
            margin-bottom: 16px;
            line-height: 1.4;
            text-align: center;
        }

        .istpstgsla__card-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            justify-content: center; 
            margin-bottom: 20px;
        }

        .istpstgsla__card-tag {
            background: #fff;
            color: #8504fb;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 10px;
            font-weight: 500;
            border: 1px solid #8504fb;
        }

        .istpstgsla__card-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 24px;
        }

        .istpstgsla__card-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .istpstgsla__card-feature-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: linear-gradient(to right, #bb3ef3, #8504fb);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 14px;
            flex-shrink: 0;
        }

        .istpstgsla__card-feature-text {
            font-size: 13px;
            color: #000000;
            font-weight: 400;
        }

        .istpstgsla__card-footer {
            display: flex;
            justify-content: center;
            border-top: 1px solid #f0e6ff;
            padding-top: 20px;
        }

        .istpstgsla__card-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background: linear-gradient(to right, #bb3ef3, #8504fb);
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 16px;
        }

        .istpstgsla__card-action:hover {
            transform: translateX(3px);
            box-shadow: 0 4px 12px rgba(187, 62, 243, 0.3);
        }

        /* Mobile Styles */
        @media (max-width: 767px) {
            .istpstgsla__heading {
                font-size: 18px;
            }
        }

        /* Tablet Styles */
        @media (min-width: 768px) and (max-width: 1023px) {
            .istpstgsla__heading {
                font-size: 18px;
            }
            
            .istpstgsla__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop Styles */
        @media (min-width: 1024px) {
            .istpstgsla__heading {
                font-size: 22px;
            }
            
            .istpstgsla__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
/* ================================ Methodology Section Ending ========================================= */
        .domainslnssa {
            max-width: 100%;
            margin: 0 auto;
            padding: 75px 20px;
            text-align: center;
        }

        .domainslnssa__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #1e40af, #3730a3);
            color: white;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 11px;
            font-weight: 500;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(30, 64, 175, 0.2);
        }

        .domainslnssa__heading {
            background: linear-gradient(135deg, #1e40af, #3730a3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 50px;
            line-height: 1.2;
        }

        .domainslnssa__grid {
            display: grid;
            gap: 20px;
            grid-template-columns: 1fr;
        }

        .domainslnssa__card {
            background: white;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: all 0.8s ease;
            position: relative;
            overflow: hidden;
            height: auto;
            display: flex;
            flex-direction: column;
        }

        .domainslnssa__card:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border-color: #cbd5e1;
        }

        .domainslnssa__card-top {
            background: linear-gradient(135deg, #fff 0%, #f1f5f9 100%);
            padding: 24px;
            border-bottom: 1px solid #e2e8f0;
            text-align: center;
            position: relative;
        }

        .domainslnssa__card-icon {
            width: 50px;
            height: 50px;
            border-radius: 16px;
            background: white;
            border: 2px solid #0035e3;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #0035e3;
            margin: 0 auto 16px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .domainslnssa__card:hover .domainslnssa__card-icon {
            background: #3b82f6;
            color: white;
            border-color: #3b82f6;
            transform: scale(1.05);
        }

        .domainslnssa__card-title {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .domainslnssa__card-category {
            display: inline-block;
            background: #f1f5f9;
            color: #64748b;
            padding: 4px 8px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 500;
        }

        .domainslnssa__card-body {
            padding: 24px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .domainslnssa__card-programs {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .domainslnssa__programs-count {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: #ef4444;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

        .domainslnssa__programs-text {
            color: #64748b;
            font-size: 14px;
            font-weight: 500;
        }

        .domainslnssa__card-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            padding: 7px 5px;
            border-radius: 8px;
            background: #1e40af;
            color: white;
            text-decoration: none;
            transition: all 0.8s ease;
            font-size: 13px;
            font-weight: 500;
            gap: 8px;
            border: none;
            cursor: pointer;
        }

        .domainslnssa__card-action:hover {
            background: #2563eb;
            transform: translateY(-1px);
        }

        .domainslnssa__card-action i {
            font-size: 13px;
            transform: rotate(-45deg);
            transition: transform 0.8s ease;
        }

        .domainslnssa__card-action:hover i {
            transform: translateX(2px);
        }

        @keyframes flash-slide {
            0% {
                left: -100%;
            }
            50% {
                left: 100%;
            }
            100% {
                left: 100%;
            }
        }

        @keyframes sparkle {
            0%, 100% {
                opacity: 0.5;
                transform: scale(1);
            }
            50% {
                opacity: 1;
                transform: scale(1.2);
            }
        }

        /* Loader Screen Styles */
        .domainslnssa__loader-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: white;
            display: none;
            z-index: 1000;
            overflow-y: auto;
            padding: 20px;
        }

        .domainslnssa__loader-screen.active {
            display: flex;
        }

        .domainslnssa__back-button {
            position: absolute;
            top: 30px;
            left: 30px;
            background: #f1f5f9;
            border: 1px solid #e2e8f0;
            padding: 10px 16px;
            border-radius: 8px;
            color: #64748b;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            z-index: 1001;
        }

        .domainslnssa__back-button:hover {
            background: #e2e8f0;
            color: #475569;
        }

        .domainslnssa__loader {
            position: relative;
            width: 80px;
            height: 80px;
            margin: 0 auto;
        }

        .domainslnssa__loader::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 6px solid transparent;
            border-top: 6px solid #3b82f6;
            border-right: 6px solid #10b981;
            border-bottom: 6px solid #f59e0b;
            border-left: 6px solid #ef4444;
            border-radius: 50%;
            animation: spin-colorful 2s linear infinite;
        }

        .domainslnssa__loader::after {
            content: '';
            position: absolute;
            top: 12px;
            left: 12px;
            width: calc(100% - 24px);
            height: calc(100% - 24px);
            border: 4px solid transparent;
            border-top: 4px solid #8b5cf6;
            border-bottom: 4px solid #06b6d4;
            border-radius: 50%;
            animation: spin-colorful 1.5s linear infinite reverse;
        }

        .domainslnssa__loader-center {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            z-index: 1002;
        }

        .domainslnssa__loader-logo {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: white;
            display: flex;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            z-index: 1003;
        }

        .domainslnssa__loader-logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .domainslnssa__loader-text {
            color: #000;
            font-size: 13px;
            font-weight: 500;
            text-align: center;
            animation: text-pulse 2s ease-in-out infinite;
            margin-top: 0;
        }

        @keyframes spin-colorful {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }



        @keyframes text-pulse {
            0%, 100% { 
                opacity: 0.7;
                transform: scale(1);
            }
            50% { 
                opacity: 1;
                transform: scale(1.05);
            }
        }

        .domainslnssa__loader-text {
            display: none;
        }

        .domainslnssa__content-section {
            max-width: 1200px;
            width: 100%;
            margin: 80px auto 0;
            padding: 0 40px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .domainslnssa__accepting-section {
            background: #f0f9ff;
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 40px;
            border: 2px solid #0ea5e9;
            box-shadow: 0 8px 25px rgba(14, 165, 233, 0.15);
            width: 100%;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .domainslnssa__accepting-title {
            font-size: 16px;
            font-weight: 600;
            color: #0c4a6e;
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .domainslnssa__accepting-icon {
            width: 36px;
            height: 36px;
            background: #0ea5e9;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            box-shadow: 0 2px 8px rgba(14, 165, 233, 0.3);
        }

        .domainslnssa__accepting-text {
            color: #0c4a6e;
            font-size: 16px;
            line-height: 1.6;
            text-align: center;
        }

        .domainslnssa__new-tag {
            background: #ef4444;
            color: white;
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            animation: pulse-glow 2s infinite;
            margin-left: 8px;
            box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
        }

        @keyframes shine {
            0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
            100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
        }

        @keyframes pulse-glow {
            0%, 100% { 
                transform: scale(1);
                box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
            }
            50% { 
                transform: scale(1.05);
                box-shadow: 0 4px 16px rgba(239, 68, 68, 0.6);
            }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes bounce-emoji {
            0%, 100% { 
                transform: translateY(0) scale(1);
            }
            50% { 
                transform: translateY(-8px) scale(1.2);
            }
        }

        @keyframes sparkle-rotate {
            0% { 
                transform: rotate(0deg) scale(1);
                opacity: 0.8;
            }
            50% { 
                transform: rotate(180deg) scale(1.3);
                opacity: 1;
            }
            100% { 
                transform: rotate(360deg) scale(1);
                opacity: 0.8;
            }
        }

        @keyframes celebration-glow {
            0%, 100% {
                box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4);
                transform: scale(1);
            }
            50% {
                box-shadow: 0 16px 50px rgba(139, 92, 246, 0.6);
                transform: scale(1.02);
            }
        }

        @keyframes sparkle-bounce {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
            }
            25% {
                transform: scale(1.1) rotate(5deg);
                box-shadow: 0 8px 25px rgba(251, 191, 36, 0.8);
            }
            75% {
                transform: scale(1.1) rotate(-5deg);
                box-shadow: 0 8px 25px rgba(251, 191, 36, 0.8);
            }
        }

        .domainslnssa__section-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            text-align: center;
            margin-bottom: 40px;
        }

        .domainslnssa__features-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 50px;
            width: 100%;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .domainslnssa__feature-box {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        }

        .domainslnssa__feature-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            border-color: #cbd5e1;
        }

        .domainslnssa__feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            margin: 0 auto 16px;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .domainslnssa__feature-title {
            font-size: 16px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
        }

        .domainslnssa__feature-text {
            font-size: 14px;
            color: #64748b;
            line-height: 1.5;
        }

        .domainslnssa__programs-section {
            background: #f8fafc;
            border-radius: 16px;
            padding: 32px;
            margin-bottom: 40px;
            border: 1px solid #e2e8f0;
            width: 100%;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .domainslnssa__programs-title {
            font-size: 20px;
            font-weight: 600;
            color: #1e293b;
            text-align: center;
            margin-bottom: 24px;
        }

        .domainslnssa__programs-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 12px;
        }

        .domainslnssa__program-item {
            background: white;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .domainslnssa__program-item:hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
        }

        .domainslnssa__program-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, #ef4444, #dc2626);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            font-weight: 700;
            flex-shrink: 0;
        }

        .domainslnssa__program-name {
            font-size: 14px;
            font-weight: 500;
            color: #1e293b;
        }

        .domainslnssa__enrollment-section {
            text-align: center;
            max-width: 600px;
            margin: 0 auto;
            padding: 40px;
            width: 100%;
        }

        .domainslnssa__enrollment-text {
            color: #1e293b;
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 32px;
            line-height: 1.5;
        }

        .domainslnssa__buttons-container {
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .domainslnssa__lms-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            text-decoration: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
            border: none;
            cursor: pointer;
            min-width: 200px;
        }

        .domainslnssa__lms-button:hover {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
        }

        .domainslnssa__instructions-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #451a03;
            text-decoration: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
            border: none;
            cursor: pointer;
            min-width: 200px;
        }

        .domainslnssa__instructions-button:hover {
            background: linear-gradient(135deg, #f59e0b, #d97706);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(251, 191, 36, 0.4);
        }

        /* Popup Styles */
        .domainslnssa__popup-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
            padding: 20px;
            backdrop-filter: blur(4px);
        }

        .domainslnssa__popup-overlay.active {
            display: flex;
        }

        .domainslnssa__popup {
            background: white;
            border-radius: 16px;
            padding: 40px;
            max-width: 600px;
            width: 100%;
            max-height: 80vh;
            overflow-y: auto;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            animation: popup-appear 0.3s ease-out;
        }

        @keyframes popup-appear {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .domainslnssa__popup-close {
            position: absolute;
            top: 16px;
            right: 16px;
            background: #f1f5f9;
            border: none;
            border-radius: 8px;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #64748b;
            font-size: 18px;
        }

        .domainslnssa__popup-close:hover {
            background: #e2e8f0;
            color: #475569;
        }

        .domainslnssa__popup-title {
            font-size: 24px;
            font-weight: 700;
            color: #1e293b;
            text-align: center;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding-right: 40px;
        }

        .domainslnssa__popup-icon {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: white;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .domainslnssa__popup-icon.lms {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }

        .domainslnssa__popup-icon.instructions {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
        }

        .domainslnssa__popup-text {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 28px;
            text-align: center;
            color: #64748b;
        }

        .domainslnssa__popup-features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-bottom: 32px;
        }

        .domainslnssa__popup-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px;
            background: #f8fafc;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
        }

        .domainslnssa__popup-feature-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: linear-gradient(135deg, #10b981, #059669);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            color: white;
            flex-shrink: 0;
        }

        .domainslnssa__popup-feature-text {
            font-size: 14px;
            font-weight: 500;
            color: #1e293b;
        }

        .domainslnssa__popup-action {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 14px 28px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            gap: 10px;
            transition: all 0.3s ease;
            text-decoration: none;
            width: 100%;
            margin: 0 auto;
        }

        .domainslnssa__popup-action.lms {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
            color: white;
            box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        }

        .domainslnssa__popup-action.lms:hover {
            background: linear-gradient(135deg, #2563eb, #1e40af);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
        }

        .domainslnssa__popup-action.instructions {
            background: linear-gradient(135deg, #451a03, #292524);
            color: white;
            box-shadow: 0 4px 12px rgba(69, 26, 3, 0.3);
        }

        .domainslnssa__popup-action.instructions:hover {
            background: linear-gradient(135deg, #292524, #1c1917);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(69, 26, 3, 0.4);
        }



        /* Responsive Styles */
        @media (min-width: 768px) {
            .domainslnssa__features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .domainslnssa__programs-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .domainslnssa__features-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .domainslnssa__programs-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Mobile Styles */
        @media (max-width: 767px) {
            .domainslnssa__heading {
                font-size: 18px;
            }
            
            .domainslnssa__content-section {
                padding: 0 20px;
            }
            
            .domainslnssa__accepting-section {
                padding: 24px;
            }
            
            .domainslnssa__programs-section {
                padding: 24px;
            }
            
            .domainslnssa__enrollment-section {
                padding: 24px;
            }
            
            .domainslnssa__buttons-container {
                flex-direction: column;
                gap: 12px;
            }
            
            .domainslnssa__popup {
                padding: 24px;
                margin: 10px;
                max-height: 90vh;
            }
            
            .domainslnssa__popup-title {
                font-size: 20px;
                flex-direction: column;
                gap: 8px;
                padding-right: 0;
            }
            
            .domainslnssa__popup-overlay {
                padding: 10px;
            }
        }

        /* Tablet Styles */
        @media (min-width: 768px) and (max-width: 1023px) {
            .domainslnssa__heading {
                font-size: 18px;
            }
            
            .domainslnssa__grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Desktop Styles */
        @media (min-width: 1024px) {
            .domainslnssa__heading {
                font-size: 22px;
            }
            
            .domainslnssa__grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
/* ================================ Domains Section Ending ========================================= */
        /* Reviews Section Styles */
        .cshsgqjaers {
            background: linear-gradient(135deg, #f4fff4 0%, #ffffff 100%);
            padding: 75px 20px;
        }

        .cshsgqjaers__container {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            background: transparent;
            padding: 20px;
        }

        .cshsgqjaers__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 0.8px;
            text-transform: uppercase;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
            animation: badge-glow 3s ease-in-out infinite;
        }

        .cshsgqjaers__badge::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shine 2s infinite;
        }

        .cshsgqjaers__heading {
            background: linear-gradient(135deg, #10b981, #059669, #0891b2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 50px;
            line-height: 1.2;
            font-size: 24px;
            position: relative;
        }

        .cshsgqjaers__container {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            background: #0000;
            padding: 20px;
        }

        .cshsgqjaers__grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin: 0 auto;
            max-width: 1200px;
        }

        .cshsgqjaers__load-more-container {
            text-align: center;
            margin-top: 40px;
        }

        .cshsgqjaers__load-more-btn {
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 15px;
            font-size: 13px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .cshsgqjaers__load-more-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
            background: linear-gradient(135deg, #059669, #047857);
        }

        .cshsgqjaers__load-more-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .cshsgqjaers__default-cards-btn {
            background: linear-gradient(135deg, #64748b, #475569);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 15px!important;
            font-size: 13px!important;
            font-weight: 500!important;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 6px 20px rgba(100, 116, 139, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-right: 15px;
        }

        .cshsgqjaers__default-cards-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(100, 116, 139, 0.4);
            background: linear-gradient(135deg, #475569, #334155);
        }

        .cshsgqjaers__card {
            background: white;
            border-radius: 20px;
            border: 1px solid #ffff;
            padding: 0;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            display: none;
            flex-direction: column;
            height: 100%;
        }

        .cshsgqjaers__card.visible {
            display: flex;
        }

        .cshsgqjaers__card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(135deg, #10b981, #059669, #0891b2);
            opacity: 1;
        }

        .cshsgqjaers__card-header {
            background: linear-gradient(135deg, #ffffff 0%, #fefce8 100%);
            padding: 30px;
            text-align: center;
            position: relative;
            border-bottom: 1px solid #fff;
        }

        .cshsgqjaers__card:nth-child(2) .cshsgqjaers__card-header {
            background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
        }

        .cshsgqjaers__card:nth-child(3) .cshsgqjaers__card-header {
            background: linear-gradient(135deg, #ffffff 0%, #fdf4ff 100%);
        }

        .cshsgqjaers__card:nth-child(4) .cshsgqjaers__card-header {
            background: linear-gradient(135deg, #ffffff 0%, #fef7ed 100%);
        }

        .cshsgqjaers__card:nth-child(5) .cshsgqjaers__card-header {
            background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
        }

        .cshsgqjaers__card:nth-child(6) .cshsgqjaers__card-header {
            background: linear-gradient(135deg, #ffffff 0%, #fef2f2 100%);
        }

        .cshsgqjaers__avatar-container {
            position: relative;
            display: inline-block;
            margin-bottom: 20px;
        }

        .cshsgqjaers__avatar {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            border: 4px solid white;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
            position: relative;
            z-index: 2;
        }

        .cshsgqjaers__avatar::before {
            content: "";
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            background: linear-gradient(135deg, #10b981, #059669, #0891b2);
            border-radius: 50%;
            z-index: -1;
            animation: rotate-border 3s linear infinite;
        }

        .cshsgqjaers__avatar-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .cshsgqjaers__verified-badge {
            position: absolute;
            bottom: -5px;
            right: -5px;
            width: 28px;
            height: 28px;
            background: linear-gradient(135deg, #3b82f6, #2563eb);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 12px;
            border: 3px solid white;
            box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
            z-index: 3;
        }

        .cshsgqjaers__name {
            font-size: 18px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .cshsgqjaers__role {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 12px;
            font-weight: 500;
        }

        .cshsgqjaers__certification {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #dbeafe, #bfdbfe);
            color: #1e40af;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid #93c5fd;
        }

        .cshsgqjaers__certification i {
            font-size: 12px;
            color: #3b82f6;
        }

        .cshsgqjaers__card-body {
            padding: 30px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .cshsgqjaers__rating-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            align-items: center;
            gap: 4px;
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            padding: 6px 12px;
            border-radius: 20px;
            border: 1px solid #f59e0b;
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
        }

        .cshsgqjaers__rating {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .cshsgqjaers__rating i {
            color: #f59e0b;
            font-size: 12px;
            filter: drop-shadow(0 2px 4px rgba(245, 158, 11, 0.3));
            animation: star-twinkle 2s ease-in-out infinite;
            animation-delay: calc(var(--i) * 0.1s);
        }

        .cshsgqjaers__rating-text {
            font-size: 12px;
            font-weight: 700;
            color: #92400e;
            margin-left: 4px;
        }

        .cshsgqjaers__review-text {
            font-size: 13px;
            line-height: 1.7;
            color: #475569;
            margin-bottom: auto;
            font-style: italic;
            position: relative;
            padding: 20px;
            background: #f8fafc;
            border-radius: 12px;
            border-bottom: 4px solid #10b981;
        }

        .cshsgqjaers__review-text::before {
            content: """;
            position: absolute;
            top: -5px;
            left: 10px;
            font-size: 40px;
            color: #10b981;
            font-family: serif;
            opacity: 0.3;
        }

        .cshsgqjaers__before-after {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .cshsgqjaers__before-after-item {
            text-align: center;
            padding-top:15px!important;
            padding-bottom: 8px!important;
            border-radius: 12px;
            border: 2px solid;
            position: relative;
        }

        .cshsgqjaers__before-after-item:first-child {
            background: linear-gradient(135deg, #fef2f2, #fee2e2);
            border-color: #ef4444;
        }

        .cshsgqjaers__before-after-item:last-child {
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            border-color: #22c55e;
        }

        .cshsgqjaers__before-after-label {
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.8px;
            margin-bottom: 0px;
            display: inline-block;
            padding: 4px 12px;
            border-radius: 20px;
            position: absolute;
            top: -22px;
            left: 50%;
            transform: translateX(-50%);
        }

        .cshsgqjaers__before-after-item:first-child .cshsgqjaers__before-after-label {
            background: linear-gradient(135deg, #ef4444, #dc2626);
            color: white;
        }

        .cshsgqjaers__before-after-item:last-child .cshsgqjaers__before-after-label {
            background: linear-gradient(135deg, #22c55e, #16a34a);
            color: white;
        }

        .cshsgqjaers__company-logo {
            width: 40px;
            height: 20px;
            object-fit: contain;
            margin-bottom: 4px;
        }

        .cshsgqjaers__before-after-value {
            font-size: 12px;
            font-weight: 500;
            color: #1e293b;
            line-height: 1.4;
        }

        .cshsgqjaers__card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 30px;
            background: linear-gradient(135deg, #f8fafc, #f1f5f9);
            border-top: 1px solid #ffff;
            border-radius: 0 0 20px 20px;
            margin-top: auto;
        }

        .cshsgqjaers__date {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #64748b;
            font-size: 12px;
            font-weight: 500;
        }

        .cshsgqjaers__date i {
            font-size: 12px;
            color: #10b981;
        }

        .cshsgqjaers__footer-rating-badge {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, #fef3c7, #fde68a);
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid #f59e0b;
            box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
        }

        .cshsgqjaers__footer-rating-text {
            font-size: 12px;
            font-weight: 700;
            color: #92400e;
        }

        /* Animations */
        @keyframes badge-glow {
            0%, 100% {
                box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
            }
            50% {
                box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
            }
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes rotate-border {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        @keyframes star-twinkle {
            0%, 100% { 
                transform: scale(1);
                opacity: 1;
            }
            50% { 
                transform: scale(1.2);
                opacity: 0.8;
            }
        }

        /* Responsive Styles */
        @media (max-width: 767px) {
            .cshsgqjaers__grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .cshsgqjaers__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .cshsgqjaers__card-footer {
                flex-direction: row;
            }
        }

        @media (min-width: 1024px) {
            .cshsgqjaers__grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        /* Mobile Styles */
        @media (max-width: 767px) {
            .cshsgqjaers {
                padding: 30px 15px;
            }
            
            .cshsgqjaers__heading {
                font-size: 18px;
                margin-bottom: 30px;
            }
            
            .cshsgqjaers__card {
                margin-bottom: 20px;
            }
            
            .cshsgqjaers__card-header {
                padding: 25px 20px;
            }
            
            .cshsgqjaers__card-body {
                padding: 25px 20px;
            }
            
            .cshsgqjaers__avatar {
                width: 70px;
                height: 70px;
            }
            
            .cshsgqjaers__name {
                font-size: 16px;
            }
            
            .cshsgqjaers__review-text {
                font-size: 13px;
                padding: 15px;
            }
            
            .cshsgqjaers__card-footer {
                flex-direction: column;
                gap: 12px;
                padding: 15px 20px;
                text-align: center;
            }
            
            .cshsgqjaers__rating i {
                font-size: 13px;
            }
            
            .cshsgqjaers__rating-text {
                font-size: 12px;
            }
            

        }

        /* Tablet Styles */
        @media (min-width: 768px) and (max-width: 1023px) {
            .cshsgqjaers__heading {
                font-size: 20px;
            }
            
            .cshsgqjaers__card-header {
                padding: 25px;
            }
            
            .cshsgqjaers__card-body {
                padding: 25px;
            }
        }

        /* Desktop Styles */
        @media (min-width: 1024px) {
            .cshsgqjaers__heading {
                font-size: 22px;
            }
        }



        /* Additional visual enhancements */
        .cshsgqjaers__card:nth-child(even) .cshsgqjaers__card-header {
            background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
        }

        .cshsgqjaers__card:nth-child(3n) .cshsgqjaers__card-header {
            background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        }

        /* Star rating individual delays */
        .cshsgqjaers__rating i:nth-child(1) { --i: 0; }
        .cshsgqjaers__rating i:nth-child(2) { --i: 1; }
        .cshsgqjaers__rating i:nth-child(3) { --i: 2; }
        .cshsgqjaers__rating i:nth-child(4) { --i: 3; }
        .cshsgqjaers__rating i:nth-child(5) { --i: 4; }
/* ================================ Reviews Section Ending ========================================= */
        /* Valued Partners Section Styles */
        .vludprtnrs {
            padding: 70px 20px;
        }

        .vludprtnrs__container {
            max-width: 100%;
            margin: 0 auto;
            text-align: center;
            padding: 5px;
        }

        .vludprtnrs__badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, #dc3545, #c4039b);
            color: white;
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 11px;
            font-weight: 500;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 6px 20px #e7b7dd!important;
        }

        .vludprtnrs__badge::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
        }

        .vludprtnrs__heading {
            background: linear-gradient(135deg, #dc3545, #c4039b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            margin-bottom: 50px;
            line-height: 1.2;
            font-size: 22px;
            position: relative;
        }

        .vludprtnrs__tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
            flex-wrap: nowrap;
            scroll-margin-top: 20px;
            position: relative;
            overflow-x: auto;
            padding: 10px 0;
        }

        .vludprtnrs__tab {
            background: linear-gradient(135deg, #dc3545, #c4039b);
            color: #fff;
            border: 2px solid #fff;
            padding: 8px 20px;
            border-radius: 10px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            gap: 10px;
            white-space: nowrap;
            flex-shrink: 0;
            min-width: fit-content;
        }

        .vludprtnrs__tab:hover {
            transform: translateY(-2px);
        }

        .vludprtnrs__tab.active {
            background-color: #dc3545:
            color: white;
            border-color: #dc3545;
        }

        .vludprtnrs__tab.active::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
        }

        .vludprtnrs__content {
            position: relative;
        }

        .vludprtnrs__tab-content {
            display: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.5s ease;
        }

        .vludprtnrs__tab-content.active {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .vludprtnrs__grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 30px;
            margin: 0 auto;
            max-width: 1200px;
        }

        .vludprtnrs__partner-card {
            background: white;
            border-radius: 20px;
            border: 1px solid #e2e8f0;
            padding: 20px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            max-height: 150px;
        }

        .vludprtnrs__partner-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .vludprtnrs__partner-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .vludprtnrs__partner-card:hover::before {
            opacity: 1;
        }

        .vludprtnrs__partner-logo {
            max-width: 100%;
            max-height: 80px;
            width: auto;
            height: auto;
            object-fit: contain;
            filter: grayscale(100%) opacity(1);
            transition: all 0.3s ease;
        }

        .vludprtnrs__partner-card:hover .vludprtnrs__partner-logo {
            filter: grayscale(0%) opacity(1);
            transform: scale(1.05);
        }

        /* Animations */
        @keyframes badge-glow {
            0%, 100% {
                box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
            }
            50% {
                box-shadow: 0 8px 30px rgba(16, 185, 129, 0.5);
            }
        }

        @keyframes shine {
            0% { left: -100%; }
            100% { left: 100%; }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .vludprtnrs__partner-card {
            animation: fadeInUp 0.6s ease forwards;
            animation-delay: calc(var(--i) * 0.1s);
        }

        /* Responsive Styles */
        @media (max-width: 767px) {
            .vludprtnrs {
                padding: 30px 15px;
            }
            
            .vludprtnrs__heading {
                font-size: 18px;
                margin-bottom: 30px;
            }
            
            .vludprtnrs__tabs {
                justify-content: flex-start;
                gap: 15px;
                padding: 10px 20px;
            }
            
            .vludprtnrs__tab {
                padding: 12px 20px;
                font-size: 14px;
                min-width: auto;
                justify-content: center;
            }
            
            .vludprtnrs__grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            
            .vludprtnrs__partner-card {
                padding: 20px;
                min-height: 100px;
            }
            
            .vludprtnrs__partner-logo {
                max-height: 50px;
            }
        }

        @media (min-width: 768px) and (max-width: 1023px) {
            .vludprtnrs__heading {
                font-size: 20px;
            }
            
            .vludprtnrs__grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
            }
            
            .vludprtnrs__partner-card {
                padding: 25px;
            }
        }

        @media (min-width: 1024px) {
            .vludprtnrs__heading {
                font-size: 22px;
            }
            
            .vludprtnrs__grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }

        /* Tab content animation stagger */
        .vludprtnrs__partner-card:nth-child(1) { --i: 0; }
        .vludprtnrs__partner-card:nth-child(2) { --i: 1; }
        .vludprtnrs__partner-card:nth-child(3) { --i: 2; }
        .vludprtnrs__partner-card:nth-child(4) { --i: 3; }
        .vludprtnrs__partner-card:nth-child(5) { --i: 4; }
        .vludprtnrs__partner-card:nth-child(6) { --i: 5; }
        .vludprtnrs__partner-card:nth-child(7) { --i: 6; }
        .vludprtnrs__partner-card:nth-child(8) { --i: 7; }
        .vludprtnrs__partner-card:nth-child(9) { --i: 8; }
        .vludprtnrs__partner-card:nth-child(10) { --i: 9; }
        .vludprtnrs__partner-card:nth-child(11) { --i: 10; }
        .vludprtnrs__partner-card:nth-child(12) { --i: 11; }
/* ================================ Partners Section Ending ========================================= */