/*
* demo.css
* File include item demo only specific css only
******************************************************************************/

.menu .app-brand.demo {
    height: auto;
    text-align: center;
    justify-content: center;
    margin: 19px 0;
    border-bottom: 2px dotted #d6d6d6;
    padding-bottom: 18px;
}

.app-brand-logo.demo svg {
    width: 22px;
    height: 38px;
}

.app-brand-text.demo {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    text-transform: lowercase;
}


.otp-boxes {
    display: flex;
    gap: 16px;
    margin-bottom: 1.5rem;
}.container-scetion-all .otp-boxes input {
    border-radius: 16px;
}
span#timer {
    color: #003a7a;
    font-weight: 800;
}
.resend-row {
    font-weight: 500;
    color: #2a2a2a;
    margin-top: 25px;
    text-align: left;
}
.otp-boxes input {
    width: 58px;
}

/* ! For .layout-navbar-fixed added fix padding top tpo .layout-page */
/* Detached navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-horizontal):not(.layout-without-menu) .layout-page {
    padding-top: 76px !important;
}

/* Default navbar */
.layout-navbar-fixed .layout-wrapper:not(.layout-without-menu) .layout-page {
    padding-top: 64px !important;
}

/* Navbar page z-index issue solution */
.content-wrapper .navbar {
    z-index: auto;
}

/*
* Content
******************************************************************************/

.demo-blocks>* {
    display: block !important;
}

.demo-inline-spacing>* {
    margin: 1rem 0.375rem 0 0 !important;
}

/* ? .demo-vertical-spacing class is used to have vertical margins between elements. To remove margin-top from the first-child, use .demo-only-element class with .demo-vertical-spacing class. For example, we have used this class in forms-input-groups.html file. */
.demo-vertical-spacing>* {
    margin-top: 1rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-lg>* {
    margin-top: 1.875rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-lg.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.demo-vertical-spacing-xl>* {
    margin-top: 5rem !important;
    margin-bottom: 0 !important;
}

.demo-vertical-spacing-xl.demo-only-element> :first-child {
    margin-top: 0 !important;
}

.rtl-only {
    display: none !important;
    text-align: left !important;
    direction: ltr !important;
}

[dir='rtl'] .rtl-only {
    display: block !important;
}

/*
* Layout demo
******************************************************************************/

.layout-demo-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 1rem;
}

.layout-demo-placeholder img {
    width: 900px;
}

.layout-demo-info {
    text-align: center;
    margin-top: 1rem;
}

/*video css*/
/*dashboard-page*/
.layout-reels {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 54px;
    max-width: 100%;
    margin: 30px auto;
    padding: 0px 15px;
    width: 100%;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sidebar-label {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #003A7A;
    text-transform: uppercase;
    padding: 0 4px 8px;
    border-bottom: 2px solid #003A7A;
    margin-bottom: 4px;
}

.video-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 12px rgba(0, 39, 83, 0.08);
    border: 1px solid rgba(0, 39, 83, 0.06);
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 39, 83, 0.15);
}


.thumb-wrap {
    position: relative;
    overflow: hidden;
}

.thumb-wrap video {
    width: 100%;
    height: 140px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.video-card:hover .thumb-wrap video {
    transform: scale(1.06);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 38px;
    height: 38px;
    background: rgba(0, 39, 83, 0.75);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    border: 2px solid rgba(94, 184, 255, 0.6);
    transition: background 0.2s;
}

.play-btn svg {
    margin-left: 2px;
}

.video-info {
    padding: 10px 12px 12px;
}

.video-title {
    font-size: 12px;
    font-weight: 600;
    color: #0d1b2e;
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
}

.video-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    color: #6b7a8f;
}

.video-meta-dot {
    width: 3px;
    height: 3px;
    background: #6b7a8f;
    border-radius: 50%;
}

.channel-row {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}

.channel-avatar {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid #003A7A;
}

.channel-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    padding: 1px;
}

.channel-name {
    font-size: 10px;
    font-weight: 500;
    color: #003A7A;
}

.center-feed {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.post-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 39, 83, 0.1);
    border: 1px solid rgba(0, 39, 83, 0.07);
    animation: fadeUp 0.5s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.post-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
}

.post-user {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.user-avatar-wrap {
    position: relative;
}

.user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #003A7A;
    padding: 2px;
    cursor: pointer;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    background: #e0e8f0;
}

.user-name {
    font-size: 14px;
    font-weight: 600;
    color: #0d1b2e;
}

.user-location {
    font-size: 11px;
    color: #6b7a8f;
    display: flex;
    align-items: center;
    gap: 3px;
}

.post-options {
    cursor: pointer;
    color: #6b7a8f;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
}

.post-options:hover {
    background: #f0f4f8;
}

.post-image-wrap {
    position: relative;
    overflow: hidden;
}

