 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 :root {
     --primary-blue: #3B82F6;
     --primary-red: #EF4444;
     --text-dark: #1F2937;
     --text-gray: #6B7280;
     --text-light: #9CA3AF;
     --bg-white: #FFFFFF;
     --bg-light: #F9FAFB;
     --bg-hover: #F3F4F6;
     --bg-active: #EFF6FF;
     --border-color: #E5E7EB;
     --sidebar-width: 310px;
     --sidebar-collapsed: 72px;
     --transition-speed: 0.3s;
 }

 body {
     font-family: 'Plus Jakarta Sans', sans-serif;
     background-color: var(--bg-light);
     min-height: 100vh;
     background-color: #ffffff;
 }

 /* Sidebar */
 .sidebar {
     width: var(--sidebar-width);
     height: 100vh;
     background: var(--Gray-100, #F2F4F7);
     border-right: 1px solid var(--border-color);
     display: flex;
     flex-direction: column;
     position: fixed;
     left: 0;
     top: 0;
     transition: width var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
     z-index: 100;
 }

 .sidebar.collapsed {
     width: var(--sidebar-collapsed);
 }

 /* Header */
 .sidebar-header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px;
     border-bottom: 1px solid var(--border-color);
     min-height: 64px;
     overflow: hidden;
 }

 .logo-container {
     display: flex;
     align-items: center;
     gap: 8px;
     overflow: hidden;
 }

 .logo-icon {
     width: 32px;
     height: 32px;
     min-width: 32px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .logo-icon svg {
     width: 28px;
     height: 28px;
 }

 .logo-text {
     display: flex;
     align-items: center;
     gap: 4px;
     white-space: nowrap;
     opacity: 1;
     transition: opacity var(--transition-speed) ease;
 }

 .sidebar.collapsed .logo-text {
     opacity: 0;
     pointer-events: none;
 }

 .logo-text .play-icon {
     color: var(--primary-red);
 }

 .logo-text span {
     font-weight: 700;
     font-size: 16px;
     color: var(--text-dark);
 }

 .logo-text .one {
     color: var(--primary-red);
 }

 .toggle-btn {
     width: 36px;
     height: 36px;
     min-width: 36px;
     border: 0 !important;
     background: transparent !important;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: all 0.2s ease;
 }

 .toggle-btn:hover {
     background: var(--bg-hover);
     border-color: var(--text-light);
 }

 .toggle-btn svg {
     width: 18px;
     height: 18px;
     color: var(--text-gray);
     transition: transform var(--transition-speed) ease;
 }

 .sidebar.collapsed .toggle-btn svg {
     transform: rotate(180deg);
 }

 /* User Profile */
 .user-profile {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 16px;
     margin: 12px;
     background: var(--bg-light);
     border-radius: 12px;
     overflow: hidden;
 }

 .user-avatar {
     width: 40px;
     height: 40px;
     min-width: 40px;
     border-radius: 100px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .user-avatar img {
     width: 40px;
     height: auto;
     object-fit: cover;
 }

 .user-info {
     flex: 1;
     min-width: 0;
     opacity: 1;
     transition: opacity var(--transition-speed) ease;
 }

 .sidebar.collapsed .user-info {
     opacity: 0;
     pointer-events: none;
 }

 .user-name {
     color: var(--Primary-Color-800, #1E38CB);
     font-family: "Reddit Sans";
     font-size: 14px;
     font-style: normal;
     font-weight: 500;
     line-height: 140%;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .user-email {
     color: var(--Gray-600, #475467);
     font-family: "Reddit Sans";
     font-size: 12px;
     font-style: normal;
     font-weight: 400;
     line-height: 140%;
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .user-settings {
     width: 32px;
     height: 32px;
     min-width: 32px;
     border: none;
     background: transparent;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 6px;
     transition: background 0.2s ease, opacity var(--transition-speed) ease;
 }

 .sidebar.collapsed .user-settings {
     opacity: 0;
     pointer-events: none;
 }

 .user-settings:hover {
     background: var(--bg-hover);
 }

 .user-settings svg {
     width: 18px;
     height: 18px;
     color: var(--text-light);
 }

 /* Navigation */
 .nav-section {
     flex: 1;
     overflow-y: auto;
     overflow-x: hidden;
     padding: 8px 12px;
 }

 .nav-item {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px;
     border-radius: 10px;
     cursor: pointer;
     transition: all 0.2s ease;
     margin-bottom: 4px;
     position: relative;
 }

 .nav-item:hover {
     background: #EAECFE;
 }

 .nav-item.active {
     background: #EAECFE;
 }

 .nav-icon {
     width: 22px;
     height: 22px;
     min-width: 22px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .nav-icon svg {
     width: 20px;
     height: 20px;
     color: var(--text-gray);
     transition: color 0.2s ease;
 }

 .nav-item.active .nav-icon svg {
     color: var(--primary-blue);
 }

 .nav-text {
     color: var(--Gray-700, #344054);
     font-family: "Reddit Sans";
     font-size: 14px;
     font-style: normal;
     font-weight: 400;
     line-height: 140%;
     /* 19.6px */
     white-space: nowrap;
     opacity: 1;
     transition: opacity var(--transition-speed) ease, width var(--transition-speed) ease;
     overflow: hidden;
 }

 .sidebar.collapsed .nav-text {
     opacity: 0;
     width: 0;
     pointer-events: none;
 }

 .nav-item.active .nav-text {
     color: var(--primary-blue);
     font-weight: 600;
 }

 /* Section Divider */
 .nav-divider {
     padding: 16px 12px 8px;
     overflow: hidden;
 }

 .divider-text {
     font-size: 11px;
     font-weight: 600;
     color: var(--text-light);
     text-transform: uppercase;
     letter-spacing: 0.5px;
     white-space: nowrap;
     opacity: 1;
     transition: opacity var(--transition-speed) ease;
 }

 .sidebar.collapsed .divider-text {
     opacity: 0;
 }

 .divider-line {
     height: 1px;
     background: var(--border-color);
     margin-top: 8px;
     opacity: 0;
     transition: opacity var(--transition-speed) ease;
 }

 .sidebar.collapsed .divider-line {
     opacity: 1;
 }

 /* Sign Out */
 .sidebar-footer {
     padding: 16px 12px;
     border-top: 1px solid var(--border-color);
     overflow: hidden;
 }

 .sign-out {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 12px;
     border-radius: 10px;
     cursor: pointer;
     transition: all 0.2s ease;
     position: relative;
 }



 /* Global Tooltip */
 .tooltip {
     position: fixed;
     background: var(--text-dark);
     color: white;
     padding: 8px 14px;
     border-radius: 6px;
     font-size: 13px;
     font-weight: 500;
     white-space: nowrap;
     opacity: 0;
     visibility: hidden;
     transition: opacity 0.15s ease, visibility 0.15s ease;
     z-index: 10000;
     pointer-events: none;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
 }

 .tooltip::before {
     content: '';
     position: absolute;
     left: -6px;
     top: 50%;
     transform: translateY(-50%);
     border: 6px solid transparent;
     border-right-color: var(--text-dark);
     border-left: none;
 }

 /* Main Content */
 .main-content {
     margin-left: var(--sidebar-width);
     flex: 1;
     padding: 16px 16px 30px;
     transition: margin-left var(--transition-speed) cubic-bezier(0.4, 0, 0.2, 1);
 }

 .sidebar.collapsed~.main-content {
     margin-left: var(--sidebar-collapsed);
 }

 .content-placeholder {
     background: var(--bg-white);
     border-radius: 16px;
     padding: 32px;
     border: 1px solid var(--border-color);
 }

 .content-placeholder h1 {
     font-size: 24px;
     font-weight: 700;
     color: var(--text-dark);
     margin-bottom: 8px;
 }

 .content-placeholder p {
     color: var(--text-gray);
     font-size: 14px;
 }

 /* Scrollbar */
 .nav-section::-webkit-scrollbar {
     width: 4px;
 }

 .nav-section::-webkit-scrollbar-track {
     background: transparent;
 }

 .nav-section::-webkit-scrollbar-thumb {
     background: var(--border-color);
     border-radius: 4px;
 }

 .nav-section::-webkit-scrollbar-thumb:hover {
     background: var(--text-light);
 }

 /* new css */
 button {
     background-color: transparent !important;
 }

 .dashboard_banner_inner {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .icon_btn {
     display: flex;
     padding: 12px 24px;
     justify-content: center;
     align-items: center;
     gap: 6px;
     border-radius: 4px;
     background: #2944D6;
     color: #ffffff !important;
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 600;
     line-height: 140%;
     position: relative;
     z-index: 1;
 }

 .annual_report {
     display: flex;
     justify-content: flex-end;
     align-items: center;
     gap: 16px;
 }

 .annual_report p {
     color: #344054;
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 500;
     line-height: 140%;
     margin: 0;
 }

 .total_number_inner {
     border-radius: 12px;
     background: #FFF;
     box-shadow: 0 3px 20px 0 rgba(5, 13, 51, 0.07);
     padding: 24px 32px;
 }

 .total_number_inner .row .col-md-4:last-child {
     border-right: 0;
 }

 .total_number_inner .col-md-4 {
     padding: 0 32px;
     border-right: 1px solid #dddddd;
 }

 .total_number_content {
     display: flex;
     justify-content: flex-start;
     gap: 24px;
     position: relative;
 }

 .total_number_content .link_arrow {
     position: absolute;
     right: 10px;
     top: 50%;
     transform: translateY(-50%);
 }

 .total_number_box h2 {
     color: #001782 !important;
     font-family: "Reddit Sans" !important;
     font-size: 33px !important;
     font-style: normal !important;
     font-weight: 600 !important;
     line-height: 120% !important;
     margin: 0 0 4px !important;
 }

 .total_number_box p {
     color: var(--Gray-600, #475467);
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 500;
     line-height: 140%;
     margin: 0;
 }


 .testimonial-slider {
     position: relative;
     padding: 0;
 }

 .testimonial-card {
     border-radius: 8px;
     border: 1px solid rgba(234, 236, 240, 0.81);
     background: #F9FAFB;
     border-radius: 12px;
     padding: 16px;
     margin: 0 15px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
     min-height: 320px;
     display: flex !important;
     flex-direction: column;
     justify-content: space-between;
 }

 .quote-icon {
     color: #4A90E2;
     font-size: 3rem;
     font-weight: bold;
     margin-bottom: 15px;
     line-height: 1;
 }

 .testimonial-text {
     color: var(--Gray-600, #475467);
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 140%;
     margin-bottom: 24px;
     flex-grow: 1;
 }

 .testimonial-author {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-top: auto;
 }

 .author-image {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     background: transparent;
     overflow: hidden;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 1.5rem;
     font-weight: bold;
     flex-shrink: 0;
 }

 .author-info {
     flex-grow: 1;
 }

 .author-name {
     color: var(--Gray-800, #1D2939);
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 600;
     line-height: 140%;
     margin-bottom: 0;
 }

 .author-details {
     font-size: 0.9rem;
     color: #777;
 }

 .mycontributions,
 .students_supported,
 .video_content_box,
 .achieved {
     border-radius: 12px;
     border: 2px solid #F2F4F7;
     background: #F2F4F7;
     padding: 24px;
     height: 100%;
 }

 .sec_title {
     color: #1D2939 !important;
     font-family: "Reddit Sans" !important;
     font-size: 19px !important;
     font-style: normal !important;
     font-weight: 600 !important;
     line-height: 140% !important;
 }


 .contribution_main,
 .videos_main,
 .total_number,
 .dashboard_banner {
     margin-bottom: 32px;
 }

 .empty_content {
     text-align: center;
 }

 .empty_content .icon {
     margin-bottom: 24px;
     display: block;
 }

 .empty_content h3 {
     color: #001782;
     text-align: center;
     font-family: "Reddit Sans";
     font-size: 23px;
     font-style: normal;
     font-weight: 600;
     line-height: 140%;
     margin-bottom: 8px;
 }

 .empty_content p {
     color: var(--Gray-600, #475467);
     text-align: center;
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 500;
     line-height: 140%;
     margin: 0;
 }

 .explore_btn {
     margin-top: 24px;
 }

 .explore_btn a {
     border-radius: 4px;
     background: var(--Primary-Color-500, #3A58EF);
     padding: 12px 24px;
     width: 220px;
     color: #FFF;
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 600;
     line-height: 140%;
     display: inline-block;
 }

 .achieved ul {
     margin: 0;
     padding: 0;
     list-style: none;
 }

 .achieved li {
     border-radius: 6px;
     background: #FFF;
     color: #475467;
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 140%;
     display: flex;
     padding: 8px 12px;
     align-items: center;
     gap: 8px;
     margin-bottom: 8px;
 }

 .achieved li:last-child {
     margin-bottom: 0;
 }

 .achieved .sec_title span {
     color: #2944D6;
     font-weight: 600;
 }

 .testimonial .sec_title {
     margin-bottom: 16px;
 }

 .testimonial .slick-list {
     margin: 0 -15px;
 }

 .slick-prev.slick-arrow {
     width: 24px;
     height: 24px;
     position: absolute;
     right: 32px !important;
     top: -28px;
     left: inherit !important;
     background-image: url(images/arrow-left.svg);
     background-position: center center;
     background-repeat: no-repeat;
     font-size: 0;
     background-color: transparent;
 }

 .slick-next.slick-arrow {
     width: 24px;
     height: 24px;
     position: absolute;
     right: 0 !important;
     top: -28px;
     left: inherit !important;
     background-image: url(images/arrow-right.svg);
     background-position: center center;
     background-repeat: no-repeat;
     font-size: 0;
     background-color: transparent;
 }

 .social-eye-achievements {
     border-radius: 12px;
     border: 2px solid var(--Gray-100, #F2F4F7);
     background: #F0F4F7;
     padding: 16px;
     margin-bottom: 32px;
 }

 .social-eye-achievements .section-title {
     color: #1D2939 !important;
     font-family: "Reddit Sans" !important;
     font-size: 19px !important;
     font-style: normal !important;
     font-weight: 500 !important;
     line-height: 140% !important;
     margin-bottom: 16px !important;
 }

 .social-eye-achievements .section-title span {
     color: #001782;
     font-weight: 600;
 }

 .social-eye-achievements .stats-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 8px;
     margin-bottom: 8px;
 }

 .social-eye-achievements .stat-card {
     border-radius: 6px;
     background: var(--white, #FFF);
     padding: 8px 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
 }

 .social-eye-achievements .stat-card .stat-number {
     color: #001782;

     /* SemiBold/H4 - Semibold */
     font-family: "Reddit Sans";
     font-size: 23px;
     font-style: normal;
     font-weight: 600;
     line-height: 140%;
     /* 32.2px */
     margin-bottom: 4px;
 }

 .social-eye-achievements .stat-card .stat-description {
     color: var(--Gray-600, #475467);

     /* Regular/Text - Regular */
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 140%;
     /* 22.4px */
     margin: 0;
 }

 .social-eye-achievements .bottom-row {
     display: grid;
     grid-template-columns: 1fr 3fr;
     gap: 20px;
 }

 .social-eye-achievements .bottom-row .stat-card {
     grid-column: 1;
 }

 @media (max-width: 992px) {
     .social-eye-achievements .stats-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     .social-eye-achievements .bottom-row {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 576px) {
     .social-eye-achievements {
         padding: 24px;
     }

     .social-eye-achievements .stats-grid {
         grid-template-columns: 1fr;
     }

     .social-eye-achievements .bottom-row {
         grid-template-columns: 1fr;
     }

     .social-eye-achievements .stat-card .stat-number {
         font-size: 28px;
     }
 }




 .direct-contribution {
     border-radius: 12px;
     background: var(--Primary-Color-50, #EAECFE);
     padding: 16px;
     margin-bottom: 32px;
 }

 .direct-contribution .contribution-title {
     color: var(--Gray-800, #1D2939);
     font-family: "Reddit Sans";
     font-size: 19px;
     font-style: normal;
     font-weight: 500;
     line-height: 140%;
     margin: 0;
 }

 .direct-contribution .contribution-description {
     color: var(--Gray-600, #475467);
     font-family: "Reddit Sans";
     font-size: 14px;
     font-style: normal;
     font-weight: 400;
     line-height: 140%;
     /* 19.6px */
     margin-bottom: 16px;
 }

 .direct-contribution .donate-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     background-color: #3b5bdb;
     color: #ffffff;
     border: none;
     padding: 12px 24px;
     border-radius: 8px;
     font-size: 15px;
     font-weight: 500;
     cursor: pointer;
     text-decoration: none;
     transition: background-color 0.2s ease;
 }

 .direct-contribution .donate-btn:hover {
     background-color: #2f4ac0;
 }

 .direct-contribution .donate-btn svg {
     width: 16px;
     height: 16px;
 }

 @media (max-width: 576px) {
     .direct-contribution {
         padding: 24px;
     }

     .direct-contribution .contribution-title {
         font-size: 18px;
     }

     .direct-contribution .contribution-description {
         font-size: 14px;
     }
 }

 .my-contributions {
     padding: 16px;
     border-radius: 12px;
     border: 2px solid var(--Gray-100, #F2F4F7);
     background: #F6F8FA;
     height: 100%;
 }

 .my-contributions .section-title {
     color: var(--Gray-800, #1D2939);
     font-family: "Reddit Sans";
     font-size: 19px;
     font-style: normal;
     font-weight: 500;
     line-height: 140%;
     margin: 0 0 16px;
 }

 .my-contributions .total-card {
     border-radius: 12px;
     background: #FFF;
     box-shadow: 0 3px 20px 0 rgba(5, 13, 51, 0.07);
     padding: 16px 32px;
     text-align: center;
     margin-bottom: 32px;
 }

 .my-contributions .total-amount {
     color: #001782;
     font-family: "Reddit Sans";
     font-size: 33px;
     font-style: normal;
     font-weight: 600;
     line-height: 120%;
     margin-bottom: 8px;
 }

 .my-contributions .total-label {
     color: var(--Gray-600, #475467);
     /* Medium/Text - Medium */
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 500;
     line-height: 140%;
     /* 22.4px */
     margin: 0;
 }

 .my-contributions .stats-row {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .my-contributions .stat-item {
     flex: 1;
     text-align: center;
     padding: 0 20px;
 }

 .my-contributions .stat-item:first-child {
     border-right: 1px solid #d0d5dd;
 }

 .my-contributions .stat-number {
     color: #1D2939;
     font-family: "Reddit Sans";
     font-size: 33px;
     font-style: normal;
     font-weight: 600;
     line-height: 120%;
     margin-bottom: 4px;
 }

 .my-contributions .stat-label {
     color: #475467;
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 140%;
     margin: 0;
 }

 @media (max-width: 480px) {
     .my-contributions {
         padding: 24px 20px;
     }

     .my-contributions .total-amount {
         font-size: 34px;
     }

     .my-contributions .stat-number {
         font-size: 28px;
     }

     .my-contributions .stat-item {
         padding: 0 12px;
     }

     .my-contributions .stat-label {
         font-size: 13px;
     }
 }




 /* Slick Slider Customization - Gap between slides */
 .video-slider {
     margin: 0;
 }

 .video-slider .slick-list {
     margin: 0 -15px;
 }

 .video-slider .slick-slide {
     padding: 0 15px;
 }

 .video-slider .slick-track {
     display: flex;
 }

 .video-card {
     border-radius: 16px;
     overflow: hidden;
     position: relative;
     aspect-ratio: 16/10;
     cursor: pointer;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     outline: none;
 }

 .video-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 40px rgba(26, 39, 68, 0.3);
 }

 .card-content {
     flex: 1;
     padding-left: 20px;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
 }

 .play-btn {
     width: 56px;
     height: 40px;
     background: #ff0000 !important;
     border-radius: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 16px;
     transition: transform 0.3s ease, background 0.3s ease;
     cursor: pointer;
     border: none;
     outline: none;
 }

 .play-btn:hover {
     transform: scale(1.1);
     background: #cc0000;
 }

 .video-card:hover .card-collage .play-btn {
     transform: scale(1.1);
 }

 .play-btn svg {
     width: 20px;
     height: 20px;
     color: white;
     fill: white;
 }

 .card-title {
     color: white;
     font-size: 22px;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 8px;
 }

 .card-subtitle {
     color: rgba(255, 255, 255, 0.7);
     font-size: 14px;
     font-weight: 400;
     line-height: 1.4;
 }

 /* Card Type 2: Full Video Thumbnail */
 .card-thumbnail {
     position: relative;
     height: 100%;
     border-radius: 8px;
     overflow: hidden;
 }

 .card-thumbnail img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .card-thumbnail .play-btn {
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
     margin-bottom: 0;
 }

 .card-thumbnail .play-btn:hover,
 .card-thumbnail:hover .play-btn {
     transform: translate(-50%, -50%) scale(1.1);
 }

 .thumbnail-overlay {
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.2);
     pointer-events: none;
 }

 @keyframes modalFadeIn {
     from {
         opacity: 0;
         transform: scale(0.9);
     }

     to {
         opacity: 1;
         transform: scale(1);
     }
 }

 /* Responsive */
 @media (max-width: 1024px) {
     .card-title {
         font-size: 18px;
     }

     .card-subtitle {
         font-size: 12px;
     }

     .video-slider .slick-list {
         margin: 0 -10px;
     }

     .video-slider .slick-slide {
         padding: 0 10px;
     }
 }

 @media (max-width: 640px) {
     .card-title {
         font-size: 16px;
     }

     .card-subtitle {
         font-size: 11px;
     }

     .modal-content {
         width: 95%;
     }

     .modal-close {
         top: -45px;
         right: 5px;
     }

     .card-collage {
         padding: 16px;
     }

     .play-btn {
         width: 48px;
         height: 34px;
     }

     .video-slider .slick-list {
         margin: 0 -8px;
     }

     .video-slider .slick-slide {
         padding: 0 8px;
     }
 }

 .student_profile_icon img {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     transition: .4s ease-out;
 }

 #maincontent .container {
     max-width: 100% !important;
     padding-left: 0;
     padding-right: 0;
 }

 .dashboard_banner {
     margin-left: -16px;
     margin-right: -16px;
 }

 #maincontent .dashboard_banner .container {
     padding-left: 20px;
     padding-right: 20px;
 }

 .my_contributions {
     margin-bottom: 32px;
 }

 .video_sldiermain {
     margin-bottom: 32px;
     border-radius: 12px;
     border: 2px solid var(--Gray-100, #F2F4F7);
     background: #F0F4F7;
     padding: 16px;
 }

 .video_sldiermain .sec_title {
     margin-bottom: 16px;
 }

 .studentbox_main {
     border-radius: 12px;
     border: 2px solid var(--Gray-100, #F2F4F7);
     background: #F6F8FA;
     padding: 16px;
 }

 .studentbox_main .title_box {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 16px;
     padding-right: 80px;
 }

 .studentbox_main .slick-next.slick-arrow,
 .studentbox_main .slick-prev.slick-arrow {
     top: -34px;
 }

 .studentbox_main .title_box h3 {
     color: #1D2939;
     font-family: "Reddit Sans";
     font-size: 19px;
     font-style: normal;
     font-weight: 500;
     line-height: 140%;
 }

 .studentbox_main .title_box a {
     color: var(--Primary-Color-500, #3A58EF);
     font-family: "Reddit Sans";
     font-size: 14px;
     font-style: normal;
     font-weight: 600;
     line-height: 140%;
     /* 19.6px */
     text-decoration-line: underline;
     text-decoration-style: solid;
     text-decoration-skip-ink: none;
     text-decoration-thickness: auto;
     text-underline-offset: auto;
     text-underline-position: from-font;
 }

 .studentbox_main .slick-list {
     margin: 0 -8px;
 }

 .student_list_content {
     background-color: #ffffff;
     margin: 0 8px;
 }

 .student_name_img {
     background-color: #EAECFE;
 }


 .side-nav-menu li.nav-item ul.dropdown-menu {
     padding-left: 36px !important;
     padding-right: 5px !important;
     position: relative !important;
     margin: 15px 0 !important;
 }

 .side-nav-menu li.nav-item ul.dropdown-menu:before {
     position: absolute !important;
     left: 16px !important;
     ;
     top: 16px !important;
     ;
     bottom: 32px !important;
     ;
     width: 2px !important;
     ;
     background: #EAECF0 !important;
     content: "" !important;
     z-index: 1 !important;
     ;
 }

 .side-nav-menu li.nav-item ul.dropdown-menu li:before {
     position: absolute;
     content: "";
     background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="20" viewBox="0 0 16 20" fill="none"><mask id="path-1-inside-1_13416_35962" fill="white"><path d="M0 0H16V20H6C2.68629 20 0 17.3137 0 14V0Z"/></mask><path d="M0 0H16H0ZM16 22H6C1.58172 22 -2 18.4183 -2 14H2C2 16.2091 3.79086 18 6 18H16V22ZM6 22C1.58172 22 -2 18.4183 -2 14V0H2V14C2 16.2091 3.79086 18 6 18V22ZM16 0V20V0Z" fill="%23EAECF0" mask="url(%23path-1-inside-1_13416_35962)"/></svg>');
     width: 16px;
     height: 20px;
     left: -20px;
     top: 4px;
 }

 .side-nav .side-nav-inner .side-nav-menu>li.dropdown ul.dropdown-menu:after {
     content: "";
     top: 50%;
     left: 27px;
     width: 2px;
     background: #1F2A37;
     position: absolute;
     z-index: 999999;
     height: 100%;
     transform: translateY(-50%);
     visibility: hidden;
     opacity: 0;
 }

 .video-modal {
     position: fixed;
     inset: 0;
     display: none;
     z-index: 9999;
 }

 .video-modal.active {
     display: block;
 }

 .video-modal-overlay {
     position: absolute;
     inset: 0;
     background: rgba(0, 0, 0, 0.8);
 }

 .video-modal-content {
     position: absolute;
     top: 50%;
     left: 50%;
     width: 90%;
     max-width: 800px;
     aspect-ratio: 16/9;
     transform: translate(-50%, -50%);
     background: #000;
     border-radius: 12px;
     overflow: hidden;
 }

 .video-modal-content iframe {
     width: 100%;
     height: 100%;
 }

 .video-modal-close {
     position: absolute;
     top: -45px;
     right: 0;
     background: #fff;
     color: #000;
     width: 36px;
     height: 36px;
     border-radius: 50%;
     border: none;
     font-size: 26px;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 /* my profile modal */
 button.user-settings {
     padding: 0;
 }

 #myprofile .modal-header {
     padding: 24px 24px 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     border: 0;
 }

 #myprofile .modal-header .modal-title {
     color: var(--Gray-800, #1D2939);
     font-family: "Reddit Sans";
     font-size: 23px;
     font-style: normal;
     font-weight: 600;
     line-height: 140%;
     margin: 0;
 }

 #myprofile .modal-body {
     padding: 24px;
 }

 .save_btn_box .btn-primmary {
     border-radius: 4px;
     background: #EAECFE;
     display: flex;
     padding: 12px 24px;
     justify-content: center;
     align-items: center;
 }

 #myprofile .nav-tabs {
     margin: 0 0 24px;
     justify-content: space-between;
 }

 #myprofile .nav-item {
     padding: 0;
     margin: 0 !important;
     background: transparent !important;
 }

 #myprofile .nav-link {
     border: 0;
     height: 42px;
     color: #475467;
     font-family: "Reddit Sans";
     font-size: 14px;
     font-style: normal;
     font-weight: 400;
     line-height: 140%;
     background-color: transparent;
 }

 #myprofile .nav-link.active {
     border-bottom: 2px solid #3A58EF !important;
     color: #3A58EF !important;
 }

 #myprofile .save_btn_box {
     margin-top: 32px;
 }

 #myprofile .save_btn_box button {
     border-radius: 4px;
     background: #EAECFE !important;
     display: flex;
     padding: 12px 24px;
     justify-content: center;
     align-items: center;
     color: #8993A0 !important;
     font-family: "Reddit Sans";
     font-size: 16px;
     font-style: normal;
     font-weight: 600;
     line-height: 140%;
     width: 100%;
     border: 0;
 }

 .upload_profile_photo {
     display: flex;
     justify-content: flex-start;
     gap: 10px;
     margin-bottom: 16px;
 }

 .upload_profile_photo .profile_picbox {
     width: 80px;
     height: 80px;
     border-radius: 100%;
     overflow: hidden;
 }

 .upload_profile_photo .profile_picbox img {
     max-width: 80px;
     width: 100%;
     height: auto;
 }

 .upload_profile_photo .input-group {
     align-items: center;
 }

 .upload_profile_photo .input-group .form-control {
     opacity: 0;
     visibility: hidden;
 }

 .upload_profile_photo .input-group-text {
     border-radius: 4px;
     border: 1px solid var(--Gray-200, rgba(234, 236, 240, 0.81));
     background: var(--Gray-50, #F9FAFB);
     padding: 4px 8px;
     display: flex;
     padding: 4px 8px;
     justify-content: center;
     align-items: center;
     gap: 10px;
 }

 #myprofile {
     opacity: 0;
     display: none;
     transition: opacity 0.25s ease;
 }

 #myprofile.show-profile {
     opacity: 1;
     display: block;
 }

 /* For alert text */
 .form-message {
     margin-top: 10px;
     font-size: 14px;
     display: none;
 }

 .form-message.success {
     color: #16a34a;
     /* green */
 }

 .form-message.error {
     color: #dc2626;
     /* red */
 }