/* Start custom CSS for html, class: .elementor-element-95d194d *//* --- DESKTOP HORIZONTAL NAVBAR STYLING --- */
.desktop-dashboard-navbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 15px 25px;
    box-sizing: border-box;
    border-radius: 20px;
    background: linear-gradient(145deg, #141418, #0d0d11);
    border: 1.5px solid rgba(255, 140, 0, 0.5);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

/* Logo Styling (75px on Desktop) */
.desktop-nav-logo img {
    width: 75px !important;
    height: 75px !important;
    max-width: 75px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid rgba(255, 140, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 140, 0, 0.3);
}

/* Menus Container (Horizontal Flow with wrapping if needed) */
.desktop-nav-menu-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    flex: 1;
}

/* Individual Menu Item Card Style */
.d-menu-item {
    text-decoration: none !important;
    border-radius: 12px !important;
    background: rgba(25, 25, 35, 0.7) !important;
    border: 1px solid rgba(255, 140, 0, 0.3) !important;
    padding: 10px 14px !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
}

/* Hover Animation */
.d-menu-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 165, 0, 1) !important;
    background: rgba(40, 40, 55, 0.9) !important;
    box-shadow: 0 4px 15px rgba(255, 140, 0, 0.3) !important;
    color: #ffa500 !important;
}

/* Logout Special Highlight */
.d-menu-item.logout-btn {
    border-color: rgba(255, 68, 68, 0.4) !important;
    color: #ff6b6b !important;
}
.d-menu-item.logout-btn:hover {
    border-color: rgba(255, 68, 68, 1) !important;
    background: rgba(55, 25, 25, 0.8) !important;
    box-shadow: 0 4px 15px rgba(255, 68, 68, 0.3) !important;
    color: #ff4444 !important;
}

/* --- RESPONSIVE VISIBILITY RULE --- */
/* Yeh menu sirf Desktop/Laptop par dikhega, Mobile par automatic hide rahega */
@media screen and (max-width: 767px) {
    .desktop-dashboard-navbar {
        display: none !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d5c1071 *//* --- MOBILE TOGGLE NAVBAR STYLING --- */
.mobile-dashboard-navbar {
    display: none;
    width: 100%;
    max-width: 767px;
    margin: 0 auto;
    box-sizing: border-box;
    border-radius: 16px;
    background: linear-gradient(145deg, #141418, #0d0d11);
    border: 1.5px solid rgba(255, 140, 0, 0.5);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

/* Top Bar Layout */
.mobile-nav-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    box-sizing: border-box;
}

/* Logo Styling (65px on Mobile) */
.mobile-nav-logo img {
    width: 65px !important;
    height: 65px !important;
    max-width: 65px !important;
    object-fit: cover;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 140, 0, 0.8);
    box-shadow: 0 0 10px rgba(255, 140, 0, 0.3);
}

.mobile-nav-title {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Custom 3-Line Hamburger Icon */
.mobile-menu-icon {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
}

.mobile-menu-icon span {
    display: block;
    height: 3px;
    width: 100%;
    background: #ffa500;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Dropdown Menu Container (Initially Hidden) */
.mobile-nav-dropdown {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.3s ease;
    background: rgba(15, 15, 20, 0.95);
    gap: 8px;
    padding: 0 12px;
    border-top: 0px solid rgba(255, 140, 0, 0.2);
}

/* When JavaScript toggles the class, show menu */
.mobile-nav-dropdown.active-menu {
    max-height: 800px;
    padding: 12px 12px 16px 12px;
    border-top: 1.5px solid rgba(255, 140, 0, 0.3);
}

/* Animate Hamburger to 'X' Mark when active */
.mobile-menu-icon.active-icon span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}
.mobile-menu-icon.active-icon span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-icon.active-icon span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

/* Individual Menu Item inside Mobile Dropdown */
.m-menu-item {
    text-decoration: none !important;
    border-radius: 10px !important;
    background: rgba(25, 25, 35, 0.7) !important;
    border: 1px solid rgba(255, 140, 0, 0.25) !important;
    padding: 11px 16px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    font-family: 'Oswald', Arial, Helvetica, sans-serif;
    transition: all 0.25s ease-in-out;
}

.m-menu-item:hover, .m-menu-item:active {
    border-color: rgba(255, 165, 0, 1) !important;
    background: rgba(40, 40, 55, 0.9) !important;
    color: #ffa500 !important;
}

/* Logout Special Style */
.m-menu-item.logout-btn {
    border-color: rgba(255, 68, 68, 0.4) !important;
    color: #ff6b6b !important;
}
.m-menu-item.logout-btn:hover {
    border-color: rgba(255, 68, 68, 1) !important;
    background: rgba(55, 25, 25, 0.8) !important;
    color: #ff4444 !important;
}

/* --- RESPONSIVE VISIBILITY RULE --- */
@media screen and (max-width: 767px) {
    .mobile-dashboard-navbar {
        display: block !important;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-460a1a7 */.dfx-package-card {
    max-width: 380px;
    margin: 40px auto;
    padding: 28px;
    background: linear-gradient(145deg, #111111, #1b1b1b);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    animation: dfxFade 1s ease;
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.15);
}

.dfx-package-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle,
            rgba(255, 184, 0, 0.3),
            transparent);
}

.dfx-package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 60px rgba(255, 184, 0, 0.35);
}

.dfx-image-box {
    height: 260px;
    border: 2px dashed rgba(255, 184, 0, 0.4);
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}

.dfx-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dfx-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #ff9d00, #ffcb05);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.dfx-title {
    color: #ffffff;
    font-size: 32px;
    margin: 10px 0;
}

.dfx-price {
    font-size: 42px;
    font-weight: 800;
    color: #ffb800;
    margin-bottom: 25px;
}

.dfx-course-box {
    margin-bottom: 30px;
}

.dfx-course-item {
    color: #d6d6d6;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    transition: 0.4s;
}

.dfx-course-item:hover {
    transform: translateX(8px);
    border-left: 4px solid #ffb800;
}

.dfx-button {
    display: block;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff9d00, #ffcb05);
    color: #000;
    transition: 0.4s;
}

.dfx-button:hover {
    transform: scale(1.05);
}

@keyframes dfxFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .dfx-package-card {
        max-width: 100%;
    }

    .dfx-title {
        font-size: 28px;
    }

    .dfx-price {
        font-size: 36px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-52754f3 */.dfx-package-card {
    max-width: 380px;
    margin: 40px auto;
    padding: 28px;
    background: linear-gradient(145deg, #111111, #1b1b1b);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    animation: dfxFade 1s ease;
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.15);
}

.dfx-package-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle,
            rgba(255, 184, 0, 0.3),
            transparent);
}