.post-image-wrap video {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.post-image-wrap:hover video {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0, 39, 83, 0.35) 100%);
    pointer-events: none;
}

.location-tag {
    position: absolute;
    bottom: 14px;
    left: 16px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 600;
    color: #003A7A;
    display: flex;
    align-items: center;
    gap: 4px;
    backdrop-filter: blur(6px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


.post-actions {
    padding: 12px 16px 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.action-left {
    display: flex;
    gap: 16px;
    align-items: center;
}

.action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 10px;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #4a5568;
    font-weight: 500;
}

/* .action-btn:hover {
  background: #f0f4f8;
  transform: scale(1.05);
} */

.action-btn.liked svg {
    fill: #e53e3e;
    stroke: #e53e3e;
}

.action-btn.liked {
    color: #e53e3e;
}

.action-btn.bookmarked svg {
    fill: #003A7A;
    stroke: #003A7A;
}

.post-likes {
    padding: 0 16px 6px;
    font-size: 13px;
    font-weight: 600;
    color: #0d1b2e;
    text-align: left;
}

.post-caption {
    padding: 0 9px 5px;
    font-size: 14px;
    color: #2d3748;
    line-height: 1.5;
    text-align: left;
}

.action-btn.likeBtn {
    padding: 0;
}

.action-btn.likeBtn i {
    font-size: 30px;
    padding: 0;
    margin-top: 4px;
}

.post-caption strong {
    color: #0d1b2e;
    font-weight: 600;
}

.post-tags {
    color: #003A7A;
    font-weight: 500;
}

.post-time {
    padding: 0 16px 21px;
    font-size: 12px;
    color: #5f5f5f;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    text-align: left;
    font-weight: 500;
}

.suggest-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 2px 12px rgba(0, 39, 83, 0.08);
    border: 1px solid rgba(0, 39, 83, 0.06);
}

.suggest-title {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #003A7A;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.suggest-user {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.suggest-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    flex-shrink: 0;
    object-fit: cover;
}

.suggest-info {
    flex: 1;
    min-width: 0;
}

.suggest-name {
    font-size: 12px;
    font-weight: 600;
    color: #0d1b2e;
}

.suggest-sub {
    font-size: 10px;
    color: #6b7a8f;
}


.grid-top-videos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reels-search-bar {
    width: 100%;
    padding: 14px 0 18px;
    margin-bottom: 4px;
}

.reels-search-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reels-search-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1.5px solid rgba(0, 39, 83, 0.13);
    border-radius: 50px;
    padding: 0 16px;
    height: 48px;
    box-shadow: 0 4px 18px rgba(0, 39, 83, 0.09), 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: border-color 0.22s, box-shadow 0.22s;
}

.reels-search-wrap:focus-within {
    border-color: #003A7A;
    box-shadow: 0 4px 22px rgba(0, 39, 83, 0.16), 0 0 0 3px rgba(0, 39, 83, 0.07);
}

.reels-search-icon {
    color: #6b7a8f;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin-right: 10px;
    transition: color 0.2s;
}

.reels-search-wrap:focus-within .reels-search-icon {
    color: #003A7A;
}

.commmon-crads .reels-search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    font-weight: 500;
    color: #0d1b2e;
    letter-spacing: 0.1px;
    box-shadow: none;
    border-radius: 0;
    margin-bottom: 0;
    padding: 0;
    min-height: auto;
}

.reels-search-input::placeholder {
    color: #a0aec0;
    font-weight: 400;
}

.reels-search-clear {
    display: none;
    align-items: center;
    justify-content: center;
    background: #e8edf3;
    border: none;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    cursor: pointer;
    color: #6b7a8f;
    flex-shrink: 0;
    margin-left: 8px;
    transition: background 0.2s, color 0.2s;
}

.reels-search-clear:hover {
    background: #003A7A;
    color: #fff;
}

/*video css*/
.header {
    background: white;
    padding: 22px 34px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    margin-bottom: 11px;
}

.header h1 {
    font-size: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

.content {
    background: white;
    padding: 30px;
    border-radius: 10px;
}

.info-card {
    background: #f5f5f5;
    border-radius: 16px;
    padding: 21px 24px;
    margin-bottom: 30px;
    color: #000000;
}

.category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
}

.info-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    color: #000;
}

.info-description {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}


.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-box {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px 28px;
}

.stat-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
    font-weight: 600;
}

.stat-value {
    font-size: 24px;
    color: #1a1a1a;
    font-weight: 700;
}


.info-section {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 24px 26px;
}

