/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    margin-top: -90px;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.68) 100%);
    border-bottom-left-radius: 150px;
    border-bottom-right-radius: 150px;
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 35px 0;
    padding-top: 160px !important;
    min-height: 450px;
    align-items: center !important;
}

.hero-text-content-wrapper {
    position: relative;
    width: 100%;
    max-width: 772px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.hero-text-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    z-index: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: right;
}

.hero-vision-logo-mobile {
    display: none;
    margin-bottom: 20px;
}

.vision-logo-mobile-img {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.hero-text-content.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    z-index: 1;
}

/* Slider Dots */
.hero-slider-dots {
    width: 44px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-dots-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.slider-dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.2);
}

.slider-dot.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    width: 14px;
    height: 14px;
}

/* Hero Text Content */
.hero-text-content {
    max-width: 772px;
    text-align: right;
}

.hero-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 36px;
    line-height: normal;
    color: white;
    text-align: right;
    margin-bottom: 0;
}

.hero-subtitle {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 18px;
    line-height: normal;
    color: rgba(255, 255, 255, 0.7);
    text-align: right;
    margin-bottom: 44px;
}

.hero-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    align-items: center;
}

.hero-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 100px;
    padding: 14px 28px 16px 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    /* No shadow or glow - only glass effect */
}

.hero-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
    padding: 1px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.hero-btn:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.glass-btn-1 {
    background: rgba(255, 255, 255, 0.1);
}

.glass-btn-1::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
}

.glass-btn-1:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
}

.glass-btn-2 {
    background: rgba(246, 139, 100, 0.33);
}

.glass-btn-2::before {
    background: linear-gradient(135deg, rgba(246, 139, 100, 0.6) 0%, rgba(246, 139, 100, 0.3) 40%, rgba(246, 139, 100, 0) 70%, transparent 100%);
}

.glass-btn-2:hover {
    background: rgba(246, 139, 100, 0.4);
}

.glass-btn-2:hover::before {
    background: linear-gradient(135deg, rgba(246, 139, 100, 0.7) 0%, rgba(246, 139, 100, 0.45) 40%, rgba(246, 139, 100, 0) 70%, transparent 100%);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 8px;
    height: 15px;
}

.btn-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.btn-text {
    white-space: nowrap;
}

.min-vh-98 {
    min-height: 85vh;
}

/* Hero Footer */
.hero-footer {
    position: relative;
    z-index: 2;
    padding: 30px 0;
}

.vision-logo img {
    max-height: 68px;
    width: auto;
    object-fit: contain;
}

/* Hide vision logo and prizes logos on mobile */
@media (max-width: 767.98px) {
    .vision-logo {
        display: none;
    }

    .prizes-logos {
        display: none !important;
    }

    .hero-vision-logo-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/* Tablet: Make prizes logos smaller so 4 fit in one row */
@media (min-width: 768px) and (max-width: 991.98px) {
    .prize-logo {
        max-height: 40px;
        width: auto;
        object-fit: contain;
    }

    .prizes-logos {
        gap: 12px;
        flex-wrap: nowrap;
    }
}

.scroll-down-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-icon {
    width: 52px;
    height: 52px;
    animation: gentleFloat 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.prizes-logos {
    flex-wrap: wrap;
}

.prize-logo {
    max-height: 66px;
    width: auto;
    object-fit: contain;
}

.prize-logo:hover {
    transform: scale(1.1);
}

/* Responsive Hero */
@media (max-width: 991.98px) {
    .hero-section {
        margin-top: -70px;
    }

    .hero-text-content-wrapper {
        align-items: center;
        text-align: center;
    }

    .hero-text-content {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 30px;
        margin-bottom: 0;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-content-wrapper {
        min-height: auto;
        padding: 30px 0;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-slider-dots {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        margin-top: -50px;
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .hero-bg-image,
    .hero-overlay {
        border-bottom-left-radius: 50px;
        border-bottom-right-radius: 50px;
    }

    .hero-text-content-wrapper {
        align-items: center;
        text-align: center;
    }

    .hero-text-content {
        align-items: center;
        text-align: center;
    }

    .hero-title {
        font-size: 24px;
        margin-bottom: 0;
        text-align: center;
    }

    .hero-subtitle {
        font-size: 14px;
        line-height: 2.55;
        margin-bottom: 20px;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: row;
        width: 100%;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-btn {
        flex: 1;
        min-width: 150px;
        justify-content: center;
    }

    .hero-footer .col-md-4 {
        margin-bottom: 20px;
        text-align: center !important;
    }

    .prizes-logos {
        justify-content: center !important;
    }
}

/* Header Styles */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(33, 33, 33, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.dashboard-header {
    background: white !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 1px solid #e6e6e6;
}

.main-header.scrolled {
    background: rgba(33, 33, 33, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.main-header.scrolled .header-top-bar {
    max-height: 0;
    padding: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
}

.main-header.scrolled .header-divider {
    max-height: 0;
    margin: 0;
    opacity: 0;
    pointer-events: none;
}

/* Profile Avatar Desktop - Hidden by default, shown on scroll (for index-logged.html) */
.main-header .header-donate-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-header .profile-avatar-desktop {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 10001;
}

.main-header.scrolled .profile-avatar-desktop {
    display: flex;
    opacity: 1;
}

/* Profile Avatar Desktop Button */
.main-header .profile-avatar-desktop .profile-avatar-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-header .profile-avatar-desktop .profile-avatar-img-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.main-header .profile-avatar-desktop .profile-avatar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    margin-top: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10002;
}

.main-header .profile-avatar-desktop.active .profile-avatar-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Profile Dropdown in Main Header (for index-logged.html) */
.main-header .header-profile-dropdown-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.main-header .profile-dropdown {
    position: relative;
    z-index: 10001;
}

.main-header .profile-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 15px;
    color: white;
    transition: opacity 0.3s ease;
}

.main-header .profile-dropdown-toggle:hover {
    opacity: 0.8;
}

.main-header .profile-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.main-header .profile-name {
    white-space: nowrap;
}

.main-header .profile-chevron {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.main-header .profile-dropdown.active .profile-chevron {
    transform: rotate(180deg);
}

.main-header .profile-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10002;
}

.main-header .profile-dropdown.active .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-header .profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-family: var(--font-family-primary);
    font-size: 15px;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.main-header .profile-dropdown-item:hover {
    background-color: #f5f5f5;
    color: #333333;
}

.main-header .profile-dropdown-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.main-header .profile-dropdown-divider {
    height: 1px;
    background: #e6e6e6;
    margin: 8px 0;
}

.main-header .profile-dropdown-logout {
    color: #dc3545;
}

.main-header .profile-dropdown-logout:hover {
    background-color: #fee;
    color: #dc3545;
}

.header-top-bar {
    padding: 16px 0;
    transition: opacity 0.3s ease, max-height 0.3s ease, padding 0.3s ease, margin 0.3s ease;
    max-height: 100px;
    opacity: 1;
    overflow: hidden;
}

.header-top-bar p {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    margin: 0;
    color: white;
}

/* Header Top Buttons */
.header-top-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-register-btn {
    white-space: nowrap;
    font-size: 14px;
    padding: 10px 20px 12px 20px;
    background: rgba(0, 0, 0, 0.1) !important;
}

.header-register-btn::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%) !important;
}

.header-register-btn:hover {
    background: rgba(0, 0, 0, 0.15) !important;
}

.header-register-btn:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%) !important;
}

/* Responsive Header Top Bar */
@media (max-width: 767.98px) {

    /* Hide entire top bar on mobile */
    .header-top-bar {
        display: none !important;
    }

    /* Hide divider on mobile when top bar is hidden */
    .header-divider {
        display: none !important;
    }
}

.language-selector,
.contact-info {
    font-family: var(--font-family-primary);
}

.chevron-icon,
.earth-icon,
.email-icon,
.phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}

.icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.header-divider {
    padding: 0;
    transition: opacity 0.3s ease, max-height 0.3s ease, margin 0.3s ease;
    overflow: hidden;
    max-height: 10px;
    opacity: 1;
}

.header-divider hr {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 0;
    border-width: 1px;
}

.header-nav {
    padding: 16px 0;
}

.nav-menu {
    flex-wrap: wrap;
    gap: 24px;
}

.menu-toggle-btn {
    background: rgba(255, 255, 255, 0.01);
    border: none;
    border-radius: 100px;
    width: 44px;
    height: 44px;
    display: none;
    /* Hidden by default, shown only on mobile */
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

/* Hide additional menu items on desktop by default */
.nav-link-additional {
    display: none;
}

.nav-dropdown-additional {
    display: none;
}

.menu-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-link {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 15px;
    color: white;
    text-decoration: none;
    padding: 8px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    opacity: 0.8;
    color: white;
}

.nav-link.active {
    color: rgba(255, 255, 255, 0.8);
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-dropdown-toggle:hover {
    opacity: 0.8;
}

.nav-dropdown.active .nav-dropdown-toggle {
    color: rgba(255, 255, 255, 0.8);
}

.dropdown-chevron {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .dropdown-chevron {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    min-width: 220px;
    background: rgba(33, 33, 33, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) translateZ(0);
    -webkit-transform: translateY(-10px) translateZ(0);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    will-change: opacity, transform;
}

.nav-dropdown.active .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateZ(0);
    -webkit-transform: translateY(0) translateZ(0);
}

.nav-dropdown-item {
    display: block;
    padding: 12px 20px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 15px;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease, padding-right 0.2s ease;
    text-align: right;
}

.nav-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-right: 24px;
    color: white;
}

/* Menu Toggle Dropdown */
.menu-toggle-dropdown {
    position: relative;
}

.menu-toggle-dropdown-menu {
    left: 0;
    right: auto;
}

/* Nested Dropdown (الشركات التابعة) */
.nav-dropdown-nested {
    position: relative;
}

.nav-dropdown-nested-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px 20px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 15px;
    color: white;
    text-align: right;
    transition: background-color 0.2s ease, padding-right 0.2s ease;
}

.nav-dropdown-nested-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-right: 24px;
}

.dropdown-chevron-nested {
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-right: 8px;
}

.nav-dropdown-nested.active .dropdown-chevron-nested {
    transform: rotate(180deg);
}

.nav-dropdown-nested-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.nav-dropdown-nested.active .nav-dropdown-nested-menu {
    max-height: 300px;
}

.nav-dropdown-nested-menu .nav-dropdown-item {
    padding-right: 40px;
}

/* Header Quick Donate Button */
.header-quick-donate-btn {
    background: rgba(246, 139, 100, 0.33);
    border: none;
    border-radius: 100px;
    padding: 12px 26px 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    white-space: nowrap;
}

.header-quick-donate-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(246, 139, 100, 0.6) 0%, rgba(246, 139, 100, 0.3) 40%, rgba(246, 139, 100, 0) 70%, transparent 100%);
    padding: 1px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.header-quick-donate-btn:hover {
    background: rgba(246, 139, 100, 0.4);
}

.header-quick-donate-btn:hover::before {
    background: linear-gradient(135deg, rgba(246, 139, 100, 0.7) 0%, rgba(246, 139, 100, 0.45) 40%, rgba(246, 139, 100, 0) 70%, transparent 100%);
}

.chevron-nav-icon {
    width: 15px;
    height: 12px;
    object-fit: contain;
}

/* Header Nav Wrapper */
.header-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

/* Dashboard Header Nav Wrapper - Specific Layout */
.dashboard-header .header-nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
}

.header-donate-wrapper {
    flex: 0 0 auto;
}