.dfx-package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 60px rgba(255, 184, 0, 0.35);
}

.dfx-image-box {
    height: 260px;
    border: 2px dashed rgba(255, 184, 0, 0.4);
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}

.dfx-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dfx-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #ff9d00, #ffcb05);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.dfx-title {
    color: #ffffff;
    font-size: 32px;
    margin: 10px 0;
}

.dfx-price {
    font-size: 42px;
    font-weight: 800;
    color: #ffb800;
    margin-bottom: 25px;
}

.dfx-course-box {
    margin-bottom: 30px;
}

.dfx-course-item {
    color: #d6d6d6;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    transition: 0.4s;
}

.dfx-course-item:hover {
    transform: translateX(8px);
    border-left: 4px solid #ffb800;
}

.dfx-button {
    display: block;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff9d00, #ffcb05);
    color: #000;
    transition: 0.4s;
}

.dfx-button:hover {
    transform: scale(1.05);
}

@keyframes dfxFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .dfx-package-card {
        max-width: 100%;
    }

    .dfx-title {
        font-size: 28px;
    }

    .dfx-price {
        font-size: 36px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-75ec5ac */.dfx-package-card {
    max-width: 380px;
    margin: 40px auto;
    padding: 28px;
    background: linear-gradient(145deg, #111111, #1b1b1b);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    animation: dfxFade 1s ease;
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.15);
}

.dfx-package-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle,
            rgba(255, 184, 0, 0.3),
            transparent);
}

.dfx-package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 60px rgba(255, 184, 0, 0.35);
}

.dfx-image-box {
    height: 260px;
    border: 2px dashed rgba(255, 184, 0, 0.4);
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}

.dfx-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dfx-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #ff9d00, #ffcb05);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.dfx-title {
    color: #ffffff;
    font-size: 32px;
    margin: 10px 0;
}

.dfx-price {
    font-size: 42px;
    font-weight: 800;
    color: #ffb800;
    margin-bottom: 25px;
}

.dfx-course-box {
    margin-bottom: 30px;
}

.dfx-course-item {
    color: #d6d6d6;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    transition: 0.4s;
}

.dfx-course-item:hover {
    transform: translateX(8px);
    border-left: 4px solid #ffb800;
}

.dfx-button {
    display: block;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff9d00, #ffcb05);
    color: #000;
    transition: 0.4s;
}

.dfx-button:hover {
    transform: scale(1.05);
}

@keyframes dfxFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .dfx-package-card {
        max-width: 100%;
    }

    .dfx-title {
        font-size: 28px;
    }

    .dfx-price {
        font-size: 36px;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-069809e */.dfx-package-card {
    max-width: 380px;
    margin: 40px auto;
    padding: 28px;
    background: linear-gradient(145deg, #111111, #1b1b1b);
    border: 1px solid rgba(255, 184, 0, 0.25);
    border-radius: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
    animation: dfxFade 1s ease;
    box-shadow: 0 0 40px rgba(255, 184, 0, 0.15);
}

.dfx-package-card::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle,
            rgba(255, 184, 0, 0.3),
            transparent);
}

.dfx-package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 0 60px rgba(255, 184, 0, 0.35);
}

.dfx-image-box {
    height: 260px;
    border: 2px dashed rgba(255, 184, 0, 0.4);
    border-radius: 20px;
    margin-bottom: 25px;
    overflow: hidden;
}

.dfx-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dfx-badge {
    display: inline-block;
    padding: 8px 18px;
    background: linear-gradient(90deg, #ff9d00, #ffcb05);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    color: #000;
    margin-bottom: 18px;
}

.dfx-title {
    color: #ffffff;
    font-size: 32px;
    margin: 10px 0;
}

.dfx-price {
    font-size: 42px;
    font-weight: 800;
    color: #ffb800;
    margin-bottom: 25px;
}

.dfx-course-box {
    margin-bottom: 30px;
}

.dfx-course-item {
    color: #d6d6d6;
    padding: 16px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 15px;
    transition: 0.4s;
}

.dfx-course-item:hover {
    transform: translateX(8px);
    border-left: 4px solid #ffb800;
}

.dfx-button {
    display: block;
    text-decoration: none;
    padding: 18px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(90deg, #ff9d00, #ffcb05);
    color: #000;
    transition: 0.4s;
}

.dfx-button:hover {
    transform: scale(1.05);
}

@keyframes dfxFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {

    .dfx-package-card {
        max-width: 100%;
    }

    .dfx-title {
        font-size: 28px;
    }

    .dfx-price {
        font-size: 36px;
    }
}/* End custom CSS */