.info-section-title {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
    margin-bottom: 20px;
    background: #101010;
    padding: 14px;
    border-radius: 8px;
    letter-spacing: .3px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-row:first-child {
    padding-top: 0;
}

.info-label {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}

.mentor-log .btn-primary2 {
    border-radius: 30px;
}

.info-value {
    font-size: 15px;
    color: #1a1a1a;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
    word-break: break-word;
}


.status-section {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 28px 32px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-label {
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.status-badge {
    background: #d4f4dd;
    color: #0d894f;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.total-section {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 28px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.total-value {
    font-size: 26px;
    color: #0066cc;
    font-weight: 700;
}


.logos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.logo-box {
    background: #f3f3f3;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.logo-title {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 20px;
    font-weight: 600;
}

.logo-image {
    width: 100%;
    max-width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    margin: 0 auto;
}

.simple-dashboard-heading span {
    text-align: left;
}





/*my-new-ads*/

.simple-dashboard-heading {
    width: 100%;
    background: #003A7A;
    color: #ffffff;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: .4px;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}

h2.main-heding-top {
    font-size: 26px;
    font-weight: 700;
    color: #000;
    border-bottom: 1px dashed #000;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

h4.figma-heading {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    border-bottom: 2px solid #003A7A;
    padding-bottom: 12px;
    font-size: 23px;
    letter-spacing: 0;
    text-transform: capitalize;
    font-weight: 700;
    color: #003A7A;
    margin-top: 28px;
}

h4.figma-heading i {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #003A7A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.form-step {
    display: none;
}

.form-step {
    background: #eaeef29e;
    margin: 21px;
}

.form-step.active {
    display: block;
}

.form-step:not(.active) {
    pointer-events: none;
    visibility: hidden;
}

button.btn.btn-primary-adds {
    background: #003A7A;
    color: #fff;
    border-radius: 32px;
    margin-top: 11px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .2px;
    margin-bottom: 15px;
}

.simple-dashboard-heading i {
    font-size: 21px;
    color: #003A7A;
    background: #ffffff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.div-all-boxes .card {
    border: none;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .15);
    overflow: hidden;
    background: #fff;
}


.div-all-boxes .card-header {
    color: #fff;
    font-weight: 600;
    font-size: 20px;
    padding: 10px 21px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, .25);
    background: #ffffff5c;
}

.icon-box i {
    font-size: 25px;
}

.div-all-boxes .card-body {
    padding: 20px;
    padding-top: 6px !important;
}

.div-all-boxes .card-body p {
    display: flex;
    justify-content: space-between;
    color: #000;
    margin-bottom: 4px;
    padding-bottom: 14px;
    border-bottom: 1px dashed #ccc;
    font-size: 15px;
    font-weight: 500;
    padding-top: 12px;
}

.div-all-boxes .card-body p:last-child {
    border-bottom: none;
}


.div-all-boxes .col-lg-4:nth-child(1) .card-header {
    background: linear-gradient(90deg, #38bdf8, #4f46e5);
}


.div-all-boxes .col-lg-4:nth-child(2) .card-header {
    background: linear-gradient(90deg, #d946ef, #ec4899);
}

.div-all-boxes .col-lg-4:nth-child(3) .card-header {
    background: linear-gradient(90deg, #2ec58e, #028d7e);
}

.div-all-boxes .col-lg-4:nth-child(4) .card-header {
    background: linear-gradient(90deg, #fbbf24, #f97316);
}


.div-all-boxes .col-lg-4:nth-child(5) .card-header {
    background: linear-gradient(90deg, #818cf8, #d946ef);
}

.div-all-boxes .col-lg-4:nth-child(6) .card-header {
    background: linear-gradient(90deg, #fb7185, #db2777);
}

@media (max-width: 768px) {
    .div-all-boxes .card-header {
        font-size: 16px;
    }

    button.btn.btn-primary-adds {
        font-size: 15px;
    }

    .layout-navbar.navbar-detached {
        padding: 14px 26px;
    }
}

.admin-profile {
    padding: 6px 10px;
}

.admin-info {
    line-height: 1.2;
}

.admin-name {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    padding-bottom: 3px;
    border-bottom: 1px solid #aeaeae;
}

.admin-role {
    font-size: 13px;
    color: #444444;
    padding-top: 3px;
    font-weight: 600;
}

.admin-chevron {
    font-size: 12px;
    color: #003A7A;
    margin-left: 4px;
}

.avatar img {
    width: 41px !important;
    height: 41px !important;
    border-radius: 50%;
    object-fit: contain;
    border: 2px solid #003A7A;
}

.btn-ad-asll {
    text-align: right;
}

a.btn.btn-sm.btn-view {
    background: #000;
    color: #fff;
    font-size: 14px;
    padding: 5px 19px;
    letter-spacing: .3px;
    font-weight: 500;
}

a.btn.btn-sm.btn-edits {
    background: #E3E3E3;
    color: #000;
    font-size: 14px;
    padding: 5px 19px;
    letter-spacing: .3px;
    font-weight: 600;
}

.btn-ad-asll i {
    font-size: 22px;
    margin-right: 0 !important;
}

/* .card-new-ads {
    padding-left: 14px;
    padding-right: 14px;
    border-radius: 12px;
    margin-top: 21px;
} */

.commmon-crads label {
    font-size: 16px;
    text-transform: capitalize;
    color: #000;
    font-weight: 600;
    margin-top: 8px;
    padding-bottom: 4px;
}

.commmon-crads input,
.commmon-crads select,
.commmon-crads textarea {
    background: #ffffff;
    color: #333;
    border: 1px solid #ffffff;
    box-shadow: none;
    border-radius: 7px;
    padding: 14px;
    margin-bottom: 9px;
    box-shadow: rgb(17 17 26 / 3%) 0px 0px 16px;
}

.commmon-crads input::placeholder,
.commmon-crads select::placeholder,
.commmon-crads textarea::placeholder {
    color: #717171;
    opacity: 1;
}

small.text-allows {
    color: #5c23cb;
    font-weight: 500;
}

.previews {
    margin-top: 7px;
    border: 1px solid;
    object-fit: contain;
}

.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 45px;
}

.select-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #666;
    font-size: 14px;
}

.upload-text {
    margin-top: 10px;
}

.register-here {
    font-size: 17px;
    font-weight: 600;
    color: #2b2b2b;
}

.register-here a {
    color: #000000;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.register-here a i {
    font-size: 14px;
}

label.upload-box strong {
    font-size: 20px;
}

.page-link {
    font-size: 21px;
    padding: 0;
    height: 35px;
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: #ddd;
    color: #373737;
}

.page-item.active span.page-link,
.page-item.active:hover span.page-link {
    background-color: #003A7A;
    color: #fff;
}

.page-item span.page-link {
    font-size: 16px;
}

.page-item .page-link {
    font-size: 16px;
}

img.preview-images {
    border: 2px solid #003A7A;
    margin-top: 15px;
    border-radius: 5px;
}

label.upload-box span {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    padding-top: 4px;
    text-transform: none;
}

label.upload-box {
    background: #ffffff;
    color: #333;
    border: 1px solid #ffffff;
    border-radius: 7px;
    box-shadow: rgb(17 17 26 / 3%) 0px 0px 16px;
    width: 100%;
    text-align: center;
    padding: 28px;
}

.upload-icon i {
    font-size: 34px;
    color: #003A7A;
}

.form-control:focus,
.form-select:focus {
    outline: none !important;
    background: #ffffff;
    color: #333;
    border: 1px solid #ffffff;
    box-shadow: none;
    border-radius: 7px;
    padding: 14px;
    box-shadow: rgb(17 17 26 / 3%) 0px 0px 16px;
}

.form-control::file-selector-button {
    background: #cdcdcd;
    color: #000;
    border: none;
    padding: 10px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: -2px;
    font-weight: 500;
}


.form-control:hover::file-selector-button {
    background: #cdcdcd !important;
    color: #000 !important;
}

.main-login-inners .input-group:focus-within .form-control,
.main-login-inners .input-group:focus-within .input-group-text {
    border: none;
}

button.btn.btn-updates {
    width: 100%;
    background: #003a7a;
    border-radius: 43px;
    padding: 8px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-top: 24px;
}

button#sendOtpBtn {
    background: #003A7A;
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    min-width: auto;
    padding: 7px 12px;
    position: absolute;
    right: 8px;
    top: 8px;
    z-index: 99;
    border-radius: 42px;
}

.btn.btn-add-univerity {
    background: #000;
    color: #fff;
    font-weight: 500;
    letter-spacing: .4px;
    padding: 9px 21px;
    font-size: 16px;
}

/* .commmon-crads .text-danger {
    padding-top: 4px;
} */

.commmon-crads .toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #6c757d;
    font-size: 16px;
}

.div-section-all-logins.auth-ui {
    background: #fff;
    padding: 36px;
    max-width: 1150px;
    border-radius: 15px;
}


.auth-ui .auth-left {
    position: relative;
    min-height: 605px;
    background-image: url(../img/image-login.png);
    border-radius: 18px;
    overflow: hidden;
}


.auth-ui .auth-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}


.auth-ui .auth-left-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    color: #ffffff;
}

.auth-ui .auth-left-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

/*card*/
.ms-info-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    margin-bottom: 24px;
    border: 1px solid #e8edf5;
}

.ms-card-accent {
    height: 5px;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.ms-card-body {
    padding: 28px 32px;
}

.ms-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.ms-meta-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 14px 16px;
    transition: box-shadow 0.2s;
}

h5.ms-scholarship-name {
    font-size: 16px;
    color: #000;
    margin-bottom: 7px;
}

h5.ms-scholarship-name span {
    color: #272727;
}

p.ms-scholarship-desc {
    font-size: 16px;
    color: #000;
}

p.ms-scholarship-desc span {
    color: #272727;
}

.ms-meta-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ms-meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ms-meta-label {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}



.ms-meta-value {
    font-size: 0.93rem;
    font-weight: 700;
    color: #1e293b;
}

/*card*/



.auth-ui .auth-left-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

.gender-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.gender-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    position: relative;
}

.gender-option input[type="radio"] {
    display: none;
}

.gender-option .custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid #b0b0b0;
    border-radius: 50%;
    position: relative;
    transition: all 0.25s ease;
}