.header-menu-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-logo-wrapper {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.logo-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logo-img {
    height: 100%;
    width: auto;
    object-fit: contain;
    max-width: 180px;
}

/* Desktop: Show all menu items, hide menu toggle */
@media (min-width: 992px) {

    /* Hide menu toggle button on desktop */
    .menu-toggle-btn {
        display: none !important;
    }

    /* Show all menu items on desktop */
    .nav-menu>.nav-dropdown,
    .nav-menu>.nav-link {
        display: flex;
    }

    /* Show donate button and logo on desktop */
    .header-donate-wrapper,
    .header-logo-wrapper {
        display: flex;
    }

    /* Center menu on desktop */
    .header-menu-wrapper {
        display: flex;
        justify-content: center;
    }
}

/* Tablet: Hide menu, show menu toggle button (until 996px) */
@media (max-width: 996px) and (min-width: 768px) {

    /* Show menu toggle button on tablet */
    .menu-toggle-btn {
        display: flex !important;
    }

    /* Hide all menu items on tablet */
    .nav-menu>.nav-dropdown,
    .nav-menu>.nav-link {
        display: none !important;
    }

    /* Show donate button on tablet (always visible) */
    .header-donate-wrapper {
        display: flex !important;
    }

    /* Show logo and menu toggle on tablet */
    .header-logo-wrapper {
        display: flex;
    }

    /* Tablet layout: menu toggle (left) - donate button (next to menu toggle) - logo (right) */
    .header-nav-wrapper {
        justify-content: space-between;
        gap: 8px;
    }


}

@media (max-width: 991.98px) {
    .header-top-bar .col-md-6 {
        margin-bottom: 10px;
    }

    .contact-info {
        justify-content: flex-start !important;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        font-size: 16px;
        padding: 6px;
    }

    .header-menu-wrapper {
        order: 3;
        flex: 0;
        justify-content: flex-start;
    }

    .header-mobile-layout+.header-menu-wrapper {
        display: none !important;
    }

    .header-donate-wrapper {
        order: 2;
    }

    .header-left-section.header-mobile-layout .header-donate-wrapper {
        order: 0;
    }

    .header-logo-wrapper {
        order: 1;
        margin-left: auto;
    }
}

@media (max-width: 767.98px) {
    .header-nav {
        padding: 12px 0;
    }

    .nav-menu {
        gap: 8px;
        justify-content: flex-end;
        display: flex !important;
    }

    .nav-link {
        font-size: 14px;
        padding: 4px;
    }

    /* Hide all nav items on mobile, show only menu toggle */
    .nav-menu>.nav-dropdown,
    .nav-menu>.nav-link {
        display: none !important;
    }

    /* Show donate button on mobile */
    .header-donate-wrapper {
        display: flex !important;
    }

    /* Show menu toggle button on mobile */
    .menu-toggle-btn {
        display: flex !important;
    }

    /* Mobile layout: menu toggle (left) - donate button (next to menu toggle) - logo (right) */
    .header-nav-wrapper {
        justify-content: space-between;
        gap: 8px;
    }

    .header-menu-wrapper {
        flex: 0;
        justify-content: flex-start;

    }

    .header-donate-wrapper {
        display: flex;
        align-items: center;
    }

    .header-logo-wrapper {
        display: flex;
    }

    /* Make donate button smaller on mobile */
    .header-quick-donate-btn {
        padding: 10px 16px 12px 16px;
        font-size: 13px;
    }

    .header-quick-donate-btn .btn-text {
        white-space: nowrap;
    }

    /* Make logo smaller on mobile to fit with menu toggle */
    .logo-wrapper {
        height: 40px;
    }

    .logo-img {
        max-width: 140px;
    }

    /* Force logo and menu toggle to be on same line on mobile with space-between */
    .header-nav .row {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center;
        justify-content: space-between;
        margin: 0;
    }

    .header-nav .col-md-3 {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        padding-right: 15px;
        padding-left: 15px;
    }

    .header-nav .col-md-9 {
        flex: 0 0 auto !important;
        width: auto !important;
        max-width: none !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .header-nav .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Strategy Section Styles */
.strategy-section {
    padding: 80px 0;
    background-color: #F7F7F7;
    display: flex;
    flex-direction: column;
}

/* Strategy Row - Desktop: align items at start, image column self-aligns center */
.strategy-row {
    align-items: flex-start;
}

/* Desktop: Fix image column to stay centered vertically */
@media (min-width: 992px) {
    .strategy-row .col-lg-5 {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
    }

    .strategy-image-wrapper {
        position: relative;
        max-width: 431px;
        width: 100%;
        height: auto;
        margin: 0;
        flex-shrink: 0;
    }
}

.strategy-image-wrapper {
    position: relative;
    max-width: 431px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.strategy-image {
    width: 90%;
    height: auto;
    object-fit: contain;
    display: block;
}

.strategy-content {
    max-width: 860px;
    margin-left: auto;
    /* RTL: margin-left بدلاً من margin-right */
}

.strategy-text {
    width: 100%;
}

.strategy-text-inner {
    width: 100%;
}

.strategy-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 40px;
    line-height: 2.01;
    color: var(--color-text-dark);
    text-align: right;
}

.strategy-description-wrapper {
    position: relative;
    margin-bottom: 0;
}

.strategy-description {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-dark-light);
    text-align: justify;
    margin-bottom: 0;
    padding-bottom: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, -webkit-line-clamp 0.5s ease;
}

.strategy-description-wrapper.collapsed .strategy-description {
    max-height: 200px;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
}

.strategy-description-wrapper.expanded .strategy-description {
    max-height: 2000px;
    display: block;
    -webkit-line-clamp: unset;
}

.text-fade-overlay {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 120px;
    background: linear-gradient(to top, #F7F7F7 0%, rgba(247, 247, 247, 0.95) 20%, rgba(247, 247, 247, 0.7) 50%, rgba(247, 247, 247, 0.3) 80%, transparent 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.strategy-description-wrapper.expanded .text-fade-overlay {
    opacity: 0;
    pointer-events: none;
}

.read-more-arrow {
    transition: transform 0.3s ease;
}

.read-more-btn.expanded .read-more-arrow {
    transform: rotate(180deg);
}

.read-more-wrapper {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    z-index: 1;
}

@media (max-width: 767.98px) {
    .read-more-wrapper {
        justify-content: center;
    }
}

/* Tablet: Center "قراءة المزيد" */
@media (min-width: 768px) and (max-width: 991.98px) {
    .read-more-wrapper {
        justify-content: center;
    }
}

.read-more-btn {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s ease;
    flex-direction: row-reverse;
    /* RTL: عكس ترتيب العناصر */
}

.read-more-btn:hover {
    opacity: 0.8;
}

.read-more-icon {
    width: 15px;
    height: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-more-text {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 2.01;
    color: #232323;
    text-align: justify;
}

.strategy-signature {
    margin-top: 73px;
    max-width: 340px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile signature - under image */
.strategy-signature-mobile {
    display: block;
}

/* Desktop/Tablet signature - under title and text */
.strategy-signature-desktop {
    display: none;
    margin-top: 20px;
    text-align: right;
    margin-left: 0;
    margin-right: 0;
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .strategy-signature-mobile {
        display: block;
    }

    .strategy-signature-desktop {
        display: none;
    }
}

@media (min-width: 992px) {
    .strategy-signature-mobile {
        display: none;
    }

    .strategy-signature-desktop {
        display: block;
        text-align: right;
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }

    .strategy-signature-desktop .signature-title,
    .strategy-signature-desktop .signature-name {
        text-align: right;
    }
}

.signature-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #232323;
    text-align: center;
}

.signature-name {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: normal;
    color: var(--color-primary);
    text-align: center;
}

/* Responsive */
@media (max-width: 991.98px) {
    .strategy-row {
        align-items: center;
    }

    .strategy-content {
        text-align: center;
    }

    .strategy-title {
        font-size: 32px;
        text-align: center;
    }

    .strategy-description {
        font-size: 16px;
        text-align: center;
    }

    .strategy-image-wrapper {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .strategy-row .col-lg-5 {
        display: block;
    }
}

/* Tablet: Image at 50% size */
@media (min-width: 768px) and (max-width: 991.98px) {
    .strategy-image-wrapper {
        max-width: 50%;
        height: auto;
        margin: 0 auto;
    }

    .strategy-image {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 575.98px) {
    .strategy-content {
        text-align: center;
    }

    .strategy-title {
        font-size: 28px;
        text-align: center;
    }

    .strategy-description {
        font-size: 15px;
        text-align: center;
    }

    .strategy-image-wrapper {
        max-width: 70%;
        margin: 0 auto 20px;
    }

    .strategy-image {
        width: 100%;
    }

    .strategy-signature {
        margin-top: 20px;
    }

    .signature-name {
        font-size: 20px;
    }
}

/* Pattern Bar Section (inside strategy-section) */
.strategy-section .pattern-bar-section {
    width: 100%;
    overflow: hidden;
    margin-top: 0;
    padding: 0;
    order: 999;
}

.pattern-bar-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pattern-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .pattern-image {
        height: 26px;
        object-fit: cover;
    }
}

/* About Tabs Section */
.about-tabs-section {
    background: #ffffff;
    padding: 80px 0;
}

.about-tabs-section .row {
    justify-content: start;
}

.about-image-container {
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: all 0.5s ease;
}

.about-tabs-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: start;
    position: sticky;
    top: 90px;
    align-self: flex-start;
    z-index: 10;
}

.about-tab {
    padding: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    text-align: right;
}

.about-tab:hover {
    background: transparent;
}

.about-tab.active {
    background: transparent;
}

.about-tab-title {
    font-family: var(--font-family-primary);
    font-size: 18px;
    font-weight: 400;
    color: #6D6D6D;
    margin: 0;
    text-align: right;
    transition: all 0.3s ease;
}

.about-tab.active .about-tab-title {
    font-weight: 700;
    color: var(--color-primary);
}

.about-download-buttons {
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 88px;
    flex-wrap: wrap;
}

.about-download-buttons .about-download-btn {
    flex: 1;
    max-width: 300px;
}

.about-download-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 100px;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-decoration: none;
}

.about-download-btn:hover {
    background: #e67a55;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(246, 137, 98, 0.3);
}

.about-download-btn .btn-text {
    color: white;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
}

/* Responsive - About Tabs */
@media (max-width: 991.98px) {
    .about-tabs-section {
        padding: 60px 0;
    }

    .about-image-container {
        height: auto;
        margin-bottom: 40px;
    }

    /* Mobile: Tabs horizontal scroll */
    .about-tabs-container {
        flex-direction: row;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 12px;
        padding: 10px 0;
        scrollbar-width: thin;
        scrollbar-color: #d0d0d0 transparent;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
    }

    .about-tabs-container::-webkit-scrollbar {
        height: 6px;
    }

    .about-tabs-container::-webkit-scrollbar-track {
        background: transparent;
        border-radius: 10px;
    }

    .about-tabs-container::-webkit-scrollbar-thumb {
        background: #d0d0d0;
        border-radius: 10px;
    }

    .about-tabs-container::-webkit-scrollbar-thumb:hover {
        background: #b0b0b0;
    }

    .about-tab {
        flex-shrink: 0;
        width: auto;
        min-width: 200px;
        padding: 10px 0;
    }

    .about-tab-title {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .about-tabs-section {
        padding: 40px 0;
    }

    .about-image-container {
        height: auto;
    }

    .about-tab {
        flex-shrink: 0;
        width: auto;
        min-width: 180px;
        padding: 8px 0;
    }

    .about-tab-title {
        font-size: 14px;
    }

    .about-download-buttons {
        margin-top: 60px;
        gap: 15px;
    }

    .about-download-btn {
        padding: 14px 24px;
        flex: 1;
        min-width: 140px;
        max-width: 250px;
    }

    .about-download-btn .btn-text {
        font-size: 14px;
    }
}

/* About Complete Section - node-id: 48-13 */
.about-complete-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.about-complete-wrapper {
    position: relative;
    width: 100%;
    min-height: 966px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    gap: 80px;
}

.about-center-content {
    text-align: center;
}

.about-card-title,
.about-card-text {
    text-align: center;
}

/* Left Decorative Element - node-id: 48-16 */
.about-left-decorative {
    position: absolute;
    left: 0;
    top: 0;
    width: 232px;
    height: 389px;
    z-index: 1;
    pointer-events: none;
}

.left-decorative-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Center Content: Values, Vision, Mission - node-id: 17-1141 */
.about-center-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 801px;
    margin-right: 0;
    margin-left: 15.5%;
    padding-left: 15px;
}

/* Top Row: Values and Vision - node-id: 17-1142 */
.about-top-row {
    display: flex;
    gap: 21px;
    align-items: center;
    width: 100%;
}

/* About Cards */
.about-card {
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 24px 18px 32px 18px;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    flex: 1 0 0;
    min-width: 0;
    background: white;
}

.about-card-full {
    width: 100%;
}

.about-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 12px;
}

.about-card-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.icon-placeholder {
    width: 52px;
    height: 52px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.messages-star-icon {
    height: 54.167px;
}

.about-card-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 2.01;
    color: var(--color-primary);
    text-align: right;
    margin: 0;
    width: 100%;
}

.about-card-text {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 2.01;
    color: var(--color-text-dark-light);
    text-align: justify;
    margin: 0;
    width: 100%;
}

/* Right Content: About Mawaddah - node-id: 17-1127 */
.about-right-content {
    position: relative;
    width: 720px;
    height: 800px;
    /* background: linear-gradient(to bottom, rgba(240, 137, 100, 0) 5.18%, #f08964 44.458%); */
    background: #f08964;
    border-top-left-radius: 200px;
    border-bottom-left-radius: 200px;
    padding: 0 15.5% 0 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 48px;
    flex-shrink: 0;
    margin-right: 0;
    margin-left: auto;
    transform: scale(1.05);
}

/* Header Group - Title and Logo */
.about-mawaddah-header {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-end;
    gap: 15px;
    width: 100%;
    max-width: 540px;
}

.about-mawaddah-title {
    font-family: 'Harir', sans-serif;
    font-weight: 700;
    font-size: 80px;
    line-height: normal;
    color: white;
    text-align: right;
    margin: 0;
    white-space: nowrap;
}

.about-mawaddah-logo {
    width: auto;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.mawaddah-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Description */
.about-mawaddah-description {
    font-family: var(--font-family-primary);
    font-weight: 300;
    font-size: 28px;
    line-height: 2.01;
    color: white;
    text-align: right;
    margin: 0;
    width: 100%;
    max-width: 540px;
}

/* Button */
.about-mawaddah-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 100px;
    padding: 20px 36px 20px 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: auto;
    height: auto;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    flex-direction: row-reverse;
    /* RTL */
    transform: scale(1.1);
}

.about-mawaddah-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
    padding: 1px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.about-mawaddah-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.about-mawaddah-btn:hover::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.25) 40%, rgba(255, 255, 255, 0) 70%, transparent 100%);
}

