   /* Custom styles for increased text sizes */
   body {
    font-size: 16px; /* Base font size increase */
}
.text-3xl {
    font-size: calc(1.875rem + 2px);
}
.text-4xl {
    font-size: calc(2.25rem + 2px);
}
.text-5xl {
    font-size: calc(3rem + 2px);
}
.text-lg {
    font-size: calc(1.125rem + 2px);
}
.text-sm {
    font-size: calc(0.875rem + 2px);
}
.text-base {
    font-size: calc(1rem + 2px);
}

/* Additional form-specific text size increases */
.bg-white input {
    font-size: calc(0.875rem + 2px);
}
.bg-white label {
    font-size: calc(0.875rem + 2px);
}
.bg-white button {
    font-size: calc(0.875rem + 2px);
}
.bg-white a {
    font-size: calc(0.875rem + 2px);
}
.bg-white h2 {
    font-size: calc(1.125rem + 2px);
}
.bg-white p {
    font-size: calc(0.875rem + 2px);
}
.bg-white ::placeholder {
    font-size: calc(0.875rem + 2px);
}
.bg-white .text-gray-500,
.bg-white .text-gray-600,
.bg-white .text-gray-700 {
    font-size: calc(0.875rem + 2px);
}

/* Specific increase for the "Strengthening Skills, Building" heading */
.bg-[#683091] h1 {
    font-size: calc(3rem + 8px); /* Further increased size */
}
@media (max-width: 768px) {
    .bg-[#683091] h1 {
        font-size: calc(2.25rem + 8px);
    }
}
@media (max-width: 640px) {
    .bg-[#683091] h1 {
        font-size: calc(1.875rem + 6px);
    }
}
/* Remove scrollbar display but keep functionality */
.form-container {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
.form-container::-webkit-scrollbar {
    display: none;  /* Chrome, Safari and Opera */
}
.stat-card {
    background: rgba(104, 48, 145, 0.6);
    border-radius: 12px;
}

/* Make the left section sticky */
.sticky-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 33.333333%;
    height: 96vh;
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    z-index: 10;
    margin: 1rem;
    border-radius: 1rem;
}
@media (min-width: 1024px) {
    .sticky-section {
        width: 40%;
    }
}
@media (max-width: 767px) {
    .sticky-section {
        position: relative;
        width: 100%;
        margin-bottom: 1rem;
    }
}
/* Adjust the right section to account for fixed left section */
@media (min-width: 768px) {
    .right-section {
        margin-left: 33.333333%;
    }
}
@media (min-width: 1024px) {
    .right-section {
        margin-left: 40%;
    }
}

/* Reduced height for the left section content */
.sticky-content {
    max-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
body {
  font-family: Arial, sans-serif;
  background: #fafafa;
  padding: 20px;
}

.upload-area {
  border: 2px dashed #ccc;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  max-width: 500px;
  margin: auto;
  background: #fff;
  cursor: pointer;
}
.bORDER_COL{
  border: 2px dashed #f01818;
}

.upload-area.dragover {
  background: #f4f2ff;
  border-color: #a060ff;
}

.upload-icon {
  font-size: 28px;
  color: #a060ff;
  margin-bottom: 10px;
}

.upload-click {
  color: #a060ff;
  font-weight: bold;
  cursor: pointer;
}

.upload-note {
  color: #888;
  font-size: 12px;
}

.upload-list {
  max-width: 500px;
  margin: 20px auto;
  list-style: none;
  padding: 0;
}

.upload-item {
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid #a060ff;
  padding: 15px;
  margin-bottom: 10px;
  position: relative;
  border-radius: 6px;
}

.upload-name {
  font-weight: bold;
}

.upload-size {
  color: #888;
  font-size: 13px;
}

.upload-progress {
  height: 6px;
  background: #eee;
  border-radius: 3px;
  margin-top: 10px;
  overflow: hidden;
}

.upload-bar {
  height: 100%;
  background: #a060ff;
  width: 0%;
  transition: width 0.3s;
}

.upload-percent {
  text-align: right;
  font-size: 12px;
  margin-top: 5px;
  color: #555;
}

.upload-success {
  border-left-color: #2ecc71;
}

.upload-error {
  border-left-color: #e74c3c;
  color: #e74c3c;
}

.upload-error .upload-name {
  color: #e74c3c;
}

.upload-link {
  color: #a060ff;
  text-decoration: underline;
  font-size: 13px;
  margin-top: 5px;
  display: block;
}
.remove-btn {
  position: relative;
  top: -5px;
  color: #ff4d4d !important;
  border: none;
  padding: 4px 10px;
  cursor: pointer;
  border-radius: 4px;
  font-size: 17px;
  float:right;
}.upload-error {
  background-color: #ffe5e5;
  color: #e53e3e;
  border: 1px solid #fbb6b6;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
}
input{
  outline: none;
}
select{
  outline: none;
}
.captcha-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center; /* Optional: center align */
}

