      .gradient-purple {
        background: linear-gradient(
          135deg,
          #6366f1 0%,
          #a855f7 50%,
          #ec4899 100%
        );
      }
      .gradient-slate {
        background: linear-gradient(90deg, #1e293b 0%, #334155 100%);
      }

      /* Component Styles */
      .avatar {
        width: 64px;
        height: 64px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        font-weight: bold;
        color: white;
        background: linear-gradient(135deg, #00217e 0%, #355fd9 100%);
      }

      .icon-circle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .due-badge {
        background-color: rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        padding: 4px 12px;
        font-size: 14px;
      }

      /* Pay Button */
      .sticky-bottom {
        position: sticky;
        bottom: 24px;
        z-index: 100 !important;
      }

      .pay-button {
        background: linear-gradient(90deg, #9333ea 0%, #6366f1 100%);
        border-radius: 50px;
        padding: 12px 32px;
        border: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
      }

      .pay-button:hover {
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
      }

      /* Fee Schemes */
      .scheme-card {
        border: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
      }

      .scheme-card:hover {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      }

      .scheme-header {
        color: white;
        padding: 1.5rem;
      }

      .fee-item {
        border-bottom: 1px solid #e5e7eb;
        padding: 1rem;
      }

      .fee-item:last-child {
        border-bottom: none;
      }

      /* Transactions */
      .transaction-item {
        background-color: #f8fafc;
        border-radius: 0.5rem;
        padding: 1rem;
        margin-bottom: 1rem;
        transition: all 0.3s ease;
      }

      .transaction-item:hover {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
      }

      /* Form Elements */
      .form-check-input:checked {
        background-color: #6366f1;
        border-color: #6366f1;
      }

      .progress-bars {
        transition: width 0.3s ease;
      }

      /* Button States */
      .btn-outline-primary {
        border-color: #6366f1;
        color: #6366f1;
      }

      .btn-outline-primary:hover {
        background-color: #6366f1;
        color: white;
      }

      .btn-outline-success {
        border-color: #22c55e;
        color: #22c55e;
      }

      /* Status Colors */
      .text-success {
        color: #22c55e !important;
      }
      .text-danger {
        color: #ef4444 !important;
      }
      .bg-success.bg-opacity-10 {
        background-color: rgba(34, 197, 94, 0.1) !important;
      }
      .bg-danger.bg-opacity-10 {
        background-color: rgba(239, 68, 68, 0.1) !important;
      }
      .display_none {
    display: none;
}

/* student_popup */
.exampleModal{
  display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 999;
    justify-content: center;
    align-items: center;
}
.display_class{
  display: flex !important;
  justify-content: center;
}
.exampleModal .containers {
  background: rgba(255, 255, 255, 0.95);
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      width: 380px;
      overflow: hidden;
      position: relative;
      animation: scaleIn 0.3s ease;
    }
    .close-btn {
      position: absolute;
      top: 15px;
      right: 15px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: white;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      z-index: 10;
    }

    .close-btn:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: rotate(90deg);
    }

    .close-icon {
      font-size: 18px;
    }

    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    @keyframes scaleIn {
      from { 
        opacity: 0;
        transform: scale(0.9);
      }
      to { 
        opacity: 1;
        transform: scale(1);
      }
    }

   .exampleModal .header {
      background: linear-gradient(to right, #092b8c, #2d56ca);
      color: white;
      padding: 25px 20px;
      text-align: center;
      position: relative;
    }

   .exampleModal .header h2 {
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 5px;
    }

   .exampleModal .header p {
      font-size: 0.9rem;
      opacity: 0.9;
    }

    .student-list {
      padding: 10px 0;
      max-height: 400px;
      overflow-y: auto;
    }

   .exampleModal .student-item {
      padding: 15px 20px;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
    }

    .student-item:hover {
      background: rgba(79, 70, 229, 0.05);
      transform: translateX(5px);
    }

    .radio-wrapper {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .custom-radio {
      width: 22px;
      height: 22px;
      border: 2px solid #4f46e5;
      border-radius: 50%;
      position: relative;
      transition: all 0.2s ease;
    }

    input[type="radio"] {
      display: none;
    }

    input[type="radio"]:checked + .custom-radio::after {
      content: '';
      position: absolute;
      width: 12px;
      height: 12px;
      background: #4f46e5;
      border-radius: 50%;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      animation: radioScale 0.2s ease;
    }

    .student-info {
      flex: 1;
    }

    .student-name {
      font-size: 1.1rem;
      color: #1f2937;
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 10px;
      cursor: pointer;
    }

    .student-avatar {
      width: 40px;
      height: 40px;
      background: linear-gradient(45deg, #092b8c, #2d56ca);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 1.2rem;
      /* margin-right: 15px; */
    }

    .student-id {
      font-size: 0.9rem;
      color: #6b7280;
      margin-top: 4px;
      margin-left: 55px;
      text-align: left;
    }

    .status-badge {
      font-size: 0.8rem;
      padding: 3px 10px;
      border-radius: 12px;
      background: #cfd7f1;
    color: #0d2e90;
      margin-left: auto;
      opacity: 0;
      transform: translateX(-10px);
      transition: all 0.3s ease;
    }

    .selected .status-badge {
      opacity: 1;
      transform: translateX(0);
    }

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

    .selected {
      background: rgba(79, 70, 229, 0.08);
    }

    .selected .student-name {
      color: #f37021;
      font-weight: bolder;
    }

    .student-list::-webkit-scrollbar {
      width: 6px;
    }

    .student-list::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    .student-list::-webkit-scrollbar-thumb {
      background: #4f46e5;
      border-radius: 3px;
    }

    @keyframes slideIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .student-item {
      animation: slideIn 0.3s ease forwards;
      animation-delay: calc(var(--index) * 0.1s);
      opacity: 0;
    }

    .profile-container {
      position: relative;
    }

    .profile-trigger {
      width: 40px;
      height: 40px;
      background: linear-gradient(to right, #092b8c, #2d56ca);
      border: 2px solid rgb(3 23 80);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .profile-trigger:hover {
      /* background: rgba(255, 255, 255, 0.3); */
      background: linear-gradient(to right, #092b8c, #2d56ca);
      transform: scale(1.05);
    }

    .profile-menu {
      position: absolute;
      top: calc(100% + 10px);
      right: 0;
      background: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      width: 220px;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s ease;
    }

    .profile-menu.active {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      z-index: 999;
    }

    .profile-header {
      padding: 1rem;
      border-bottom: 1px solid #e5e7eb;
      text-align: center;
    }

    .profile-name {
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 4px;
    }

    .profile-email {
      font-size: 0.875rem;
      color: #6b7280;
    }

    .menu-items {
      padding: 0.5rem 0;
    }

    .menu-item {
      padding: 0.75rem 1rem;
      display: flex;
      align-items: center;
      gap: 12px;
      color: #031750 !important;
      text-decoration: none;
      transition: all 0.2s ease;
      cursor: pointer;
      font-weight: 600;
    }

    .menu-item:hover {
      background: #f3f4f6;
      color: #4f46e5;
    }

    .menu-item i {
      font-size: 1rem;
      width: 20px;
      color: #f27023 !important;
    }

    .logout {
      border-top: 1px solid #e5e7eb;
      color: #dc2626 !important;
    }
    .logout i{
      color: #dc2626 !important;
    }

    .logout:hover {
      background: #fef2f2;
      color: #dc2626;
    }
    .news_btn{
      border:none !important;
      background-color:unset !important;
    }
    .end-flex{
      place-content: end;
    }
    .btn{
      --bs-btn-padding-y: 0rem !important;
    }

    /* //home_button_style */
    .home-button {
      position: relative;
      width: 35px;
      height: 35px;
      background: rgb(3 23 80);
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    .home-button:hover {
      width: 140px;
      border-radius: 25px;
      background: rgb(3 23 80);
    }

    .home-button:active {
      transform: scale(0.95);
    }

    .home-icon-wrapper {
      position: absolute;
      left: 5px;
      display: flex;
      align-items: center;
      gap: 12px;
      color: white;
      width: -webkit-fill-available;
      z-index:99;
    }

    .home-icon-wrapper i {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
      height: unset !important;
      border: none !important;
    }

    .home-button:hover .home-icon-wrapper i {
      transform: rotate(360deg);
    }

    .home-text {
      position: absolute;
      left: 50px;
      color: white;
      font-weight: 500;
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s ease;
    }

    .home-button:hover .home-text {
      opacity: 1;
      transform: translateX(0);
    }

    .home-button::after {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .home-button:hover::after {
      opacity: 1;
    }

    /* Ripple Effect */
    .home-button .ripple {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.4);
      transform: scale(0);
      animation: ripple 0.6s linear;
      pointer-events: none;
    }

    @keyframes ripple {
      to {
        transform: scale(4);
        opacity: 0;
      }
    }
    .fa-home{
      border-right: none !important;
      height: unset;
    }


    .quick-summary {
      background-color: #1a1f2e;
      border-radius: 16px;
      padding: 24px;
      color: white;
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  }
  
  .summary-title {
      font-size: 20px;
      font-weight: 600;
      margin: 0 0 24px 0;
      color: #ffffff;
  }
  
  .summary-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-bottom: 32px;
  }
  
  .summary-card {
      background-color: #242937;
      border-radius: 12px;
      padding: 20px;
      position: relative;
  }
  
  .card-content {
      display: flex;
      flex-direction: column;
      gap: 8px;
  }
  
  .card-label {
      color: #ffffff;
      font-size: 16px;
      font-weight: 500;
  }
  
  .amount {
      font-size: 24px;
      font-weight: 600;
      color: #ffffff;
      display: flex;
      align-items: center;
      gap: 2px;
  }
  
  .currency {
      font-size: 20px;
  }
  
  /* Color variations for amounts */
  .amount.paid {
      color: #4cd964;
  }
  
  .amount.due {
      color: #ff3b30;
  }
  
  .sub-text {
      color: #8e8e93;
      font-size: 14px;
  }
  
  /* Progress section styles */
  .progress-section {
      margin-top: 16px;
  }
  
  .progress-label {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
      color: #ffffff;
      font-size: 14px;
  }
  
  .progress-bars {
      background-color: #242937;
      height: 8px;
      border-radius: 4px;
      overflow: hidden;
  }
  
  .progress {
      background-color: #4cd964 !important;
      height: 100% !important;
      border-radius: 4px !important;
      transition: width 0.3s ease;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
      .summary-cards {
          grid-template-columns: 1fr;
      }
      
      .quick-summary {
          padding: 16px;
      }
      
      .amount {
          font-size: 20px;
      }
      
      .currency {
          font-size: 16px;
      }
  }


  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    z-index: 999;
}

.fess_collect .modal {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    transform: scale(0.95);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    height: 80%;
}

.modal-overlay.active .modal {
    transform: scale(1);
    opacity: 1;
    display: block !important;
    margin: auto;
}

.fess_collect .modal-headers {
    background: linear-gradient(135deg, #041043 0%, #2a4bc3 100%);
    padding: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.fess_collect .modal-headers::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: translate(30%, -30%);
}

.fess_collect .modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.fess_collect .modal-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
}

.fess_collect .close-button {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.fess_collect .close-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.fess_collect .modal-body {
    padding: 24px;
    height: 67%;
    overflow: scroll;
}

.fess_collect .fee-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.fess_collect .fee-item {
    background: #f8fafc;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    align-items: center;
    transition: all 0.2s;
    border: 1px solid #e2e8f0;
}

.fess_collect .fee-item:hover {
    transform: translateX(4px);
    border-color: #bfdbfe;
}

.fess_collect .fee-icon {
    background: #eff6ff;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: #2563eb;
    font-size: 24px;
}

.fess_collect .fee-details {
    flex-grow: 1;
}

.fess_collect .fee-name {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.fess_collect .fee-term {
    color: #64748b;
    font-size: 14px;
}

.fee-amount {
    font-weight: 600;
    color: #2563eb;
    font-size: 18px;
}

.fess_collect .total-section {
    background: #f8fafc;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-label {
    font-size: 18px;
    font-weight: 600;
    color: #1e293b;
}

.total-amount {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

.fess_collect .modal-footer {
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 16px;
}

.fess_collect .button {
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.fess_collect .button-secondary {
    background: #f1f5f9;
    color: #64748b;
    border: none;
}

.button-secondary:hover {
    background: #e2e8f0;
    color: #475569;
}

.fess_collect .button-primary {
    background: #ff0f0f;
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.fess_collect .button-primary:hover {
    background: #ff0f0f;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50px;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    to {
        left: 200%;
    }
}

.delete-fee {
  background: #fee2e2;
  color: #dc2626;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  margin-left: 16px;
}

.delete-fee:hover {
  background: #fecaca;
  transform: scale(1.05);
}

.fee-content {
  display: none;
  padding-left: 20px;
  margin-top: 10px;
}
.fee-item.expanded .fee-content {
  display: block;
}
.expand-btn {
  background-color: #f58634; /* Custom button color */
  color: white;
  border: none;
  cursor: pointer;
  font-size: 18px;
}

.expand-btn:hover {
  background-color: #f49032;
}
/* .remarks-text{
  max-width: 400px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    float: left;
    margin-top: 0px !important;
} */
/* .new_text{
  float: left;
  margin-right:10px;
} */
/* @media(max-width:774px){
  .remarks-text{
    max-width: 200px;
  }
}
@media(max-width:478px){
  .remarks-text{
    max-width: 100px;
  }
} */
.amount-input{
  font-weight: 600;
  color: #2563eb;
  font-size: 18px;
  padding: 0px;
  background: unset;
  text-align: left;
  overflow: auto !important;
  width: 80px;
  border: none;
    border-bottom: 2px solid #2563eb;
    outline: unset;
}



@media(max-width:767px){

  .header-right {
    width: 100% !important;
}
}
.select2-container .select2-choice{
  padding: 0px;
  height: 30px;
  line-height: 30px;
  width: 100px;
  text-align: center;
}
.rounded{
  margin:8px 0px;
}
.values{
  color: #000;
    margin-top: 4px;
    font-weight: 600;
}
.gradient-purple{
  height: 100%;
}

.cards {
    position: relative;
    width: fit-content;
    padding: 2rem;
    background: linear-gradient(to right, #092b8c, #2d56ca);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Decorative shapes behind the image */
.cards::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    top: -75px;
    right: -75px;
    z-index: 0;
}

.cards::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    bottom: -50px;
    left: -50px;
    transform: rotate(45deg);
    z-index: 0;
}

.id_card_img {
    position: relative;
    width: 100%;
    height: 265px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.id_card_img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.btn-outline-primary {
    border-color: red !important;
    color: red !important;
    padding: 0.10rem 0.3rem !important;
}
.btn-outline-primary:hover {
    background-color: red !important;
    color: white !important;
}
.center_align{
  padding-left: 1.5rem;
}
.align_title{
  margin-left: 1rem;
}
.btn-outline-primary.selected {
    background-color: red;
    color: #fff !important;
}
.fa-home {
    border-right: none !important;
    height: unset;
}

.toggle-arrow {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 1px solid #fff;
    border-radius: 100px;
    padding-top:5px;
}
.pad{
  padding-top:0px !important;
}

.arrow-icon {
    border: solid white;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 4px;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
   
}

.toggle-arrow.collapsed .arrow-icon {
    transform: rotate(-135deg);
}
.card-content {
    max-height: 1000px;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.card-content.collapsed {
    max-height: 0;
}

.scheme-card {
    margin-bottom: 1rem;
}

/* Make arrow more visible on the gradient background */
.arrow-icon {
  box-shadow: 1px 1px 0 rgba(255,255,255,0.3);
}

.arrow-icon {
            display: inline-block;
            width: 10px;
            height: 10px;
            border: solid #fff;
            border-width: 0 2px 2px 0;
            transform: rotate(225deg);
            transition: transform 0.3s;
        }
        .arrow-icon.collapsed {
            transform: rotate(45deg); /* Arrow pointing right */
        }
        .end{
          display: flex;
        }
        .due-badge{
          margin-right:30px;
        }

        .radio-wrapper input{
          display: none !important;
        }

       
.mobile_l{
  display: none;
}
@media(max-width:992px){
  .mobile_photo{
    display: none;
  }
  .mobile_l{
display: block;
}
  .mobile_t{
display: none;
}
.id_card_img{
  height: auto;
}
.full_image{
  width: 100% !important;
}
}
@media (max-width: 767px) {

  #s2id_online_pay_system_school_id{
    margin-top:-42px;
  }
  .rounded {
    margin: 3px 0px;
    padding: 10px !important;
    padding-left: 16px !important;
}
.card-body .mb-4{
  margin-bottom:5px !important;
}
.summary-card{
  padding: 10px;
  padding-left: 20px;
}
.summary-cards{
  margin-bottom: 14px;
}
    .mobiles{
      padding:0px;
    }
    .mobile_photo{
      display: none;
    }
    .mobile_l{
  display: block;
}
    .mobile_t{
  display: none;
}
.id_card_img{
  height: auto;
}
.end{
  margin-top: 18px;
}
.due-badge{
  padding: 6px 25px;
  position: relative;
    top: 10px;
    left: 51px;
}
.toggle-arrow{
  position: absolute;
  right: 17px;
  top: 10px;
}
/* .header-content-res{
  flex-direction: column;
  align-items: flex-start !important;
} */
.scheme-header{
  padding: 18px 30px;
}
.header-content-opp .btn-outline-primary{
  padding: 0.19rem 0.37rem !important;
  font-size: 10px;
}
.fee-item .col-md-4{
  width:33.333%;
}
.fess_collect .button{
  font-size: 14px;
  padding: 14px 11px;
}
.fess_collect .fee-item{
  padding:8px;
}
.fess_collect .modal-body{
  height: 67%;
}
.fess_collect .modal-headers{
  padding:15px;
}
.fess_collect .modal-body, .fess_collect .modal-footer{
  padding:13px;
}
.fess_collect .modal{
  height: 100%;
}
.profile-trigger{
  width:35px;
  height:35px;
}
}
@media(max-width:500px){
  .due-badge{
    padding: 6px 10px;
  }
  body {
    overflow-x: hidden;
}
}
.fess_collect .modal-subtitle{
  margin-bottom: 0px;
}
.form-check-input{
  border: 1px solid #243042;
}
.receipt_btn{
  position: absolute;
  right: 31px;
  top: 30%;
}
@media(max-width:768px){
  .receipt_btn{
    right: 16px;
    font-size: 11px;
    top: 20%;
  }
}
@media(max-width:466px){
  .receipt_btn{
   position:unset;
   margin-top: 7px;
   margin-bottom: -9px;
  }
  .rounds{
    height: 100%;
    padding-left:0px;
  }
}
.edit_message{
  font-size: 14px;
    color: #09154f;
    position: relative;
    bottom: -8px;
}





/* menu_popup_modal */
.menu_modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 80%;
  max-width: 1200px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu_modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 999;
}

.menu_modal .modal-header {
  padding: 14px 39px;
  background: linear-gradient(to right, #092b8c, #2d56ca);
  color: white;
  font-size: 32px;
  border-radius: 30px 30px 0 0;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.menu_modal .close-btn {
  padding-left: 2px;
}

.menu_modal .close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.menu_modal .modal-content {
  padding: 27px 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  background: #fff;
}

.menu_modal .menu-item {
  padding: 8px 12px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  color: white !important;
  text-decoration: none;
  background: rgb(10 28 90);
  border: 1px solid rgb(10 28 90);
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.menu_modal .menu-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 198, 255, 0.2), rgba(0, 114, 255, 0.2));
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}

.menu_modal .menu-item:hover::before {
  transform: translateX(0);
}

.menu_modal .menu-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu_modal .menu-item-icon {
  margin-right: 20px;
  font-size: 17px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  transition: all 0.4s ease;
}

.menu_modal .menu-item:hover .menu-item-icon {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(360deg);
}

.menu_modal .menu-item-text {
  font-weight: 500;
  letter-spacing: 1px;
}

.menus_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.menus_overlay.active {
  display: block;
  opacity: 1;
  z-index: 99;
}



.menu_modal .menu-item:nth-child(1) { animation-delay: 0s; }
.menu_modal .menu-item:nth-child(2) { animation-delay: 0.3s; }
.menu_modal .menu-item:nth-child(3) { animation-delay: 0.6s; }

/* Glow effect */
.menu_modal .menu-item::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
@media(min-width: 768px) and (max-width:1100px) {
  .menu_modal .modal-content{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width:767px){
  .menu_modal .modal-content{
    grid-template-columns: repeat(1, 1fr);
  }
  .menu_modal.active{
    z-index: 9999;
  }
  .menus_overlay.active{
    z-index: 999;
  }
  .menu_modal .modal-header{
    padding: 14px 9px;
    font-size: 20px;
  }
  .menu_modal .modal-header h2, .menu_modal .menu-item{
    font-size: 15px !important;
  }
  .close-btn{
    top:9px;
  }
}
@media(max-width:988px){
  #s2id_online_pay_system_school_id{
    left: 39%;
  }
}
@media(max-width:500px){
  #s2id_online_pay_system_school_id{
    left: 20%;
    margin-top: -39px;
  }
}


.data-table {
  width: 100%;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 20px;
}

.data-table th {
  background: #f8fafc;
  padding: 15px 20px;
  text-align: left;
  font-weight: 600;
  color: #2d3748;
  border-bottom: 2px solid #eef2f7;
  text-align: center;
}

.data-table td {
  padding: 15px 20px;
  border-bottom: 1px solid #eef2f7;
  color: #4a5568;
}

.data-table tbody tr {
  cursor: pointer;
  transition: all 0.2s ease;
}

.data-table tbody tr:hover {
  background: #f8fafc;
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.status-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 500;
}

.status-inprogress {
  background: #ebf8ff;
  color: #3182ce;
}

.status-completed {
  background: #f0fff4;
  color: #38a169;
}

.status-pending {
  background: #fff5f5;
  color: #e53e3e;
}


/* loader_design */
.loader_overlays {
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0a0a2e;
    backdrop-filter: blur(8px);
    display: none;
    z-index: 99999;
    place-content: center;
}

.cosmic-loader {
  position: relative;
  width: 200px;
  height: 200px;
  display: block;
  margin: auto;
}

/* Core sphere */
.core {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 30% 30%, #ffffff, #4a9eff);
  border-radius: 50%;
  box-shadow: 0 0 60px #4a9eff;
  animation: pulsess 2s ease-in-out infinite;
}

/* Orbital rings */
.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: #4a9eff;
  border-left-color: #4a9eff;
  animation: orbit 3s linear infinite;
}

.ring:nth-child(1) {
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%) rotate(0deg);
}

.ring:nth-child(2) {
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%) rotate(90deg);
  animation-duration: 4s;
}



/* Energy bursts */
.burst {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(74, 158, 255, 0.1);
  animation: burst 2s ease-out infinite;
}

.burst:nth-child(2) {
  animation-delay: 0.5s;
}

.burst:nth-child(3) {
  animation-delay: 1s;
}

/* Animations */
@keyframes pulsess {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

@keyframes orbit {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes move {
  0% {
    transform: rotate(0deg) translateX(60px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(60px) rotate(-360deg);
  }
}

@keyframes burst {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
}

/* Glowing text */
.loader-text {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: #4a9eff;
  font-family: Arial, sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    text-shadow: 0 0 10px #4a9eff;
  }
  50% {
    text-shadow: 0 0 20px #4a9eff, 0 0 30px #4a9eff;
  }
}

/* no_results_found */
.empty-state {
  background: white;
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 600px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.background-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.1;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s infinite;
}

.shape-1 {
  width: 100px;
  height: 100px;
  background: #4f46e5;
  top: -20px;
  left: -20px;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: #06b6d4;
  bottom: -10px;
  right: -10px;
  animation-delay: 1s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  background: #8b5cf6;
  top: 50%;
  right: -30px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
      transform: translateY(0) rotate(0deg);
  }
  50% {
      transform: translateY(-20px) rotate(10deg);
  }
}

.content {
  position: relative;
  z-index: 1;
}

.icon-container {
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.icon-bg {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #4f46e5 0%, #8b5cf6 100%);
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transform: rotate(45deg);
  animation: pulse0 2s infinite;
}

.icon {
  font-size: 48px;
  color: white;
  transform: rotate(-45deg);
}

@keyframes pulse0 {
  0% {
      box-shadow: 0 0 0 0 rgba(79, 70, 229, 0.4);
  }
  70% {
      box-shadow: 0 0 0 20px rgba(79, 70, 229, 0);
  }
  100% {
      box-shadow: 0 0 0 0 rgba(79, 70, 229, 0);
  }
}

.empty-state  h1 {
  font-size: 32px;
  color: #1f2937;
  margin-bottom: 16px;
  font-weight: 700;
}

.description {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}



.help-text {
  margin-top: 24px;
  color: #6b7280;
  font-size: 14px;
}

.help-text a {
  color: #4f46e5;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.help-text a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: #4f46e5;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.help-text a:hover::after {
  transform: scaleX(1);
}

@media (max-width: 480px) {
  .empty-state {
      padding: 30px 20px;
  }

  .icon-bg {
      width: 100px;
      height: 100px;
  }

  .icon {
      font-size: 40px;
  }

  .empty-state  h1 {
      font-size: 24px;
  }

  .description {
      font-size: 16px;
  }

  
}
.bg_whites{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #f6f8fd 0%, #f1f4f9 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}



/* popup_email */
.email_popup, .payment_popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 999;
  animation: fadeIn 0.3s ease-out;
}

.email_popup .popup, .payment_popup .popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: white;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 440px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  animation: slideUp 0.4s ease-out;
}

.email_popup .close-btn, .payment_popup .close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}

.email_popup .close-btn:hover, .payment_popup .close-btn:hover {
  background: #e5e7eb;
  transform: rotate(90deg);
}

.email_popup .popup-header, .payment_popup .popup-header {
  text-align: center;
  margin-bottom: 30px;
}

.email_popup .popup-icon, .payment_popup .popup-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 2s infinite;
}

:root {
  --primary-color: #4f46e5;
  --primary-hover: #4338ca;
  --success-color: #10b981;
  --error-color: #ef4444;
  --gradient-start: #4f46e5;
  --gradient-end: #8b5cf6;
}
.email_popup .popup-icon i, .payment_popup .popup-icon i {
  font-size: 32px;
  color: #071450;
}

.email_popup .popup-title, .payment_popup .popup-title {
  font-size: 28px;
  color: #1f2937;
  margin-bottom: 12px;
  font-weight: 700;
}

.email_popup .popup-subtitle, .payment_popup .popup-subtitle {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.5;
}

.email_popup .input-group, .payment_popup .input-group {
  margin-bottom: 24px;
  position: relative;
}

.input-group input {
  width: 100%;
  padding: 16px;
  padding-left: 48px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 16px;
  transition: all 0.3s;
  background: #f9fafb;
}

.email_popup .input-group i, .payment_popup .input-group i {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
}

.email_popup .input-group input:focus, .payment_popup .input-group input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.email_popup .submit-btn, .payment_popup .submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 6px -1px rgba(79, 70, 229, 0.1), 0 2px 4px -1px rgba(79, 70, 229, 0.06);
}

.email_popup .submit-btn:hover, .payment_popup .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 12px -1px rgba(79, 70, 229, 0.2), 0 4px 8px -1px rgba(79, 70, 229, 0.12);
}

.email_popup .otp-input {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.email_popup .otp-input input {
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: #f9fafb;
  transition: all 0.3s;
}

.email_popup .otp-input input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.email_popup .helper-text {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #6b7280;
}

.email_popup .helper-text a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s;
}

.email_popup .helper-text a:hover {
  color: var(--primary-hover);
}

.email_popup .success-icon {
  animation: successPop 0.6s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from {
      opacity: 0;
      transform: translate(-50%, -40%);
  }
  to {
      opacity: 1;
      transform: translate(-50%, -50%);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes successPop {
  0% { transform: scale(0.5); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.success-screen .popup-icon {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.success-screen .popup-icon i {
  color: var(--success-color);
}

/* Loading animation for submit buttons */
.submit-btn.loading {
  position: relative;
  color: transparent;
}

.submit-btn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}
#change-email, #email_verify_resend{
  cursor: pointer;
}

.profile-menu .profile-name{
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 4px;
  font-size: inherit;
}
.profile-menu .profile-header{
  margin-bottom: 0px;
}

/* new_button_css */
.button-group {
  margin: 30px 0;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 6px 28px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  background: #fff;
  color: #000;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
  position: relative;
  overflow: hidden;
  border: 2px solid #011342;
}

.filter-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  transition: all 0.4s ease;
}

.filter-btn:hover::before {
  left: 100%;
}

.filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.filter-btn:active {
  transform: translateY(1px);
}

.filter-btn.active {
  background: linear-gradient(135deg, #011342, #123fb5);
  box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
  color: #fff;
    border: none;
}

.content-item {
  transform: scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
  display: none;
}

.content-item.show {
  display: block;
  transform: scale(1);
  opacity: 1;
}
@media(max-width:418px){
  .transaction-item .d-flex{
    display: block !important;
  }
}

.success-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: #4CAF50;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  animation: scaleIn 0.5s ease-out;
  margin-left: -1.25rem;
  top: 11px;
  cursor: pointer;
}

.success-icon::before {
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid #4CAF50;
  position: absolute;
  animation: ripple 1.5s ease-out infinite;
}

.checkmarks {
  color: white;
  font-size: 17px;
  animation: checkmark 0.5s ease-in-out 0.5s both;
}


@keyframes scaleIn {
  from {
      transform: scale(0);
      opacity: 0;
  }

  to {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes checkmark {
  from {
      transform: scale(0);
      opacity: 0;
  }

  to {
      transform: scale(1);
      opacity: 1;
  }
}

@keyframes ripple {
  0% {
      transform: scale(1);
      opacity: 0.5;
  }

  100% {
      transform: scale(1.5);
      opacity: 0;
  }
}

.success-icon .tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: calc(100% + 10px);
  /* Adds some space between icon and tooltip */
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.85);
  /* Slightly transparent background */
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
  /* Smoother transition */
  z-index: 1000;
  /* Ensure tooltip stays on top */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  /* Subtle shadow */
}

/* Add a small arrow/triangle pointing up */
.success-icon .tooltip-text::before {
  content: '';
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.85);
}



.success-icon:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  /* Smooth upward animation */
}

.payment_popup .popup-subtitle{
  text-align: center;
  font-weight: 600;
}
.fess_collect .fee-name{
  word-break: break-all;
}
.support{
  width: 40px;
    height: 40px;
    display: flex;
    place-content: center;
    align-items: center;
    border-radius: 100px;
    color: #fff;
    font-size: 19px;
    background: linear-gradient(135deg, #011342, #123fb5);
    cursor: pointer;
}
.new_term{
  color: #000 !important;
  font-size: 18px !important;
  font-family: 'font2';
}
.new_name{
  color: #64748b !important;
}

.support::before {
  content: "Support";
  position: absolute;
  bottom: 100%;
  /* left: 50%;
  transform: translateX(-50%); */
  background-color: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  margin-bottom: 8px;
  z-index: 1000;
}

/* Tooltip arrow */
.support::after {
  content: "";
  position: absolute;
  bottom: 100%;
  /* left: 50%;
  transform: translateX(-50%); */
  border: 5px solid transparent;
  border-top-color: #333;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  margin-bottom: 3px;
}

/* Show tooltip on hover */
.support:hover::before,
.support:hover::after {
  opacity: 1;
  visibility: visible;
}