.btn-icon-wrapper {
    width: 9.6px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.btn-chevron-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-mawaddah-btn .btn-text {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: white;
    white-space: nowrap;
}

/* Decorative Element - Right Side - node-id: 48-15 */
.about-mawaddah-decorative {
    position: absolute;
    left: 604px;
    top: 589px;
    width: 120px;
    height: 350px;
    z-index: 1;
    pointer-events: none;
}

.decorative-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Responsive About Complete Section */
@media (max-width: 1400px) {
    .about-complete-wrapper {
        gap: 60px;
    }

    .about-center-content {
        width: 600px;
        padding-left: 15px;
    }

    .about-right-content {
        width: 600px;
        height: auto;
        min-height: 800px;
    }

    .about-left-decorative {
        width: 180px;
        height: 300px;
    }
}

@media (max-width: 991.98px) {
    .about-complete-section {
        padding: 60px 0;
    }

    .about-complete-wrapper {
        flex-direction: column;
        padding: 0 20px;
        gap: 40px;
        min-height: auto;
    }

    .about-left-decorative {
        position: relative;
        width: 150px;
        height: 250px;
        margin: 0 auto;
    }

    .about-center-content {
        width: 100%;
        margin: 0;
        margin-top: 0;
        padding-left: 15px;
    }

    .about-top-row {
        flex-direction: column;
        gap: 24px;
    }

    .about-card {
        width: 100%;
    }

    .about-right-content {
        width: 100%;
        max-width: 724px;
        height: auto;
        min-height: 800px;
        padding: 60px 40px;
    }

    .about-mawaddah-title {
        font-size: 28px;
    }

    .about-mawaddah-logo {
        height: 35px;
    }

    .about-mawaddah-description {
        font-size: 18px;
    }

    .about-mawaddah-decorative {
        left: auto;
        right: 20px;
        top: auto;
        bottom: 20px;
        width: 80px;
        height: 250px;
    }
}

@media (max-width: 767.98px) {
    .about-complete-section {
        padding: 40px 0;
    }

    .about-complete-wrapper {
        padding: 0 15px;
        gap: 30px;
    }

    .about-left-decorative {
        width: 120px;
        height: 200px;
    }

    .about-center-content {
        gap: 20px;
        padding-left: 15px;
    }

    .about-card {
        padding: 20px 15px 24px 15px;

    }

    .about-card-icon {
        width: 45px;
        height: 45px;
    }

    .icon-placeholder {
        width: 45px;
        height: 45px;
    }

    .about-card-title {
        font-size: 24px;
    }

    .about-card-text {
        font-size: 18px;
    }

    .about-right-content {
        padding: 40px 30px;
        border-radius: 50px;
        gap: 32px;
        min-height: auto;
    }

    .about-mawaddah-header {
        gap: 40px;
    }

    .about-mawaddah-title {
        font-size: 24px;
    }

    .about-mawaddah-logo {
        height: 30px;
    }

    .about-mawaddah-description {
        font-size: 16px;
        line-height: 1.8;
    }

    .about-mawaddah-btn {
        width: 100%;
        max-width: 251px;
    }

    .about-mawaddah-decorative {
        display: none;
    }
}

/* Programs Section - node-id: 17-1164 */
.programs-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
}

.programs-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    margin-bottom: 85px;
    flex-wrap: wrap;
}

/* View All Button - node-id: 17-1166 */
.programs-view-all-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 100px;
    padding: 14px 28px 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: row-reverse;
    /* RTL */
    flex-shrink: 0;
}

.programs-view-all-btn:hover {
    background: #e67a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 139, 100, 0.3);
}

.programs-view-all-btn .btn-icon-wrapper {
    width: 8px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.programs-view-all-btn .btn-chevron-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.programs-view-all-btn .btn-text {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    color: white;
    white-space: nowrap;
}

/* Pattern - node-id: 17-1170 */
.programs-pattern {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    max-width: 1015px;
    height: 30px;
    overflow: hidden;
}

.pattern-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* Title with Logo - node-id: 17-1477 */
.programs-title-wrapper {
    display: flex;
    align-items: center;
    gap: 15.12px;
    flex-shrink: 0;
}

.programs-logo {
    width: 122.519px;
    height: 55.44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mw-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.programs-title {
    font-family: 'Harir', sans-serif;
    font-weight: 700;
    font-size: 55px;
    line-height: normal;
    color: var(--color-text-dark);
    text-align: right;
    margin: 0;
    padding: 8px 0 0 0;
}

/* Programs Carousel - node-id: 17-1486 */
.programs-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 43px;
    align-items: center;
    width: 100%;
}

/* Programs Swiper Container */
.programs-swiper {
    width: 100%;
    position: relative;
}

.programs-swiper .swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.programs-swiper .swiper-slide {
    height: auto;
    display: flex;
}

/* Program Card for Swiper */
.program-card {
    height: 568px;
    position: relative;
    border-radius: 21.05px;
    overflow: hidden;
    transition: transform 0.3s ease;
    user-select: none;
    box-sizing: border-box;
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    width: 100%;
}

.program-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.program-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.program-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(25, 25, 25, 0) 47.331%, #191919 100%);
    z-index: 1;
}

.program-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: start;
    padding: 20px 16px 28px 12.028px;
    gap: 0px;
}

.program-card-header {
    display: flex;
    gap: 0;
    align-items: center;
    gap: 12px;
}

.program-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.program-card-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    color: white;
    text-align: right;
    margin: 0;
    flex: 1;
}

.program-card-description {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    line-height: 32px;
    color: white;
    text-align: right;
    margin: 0;
    width: 100%;
    max-width: 433px;
}

/* Index Page Program Cards - Specific Height */
.index-program-card {
    height: 500px !important;
}

/* Swiper Pagination Dots - node-id: 17-1509 */
.programs-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 272px;
    height: 44px;
    position: relative;
    margin-top: 43px;
    z-index: 1000;
    position: relative !important;
}

/* Swiper Pagination Bullet Styling */
.programs-carousel-dots .programs-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: none;
    background: rgba(41, 41, 41, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    flex-shrink: 0;
    margin: 0 4px;
    opacity: 1;
}

.programs-carousel-dots .programs-dot:hover {
    background: rgba(41, 41, 41, 0.4);
}

.programs-carousel-dots .programs-dot-active {
    background: var(--color-primary);
    width: 18px;
    height: 18px;
}

/* Responsive Programs Section - Remove conflicting styles for Owl Carousel */

@media (max-width: 991.98px) {
    .programs-section {
        padding: 60px 0;
    }

    .programs-header {
        margin-bottom: 60px;
        gap: 15px;
    }

    .programs-pattern {
        order: 3;
        width: 100%;
        max-width: 100%;
        margin: 15px 0;
    }

    .programs-title-wrapper {
        order: 2;
    }

    .programs-view-all-btn {
        order: 1;
    }

    .programs-title {
        font-size: 45px;
    }

    .programs-logo {
        width: 100px;
        height: 45px;
    }

    /* Owl Carousel handles responsive display automatically */

    .program-card-title {
        font-size: 28px;
    }

    .program-card-description {
        font-size: 15px;
        line-height: 28px;
    }
}

@media (max-width: 767.98px) {
    .programs-section {
        padding: 40px 0;
    }

    .programs-header {
        flex-direction: column;
        margin-bottom: 40px;
        gap: 20px;
    }

    /* Hide pattern on mobile */
    .programs-pattern {
        display: none !important;
    }

    /* Hide original button on mobile */
    .programs-view-all-btn:not(.programs-view-all-btn-mobile) {
        display: none !important;
    }

    .programs-title-wrapper {
        order: 1;
        flex-direction: row;
        gap: 10px;
    }

    .programs-title {
        font-size: 40px;
        padding: 0;
        padding-top: 9px;
    }

    .programs-logo {
        width: 80px;
        height: 36px;
    }

    /* Mobile button after carousel */
    .programs-view-all-btn-mobile {
        display: flex !important;
        width: 100%;
        max-width: 250px;
        margin: 30px auto 0;
    }

    /* Owl Carousel handles responsive display automatically */

    .program-card {
        height: 450px;
    }

    /* Index Page Program Cards - Mobile Height */
    .index-program-card {
        height: 380px !important;
    }

    .program-card-content {
        padding: 15px 12px 20px 10px;
        gap: 12px;
    }

    .program-card-title {
        font-size: 24px;
    }

    .program-card-description {
        font-size: 14px;
        line-height: 24px;
        max-width: 100%;
    }

    .program-icon {
        width: 28px;
        height: 28px;
    }

    .programs-carousel-dots {
        width: 200px;
        gap: 6px;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
    }

    .carousel-dot.active {
        width: 14px;
        height: 14px;
    }
}

/* Hide mobile button on desktop/tablet */
@media (min-width: 768px) {
    .programs-view-all-btn-mobile {
        display: none !important;
    }
}

/* Quick Donation Section - node-id: 17-2038 */
.quick-donation-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
}

.quick-donation-wrapper {
    position: relative;
    width: 100%;
    max-width: 1487px;
    height: 565px;
    margin: 0 auto;
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 0 40px 0 0;
}

.quick-donation-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.donation-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.donation-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    z-index: 1;
}

.quick-donation-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 12px;
    max-width: 600px;
}

.quick-donation-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 44px;
    line-height: 2.01;
    color: white;
    text-align: right;
    margin: 0;
    width: 100%;
}

.quick-donation-subtitle {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 20px;
    line-height: 2.01;
    color: rgba(255, 255, 255, 0.82);
    text-align: justify;
    margin: 0;
}

.quick-donation-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 100px;
    padding: 14px 28px 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 229px;
    height: 68px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: row-reverse;
    /* RTL */
    flex-shrink: 0;
}

.quick-donation-btn:hover {
    background: #e67a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(246, 139, 100, 0.4);
}

.quick-donation-btn .btn-icon-wrapper {
    width: 11.495px;
    height: 21.554px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.quick-donation-btn .btn-chevron-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.quick-donation-btn .btn-text {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 26.343px;
    line-height: normal;
    color: white;
    white-space: nowrap;
}

/* Responsive Quick Donation Section */
@media (max-width: 1400px) {
    .quick-donation-wrapper {
        max-width: 100%;
        padding: 0 30px 0 0;
    }

    .quick-donation-content {
        max-width: 500px;
    }
}

@media (max-width: 991.98px) {
    .quick-donation-section {
        padding: 60px 0;
    }

    .quick-donation-wrapper {
        height: 500px;
        padding: 0 30px 0 0;
    }

    .quick-donation-content {
        gap: 40px;
        max-width: 450px;
    }

    .quick-donation-title {
        font-size: 45px;
    }

    .quick-donation-subtitle {
        font-size: 26px;
    }

    .quick-donation-btn {
        width: 200px;
        height: 60px;
    }

    .quick-donation-btn .btn-text {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .quick-donation-section {
        padding: 40px 0;
    }

    .quick-donation-wrapper {
        height: 450px;
        padding: 0 20px 0 0;
        border-radius: 30px;
    }

    .quick-donation-content {
        gap: 30px;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }

    .quick-donation-title {
        font-size: 36px;
        text-align: center;
    }

    .quick-donation-subtitle {
        font-size: 20px;
        text-align: center;
    }

    .quick-donation-btn {
        width: 180px;
        height: 56px;
    }

    .quick-donation-btn .btn-text {
        font-size: 20px;
    }

    .quick-donation-btn .btn-icon-wrapper {
        width: 10px;
        height: 18px;
    }
}

/* Memberships Section - node-id: 17-2045 */
.memberships-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
}

.memberships-wrapper {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1487px;
    margin: 0 auto;
}

/* Membership Card */
.membership-card {
    position: relative;
    height: 418px;
    border-radius: 60px;
    overflow: hidden;
    flex: 1;
}



.membership-card-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.membership-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.membership-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 60px;
}

.membership-overlay-blue {
    background: rgba(100, 165, 240, 0.79);
}

.membership-overlay-orange {
    background: rgba(240, 137, 100, 0.79);
}

.membership-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px;
}

/* Icon Wrapper */
.membership-icon-wrapper {
    width: 84px;
    height: 84px;
    background: rgba(255, 255, 255, 0.16);
    border-radius: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.membership-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-placeholder {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-icon::before {
    content: '👥';
    font-size: 28px;
}

.user-star-icon::before {
    content: '⭐';
    font-size: 28px;
}

/* Text Content */
.membership-text-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
    text-align: center;
    width: 100%;
}

.membership-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 2.01;
    color: white;
    text-align: center;
    margin: 0;
    width: 100%;
}

.membership-description {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 20px;
    line-height: 2.01;
    color: rgba(255, 255, 255, 0.66);
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Button */
.membership-btn {
    background: transparent;
    border: 1px solid white;
    border-radius: 100px;
    padding: 10px 28px 12px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 182px;
    height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-direction: row-reverse;
    /* RTL */
    flex-shrink: 0;
}

.membership-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.membership-btn .btn-icon-wrapper {
    width: 11.495px;
    height: 21.554px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.membership-btn .btn-chevron-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.membership-btn .btn-text {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: normal;
    color: white;
    white-space: nowrap;
}

/* Responsive Memberships Section */
@media (max-width: 1400px) {
    .memberships-wrapper {
        max-width: 100%;
    }

    .membership-card,
    .membership-card-orange {
        width: 50%;
        max-width: 600px;
    }
}

@media (max-width: 991.98px) {
    .memberships-section {
        padding: 60px 0;
    }

    .memberships-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .membership-card,
    .membership-card-orange {
        width: 100%;
        max-width: 684px;
        height: 400px;
    }

    .membership-card-content {
        gap: 12px;
        padding: 30px;
    }

    .membership-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .membership-icon {
        width: 48px;
        height: 48px;
    }

    .icon-placeholder {
        width: 48px;
        height: 48px;
    }

    .membership-title {
        font-size: 24px;
    }

    .membership-description {
        font-size: 18px;
    }
}

@media (max-width: 767.98px) {
    .memberships-section {
        padding: 40px 0;
    }

    .memberships-wrapper {
        gap: 20px;
    }

    .membership-card,
    .membership-card-orange {
        height: 350px;
        border-radius: 40px;
    }

    .membership-overlay {
        border-radius: 40px;
    }

    .membership-card-content {
        gap: 25px;
        padding: 25px 20px;
    }

    .membership-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .membership-icon {
        width: 40px;
        height: 40px;
    }

    .icon-placeholder {
        width: 40px;
        height: 40px;
    }

    .user-icon::before,
    .user-star-icon::before {
        font-size: 20px;
    }

    .membership-text-content {
        gap: 15px;
    }

    .membership-title {
        font-size: 22px;
    }

    .membership-description {
        font-size: 16px;
    }

    .membership-btn {
        width: 160px;
        height: 45px;
        padding: 8px 24px 10px 24px;
    }

    .membership-btn .btn-text {
        font-size: 18px;
    }

    .membership-btn .btn-icon-wrapper {
        width: 10px;
        height: 18px;
    }
}

/* Statistics Section - node-id: 56-76 */
.statistics-section {
    padding: 80px 0;
    position: relative;
    width: 100%;
    min-height: 965px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.statistics-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.statistics-bg-image {
    width: 107.57%;
    height: 133.54%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    left: -3.79%;
    top: -33.08%;
    display: block;
}

.statistics-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(240, 137, 100, 0.2) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.62) 100%);
    z-index: 1;
}