.gender-option .custom-radio::after {
    content: "";
    width: 10px;
    height: 10px;
    background: #0057b8;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.25s ease;
}


.gender-option input[type="radio"]:checked+.custom-radio {
    border-color: #0057b8;
}

.gender-option input[type="radio"]:checked+.custom-radio::after {
    transform: translate(-50%, -50%) scale(1);
}

.gender-option:hover .custom-radio {
    border-color: #0057b8;
}



.login-sections {
    max-width: 100%;
    margin: auto;
    background: #ffffff;
    padding: 45px 40px;
    border-radius: 18px;
    text-align: left;
}

.login-sections .app-brand {
    margin-bottom: 25px;
}

.login-sections .app-brand img {
    max-height: 100%;
    width: 100%;
}

.login-sections h1 {
    font-size: 41px;
    font-weight: 700;
    margin-bottom: 9px;
    color: #000;
    position: relative;
    display: inline-block;
}

.left-and {
    text-align: left;
}

.login-sections h1::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #000;
    margin: 5px auto 0;
    border-radius: 2px;
    margin-left: 0;
}

.login-sections p {
    font-size: 16px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: left;
}

.login-sections .form-label {
    font-weight: 600;
    font-size: 16px;
    color: #000;
    text-align: left;
    display: block;
    text-transform: capitalize;
}