.captcha-container > div {
  transform: scale(1);
  transform-origin: 0 0;
}

@media screen and (max-width: 400px) {
  .captcha-container > div {
    transform: scale(0.9);
  }
}

@media screen and (max-width: 320px) {
  .captcha-container > div {
    transform: scale(0.8);
  }
}
.head_pre{
  display: none;;
}
.Submit_preloader{
  width:100%;
  height:100vh;
  position: fixed;
  top:0;
  left:0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}.small_dard{
  width:300px;
  height:300px;
  background-color: white;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.head_sUCCESS{
  display: none;;
}
.loader {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #683091; /* Purple top */
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.scess_get{
  width:100%;
  height:100vh;
  position: fixed;
  top:0;
  left:0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* ---------------------------Header--------------- */
/* Hide scrollbars but allow scrolling */
.hide-scrollbar::-webkit-scrollbar {
  display: none;
}
.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Search icon positioning - moved to right side */
.search-container {
  position: relative;
  display: flex;
  align-items: center;
}

.mobile-search-align {
  width: calc(100% - 20px);
  margin-left: auto;
  margin-right: 0;
}

.search-icon-container {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

/* Notification and profile styling from navbar */
.notification-icons {
  display: flex;
  align-items: center;
}

.notification-icon {
  transition: transform 0.2s;
  position: relative;
}

.notification-icon:hover {
  transform: scale(1.1);
}

.badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #4DA3FF;
  color: white;
  border-radius: 9999px;
  width: 16px;
  height: 16px;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.profile-container {
  display: flex;
  align-items: center;
  padding-left: 0.5rem;
  color: white;
}

.profile-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.online-indicator {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  border: 2px solid #1b224b;
}

.profile-info {
  display: flex;
  align-items: center;
}

.profile-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.dropdown-icon {
  opacity: 0.8;
  transition: transform 0.2s;
}

/* User controls styling for all screen sizes */
.mobile-icon {
  font-size: 1.25rem;
}

/* Desktop specific icon sizing */
@media (min-width: 768px) {
  .icon-sm {
    width: 28px;
    height: 28px;
  }
  
  .mobile-notification-btn {
    padding: 1px;
  }
}

.mobile-user-profile {
  transition: background-color 0.2s;
  min-width: 180px;
}

.mobile-user-profile:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.mobile-avatar {
  width: 36px;
  height: 36px;
}

.mobile-username {
  max-width: 130px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.95rem;
}

/* Common styles for both desktop and mobile */
.header-stats-container {
  position: relative;
  width: 90%;
  max-width: 1100px;
  margin: -30px auto 20px;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  width: 100%;
}

.stat-item {
  background-color: white;
  border: 1px solid #E0E2E7;
  border-radius: 12px;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.stat-icon {
  background-color: #e6f0ff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}

.stat-icon img {
  width: 24px;
  height: 24px;
}

.stat-content {
  flex: 1;
  min-width: 0; /* Important for text overflow handling */
}

.stat-label {
  color: #8C94A3;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.stat-value {
  color: #22223B;
  font-size: 1rem;
  font-weight: 800;
}

/* Mobile-specific styles */
@media (max-width: 991px) {
  .header-stats-container {
    width: 95%;
  }
  
  .stats-grid {
    gap: 12px;
  }
  
  .stat-item {
    padding: 10px 8px;
  }
  
  .stat-icon {
    width: 35px;
    height: 35px;
    min-width: 35px;
    margin-right: 10px;
  }
  
  .stat-icon img {
    width: 20px;
    height: 20px;
  }
  
  .stat-label {
    font-size: 0.7rem;
  }
  
  .stat-value {
    font-size: 0.9rem;
  }
  
  .search-icon-container {
    right: 8px;
  }
  
  .search-icon {
    font-size: 0.85rem;
  }
}

/* Small tablets and large phones */
@media (max-width: 767px) {
  .mobile-header {
    padding-top: 4px;
    padding-bottom: 18px;
    border-radius: 0;
  }
  
  .mobile-user-controls {
    margin-top: 3px;
  }
  
  .mobile-icon {
    font-size: 1.1rem;
  }
  
  .mobile-search-align {
    width: calc(100% - 40px);
    margin-left: auto;
    margin-top: 0;
    margin-bottom: 1px;
  }
  
  .notification-icons {
    gap: 0.25rem; /* Reduce space between notification icons on mobile */
  }
  
  .badge {
    width: 14px;
    height: 14px;
    font-size: 0.6rem;
    top: -4px;
    right: -4px;
  }
  
  .profile-avatar {
    width: 1.75rem;
    height: 1.75rem;
  }
  
  .profile-container {
    margin-left: 0.5rem;
  }
  
  .online-indicator {
    width: 6px;
    height: 6px;
    bottom: 0;
    right: 0;
  }
  
  .mobile-user-profile {
    padding: 6px 12px;
    min-width: 160px;
  }
  
  .mobile-username {
    font-size: 0.85rem;
    max-width: 110px;
  }
  
  .header-stats-container {
    margin-top: 15px; /* Changed from negative to positive margin to position below header */
    margin-bottom: 15px;
    width: 92%;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .stat-item {
    padding: 10px 8px;
  }
  
  .stat-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
  
  .stat-icon img {
    width: 18px;
    height: 18px;
  }
  
  .stat-label {
    font-size: 0.7rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .stat-value {
    font-size: 0.85rem;
  }
  
  .search-container {
    width: 100%;
  }
  
  .search-icon-container {
    right: 8px;
  }
  
  .search-icon {
    font-size: 0.8rem;
  }
}

/* Small phones */
@media (max-width: 479px) {
  .mobile-header {
    padding-top: 12px;
    padding-bottom: 16px;
    border-radius: 0;
  }
  
  .mobile-search-align {
    width: calc(100% - 30px);
  }
  
  .notification-icons {
    gap: 0.15rem; /* Further reduce gap for very small screens */
  }
  
  .badge {
    width: 12px;
    height: 12px;
    font-size: 0.55rem;
  }
  
  .notification-icon img {
    width: 18px;
    height: 18px;
  }
  
  .profile-avatar {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 0;
  }
  
  .profile-container {
    margin-left: 0.25rem;
  }
  
  .profile-name {
    font-size: 0.8rem;
  }
  
  .online-indicator {
    width: 5px;
    height: 5px;
    border-width: 1px;
  }
  
  .mobile-user-profile {
    padding: 5px 10px;
    min-width: 140px;
  }
  
  .mobile-username {
    font-size: 0.8rem;
    max-width: 95px;
  }
  
  .header-stats-container {
    width: 94%;
    margin-top: 12px;
  }
  
  .stats-grid {
    gap: 8px;
  }
  
  .stat-item {
    padding: 8px;
  }
  
  .stat-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    margin-right: 8px;
  }
  
  .stat-icon img {
    width: 16px;
    height: 16px;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  .stat-value {
    font-size: 0.75rem;
  }
  
  .search-icon-container {
    right: 7px;
  }
  
  .search-icon {
    font-size: 0.75rem;
  }
}

/* Extra small mobile devices */
@media (max-width: 360px) {
  .mobile-header {
    padding: 10px 10px 14px 10px;
  }
  
  .mobile-user-controls {
    gap: 5px;
  }
  
  .mobile-notification-btn {
    padding: 4px;
  }
  
  .mobile-icon {
    font-size: 0.9rem;
  }
  
  .mobile-badge {
    width: 14px;
    height: 14px;
    font-size: 7px;
    top: -4px;
    right: -4px;
  }
  
  .mobile-avatar {
    width: 30px;
    height: 30px;
  }
  
  .mobile-user-profile {
    padding: 4px 8px;
    min-width: 120px;
  }
  
  .mobile-username {
    font-size: 0.75rem;
    max-width: 80px;
  }
}