.statistics-content {
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 72px;
    padding: 0 20px;
}

.statistics-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 44px;
    line-height: 2.01;
    color: white;
    text-align: center;
    margin: 0;
    width: 100%;
}

.statistics-container {
    backdrop-filter: blur(9.7px);
    -webkit-backdrop-filter: blur(9.7px);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 34px;
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 80px;
    padding: 40px;
}

.statistics-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.statistics-group-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 44px;
}

.statistics-group-title {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 32px;
    line-height: 2.01;
    color: white;
    text-align: center;
    margin: 0;
    width: 100%;
}

.statistics-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 44px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    flex: 1;
}

.stat-number {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 40px;
    line-height: 2.01;
    color: white;
    text-align: center;
    width: 100%;
}

.stat-description {
    font-family: var(--font-family-primary);
    font-weight: 300;
    font-size: 18px;
    line-height: 2.01;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    margin: 0;
    width: 100%;
}

/* Responsive Statistics Section */
@media (max-width: 1400px) {
    .statistics-container {
        height: auto;
        min-height: 606px;
        gap: 120px;
        padding: 30px;
    }

    .stat-item {
        width: 300px;
    }
}

@media (max-width: 991.98px) {
    .statistics-section {
        padding: 60px 0;
        min-height: auto;
    }

    .statistics-content {
        gap: 80px;
    }

    .statistics-title {
        font-size: 44px;
    }

    .statistics-container {
        gap: 100px;
        padding: 30px 20px;
    }

    .statistics-group-content {
        gap: 60px;
    }

    .statistics-group-title {
        font-size: 32px;
    }

    .statistics-row {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .stat-item {
        width: calc(50% - 15px);
        min-width: 280px;
    }

    .stat-number {
        font-size: 36px;
    }

    .stat-description {
        font-size: 16px;
    }
}

@media (max-width: 767.98px) {
    .statistics-section {
        padding: 40px 0;
    }

    .statistics-content {
        gap: 60px;
        padding: 0 15px;
    }

    .statistics-title {
        font-size: 36px;
    }

    .statistics-container {
        border-radius: 24px;
        gap: 60px;
        padding: 30px 15px;
        min-height: auto;
    }

    .statistics-group-content {
        gap: 40px;
    }

    .statistics-group-title {
        font-size: 28px;
    }

    .statistics-row {
        flex-direction: column;
        gap: 30px;
    }

    .stat-item {
        width: 100%;
        align-items: center;
        text-align: center;
    }

    .stat-number {
        font-size: 32px;
        text-align: center;
    }

    .stat-description {
        font-size: 16px;
        text-align: center;
    }
}

/* Mobile/Additional Menu Panel */
.mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: block;
}

/* Hide mobile menu on desktop */
@media (min-width: 1200px) {
    .mobile-menu-panel {
        display: none;
    }
}

.mobile-menu-panel.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: rgba(33, 33, 33, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-menu-panel.active .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.mobile-menu-logo-img {
    max-width: 150px;
    height: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mobile-menu-close:hover {
    opacity: 0.7;
}

.mobile-menu-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.mobile-menu-item {
    display: block;
    padding: 16px 24px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: white;
    text-decoration: none;
    transition: background-color 0.2s ease, padding-right 0.2s ease;
    text-align: right;
    border: none;
    background: none;
    width: 100%;
    cursor: pointer;
}

.mobile-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-right: 28px;
    color: white;
}

/* Mobile Menu Dropdown */
.mobile-menu-dropdown {
    position: relative;
}

.mobile-menu-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.mobile-dropdown-chevron {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.mobile-menu-dropdown.active .mobile-dropdown-chevron {
    transform: rotate(180deg);
}

.mobile-menu-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
}

.mobile-menu-dropdown.active .mobile-menu-dropdown-menu {
    max-height: 800px;
}

.mobile-menu-dropdown-item {
    display: block;
    padding: 12px 24px 12px 40px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: background-color 0.2s ease, padding-right 0.2s ease;
    text-align: right;
}

.mobile-menu-dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-right: 44px;
    color: white;
}

/* Mobile Menu Nested Dropdown */
.mobile-menu-dropdown-nested {
    position: relative;
}

.mobile-menu-dropdown-nested-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px 24px 12px 40px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    text-align: right;
    transition: background-color 0.2s ease, padding-right 0.2s ease;
}

.mobile-menu-dropdown-nested-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-right: 44px;
    color: white;
}

.mobile-dropdown-chevron-nested {
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-right: 8px;
}

.mobile-menu-dropdown-nested.active .mobile-dropdown-chevron-nested {
    transform: rotate(180deg);
}

.mobile-menu-dropdown-nested-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.3);
}

.mobile-menu-dropdown-nested.active .mobile-menu-dropdown-nested-menu {
    max-height: 400px;
}

.mobile-menu-dropdown-nested-menu .mobile-menu-dropdown-item {
    padding-right: 60px;
}

/* Mobile Menu Register Buttons */
.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px;
    margin-top: 10px;
}

.mobile-menu-register-btn {
    background: rgba(246, 139, 100, 0.33);
    border: none;
    border-radius: 100px;
    padding: 14px 28px 16px 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
}

.mobile-menu-register-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 100px;
    background: linear-gradient(135deg, rgba(246, 139, 100, 0.6) 0%, rgba(246, 139, 100, 0.3) 40%, rgba(246, 139, 100, 0) 70%, transparent 100%);
    padding: 1px;
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

.mobile-menu-register-btn:hover {
    background: rgba(246, 139, 100, 0.4);
}

.mobile-menu-register-btn:hover::before {
    background: linear-gradient(135deg, rgba(246, 139, 100, 0.7) 0%, rgba(246, 139, 100, 0.45) 40%, rgba(246, 139, 100, 0) 70%, transparent 100%);
}

/* Responsive Mobile Menu */
@media (max-width: 991.98px) {
    .mobile-menu-content {
        max-width: 350px;
    }
}

@media (max-width: 767.98px) {
    .mobile-menu-content {
        max-width: 100%;
    }

    .mobile-menu-item {
        font-size: 18px;
        padding: 18px 24px;
    }

    .mobile-menu-dropdown-item {
        font-size: 16px;
        padding: 14px 24px 14px 40px;
    }
}

/* ============================================
   Sponsors Section - node-id: 17-2207
   ============================================ */

.sponsors-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
}

.sponsors-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 44px;
    line-height: 2.01;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 81px;
    width: 100%;
    padding: 0 20px;
}

.sponsors-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 59px;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Stagger rows on X-axis */
.sponsors-row-wrapper:nth-child(1) {
    transform: translateX(0);
}

.sponsors-row-wrapper:nth-child(2) {
    transform: translateX(100px);
}

.sponsors-row-wrapper:nth-child(3) {
    transform: translateX(50px);
}

.sponsors-row-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Gradient overlays for fade effect */
.sponsors-row-wrapper::before,
.sponsors-row-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 372px;
    z-index: 10;
    pointer-events: none;
}

.sponsors-row-wrapper::before {
    left: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 5.099%, #ffffff 77.188%);
}

.sponsors-row-wrapper::after {
    right: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 5.099%, #ffffff 77.188%);
    /* transform: rotate(180deg) scaleY(-1); */
}

/* Swiper Container for Sponsors */
.sponsors-row-wrapper .swiper {
    width: 100%;
    overflow: hidden;
}

.sponsors-row-wrapper .swiper-wrapper {
    display: flex;
    align-items: center;
    transition-timing-function: linear !important;
    /* Constant speed */
}

.sponsors-row-wrapper .swiper-slide {
    width: auto;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Force linear transition for constant speed */
.sponsors-row-wrapper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.sponsor-item {
    flex-shrink: 0;
    width: 245px;
    min-width: 245px;
    height: 120px;
    padding: 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.sponsor-logo-container {
    width: 100%;
    height: 100%;
    border: 1px solid #E8E8E8;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    background-color: transparent;
    transition: transform 0.3s ease;
}

.sponsor-logo-container:hover {
    transform: scale(1.05);
}

.sponsor-logo {
    width: 160px;
    height: 64px;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Glider.js custom styles */
.glider {
    overflow: hidden;
}

.glider-track {
    display: flex;
    align-items: center;
}

/* Infinite Marquee Animation - RTL (Right to Left) */
@keyframes marquee-rtl {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(var(--marquee-distance, 0px) * -1));
    }
}

/* Apply animation to track */
.sponsors-track.marquee {
    animation: marquee-rtl linear infinite;
    animation-timing-function: linear;
    will-change: transform;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Pause animation on hover */
.sponsors-row-wrapper:hover .sponsors-track {
    animation-play-state: paused;
}

/* Ensure items don't shrink */
.sponsors-track .sponsor-item {
    flex-shrink: 0;
}

/* Ensure row doesn't break */
.sponsors-row-wrapper {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .sponsors-title {
        font-size: 48px;
        margin-bottom: 60px;
    }

    .sponsors-carousel-wrapper {
        gap: 40px;
    }

    /* Adjust stagger for tablet */
    .sponsors-row-wrapper:nth-child(2) {
        transform: translateX(60px);
    }

    .sponsors-row-wrapper:nth-child(3) {
        transform: translateX(30px);
    }

    .sponsor-item {
        width: 200px;
        height: 100px;
    }

    .sponsors-row-wrapper::before,
    .sponsors-row-wrapper::after {
        width: 200px;
    }

    .sponsors-row-wrapper::before {
        left: 0;
    }

    .sponsors-row-wrapper::after {
        right: 0;
    }
}

@media (max-width: 768px) {
    .sponsors-section {
        padding: 60px 0;
    }

    .sponsors-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .sponsors-carousel-wrapper {
        gap: 30px;
    }

    /* Adjust stagger for mobile */
    .sponsors-row-wrapper:nth-child(2) {
        transform: translateX(40px);
    }

    .sponsors-row-wrapper:nth-child(3) {
        transform: translateX(20px);
    }

    .sponsor-item {
        width: 180px;
        height: 90px;
    }

    .sponsors-row-wrapper::before,
    .sponsors-row-wrapper::after {
        width: 100px;
    }

    .sponsors-row-wrapper::before {
        left: 0;
    }

    .sponsors-row-wrapper::after {
        right: 0;
    }
}

@media (max-width: 576px) {
    .sponsors-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .sponsor-item {
        width: 150px;
        height: 75px;
    }

    .sponsors-row-wrapper::before,
    .sponsors-row-wrapper::after {
        width: 60px;
    }
}


/* footer */

.footer-section {
    margin-top: 150px;
    padding-top: 70px;
    border-top-right-radius: 100px;
    border-top-left-radius: 100px;
    border-top: 1px solid #dbdbdb;
    text-align: center;
}

.footer-section .container {
    text-align: center;
}

.footer-section .row {
    justify-content: center;
}

.footer-section .col-lg-3,
.footer-section .col-lg-2,
.footer-section .col-lg-4,
.footer-section .col-md-6,
.footer-section .col-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-section .row {
    justify-content: center;
}

/* Footer links within each column aligned to right */

.footer-section .d-flex {
    align-items: start;
    justify-content: start;
}

.footer-section .text-end {
    text-align: center !important;
}

.footer-section .align-items-end {
    align-items: center !important;
}

.footer-section .justify-content-end {
    justify-content: center !important;
}

/* ============================================
   Dashboard Styles - لوحة التحكم
   ============================================ */

/* Dashboard Header Styles - Orange Logo, Dark Links */
.dashboard-header .logo-wrapper img {
    max-width: 180px;
    height: auto;
}

/* Desktop Layout - Show desktop elements, hide mobile */
.dashboard-header .header-desktop-logo,
.dashboard-header .header-desktop-donate {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Profile Avatar Desktop - Hidden by default, shown on scroll */
.dashboard-header .profile-avatar-desktop {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
    z-index: 10001;
}

.dashboard-header.scrolled .profile-avatar-desktop {
    display: flex;
    opacity: 1;
}

/* Profile Avatar Desktop Button */
.dashboard-header .profile-avatar-desktop .profile-avatar-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-header .profile-avatar-desktop .profile-avatar-img-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.dashboard-header .profile-avatar-desktop .profile-avatar-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: auto;
    margin-top: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10002;
}

.dashboard-header .profile-avatar-desktop.active .profile-avatar-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dashboard-header .header-mobile-layout {
    display: none;
}

/* Mobile Layout - Hide desktop elements, show mobile (less than 991px) */
@media (max-width: 991.98px) {

    .dashboard-header .header-desktop-logo,
    .dashboard-header .header-desktop-donate {
        display: none !important;
    }

    .dashboard-header .header-mobile-layout {
        display: flex;
    }

    /* Dashboard Header Layout - Right Section (Logo + Menu Toggle) - Mobile Only */
    .dashboard-header .header-right-section {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
    }

    .dashboard-header .header-right-section .header-logo-wrapper {
        display: flex;
        align-items: center;
    }

    .dashboard-header .header-right-section .menu-toggle-btn {
        display: flex !important;
        /* background: rgba(51, 51, 51, 0.1); */
        border: none;
        border-radius: 100px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        padding: 0;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .dashboard-header .header-right-section .menu-toggle-btn:hover {
        background: rgba(51, 51, 51, 0.2);
    }

    /* Dashboard Header Layout - Left Section (Donate Button + Avatar) - Mobile Only */
    .dashboard-header .header-left-section {
        display: flex;
        align-items: center;
        gap: 12px;
        flex: 0 0 auto;
    }

    .dashboard-header .header-left-section .header-donate-wrapper {
        display: flex !important;
        align-items: center;
    }

    .dashboard-header .header-left-section .header-quick-donate-btn {
        display: flex !important;
    }

    /* Logo size on mobile - 120px */
    .dashboard-header .header-mobile-layout .logo-wrapper img {
        max-width: 120px;
        width: 120px;
        height: auto;
    }

    /* Hide menu items in dashboard header menu wrapper on mobile */
    .dashboard-header .header-menu-wrapper .nav-menu>.nav-dropdown,
    .dashboard-header .header-menu-wrapper .nav-menu>.nav-link {
        display: none !important;
    }
}

/* Profile Avatar Button (48x48 circular) - Mobile Only */
@media (max-width: 991.98px) {
    .dashboard-header .profile-avatar-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border-radius: 50%;
    }

    .dashboard-header .profile-avatar-img-circle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        object-fit: cover;
        display: block;
    }

    .dashboard-header .profile-avatar-dropdown.active .profile-avatar-btn,
    .dashboard-header .profile-avatar-dropdown.active .profile-avatar-img-circle {
        /* No effects when dropdown is active */
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
    }

    .dashboard-header .profile-avatar-placeholder-circle {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: #6B46C1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 20px;
        font-weight: 600;
    }

    /* Profile Avatar Dropdown Menu - Positioned at left=0 - Mobile Only */
    .dashboard-header .profile-avatar-dropdown {
        position: relative;
        z-index: 10001;
    }

    .dashboard-header .profile-avatar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: auto;
        margin-top: 10px;
        min-width: 220px;
        background: white;
        border-radius: 12px;
        padding: 12px 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        z-index: 10000;
    }

    .dashboard-header .profile-avatar-dropdown.active .profile-avatar-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.dashboard-header .nav-link {
    color: #333 !important;
    font-weight: 650;
    font-size: 16px;
}

.dashboard-header .nav-link:hover {
    color: var(--color-primary) !important;
    opacity: 1;
}

.dashboard-header .header-top-bar {
    background: transparent;
}

/* Dashboard Header Top Bar - Show on Desktop, Hide on Mobile */
.dashboard-header .header-top-bar {
    display: block;
}

.dashboard-header .header-divider {
    display: block;
}

/* Hide top bar and divider on mobile (less than 991px) */
@media (max-width: 991.98px) {
    .dashboard-header .header-top-bar {
        display: none !important;
    }

    .dashboard-header .header-divider {
        display: none !important;
    }
}

.dashboard-header .header-top-bar .text-white {
    color: #333 !important;
}

.dashboard-header .header-top-bar p {
    color: #333333 !important;
}

.dashboard-header .contact-info p {
    color: #333333 !important;
}

.dashboard-header .language-selector p {
    color: #333333 !important;
}

/* Dashboard Header Register Buttons */
.dashboard-header .header-register-btn {
    background: transparent !important;
    border: 1px solid #F1F1F1 !important;
    color: rgba(51, 51, 51, 0.8) !important;
}

.dashboard-header .header-register-btn::before {
    display: none !important;
}

.dashboard-header .header-register-btn:hover {
    background: rgba(241, 241, 241, 0.5) !important;
    color: rgba(51, 51, 51, 1) !important;
}

/* Dashboard Header Quick Donate Button */
.dashboard-header .header-quick-donate-btn {
    background: var(--color-primary) !important;
    border: none !important;
}

.dashboard-header .header-quick-donate-btn::before {
    display: none !important;
}

.dashboard-header .header-quick-donate-btn:hover {
    background: #e67a55 !important;
}

/* Profile Dropdown in Dashboard Header */
.dashboard-header .profile-dropdown {
    position: relative;
    z-index: 10001;
}

.dashboard-header .profile-dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    transition: all 0.3s ease;
}