.login-sections .form-control {
    height: 48px;
    border-radius: 8px;
    border: 1px solid #d2d2d2;
    padding: 12px 14px;
    font-size: 14px;
    background: #f5f5f5;
    color: #000;
}

.login-sections input::placeholder {
    color: #6e6e6e;
}

.login-sections .form-control:focus {
    border-color: #dcdcdc;
    box-shadow: none;
}

.login-sections .input-group-text i {
    font-size: 19px;
    color: #333;
}

.login-sections .input-group-text {
    background: #f5f5f5;
    border-left: none;
}

.login-sections .text-end a {
    font-size: 16px;
    font-weight: 600;
    color: #b60000;
}

.login-sections .btn-primary {
    height: 56px;
    border-radius: 11px;
    background: #000;
    border: none;
    font-weight: 500;
    color: #fff;
    transition: 0.3s ease;
    font-size: 20px;
    align-items: center;
}

.login-sections .btn-primary:hover {
    background: #000000;
}

.back-login {
    color: #000 !important;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
}

.back-login i {
    font-size: 24px !important;
    font-weight: 500;
}

.btn-rest {
    margin-top: 36px;
}

h1.hero-title {
    font-weight: 700;
    color: #101010;
    line-height: 48px;
    text-shadow: 2px 2px 5px rgb(0 0 0 / 6%);
}

.hero-content p {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    width: 80%;
    line-height: 26px;
}

.hero-content h5 {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: #003A7A;
    letter-spacing: .2px;
}

.hero-visual {
    background: linear-gradient(140deg, var(--primary) 0%, #002d6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    overflow: hidden;
    min-height: 100%;
    top: 0px;
    right: 0;
    border-top-right-radius: 22px;
    width: 42%;
    border-bottom-right-radius: 22px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 163, 224, 0.25) 0%, transparent 70%);
}

.athlete-scene {
    position: relative;
    width: 320px;
    height: 300px;
    z-index: 1;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: spinRing linear infinite;
}

.ring-1 {
    width: 270px;
    height: 90px;
    top: 50%;
    left: 50%;
    transform-origin: center;
    animation-duration: 10s;
}

.ring-2 {
    width: 220px;
    height: 72px;
    top: 50%;
    left: 50%;
    animation-duration: 14s;
    animation-direction: reverse;
}

.athlete-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -52%);
    animation: floatAthlete 4.5s ease-in-out infinite;
    filter: drop-shadow(0 18px 36px rgba(0, 0, 0, 0.35));
}

.main-login-inners {
    /* background: #e1edf9; */
    text-align: center;
    padding: 40px;
    min-height: 100%;
    border-radius: 10px;
    margin-right: 24px;
}

.main-bosy-scetion {
    min-height: 100vh;
    background: #003A7A;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;

}

.align-center {
    align-items: center;
}

.container-scetion-all {
    background-image: url(../images/banner-alumni-login.png);
    border-radius: 18px;
    padding: 50px;
    width: 100%;
    max-width: 1200px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
    margin: auto;
    background-position: 60%;
}

