/* landding page ribbon-item css */
.ribbon-item .wrap-2 {
    padding-right: 8px;
}

/* Profile section after login*/
.navbar__options {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.user__menu_card {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user__menu_wrapper {
    position: relative;
}

.user__menu_list {
    position: absolute;
    top: 100%;
    left: 0px;
    background: #fff;
    color: #fff;
    width: 100%;
    min-width: 195px;
    list-style: none;
    padding: 0px;
    margin: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    transform: translateY(20px);
    /* background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%); */
    background-color: #051b5ff2;
    z-index: 1050;
    top: 35px;
    display: none;
}

.user__menu_list .amplevalue_a span:first-child {
    background-color: #031b33;
    color: #fff;
}

.user__menu_list .amplevalue_a span:last-child {
    background-color: #F80106;
    color: #fff;
    font-weight: 400;
}

.user__menu_list li a {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
}

.user__menu_list .amplevalue_a span {
    width: 100%;
    display: inline-block;
    text-align: center;
    padding: 3px 18px;
    font-size: 13px;
}

.user__menu_wrapper:hover .user__menu_list {
    display: block;
}

.user__menu_list li {
    width: 100%;
    float: left;
    padding: 10px 4px 10px 8px;
    border-bottom: 1px dotted rgb(187, 187, 187);
    display: flex;
    align-items: center;
    color: #fff !important;
}

.user__menu_list li:last-child {
    border-bottom: none;
}

.user__menu_list li a:hover {
    text-decoration: underline;
    opacity: 0.9;
}

.user__menu_list li:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Additional fixes for better appearance */
.user__menu_list li i {
    margin-right: 0px;
    color: #fff;
    font-size: 14px;
}

.user__menu_list form {
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
    .user__menu_list {
        position: fixed;
        top: auto;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        transform: translateY(0);
        border-radius: 20px 20px 0 0;
        margin-bottom: 0;
        background: linear-gradient(90deg, rgba(2, 0, 36, 1) 0%, rgba(9, 9, 121, 1) 41%, rgba(0, 212, 255, 1) 100%);
    }

    .user__menu_wrapper:hover .user__menu_list {
        display: none;
    }

    .user__menu_wrapper.active .user__menu_list {
        display: block;
    }
}

/* Animation */
.user__menu_list {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(20px);
    }
}

.user__menu_list.animated {
    animation-name: fadeInDown;
}

.user__menu_amples_count {
    color: #fff;
    font-size: 18px;
    margin-bottom: 0rem;
}

.user__menu_amples_label {
    font-size: 16px;
    color: #fff;
    text-align: center;
    font-weight: 400;
}

.user__menu_toggle_icon {
    position: absolute;
    right: 30px;
    top: 91%;
    transform: translateY(-50%);
}

.user__menu_img_wrapper {
    float: left;
    margin: 0;
    padding: 0 5px 0 0;
    border-right: 1px dotted #f7f7f7;
}

/* update profile */
.glass-container {
    /* background: rgba(11, 20, 64, 0.4); */
    background-color: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Profile Header Panel */
.profile-header {
    background: linear-gradient(135deg, #001a66 0%, #2b2dbf 55%, #8b3dff 100%);
    padding: 2rem;
    color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
}

.profile-detail-heading {
    color: #ffffff;
    background: linear-gradient(90deg, #ff0f7b, #8b3dff);
    display: inline-block;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: 800;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

/* Informational Section Text */
.small-header {
    text-align: center;
    padding: 25px 15px 10px 15px;
}

.small-header h5 {
    color: #ff2d7a;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.small-header h4 {
    color: #001248;
    font-weight: 800;
    font-size: 1.25rem;
    text-transform: uppercase;
}

/* Bento Grid Cards with Hardware Accelerated Animations */
.bento-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.75rem;
    height: 100%;
    border: 1px solid #d1dcf0;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35); */
    /* transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease; */
}

.bento-card:hover {
    /* transform: translateY(-5px); */
    /* border-color: rgba(111, 140, 255, 0.5); */
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.55); */
}

/* Form Elements & Typography */
.bento-card label {
    color: #001248;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.profile_pg_label {
    font-size: 0.95rem !important;
    font-weight: 700 !important;
}

.profile_pg_controle {
    border-radius: 12px !important;
    border: 1px solid #001248 !important;
    padding: 12px 15px !important;
    /* background-color: #0d1b4d !important; */
    color: #001248 !important;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.profile_pg_controle::placeholder {
    color: #001248 !important;
    opacity: 1;
}

.profile_pg_controle:focus::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
}

.profile_pg_controle:focus {
    background-color: #ffffff !important;
    border-color: #8b3dff !important;
    box-shadow: 0 0 0 3px rgba(139, 61, 255, 0.3) !important;
    outline: none !important;
    color: #001248 !important;
}

.profile_pg_controle[readonly] {
    background-color: #f4f4f4 !important;
    border: 1px solid rgb(0, 18, 72) !important;
    color: #001248 !important;
    cursor: not-allowed;
}

.bento-card h5 {
    color: #001248;
    margin-bottom: 1.25rem;
}

/* Reward Badges */
.reward-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(90deg, #ff0f7b, #9c4dff);
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 15, 123, 0.2);
}

/* Avatar Image Styles */
.update-profile-container {
    width: 100%;
    max-width: 1300px;
    padding-bottom: 1rem;
}

.profile-avatar-container {
    position: relative;
    margin-top: -100px;
    margin-bottom: 1.5rem;
}

.profile-avatar-img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
    border: 4px solid rgba(125, 148, 255, 0.4);
    object-fit: cover;
    background: #0b1440;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Elegant Action Buttons */
.btn-save {
    background: linear-gradient(90deg, #ff0f7b, #8b3dff);
    border: none;
    color: #ffffff;
    padding: 14px 50px;
    border-radius: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-save:hover {
    box-shadow: 0 10px 25px rgba(139, 61, 255, 0.5);
    transform: scale(1.03);
    color: #ffffff;
}

/* Custom Dropdown Styling Support */
select.profile_pg_controle {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    background-size: 16px 12px !important;
    appearance: none;
}



/* register styling */
.update-form-label-color {
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 0.3rem;
}

.profile-icon-top {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #431c9e 40%, #ff1833 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    border: 6px solid #f8fbff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-book-h {
    background: linear-gradient(to bottom, #f00a0a, #a60000);
    color: #ffffff !important;
    padding: 10px 30px !important;
    border: 1px solid #da2128;

    box-shadow: 0 2px 4px rgba(218, 33, 40, 0.3);
}

.btn-book-h:hover {
    background: linear-gradient(180deg, #e3363b 0%, #c4181e 100%);
}

.btn-gradient-submit {
    background: linear-gradient(90deg, #d11228 0%, #431c9e 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-size: 1.05rem;
    font-weight: 800;
    width: 100%;
    margin-top: 15px;
    transition: opacity 0.3s ease;
}

.btn-gradient-submit:hover {
    opacity: 0.9;
    color: #ffffff;
}

.login-reg-form-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #030f56 !important;
    margin-bottom: 0.3rem;
}

.login-form-heading-wrapper p {
    font-size: 0.8rem;
    color: #0a2347;
    line-height: 1.5;
    margin: 0 auto;
    max-width: 80%;
    padding-bottom: 10px;
    text-align: center;

}

.login-form-heading-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b1930;
    margin-bottom: 8px;
    text-align: center;
}

.conTopSpace {
    margin-top: 150px;
}

.register-form-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    padding: 50px 40px 40px;
    position: relative;
    border: 1px solid #f0f0f0;
}

.register-form-heading-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b1930;
    margin-bottom: 8px;
    text-align: center;
}

.register-form-heading-wrapper p {
    color: #333;
    text-align: center;
}

.reg-form-check-label {
    font-size: 0.9rem;
    color: #4a5568;
    cursor: pointer;
}

.reg-form-check-label a {
    color: #3182ce;
    text-decoration: none;
    font-weight: 500;
}

.secure-text {
    text-align: center;
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 15px;
}

.secure-text i {
    color: #4a5568;
    margin-right: 5px;
}

section.stats-section.container-ac {
    margin: 10px auto !important;
}

.margin-top {
    margin-top: 80px;
}

/* =========================================
    Simple Tutorial Video Page
========================================= */

.tv-section {
    background: #f8fafc;
    /* padding: 10px 0;
    min-height: 100vh; */
}

.ample_video_card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ample_video_card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.ample_video_wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.ample_video_wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.ample_video_small {
    padding-bottom: 40% !important;
    /* instead of 40% */
    max-height: 350px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .tv-section {
        padding: 40px 0;
    }

    .profile-detail-heading {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .tv-section {
        padding: 30px 0;
    }

    .profile-detail-heading {
        font-size: 1.5rem;
    }

    .profile-detail-heading::after {
        width: 50px;
    }

    .ample_video_card {
        border-radius: 10px;
    }
}

@media (max-width: 576px) {
    .tv-section {
        padding: 20px 0;
    }

    .profile-detail-heading {
        font-size: 1.3rem;
    }

    .ample_video_card {
        border-radius: 8px;
    }
}

.register-getpoint {
    background: linear-gradient(90deg, #d11228 0%, #431c9e 100%);
    font-weight: bold;
    border-radius: 5px;
    padding: 5px;
}