.dashboard-header .profile-dropdown-toggle:hover {
    opacity: 0.8;
}

.dashboard-header .profile-avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.dashboard-header .profile-avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #6B46C1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.dashboard-header .profile-name {
    white-space: nowrap;
}

.dashboard-header .profile-chevron {
    width: 15px;
    height: 15px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.dashboard-header .profile-dropdown.active .profile-chevron {
    transform: rotate(180deg);
}

.dashboard-header .profile-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    min-width: 220px;
    background: white;
    border-radius: 12px;
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 10000;
}

.dashboard-header .profile-dropdown.active .profile-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dashboard-header .profile-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 15px;
    color: #333333;
    text-decoration: none;
    transition: background-color 0.2s ease;
    text-align: right;
}

.dashboard-header .profile-dropdown-item:hover {
    background-color: #f5f5f5;
    color: #333333;
}

.dashboard-header .profile-dropdown-item svg {
    flex-shrink: 0;
}

.dashboard-header .profile-dropdown-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.dashboard-header .profile-dropdown-divider {
    height: 1px;
    background: #e6e6e6;
    margin: 8px 0;
}

.dashboard-header .profile-dropdown-logout {
    color: #dc2626 !important;
}

.dashboard-header .profile-dropdown-logout:hover {
    background-color: #fee2e2 !important;
    color: #dc2626 !important;
}

.dashboard-header .profile-dropdown-logout .profile-dropdown-icon {
    filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(7471%) hue-rotate(349deg) brightness(89%) contrast(86%);
}

/* Scroll Effect - Keep Dark Links and Chevrons */
.dashboard-header.scrolled .nav-link {
    color: #333333 !important;
}

.dashboard-header.scrolled .dropdown-chevron,
.dashboard-header.scrolled .dropdown-chevron-nested {
    filter: none;
}

.dashboard-header.scrolled .nav-dropdown-toggle {
    color: #333333 !important;
}

/* Social Icons Orange */
.dashboard-header .social-icon-link {
    background-color: rgba(246, 137, 98, 0.1) !important;
}

.dashboard-header .social-icon-link img {
    filter: brightness(0) saturate(100%) invert(58%) sepia(89%) saturate(1234%) hue-rotate(340deg) brightness(98%) contrast(96%);
}

/* Dashboard Navigation Bar */
.dashboard-nav {
    background: #fafafa;
    border: 1px solid #e6e6e6;
    border-radius: 39px;
    padding: 0 24px;
    margin: 84px auto;
    max-width: 1486px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    scrollbar-width: thin;
    scrollbar-color: #d0d0d0 transparent;
}

.dashboard-nav::-webkit-scrollbar {
    height: 6px;
}

.dashboard-nav::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 39px;
}

.dashboard-nav::-webkit-scrollbar-thumb {
    background: #d0d0d0;
    border-radius: 3px;
}

.dashboard-nav::-webkit-scrollbar-thumb:hover {
    background: #b0b0b0;
}

.dashboard-nav-item {
    padding: 8px 20px;
    height: 47px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #6d6d6d;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    white-space: nowrap;
    gap: 8px;
}

.dashboard-nav-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}

.dashboard-nav-item:not(.active) .dashboard-nav-icon {
    filter: brightness(0) saturate(100%) invert(45%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(95%) contrast(90%);
}

.dashboard-nav-item.active .dashboard-nav-icon {
    filter: brightness(0) invert(1);
}

.dashboard-nav-item:hover {
    background-color: #eeeeee;
}

.dashboard-nav-item.active {
    background: var(--color-primary);
    color: white;
    font-weight: 700;
    height: 53px;
    padding: 14px 28px 16px 28px;
}

/* Main Content Area */
.dashboard-content {
    padding: 40px 0;
    min-height: 60vh;
}

/* Profile Page Content */
.profile-header {
    text-align: right;
    margin-bottom: 64px;
    margin-top: 64px;
}

.profile-header h1 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 32.845px;
    color: #100f10;
    margin-bottom: 8px;
}

.profile-header p {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 19.16px;
    color: #8c8593;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32.845px;
    margin-bottom: 40px;
}

.stat-card {
    background: #fafafa;
    border: 1.369px solid #f8f8f8;
    border-radius: 21.897px;
    padding: 21.897px 24.634px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 24.634px;
}

.stat-card-content {
    text-align: right;
}

.stat-card-number {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 24px;
    color: #403c44;
    margin-bottom: 4px;
}

.stat-card-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    color: #736c7a;
}

.stat-card-icon {
    width: 62.953px;
    height: 62.953px;
    border: 1.369px solid #efeff0;
    border-radius: 136.855px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Profile Info Section */
.profile-info-section {
    background: #fafafa;
    border-radius: 24px;
    padding: 41px;
    margin-bottom: 40px;
}

.profile-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.profile-info-header h2 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    color: #100f10;
}

.edit-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 45px;
    padding: 12px 28px;
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edit-btn:hover {
    background: #e67a55;
}

.profile-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.info-card {
    border: 1px solid #f2f2f2;
    border-radius: 16px;
    padding: 21px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.info-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-content {
    flex: 1;
    text-align: right;
}

.info-card-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #736c7a;
    margin-bottom: 4px;
}

.info-card-value {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    color: #100f10;
}

/* Additional Info Card */
.additional-info-card {
    background: linear-gradient(to right, rgba(239, 246, 255, 0.5), rgba(250, 245, 255, 0.5));
    border-radius: 16px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.additional-info-content h3 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    color: #100f10;
    margin-bottom: 4px;
}

.additional-info-content p {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #736c7a;
}

.status-badges {
    display: flex;
    gap: 12px;
}

.status-badge {
    padding: 7px 16px;
    border-radius: 50px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
}

.status-badge.active {
    background: #dbeafe;
    color: #1447e6;
}

.status-badge.verified {
    background: #dcfce7;
    color: #008236;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Phone Icon Flip */
.phone-icon-flip {
    transform: scaleX(-1);
}

/* Info Card Icons Background Colors */
.info-card-icon-email {
    background: rgba(255, 237, 212, 0.3);
}

.info-card-icon-name {
    background: rgba(219, 234, 254, 0.3);
}

.info-card-icon-city {
    background: rgba(243, 232, 255, 0.3);
}

.info-card-icon-phone {
    background: rgba(220, 252, 231, 0.3);
}

.info-card-icon-id {
    background: rgba(224, 231, 255, 0.3);
}

.info-card-icon-birthdate {
    background: rgba(254, 249, 194, 0.3);
}

.info-card-icon-work {
    background: rgba(203, 251, 241, 0.3);
}

.info-card-icon-status {
    background: rgba(252, 231, 243, 0.3);
}

/* Status Badge Icon */
.status-badge-icon {
    display: inline-block;
    margin-left: 4px;
}

/* Footer Styles */
.footer-logo-img {
    max-width: 220px;
}

.footer-license-text {
    font-size: 15px;
    line-height: 28px;
    color: #333333;
}

.social-icon-link {
    width: 40px;
    height: 40px;
    padding: 5px;
}

.social-icon-img {
    width: 28px;
    height: 28px;
}

.social-icon-img[alt="Instagram"],
.social-icon-img[alt="LinkedIn"] {
    width: 25px;
    height: 25px;
}

.footer-section-title {
    font-size: 16px;
    font-weight: 500;
    color: #f68962;
}

.footer-link {
    font-size: 15px;
    color: rgba(41, 41, 41, 0.8);
}

.footer-chevron {
    width: 8px;
    height: 8px;
}

.footer-awards-title,
.footer-companies-title {
    font-size: 20px;
    font-weight: 400;
    color: #333333;
}

.footer-prize-img {
    max-height: 40px;
}

.footer-company-img {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-copyright {
    font-size: 15px;
    color: #333333;
}

/* ============================================
   Payment Page Styles - صفحة المدفوعات
   ============================================ */

/* Payment Stats Grid */
.payment-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 33px;
    margin-bottom: 48px;
}

.payment-stat-card {
    background: #fafafa;
    border: 1.369px solid #f8f8f8;
    border-radius: 21.897px;
    padding: 21.897px 24.634px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 148px;
}

.payment-stat-content {
    text-align: right;
}

.payment-stat-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #736c7a;
    margin-bottom: 4px;
}

.payment-stat-number {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 28px;
    line-height: 42px;
}

.payment-stat-failed {
    color: #ec6476;
}

.payment-stat-pending {
    color: #bdb700;
}

.payment-stat-completed {
    color: #12c3a0;
}

.payment-stat-total {
    color: #f68962;
}

.payment-stat-amount {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.payment-stat-currency {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.payment-stat-icon {
    width: 45px;
    height: 45px;
    border: 1px solid #dfdfdf;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Payment Actions Bar */
.payment-actions-bar {
    background: #fafafa;
    border: 1.369px solid #f8f8f8;
    border-radius: 71px;
    padding: 21.897px 24.634px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    flex-wrap: wrap;
    gap: 16px;
}

.payment-search-filter {
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1;
    min-width: 300px;
}

.filter-btn {
    background: white;
    border: none;
    border-radius: 38px;
    padding: 11px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: #403c44;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn:hover {
    background: #f5f5f5;
}

.filter-btn.active {
    background: var(--color-primary);
    color: white;
}

.filter-btn.active:hover {
    background: #e67a55;
}

.filter-btn.active svg path {
    stroke: white;
}

.filter-wrapper {
    position: relative;
}

.filter-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    min-width: 320px;
    padding: 20px;
}

.filter-dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.filter-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-label {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    color: #403c44;
}

.filter-date-input,
.filter-select-input {
    width: 100%;
    background: #fafafa;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #100f10;
    text-align: right;
    transition: all 0.3s ease;
}

.filter-date-input:focus,
.filter-select-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(246, 139, 98, 0.1);
}

.filter-select-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23403c44' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
    cursor: pointer;
}

.filter-actions {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}

.filter-apply-btn,
.filter-reset-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.filter-apply-btn {
    background: var(--color-primary);
    color: white;
}

.filter-apply-btn:hover {
    background: #e67a55;
}