.container-scetion-all label.form-label {
    text-align: left !important;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-transform: capitalize;
    margin-bottom: 3px;
    letter-spacing: .2px;
    width: 100%;
}

.container-scetion-all input {
    outline: none !important;
    background: #ffffff;
    color: #333;
    border: 2px solid #003a7a !important;
    box-shadow: none;
    border-radius: 47px;
    padding: 13px 20px;
    box-shadow: rgb(17 17 26 / 3%) 0px 0px 16px;
}

.container-scetion-all h1 {
    font-size: 38px;
    font-weight: 700;
    color: #003A7A;
    margin-bottom: 10px;
    text-align: center;
}

.container-scetion-all p {
    color: #2a2a2a;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    width: 100%;
    margin: auto;
    margin-bottom: 30px;
}

.main-login-inners .form-control:focus,
.main-login-inners .form-select:focus {
    border-radius: 47px;
}

.bg-all-cards {
    background: #eaeef29e;
    margin: 15px;
}

p.currnt-members {
    font-size: 16px;
    background: #fff;
    padding: 12px 16px;
    border-radius: 4px;
    font-weight: 500;
    color: #000;
    letter-spacing: .2px;
    border: 2px solid #1aae51;
}

/*card*/
.ms-info-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    margin-bottom: 24px;
    border: 1px solid #e8edf5;
}

.ms-card-accent {
    height: 5px;
    background: linear-gradient(90deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
}

.ms-card-body {
    padding: 28px 32px;
}

.ms-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
}

.ms-meta-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 14px 16px;
    transition: box-shadow 0.2s;
}

h5.ms-scholarship-name {
    font-size: 16px;
    color: #000;
    margin-bottom: 7px;
}

h5.ms-scholarship-name span {
    color: #272727;
}

p.ms-scholarship-desc {
    font-size: 16px;
    color: #000;
}

p.ms-scholarship-desc span {
    color: #272727;
}

.ms-meta-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.ms-meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ms-meta-label {
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 3px;
}



.ms-meta-value {
    font-size: 0.93rem;
    font-weight: 700;
    color: #1e293b;
}

/*card*/

.commmon-crads th {
    background-color: #D8EAFF !important;
    border-top: 2px solid #003A7A;
    border-bottom: 2px solid #003A7A;
}

span.badge.bg-secondary {
    background: #1aae51 !important;
    margin-left: 8px;
}

.div-table-sections {
    padding: 15px;
    background: #fff;
    border-radius: 4px;
}

span.yess {
    color: #008732 !important;
    background: #ddfae7;
    padding: 9px 16px;
    border-radius: 35px;
    text-transform: capitalize;
}

span.noo {
    padding: 9px 16px;
    border-radius: 35px;
    background-color: #ffebea !important;
    color: #e54d47 !important;
    text-transform: capitalize;
}

span.up-to {
    background-color: #fef5e0;
    color: #d67524;
    padding: 9px 16px;
    border-radius: 35px;
    text-transform: capitalize;
}

a.btn.btn-buy-nows {
    background: #003A7A;
    padding: 4px 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.2px;
    border-radius: 32px;
    text-transform: capitalize;
}

.btn-check:checked+.btn,
.btn.active,
.btn.show,
.btn:first-child:active,
:not(.btn-check)+.btn:active {
    background: #003A7A;
    color: #fff;
    border-color: #003A7A;
}

span.no-limit {
    background-color: #eef2ff;
    color: #4338ca;
    padding: 5px 16px;
    border-radius: 35px;
}

button.btn.delete-btn {
    font-size: 13px;
    background: #ffd2d0;
    border-radius: 38px;
    padding: 6px 14px;
    font-weight: 500;
    color: #d00404;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.btn.delete-btn:checked+.btn.delete-btn,
.btn.delete-btn,
.btn.delete-btn,
.btn.delete-btn:first-child:active,
:not(.btn-check)+.btn.delete-btn:active {
    background: #ffd2d0;
    color: #d00404;
    border-color: #ffd2d0;
}

.btn.btn-edit-two:checked+.btn.btn-edit-two,
.btn.btn-edit-two,
.btn.btn-edit-two,
.btn.btn-edit-two:first-child:active,
:not(.btn-check)+.btn.btn-edit-two:active {
    background: #f9f3db;
    color: #dd5a25;
    border-color: #f9f3db;
}

.field-error {
    color: #d00404;

}

.input-controls input {
    width: 100%;
    border: 2px solid #ddd;
}

td.dib-both-btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    min-height: 117px;
}

.content-wrapper {
    padding: 0 25px;
}

a.btn.btn-edit-two {
    background: #f9f3db;
    color: #dd5a25;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;
    border-radius: 62px;
    padding: 5px 16px;
    display: flex;
    align-items: center;
    gap: 7px;
}