.filter-reset-btn {
    background: #f5f5f5;
    color: #403c44;
    border: 1px solid #e6e6e6;
}

.filter-reset-btn:hover {
    background: #e6e6e6;
}

.search-input-wrapper {
    position: relative;
    flex: 1;
    max-width: 280px;
}

.search-input {
    width: 100%;
    background: white;
    border: none;
    border-radius: 29px;
    padding: 8px 40px 8px 16px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #403c44;
    text-align: right;
}

.search-input::placeholder {
    color: rgba(64, 60, 68, 0.5);
}

.search-input:focus {
    outline: none;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

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

.export-btn {
    background: white;
    border: none;
    border-radius: 37px;
    padding: 13px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: #403c44;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.export-btn:hover {
    background: #f5f5f5;
}

.add-payment-btn {
    background: var(--color-primary);
    border: none;
    border-radius: 37px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 16px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.add-payment-btn:hover {
    background: #e67a55;
}

/* Payments Table Container */
.payments-table-container {
    background: #fafafa;
    border: 1px solid #f8f8f8;
    border-radius: 28.596px;
    overflow: hidden;
    margin-bottom: 40px;
}

.payments-table-header {
    border-bottom: 1.192px solid #f4f4f4;
    padding: 47.66px;
}

.payments-table-header h2 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 28.596px;
    color: #100f10;
    margin: 0;
    text-align: right;
}

.payments-table-wrapper {
    overflow-x: auto;
}

.payments-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.payments-table thead {
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1.192px solid #f4f4f4;
}

.payments-table th {
    padding: 20px 48px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: #9e9e9e;
    text-align: right;
    border-bottom: 1.192px solid #f4f4f4;
}

.payments-table tbody tr {
    border-top: 1.192px solid #f4f4f4;
    transition: background-color 0.2s ease;
}

.payments-table tbody tr:hover {
    background: #fafafa;
}

.payments-table td {
    padding: 20px 48px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #292929;
    text-align: right;
}

/* Payment Method Badges */
.payment-method {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    background: #f0f0f0;
    color: #403c44;
}

.payment-method-mada {
    background: #e8f5e9;
    color: #2e7d32;
}

.payment-method-bank {
    background: #e3f2fd;
    color: #1565c0;
}

.payment-method-tabby {
    background: #fff3e0;
    color: #e65100;
}

.payment-method-visa {
    background: #f3e5f5;
    color: #6a1b9a;
}

.payment-method-mastercard {
    background: #e0f2f1;
    color: #00695c;
}

/* Payment Status Badges */
.payment-status {
    display: inline-block;
    padding: 4.766px 14.298px;
    border-radius: 50px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16.681px;
}

.payment-status-approved {
    background: #dcfce7;
    color: #008236;
}

.payment-status-pending {
    background: #fef9c2;
    color: #a65f00;
}

.payment-status-failed {
    background: #fee2e2;
    color: #dc2626;
}

/* Payment Actions */
.payment-actions {
    display: flex;
    gap: 9.532px;
    align-items: center;
}

.action-btn {
    width: 38.128px;
    height: 38.128px;
    border: none;
    background: transparent;
    border-radius: 11.915px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.action-btn:hover {
    background: #f0f0f0;
}

.action-btn svg {
    width: 19px;
    height: 19px;
}

.action-btn:last-child svg {
    width: 24px;
    height: 24px;
}

/* Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 47.66px;
    border-top: 1.192px solid #f4f4f4;
    flex-wrap: wrap;
    gap: 16px;
}

.pagination-info {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #736c7a;
}

.pagination {
    display: flex;
    gap: 8px;
    align-items: center;
}

.pagination-btn {
    min-width: 40px;
    height: 40px;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: #403c44;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0 12px;
}

.pagination-btn:hover:not(:disabled):not(.active) {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

.pagination-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-btn svg {
    width: 16px;
    height: 16px;
}

/* Responsive Payment Styles */
@media (max-width: 991.98px) {
    .payment-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .payment-actions-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .payment-search-filter {
        flex-direction: column;
        width: 100%;
    }

    .search-input-wrapper {
        max-width: 100%;
    }

    .payment-action-buttons {
        width: 100%;
        justify-content: stretch;
    }

    .export-btn,
    .add-payment-btn {
        flex: 1;
    }

    .payments-table {
        font-size: 14px;
    }

    .payments-table th,
    .payments-table td {
        padding: 12px 16px;
    }

    .pagination-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767.98px) {
    .payment-stats-grid {
        grid-template-columns: 1fr;
    }

    .payments-table-wrapper {
        overflow-x: scroll;
    }

    .payments-table {
        min-width: 800px;
    }

    .footer-section {
        padding-right: 16px;
    }

    .footer-section .align-items-end {
        align-items: start !important;
        justify-content: start !important;
    }
}

/* Responsive Dashboard Styles */
@media (max-width: 991.98px) {
    .dashboard-nav {
        flex-wrap: nowrap;
        height: 77px;
        padding: 0 16px;
        gap: 20px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .dashboard-nav-item {
        font-size: 16px;
        padding: 8px 16px;
        flex-shrink: 0;
    }

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

    .profile-info-grid {
        grid-template-columns: 1fr;
    }

    .profile-info-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .additional-info-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .status-badges {
        flex-wrap: wrap;
    }
}

/* Invoice Page Styles */
.invoice-container {
    max-width: 836px;
    margin: 40px auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    direction: rtl;
}

.invoice-header {
    background: linear-gradient(166deg, #f68b64 0%, #e57a55 100%);
    height: 160px;
    display: flex;
    align-items: center;
    padding: 0 60px;
}

.invoice-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.invoice-logo {
    width: 157px;
}

.invoice-title-section {
    text-align: center;
    color: white;
}

.invoice-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 8px;
}

.invoice-subtitle {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}

.invoice-number-section {
    text-align: left;
    color: white;
}

.invoice-number-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 4px;
}

.invoice-number {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 24px;
    margin: 0;
}

.invoice-status {
    padding: 60px;
    display: flex;
    justify-content: center;
}

.status-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 32px;
    height: 62px;
    border-radius: 33554432px;
    background: #dcfce7;
}

.status-approved {
    background: #dcfce7;
}

.status-approved span {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    color: #008236;
}

.status-approved svg {
    width: 24px;
    height: 24px;
}

.invoice-section {
    padding: 0 60px;
    margin-bottom: 24px;
}

.section-header {
    border-bottom: 2px solid #f68b64;
    padding-bottom: 16px;
    margin-bottom: 24px;
}

.section-header h2 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 24px;
    color: #100f10;
    margin: 0;
}

.payment-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.info-card {
    background: #f9fafb;
    padding: 16px;
    border-radius: 12px;
}

.info-card .info-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #736c7a;
    margin-bottom: 4px;
}

.info-card .info-value {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    color: #100f10;
}

.info-card .amount {
    color: #f68b64;
}

.additional-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

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

.info-row .info-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #736c7a;
}

.info-row .info-value {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: #100f10;
}

.member-info-card {
    background: linear-gradient(166deg, rgba(255, 247, 237, 0.5) 0%, rgba(254, 242, 242, 0.5) 100%);
    padding: 25px;
    border-radius: 16px;
}

.member-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.member-info-item .info-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #736c7a;
    margin-bottom: 4px;
}

.member-info-item .info-value {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    color: #100f10;
}

.membership-id {
    color: #f68b64;
}

.invoice-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    padding: 26px 60px 0;
    border-top: 2px solid #e5e7eb;
    margin-bottom: 31px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: -1px 16px;
    height: 63px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Invoice Action Buttons - Specific class */
.invoice-action-btn {
    width: fit-content !important;
    padding-right: 16px !important;
    padding-left: 16px !important;
}

.print-btn {
    background: white;
    border: 2px solid #f68b64;
    color: #f68b64;
}

.print-btn:hover {
    background: #f68b64;
    color: white;
}

.print-btn:hover svg path {
    stroke: white;
}

.download-btn {
    background: #f68b64;
    color: white;
}

.download-btn:hover {
    background: #e57a55;
}

.invoice-footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 31px 60px;
}

.footer-content {
    text-align: center;
}

.footer-org {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #736c7a;
    margin-bottom: 8px;
}

.footer-contact {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 13px;
    color: #736c7a;
    margin-bottom: 4px;
}

.footer-copyright {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 12px;
    color: #736c7a;
    margin: 0;
}

.invoice-content {
    background: white;
    border-radius: 24px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1), 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 40px;
}

/* Responsive adjustments for invoice page */
@media (max-width: 768px) {
    .invoice-content {
        margin: 20px 20px 40px;
    }

    .invoice-header {
        padding: 0 30px;
        height: auto;
        min-height: 120px;
    }

    .invoice-header-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .invoice-logo {
        width: 120px;
    }

    .invoice-title {
        font-size: 24px;
    }

    .invoice-number-section {
        text-align: center;
    }

    .invoice-status {
        padding: 40px 30px;
    }

    .status-badge {
        padding: 0 24px;
        height: 50px;
    }

    .status-approved span {
        font-size: 16px;
    }

    .invoice-section {
        padding: 0 30px;
    }

    .payment-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .member-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .invoice-actions {
        flex-direction: column;
        padding: 20px 30px 0;
        gap: 12px;
    }

    .action-btn {
        width: 100%;
        justify-content: center;
        height: 55px;
    }

    .invoice-footer {
        padding: 20px 30px;
    }
}

/* Notifications Page Styles */
.notifications-actions-bar {
    background: #fafafa;
    border: 1px solid #f0f0f0;
    border-radius: 100px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.notifications-actions-left {
    display: flex;
    gap: 12px;
    align-items: center;
}

.notification-filter-btn {
    background: white;
    border: none;
    border-radius: 100px;
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    color: #403c44;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notification-filter-btn:hover {
    background: #f5f5f5;
}

.notification-filter-btn.active {
    background: var(--color-primary);
    color: white;
}

.notification-filter-btn.active:hover {
    background: #e67a55;
}

.notifications-actions-right {
    display: flex;
    align-items: center;
}

.notification-mark-all-btn {
    background: white;
    border: none;
    border-radius: 100px;
    padding: 0 20px;
    height: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    color: #403c44;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.notification-mark-all-btn:hover {
    background: #f5f5f5;
}

.notification-mark-all-btn svg {
    width: 18px;
    height: 18px;
    color: #403c44;
    flex-shrink: 0;
}

.notifications-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 32px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.04);
}

.notification-item {
    background: white;
    border-bottom: 1px solid #f5f5f5;
    padding: 20px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.2s ease;
    position: relative;
}

.notification-item:last-child {
    border-bottom: none;
}

.notification-item:hover {
    background: #fafafa;
}

.notification-item.unread {
    background: #fafafa;
}

.notification-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: auto;
}

.notification-icon svg {
    width: 24px;
    height: 24px;
}

.notification-icon-purple {
    background: rgba(156, 39, 176, 0.15);
}

.notification-icon-purple svg path {
    stroke: #9c27b0;
}

.notification-icon-green {
    background: rgba(76, 175, 80, 0.15);
}

.notification-icon-green svg path {
    stroke: #4caf50;
}

.notification-icon-red {
    background: rgba(244, 67, 54, 0.15);
}

.notification-icon-red svg path {
    stroke: #f44336;
}

.notification-icon-blue {
    background: rgba(3, 169, 244, 0.15);
}

.notification-icon-blue svg path {
    stroke: #03a9f4;
}

.notification-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}

.notification-message {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
}

.notification-time {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 13px;
    color: #9e9e9e;
    margin-top: 4px;
}

.notification-unread-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f44336;
    flex-shrink: 0;
    margin-top: 20px;
    margin-left: auto;
    box-shadow: 0px 0px 4px rgba(244, 67, 54, 0.4);
}

.notification-item.read {
    margin-right: 20px;
}

.notifications-load-more {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 40px;
}

.load-more-btn {
    background: white;
    border: 2px solid var(--color-primary);
    border-radius: 100px;
    padding: 0 32px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-family-primary);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0px 4px 12px rgba(246, 139, 100, 0.3);
}

/* Responsive adjustments for notifications page */
@media (max-width: 1200px) {
    .notifications-actions-bar {
        flex-direction: column;
        align-items: flex-end;
        gap: 16px;
    }

    .notifications-actions-left {
        width: 100%;
        justify-content: flex-end;
    }

    .notifications-actions-right {
        width: 100%;
        justify-content: flex-end;
    }
}

@media (max-width: 767.98px) {
    .notifications-actions-bar {
        padding: 12px 16px;
        gap: 12px;
        border-radius: 16px;
    }

    .notifications-actions-left {
        flex-wrap: wrap;
        width: 100%;
        gap: 8px;
    }

    .notification-filter-btn {
        flex: 1;
        min-width: 100px;
        font-size: 13px;
        padding: 0 16px;
        height: 36px;
    }

    .notifications-actions-right {
        width: 100%;
    }

    .notification-mark-all-btn {
        width: 100%;
        justify-content: center;
        font-size: 13px;
        height: 36px;
    }

    .notification-item {
        padding: 16px;
        gap: 12px;
    }

    .notification-icon {
        width: 40px;
        height: 40px;
    }

    .notification-icon svg {
        width: 20px;
        height: 20px;
    }

    .notification-message {
        font-size: 14px;
    }

    .notification-time {
        font-size: 12px;
    }

    .notification-unread-dot {
        width: 6px;
        height: 6px;
        margin-top: 17px;
    }

    .load-more-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Password Change Page Styles */
.password-change-container {
    display: flex;
    gap: 33px;
    align-items: flex-start;
    margin-top: 48px;
    margin-bottom: 48px;
}

.password-sidebar {
    flex: 0 0 394px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.password-form-section {
    flex: 1;
    min-width: 0;
}

/* Password Requirements Card */
.password-requirements-card {
    background: rgba(250, 250, 250, 0.8);
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.password-requirements-card .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.password-requirements-card .card-header h3 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    color: #100f10;
    margin: 0;
}

.password-requirements-card .card-header svg {
    width: 24px;
    height: 24px;
    color: #403c44;
}

.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.requirement-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #403c44;
}

.requirement-item span {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 15px;
    color: #403c44;
}

.requirement-item.valid svg path {
    stroke: #12c3a0;
}

.requirement-item.invalid svg path {
    stroke: #ec6476;
}

/* Security Tips Card */
.security-tips-card {
    background: rgba(239, 246, 255, 0.4);
    border: 1px solid #bedbff;
    border-radius: 24px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.security-tips-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.security-tips-card .card-header svg {
    width: 24px;
    height: 24px;
    color: #3B82F6;
}

.security-tips-card .card-header h3 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    color: #100f10;
    margin: 0;
}

.tips-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tips-list li {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #403c44;
    line-height: 1.6;
}

/* Forgot Password Card */
.forgot-password-card {
    background: rgba(254, 252, 232, 0.3);
    border: 1px solid rgba(255, 240, 133, 0.4);
    border-radius: 24px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.forgot-password-card .card-header {
    display: flex;
    align-items: center;
    gap: 12px;
}

.forgot-password-card .card-header svg {
    width: 24px;
    height: 24px;
    color: #F0B100;
}

.forgot-password-card .card-header h3 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    color: #100f10;
    margin: 0;
}

.forgot-password-card p {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #403c44;
    line-height: 1.6;
    margin: 0;
}

.reset-password-btn {
    background: #f0b100;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    height: 37px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.reset-password-btn:hover {
    background: #d9a000;
}

/* Password Form Section */
.password-form-card {
    background: #fafafa;
    border-radius: 24px;
    padding: 41px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.form-title-section h2 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 28px;
    color: #100f10;
    margin: 0 0 8px 0;
}

.form-title-section p {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #736c7a;
    margin: 0;
}

.form-header svg {
    width: 32px;
    height: 32px;
    color: #403c44;
    flex-shrink: 0;
}

.profile-share-btn {
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.profile-share-btn:hover {
    background: #f5f5f5;
}

.profile-share-btn .share-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.password-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-edit-form {
    gap: 20px;
}

.profile-edit-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .profile-edit-form .form-row {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: #403c44;
}

.password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.password-input {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 200px;
    padding: 16px 16px 16px 16px;
    width: 100%;
    height: 58px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #100f10;
    text-align: right;
    transition: all 0.3s ease;
}

.password-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(246, 139, 98, 0.1);
}

.password-input::placeholder {
    color: rgba(16, 15, 16, 0.5);
}

/* Profile Edit Form Styles */
.password-input[type="text"],
.password-input[type="email"],
.password-input[type="tel"],
.password-input[type="date"],
.password-input[type="select"],
.password-input select {
    padding-left: 16px;
}

/* Input with Icon */
.form-group-with-icon {
    position: relative;
}

.input-with-icon {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-icon .password-input {
    padding-right: 48px;
}

.input-with-icon .input-icon {
    position: absolute;
    right: 16px;
    width: 20px;
    height: 20px;
    object-fit: contain;
    pointer-events: none;
    flex-shrink: 0;
}

.password-input select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23403c44' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 16px center;
    padding-left: 40px;
    cursor: pointer;
}

.password-toggle-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #403c44;
    transition: color 0.3s ease;
}

.password-toggle-btn:hover {
    color: var(--color-primary);
}

.password-toggle-btn svg {
    width: 20px;
    height: 20px;
}

.form-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: row-reverse;
    padding-top: 16px;
}

.update-password-btn {
    background: var(--color-primary);
    color: white;
    border: none;
    border-radius: 300px;
    padding: 0 24px;
    height: 51px;
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.update-password-btn:hover {
    background: #e67a55;
}

.cancel-btn {
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 200px;
    padding: 0 24px;
    height: 51px;
    width: 98.75px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: #403c44;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cancel-btn:hover {
    background: #f5f5f5;
    border-color: #d0d0d0;
}

/* Responsive adjustments for password page */
@media (max-width: 1200px) {
    .password-change-container {
        flex-direction: column;
        gap: 24px;
    }

    .password-sidebar {
        flex: 1;
        width: 100%;
    }

    .password-form-section {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .password-change-container {
        margin-top: 32px;
        margin-bottom: 32px;
    }

    .password-requirements-card,
    .security-tips-card,
    .forgot-password-card {
        padding: 24px;
    }

    .password-form-card {
        padding: 24px;
    }

    .form-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .form-title-section h2 {
        font-size: 24px;
    }

    .form-title-section p {
        font-size: 14px;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
    }

    .update-password-btn,
    .cancel-btn {
        width: 100%;
    }
}

/* Profile Payments Section */
.profile-payments-section {
    margin-top: 48px;
    background: #fafafa;
    border-radius: 28.596px;
    padding: 1.192px;
    overflow: hidden;
}

.profile-payments-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 47.66px 47.66px 1.192px 47.66px;
    border-bottom: 1.192px solid #f4f4f4;
}

.profile-payments-header h2 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 28.596px;
    color: #100f10;
    margin: 0;
}

.view-all-payments-link {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-payments-link:hover {
    color: #e67a55;
    text-decoration: underline;
}

.profile-payments-table-container {
    overflow-x: auto;
}

.profile-payments-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.profile-payments-table th,
.profile-payments-table td {
    padding: 20px 48px;
    border-bottom: 1.192px solid #f4f4f4;
    vertical-align: middle;
}

.profile-payments-table th {
    background: rgba(255, 255, 255, 0.5);
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: #9e9e9e;
    text-align: right;
}

.profile-payments-table td {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #292929;
}

.profile-payments-table tbody tr:last-child td {
    border-bottom: none;
}

.profile-payments-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Payment Method Icons */
.payment-method-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-method-icon {
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.payment-method-icon-wrapper span {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #292929;
}

/* Payment Method Icons in Payment Table */
.payment-table .payment-method-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-table .payment-method-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.payment-table .payment-method-icon-wrapper span {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #292929;
}

/* Payment Method Icons in Invoice */
.invoice-section .payment-method-icon-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.invoice-section .payment-method-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    flex-shrink: 0;
}

.invoice-section .payment-method-icon-wrapper span {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    color: #100f10;
}

/* Responsive adjustments for profile payments */
@media (max-width: 767.98px) {
    .profile-payments-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 24px;
    }

    .profile-payments-header h2 {
        font-size: 24px;
    }

    .profile-payments-table th,
    .profile-payments-table td {
        padding: 12px 20px;
        font-size: 14px;
    }

    .payment-method-icon {
        width: 20px;
        height: 20px;
    }
}

/* ===========================================
   PROGRAMS PAGE STYLES
   =========================================== */

/* Program Stats Grid */
.program-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.program-stat-card {
    background: #fafafa;
    border: 1px solid #f8f8f8;
    border-radius: 21.897px;
    padding: 33px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.program-stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.program-stat-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #736c7a;
    margin: 0;
    line-height: 24px;
}

.program-stat-number {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    margin: 0;
}

.program-stat-number.program-stat-upcoming {
    color: #33cfff;
}

.program-stat-number.program-stat-registered {
    color: #40c4aa;
}

.program-stat-number.program-stat-live {
    color: #fb2c36;
}

.program-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-stat-icon.program-stat-icon-upcoming {
    background: #dbeafe;
}

.program-stat-icon.program-stat-icon-registered {
    background: #dcfce7;
}

.program-stat-icon.program-stat-icon-live {
    background: rgba(251, 44, 54, 0.05);
}

/* Programs Section Header */
.programs-section {
    margin-bottom: 48px;
}

.programs-section-header {
    margin-bottom: 24px;
}

.programs-section-header h2 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 28px;
    line-height: 42px;
    color: #100f10;
    margin: 0;
}

/* Program Cards Grid */
.program-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.program-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 6px -1px rgba(0, 0, 0, 0.1), 0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0px 8px 12px -2px rgba(0, 0, 0, 0.15), 0px 4px 6px -3px rgba(0, 0, 0, 0.1);
}

.program-card-image {
    position: relative;
    height: 263px;
    overflow: hidden;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-date-badge {
    position: absolute;
    top: 13px;
    right: 10.59px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 100px;
    padding: 8px 16px;
    text-align: center;
    font-family: var(--font-family-primary);
    color: white;
    min-width: 95.141px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.program-date-day {
    font-weight: 800;
    font-size: 26px;
    line-height: 39px;
    display: block;
    margin-top: -5px;
}

.program-date-month {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    display: block;
    letter-spacing: 0.8px;
}

.program-type-badge {
    position: absolute;
    top: 14px;
    left: 16px;
    border-radius: 100px;
    padding: 0 12px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 13px;
    line-height: 19.5px;
    color: white;
    z-index: 2;
    min-width: 64px;
}

.program-type-badge.program-type-live {
    background: rgba(251, 44, 54, 0.8);
}

.program-type-badge.program-type-seminar {
    background: rgba(0, 201, 80, 0.7);
    height: 36px;
}

.program-type-badge.program-type-workshop {
    background: rgba(43, 127, 255, 0.7);
}

.program-type-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(248, 195, 198, 0.627);
}

.program-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
}

.program-time-info {
    display: flex;
    align-items: center;
    gap: 0;
    height: 24.5px;
    width: 100%;
    justify-content: start;
    gap: 8px;
}

.program-date-tag {
    background: #2f2f2f;
    border-radius: 100px;
    padding: 4px 12px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 11px;
    line-height: 16.5px;
    color: white;
    white-space: nowrap;
    height: 24.5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-time-range {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 11px;
    line-height: 16.5px;
    color: #4a4a4a;
    white-space: nowrap;
}

.program-time-range svg {
    width: 12px;
    height: 12px;
}

.program-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.program-title {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #282828;
    margin: 0;
}

.program-description {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 13px;
    line-height: 21.125px;
    color: #ababab;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.program-meta {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 32px;
    height: 19.5px;
    flex-direction: row-reverse;
}

.program-participants,
.program-speaker {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 13px;
    line-height: 19.5px;
    color: #4a4a4a;
    margin: 0;
}

.program-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    height: 44px;
    width: 100%;
}

.program-register-btn,
.program-view-details-btn {
    flex: 1;
    height: 44px;
    border-radius: 100px;
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: #f68b64;
    color: white;
}

.program-register-btn:hover,
.program-view-details-btn:hover {
    background: #e57a55;
}

.program-share-card-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #403c44;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 0;
}

.program-share-card-btn svg {
    width: 20px;
    height: 20px;
}

.program-share-card-btn svg path {
    stroke: #403c44;
}

.program-share-card-btn:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
}

.program-info-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid #efefef;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 1px;
}

.program-info-btn:hover {
    background: #f9fafb;
    border-color: #e5e7eb;
}

/* ===========================================
   PROGRAM DETAIL PAGE STYLES
   =========================================== */

.program-detail-container {
    display: grid;
    grid-template-columns: 880px 424px;
    gap: 32px;
    align-items: start;
}

.program-detail-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 880px;
}

.program-detail-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 400px;
}

.program-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-detail-image .program-type-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    background: #fb2c36;
    border-radius: 100px;
    padding: 0 16px;
    height: 37px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 14px;
    line-height: 21px;
    color: white;
}

.program-detail-image .program-type-badge .program-type-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.508);
}

.program-detail-image .program-type-badge:not(.program-type-live) {
    background: #00c950;
}

.program-detail-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 48px;
    color: #100f10;
    margin: 0;
}

/* Program Info Cards */
.program-info-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    height: 126px;
}

.program-info-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 16px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.program-info-icon {
    width: 32px;
    height: 32px;
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-info-icon svg {
    width: 24px;
    height: 24px;
}

.program-info-content {
    margin-top: 48px;
    text-align: center;
    width: 100%;
}

.program-info-value {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    line-height: 30px;
    color: #100f10;
    margin: 0 0 4px 0;
}

.program-info-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 12px;
    line-height: 18px;
    color: #736c7a;
    margin: 0;
}

/* About Program */
.program-about-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 230px;
}

.program-about-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #100f10;
    margin: 0;
}

.program-about-text {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #403c44;
    margin: 0;
}

/* Speakers Section */
.program-speakers-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    padding: 33px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    min-height: 342px;
}

.program-speakers-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 24px;
    line-height: 36px;
    color: #100f10;
    margin: 0;
}

.program-speakers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    height: 216px;
}

.program-speaker-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 16px;
}

.program-speaker-avatar img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.program-speaker-avatar svg {
    width: 32px;
    height: 32px;
    color: white;
}

.program-speaker-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.program-speaker-name {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #100f10;
    margin: 0;
}

.program-speaker-role {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #736c7a;
    margin: 0;
}

/* Registration Sidebar */
.program-detail-sidebar {
    display: flex;
    flex-direction: column;
    gap: 27px;
    width: 424px;
    position: sticky;
    top: 100px;
}

/* Registration Card */
.program-registration-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 453px;
}

.program-registration-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #100f10;
    margin: 0;
    text-align: center;
}

.program-registration-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.program-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 79px;
}

.program-form-label {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 14px;
    line-height: 21px;
    color: #403c44;
    margin: 0;
}

.program-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    height: 50px;
}

.program-form-input {
    width: 100%;
    height: 50px;
    padding: 12px 40px 12px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: rgba(10, 10, 10, 0.5);
    background: #ffffff;
    transition: all 0.3s ease;
    text-align: right;
}

.program-form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(246, 139, 54, 0.1);
}

.program-form-input::placeholder {
    color: rgba(10, 10, 10, 0.5);
}

.program-input-icon {
    position: absolute;
    right: 16px;
    top: 44%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
}

.program-register-submit-btn {
    width: 100%;
    height: 48px;
    background: #fff;
    border: none;
    border-radius: 200px;
    font-family: var(--font-family-primary);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #f68b64;
    border: 1px solid #f68b64;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-register-submit-btn:hover {
    background: #e57a55;
    transform: translateY(-1px);
}