button.btn.btn-sm.btn-success {
    border-radius: 21px;
}

a.btn.apply-now-butons {
    background: #28a745;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .2px;
    padding: 4px 7px;
    border-color: #28a745;
    border-radius: 37px;
}

a.btn.apply-now-butons:checked+a.btn.apply-now-butons,
a.btn.apply-now-butons.active,
a.btn.apply-now-butons.show,
a.btn.apply-now-butons:first-child:active,
:not(.btn-check)+a.btn.apply-now-butons:active {
    background: #28a745;
    color: #fff;
    border-color: #28a745;
}

.input-controls {
    margin: 22px 18px;
}

.content-footer a {
    color: #fff;
}

.input-controls input:focus {
    width: 100%;
    border: 2px solid #ddd;
    padding: 11px 16px;
}

.input-controls input {
    width: 100%;
    border: 2px solid #ddd;
    padding: 11px 16px;
}

a.btn.btn-edit-two i {
    font-size: 14px;
}


table.dataTable tbody th,
table.dataTable tbody td {
    color: #272727 !important;
    font-weight: 500;
    text-align: left;
    padding: 15px 21px;
    border-bottom: 1px solid #ddeeff;
}

table.dataTable tbody tr {
    border-color: #ddeeff;
}

.card .table.dataTable {
    border: 2px solid #003A7A;
}

table.dataTable>thead>tr>th,
table.dataTable>thead>tr>td {
    padding: 15px 21px;
    border-top: 0;
    border-bottom: 2px solid #003A7A;
}

.congrats-banner {
    background: #927b0012;
    border: 1px solid #ffcf1ee0;
    border-radius: 12px;
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 22px;
    animation: fadeUp 0.5s 0.15s ease both;
}

.congrats-banner-icon {
    width: 44px;
    height: 44px;
    background: #f9c500;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.congrats-banner-text p {
    font-size: 15px;
    color: #3a3a3a;
    line-height: 25px;
    font-weight: 400;
    margin-bottom: 0;
}

.congrats-banner-text h4 {
    font-size: 20px;
    font-weight: 600;
    color: #8d6f00;
    margin-bottom: 6px;
}

.mentor-card {
    background: #f8faff;
    border: 1px solid #dce5f0;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.25s;
    animation: fadeUp 0.5s 0.2s ease both;
    position: relative;
    overflow: hidden;
}

.mentor-name {
    color: #0a0a0a;
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
}

.mentor-avatar-big {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: #003A7A;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    border: 3px solid #fff;
    box-shadow: 0 4px 14px rgba(26, 58, 107, 0.25);
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #6b7fa0;
}

@media (max-width:1500px) {
    .content-wrapper {
        margin-top: 0;
    }

    .commmon-crads th {
        min-width: 170px;
    }
}

@media (max-width: 1100px) {
    .hero-visual {
        min-height: 100%;
    }

    .container-scetion-all {
        padding: 32px;
    }

    .main-login-inners {
        padding: 25px;
        margin-right: 0;
    }
}

@media (max-width: 991px) {

    /* .auth-ui .auth-left {
    display: none;
  } */
    .login-sections {
        padding: 18px 1px;
        border-radius: 18px;
        text-align: left;
    }
}

@media (max-width:768px) {
    .auth-left {
        display: none;
    }

    .content-wrapper {
        padding: 0;
    }

    .commmon-crads th {
        font-size: 14px;
        line-height: 19px;
        padding: 12px 12px;
        vertical-align: middle;
    }

    .table td {
        text-align: left;
        padding: 12px 12px;
        font-size: 13px;
        vertical-align: middle;
        min-width: 156px;
    }

    span.up-to {
        padding: 6px 16px;
    }

    td.dib-both-btns {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 7px;
        min-height: auto;
        flex-direction: column;
    }

    a.btn.btn-edit-two {
        font-size: 12px;
    }

    a.btn.btn-edit-two i {
        font-size: 12px;
    }

    button.btn.delete-btn {
        font-size: 12px;
    }

    p.currnt-members {
        font-size: 14px;
        padding: 10px 8px;
        letter-spacing: 0px;
        border: 1px solid #1aae51;
    }

    span.yess {
        padding: 6px 16px;
    }

    span.noo {
        padding: 6px 16px;
    }

    tr {
        vertical-align: middle;
    }

    .hero-visual {
        display: none;
    }

    .commmon-crads .col-md-7 {
        width: 100%;
    }

    h1.hero-title {
        font-size: 24px;
    }

    h1.hero-title br {
        display: none;
    }

    .hero-content {
        padding: 39px 22px;
        text-align: center;
    }

    h1.hero-title {
        font-size: 24px;
        margin-bottom: 0;
    }

    .app-brand {
        overflow: initial;
    }

    .hero-content p {
        font-size: 15px;
        width: 100%;
        line-height: 24px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 0;
    }

    .hero-content h5 {
        font-size: 15px;
        margin-bottom: 0;
    }


}