.program-register-submit-btn:disabled {
    background: #d1d5db;
    cursor: not-allowed;
    transform: none;
}

/* Registration Status Card */
.program-registration-status-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    padding: 25px;
    text-align: center;
    min-height: 277px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.program-registration-status-icon {
    width: 80px;
    height: 80px;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.program-registration-status-icon svg {
    width: 40px;
    height: 40px;
}

.program-registration-status-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    color: #100f10;
    margin: 0 0 8px 0;
}

.program-registration-status-message {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #736c7a;
    margin: 0 0 24px 0;
}

.program-cancel-registration-btn {
    width: 100%;
    height: 48px;
    background: #f68b64;
    border: none;
    border-radius: 12px;
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.program-cancel-registration-btn:hover {
    background: #e57a55;
    transform: translateY(-1px);
}

/* Additional Info Card */
.program-additional-info-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 336px;
}

.program-additional-info-title {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 27px;
    color: #100f10;
    margin: 0;
}

.program-additional-info-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 243px;
}

.program-additional-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 49px;
    padding: 0;
    border-bottom: 1px solid #f3f4f6;
}

.program-additional-info-item:last-child {
    border-bottom: none;
    height: 48px;
}

.program-additional-info-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #736c7a;
    margin: 0;
}

.program-additional-info-value {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #100f10;
    margin: 0;
}

.program-additional-info-value.program-type-value {
    color: #f68b64;
}

.program-additional-info-value.program-fee-value {
    color: #f68b64;
}

/* Share Button */
.program-share-btn {
    width: 100%;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #403c44;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.program-share-btn svg {
    position: absolute;
    left: 264.34px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
}

.program-share-btn:hover {
    background: #f9fafb;
    border-color: #d1d5db;
    transform: translateY(-1px);
}

/* Pulse Animation for Live Badge */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ===========================================
   RESPONSIVE DESIGN FOR PROGRAMS
   =========================================== */

@media (max-width: 991.98px) {
    .program-detail-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .program-detail-main {
        width: 100%;
    }

    .program-detail-sidebar {
        position: static;
        order: -1;
        width: 100%;
    }

    .program-detail-title {
        font-size: 24px;
        line-height: 36px;
    }

    .program-info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767.98px) {
    .filter-dropdown {
        right: 50%;
        transform: translateX(50%);
    }

    .program-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-info-cards {
        grid-template-columns: 1fr;
        height: auto;
    }

    .program-speakers-grid {
        grid-template-columns: 1fr;
        height: auto;
    }

    .program-detail-image {
        height: 250px;
    }

    .program-detail-title {
        font-size: 20px;
        line-height: 30px;
    }

    .program-about-card,
    .program-speakers-card {
        padding: 20px;
    }

    .program-registration-card,
    .program-additional-info-card {
        padding: 20px;
    }
}

@media (max-width: 991.98px) {
    .program-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .program-card-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .program-card-content {
        padding: 16px 16px 16px 0;
    }

    .program-card-actions {
        flex-direction: row;
    }

    .program-register-btn,
    .program-view-details-btn {
        flex: 1;
    }

    .program-type-badge {
        left: 10px;
        font-size: 12px;
        padding: 0 10px;
        min-width: auto;
    }

    .program-date-badge {
        right: 10px;
        min-width: 80px;
        padding: 6px 12px;
    }

    .program-date-day {
        font-size: 22px;
        line-height: 32px;
    }

    .program-date-month {
        font-size: 14px;
        line-height: 20px;
    }

    .program-speaker-item {
        padding: 12px;
    }

    .program-info-card {
        padding: 12px;
    }

    .program-detail-main {
        width: 100%;
    }

    .program-detail-sidebar {
        width: 100%;
    }
}

/* Supporters Logos Section */
.supporters-logos-section {
    padding: 80px 0;
    background-color: #ffffff;
    position: relative;
}

.supporters-logos-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    position: relative;
}

.supporters-logos-wrapper .sponsor-item {
    width: calc(50% - 5px);
    min-width: calc(50% - 5px);
    max-width: calc(50% - 5px);
    height: 120px;
    margin: 0 2.5px 20px 2.5px;
}

/* Tablet - 3 or 4 logos per row */
@media (min-width: 768px) and (max-width: 991.98px) {
    .supporters-logos-wrapper .sponsor-item {
        width: calc(33.333% - 10px);
        min-width: calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
        margin: 0 5px 20px 5px;
    }
}

/* Large Tablet - 4 logos per row */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .supporters-logos-wrapper .sponsor-item {
        width: calc(25% - 10px);
        min-width: calc(25% - 10px);
        max-width: calc(25% - 10px);
        margin: 0 5px 20px 5px;
    }
}

/* Desktop - 6 logos per row (like original) */
@media (min-width: 1200px) {
    .supporters-logos-wrapper .sponsor-item {
        width: 245px;
        min-width: 245px;
        max-width: 245px;
        margin: 0 5px 20px 5px;
    }
}

/* Sponsor Info Box Styles */
.sponsor-info-box {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1000;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    width: 292px;
    padding: 10px;
    border-radius: 14px;
    background-image: url('../assets/images/sp-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(10px);
}

.sponsor-info-box.active {
    opacity: 0.85;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.sponsor-info-box::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(125.75px);
    -webkit-backdrop-filter: blur(125.75px);
    pointer-events: none;
}


.sponsor-info-content {
    position: relative;
    z-index: 1;
    padding: 0;
}

.sponsor-info-text {
    font-family: var(--font-family-primary, 'Cairo', sans-serif);
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    color: #ffffff;
    text-align: center;
    margin: 0;
    white-space: pre-wrap;
    word-wrap: break-word;
}

.sponsor-info-close {
    position: absolute;
    top: 10px;
    left: 10px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1002;
    transition: background 0.3s ease;
}

.sponsor-info-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.sponsor-info-close svg {
    width: 16px;
    height: 16px;
}

/* Mobile Overlay */
.sponsor-info-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 999;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sponsor-info-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Mobile Styles Only (< 768px) */
@media (max-width: 767.98px) {
    .sponsor-info-box {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.9);
        width: calc(100% - 40px);
        max-width: 400px;
        height: 40vh;
        max-height: 40vh;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        overflow: hidden;
    }

    .sponsor-info-box.active {
        transform: translate(-50%, -50%) scale(1);
    }

    .sponsor-info-content {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        padding: 10px;
    }

    .sponsor-info-close {
        display: flex;
    }
}

/* Tablet Styles (768px - 991.98px) - Same as Desktop */
@media (min-width: 768px) and (max-width: 991.98px) {
    .sponsor-info-box {
        position: absolute;
    }

    .sponsor-info-close {
        display: none;
    }
}

/* Desktop hover effect */
@media (min-width: 992px) {
    .sponsor-item {
        position: relative;
    }
}

/* Login Page Styles */
.login-content {
    padding: 80px 0;
    display: flex;
    align-items: center;
}

.login-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.login-form-header {
    text-align: center;
    margin-bottom: 0;
}

.login-form-header h1 {
    font-family: var(--font-family-primary);
    font-weight: 600;
    font-size: 20px;
    color: #121212;
    margin: 0;
    line-height: 1.5;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
}

.login-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f8f8;
    border: 1px solid #f3f3f3;
    border-radius: 1024px;
    height: 50px;
    padding: 8px 20px;
    gap: 8px;
    transition: all 0.3s ease;
}

.login-input {
    flex: 1 0 0;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #121212;
    text-align: right;
    padding: 0;
    direction: rtl;
    min-width: 0;
}

.login-input::placeholder {
    color: #898989;
}

.login-input:focus {
    outline: none;
    border: none;
    box-shadow: none;
}

.login-input-wrapper:focus-within {
    border: 1px solid #f08964;
    outline: none;
    box-shadow: 0 0 0 3px rgba(240, 137, 100, 0.1);
    transition: all 0.3s ease;
}

.login-input-wrapper:has(.login-input:focus) {
    border: 1px solid #f08964;
    outline: none;
    box-shadow: 0 0 0 3px rgba(240, 137, 100, 0.1);
    transition: all 0.3s ease;
}

/* Footer margin-top for login page only */
.login-page .footer-section {
    margin-top: 50px !important;
}

.input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.input-icon .icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.password-toggle-btn .icon-img {
    width: 18px;
    height: 18px;
}

.input-icon-right {
    order: -1;
}

.input-icon-left {
    order: 1;
}

.password-toggle-btn {
    width: 18px;
    height: 18px;
}

.password-toggle-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
}

.remember-me-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 2;
}

.remember-me-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #f08964;
    background: #f8f8f8;
    border: 1px solid #f3f3f3;
    border-radius: 4px;
    flex-shrink: 0;
}

.remember-me-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #595959;
    cursor: pointer;
    margin: 0;
    line-height: 1.5;
}

.forgot-password-link {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #595959;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    transition: opacity 0.3s ease;
    order: 1;
}

.forgot-password-link:hover {
    opacity: 0.8;
}

.form-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
}

.login-btn {
    width: 100%;
    height: 44px;
    padding: 16px 24px;
    background: #f08964;
    color: white;
    border: none;
    border-radius: 1024px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1.5;
}

.login-btn:hover {
    background: #e67a5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(240, 137, 100, 0.3);
}

.register-link-wrapper {
    text-align: center;
    padding-top: 0;
    border-top: none;
    margin-top: 0;
}

.register-link-wrapper p {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #595959;
    margin: 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.register-link-wrapper p span {
    color: #595959;
}

.register-link {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #f08964;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    transition: opacity 0.3s ease;
    line-height: 1.5;
}

.register-link:hover {
    opacity: 0.8;
}

/* Login Form Responsive */
@media (max-width: 767.98px) {
    .login-content {
        padding: 40px 0;
    }

    .login-form-card {
        padding: 24px;
        gap: 16px;
    }

    .login-form-header h1 {
        font-size: 20px;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .forgot-password-link {
        order: 1;
    }

    .remember-me-wrapper {
        order: 2;
    }

    .register-link-wrapper p {
        flex-direction: column;
        gap: 4px;
    }
}

/* Register Page Styles */
.register-content {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.register-form-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.register-form-header {
    text-align: center;
    margin-bottom: 0;
}

.register-form-header h1 {
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 28px;
    color: #121212;
    margin: 0 0 8px 0;
}

.register-form-header p {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #736c7a;
    margin: 0;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #e6e6e6;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-family: var(--font-family-primary);
    font-weight: 600;
    font-size: 20px;
    color: #121212;
    margin: 0 0 20px 0;
}

.form-section-description {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #736c7a;
    margin: 0 0 20px 0;
}

.register-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0;
}

.register-form .form-group label {
    font-family: var(--font-family-primary);
    font-weight: 500;
    font-size: 16px;
    color: #403c44;
    margin: 0;
}

.required {
    color: #dc3545;
    margin-right: 4px;
}

.register-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    font-family: var(--font-family-primary);
    font-size: 16px;
    color: #121212;
    background: #ffffff;
    transition: all 0.3s ease;
}

.register-input:focus {
    outline: none;
    border-color: #f08964;
    box-shadow: 0 0 0 3px rgba(240, 137, 100, 0.1);
}

.register-input::placeholder {
    color: #a6a6a6;
}

.register-form .password-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.register-form .password-input {
    padding-right: 16px;
}

.register-form .password-toggle-btn {
    position: absolute;
    left: 16px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #736c7a;
    transition: color 0.3s ease;
    width: 18px;
    height: 18px;
}

.register-form .password-toggle-btn:hover {
    color: #f08964;
}

.register-form .password-toggle-btn .icon-img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.file-input {
    padding: 12px 16px;
    border: 1px dashed #e6e6e6;
    border-radius: 12px;
    background: #fafafa;
    cursor: pointer;
    transition: all 0.3s ease;
}

.file-input:hover {
    border-color: #f08964;
    background: #fff5f2;
}

.file-hint {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 12px;
    color: #736c7a;
    margin-top: 4px;
    display: block;
}

.terms-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.terms-checkbox {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #f08964;
    margin-top: 2px;
    flex-shrink: 0;
}

.terms-label {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 14px;
    color: #403c44;
    cursor: pointer;
    margin: 0;
    line-height: 1.6;
}

.terms-link {
    color: #f08964;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.terms-link:hover {
    opacity: 0.8;
}

.register-form .form-actions {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: 24px;
}

.register-btn {
    width: 100%;
    height: 44px;
    padding: 16px 24px;
    background: #f08964;
    color: white;
    border: none;
    border-radius: 1024px;
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    line-height: 1.5;
}

.register-btn:hover {
    background: #e67a5a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(240, 137, 100, 0.3);
}

.login-link-wrapper {
    text-align: center;
    padding-top: 24px;
    margin-top: 24px;
    border-top: 1px solid #e6e6e6;
}

.login-link-wrapper p {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #595959;
    margin: 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
}

.login-link-wrapper p span {
    color: #595959;
}

.login-link {
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    color: #f08964;
    text-decoration: underline;
    text-decoration-skip-ink: none;
    text-underline-position: from-font;
    transition: opacity 0.3s ease;
    line-height: 1.5;
}

.login-link:hover {
    opacity: 0.8;
}

/* Register Form Responsive */
@media (max-width: 991.98px) {
    .register-content {
        padding: 40px 0;
    }

    .register-form-card {
        padding: 32px 24px;
    }
}

@media (max-width: 767.98px) {
    .register-form-card {
        padding: 24px;
        gap: 24px;
    }

    .register-form-header h1 {
        font-size: 24px;
    }

    .register-form-header p {
        font-size: 14px;
    }

    .form-section {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .form-section-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .login-link-wrapper p {
        flex-direction: column;
        gap: 4px;
    }
}