@media (max-width: 768px) {
    .header {
        padding: 25px 30px;
    }

    .main-bosy-scetion .container-xxl {
        padding-right: 0rem;
        padding-left: 0rem;
    }

    .content {
        padding: 11px;
    }

    .container-scetion-all {
        padding: 17px;
    }

    .main-login-inners {
        padding: 24px 17px !important;
        margin-right: 0;
    }

    .main-login-inners .col-md-6 {
        padding-left: 6px;
        padding-right: 6px;
    }

    button.btn.btn-updates {
        padding: 8px;
        font-size: 18px;
        margin-top: 13px;
    }

    .container-scetion-all p {
        font-size: 14px;
    }

    .simple-dashboard-heading span {
        line-height: 22px;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    button#sendOtpBtn {
        font-size: 12px !important;
        min-width: 59px !important;
        padding: 9px 14px !important;
        line-height: 16px !important;
        top: 9px !important;
    }

    .logos-grid {
        gap: 12px;
    }

    .info-card {
        padding: 14px 14px;
        margin-bottom: 22px;
    }

    .info-title {
        font-size: 22px;
        margin-bottom: 4px;
    }

    .info-section-title {
        font-size: 15px;
        margin-bottom: 12px;
        padding: 11px;
        letter-spacing: .3px;
    }

    .info-section {
        padding: 17px 11px;
    }

    .logos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container-scetion-all {
        padding: 0 !important;
    }

    .container-scetion-all h1 {
        font-size: 26px;
    }

    .main-bosy-scetion {
        padding: 14px;
    }

    .ms-card-body {
        padding: 19px 16px;
    }

    .congrats-banner {
        padding: 15px 14px;
        flex-direction: column;
    }

    .congrats-banner-text h4 {
        font-size: 19px;
    }

    .congrats-banner-text p {
        font-size: 14px;
        line-height: 23px;
    }

    .mentor-card {
        flex-direction: column;
    }

    .d-flex.mt-3.mentor-log {
        flex-direction: column;
        align-items: flex-start;
        gap: 13px;
    }
}



th {
    vertical-align: middle;
}

@keyframes floatAthlete {

    0%,
    100% {
        transform: translate(-50%, -52%) translateY(0);
    }

    50% {
        transform: translate(-50%, -52%) translateY(-10px);
    }
}

@keyframes spinRing {
    from {
        transform: translate(-50%, -50%) rotateX(72deg) rotateZ(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotateX(72deg) rotateZ(360deg);
    }
}

@media (max-width:768px) {
    .container-scetion-all .img-fluid {
        display: none;
    }
}

@media (max-width:768px) {
    .commmon-crads {
        padding: 0;
    }

    .card-body {
        padding: 14px;
    }

    .form-step {
        margin: 9px;
    }

    h4.figma-heading i {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    img.preview-images {
        border: 2px solid #003A7A;
        width: 80px;
        height: 80px;
    }

    label.upload-box {
        padding: 17px;
        padding-bottom: 17px !important;
    }

    label.upload-box span {
        font-size: 13px !important;
        padding-top: 5px;
    }

    .upload-text {
        margin-top: 4px;
    }

    label.upload-box strong {
        font-size: 17px;
    }

    h4.figma-heading {
        font-size: 21px !important;
    }

    h2.main-heding-top {
        font-size: 22px;
        padding-bottom: 12px;
        margin-bottom: 17px;
        margin-top: 10px;
    }

    .simple-dashboard-heading {
        width: 100%;
        padding: 9px 14px;
    }

    .simple-dashboard-heading i {
        font-size: 17px;
    }

    label.upload-box span {
        font-size: 14px;
    }

    label.upload-box strong {
        font-size: 17px;
    }

    .form-step {
        margin: 14px;
    }

    .simple-dashboard-heading {
        padding: 10px 16px;
        gap: 10px;
        font-size: 17px;
        font-weight: 500;
    }
}

@media (max-width: 576px) {
    .gender-group {
        gap: 12px;
    }

    .app-brand img {
        width: 76%;
    }

    .hero-content p {
        font-size: 14px;
    }

    h1.hero-title {
        line-height: 29px;
        margin: 9px auto;
        padding-bottom: 0px;
    }
}

@media (max-width: 576px) {
    .login-sections {
        padding: 0px 0px;
    }

    .login-sections h1 {
        font-size: 32px;
    }

    .login-sections .btn-primary {
        height: 51px;
        font-size: 18px;
    }

    .login-sections p {
        font-size: 15px;
    }

    .login-sections p {
        padding-top: 5px;
    }

    .back-login {
        margin-top: 16px;
    }
}