@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

:root {
    --color-bg: #fff8e8;
    --color-card: #ffffff;
    --color-text: #206560;
    --color-text-secondary: #114843;
    --color-primary: #32d4c7;
    --color-success: #47a8a1;
    --color-warning: #be953b;
    --color-error: #ef4444;
    --color-info: #47a8a1;
    --primary-font: "Tajawal", sans-serif;
    --color-border: #ffe9b8;
    --color-shadow: rgba(32, 101, 96, 0.1);
    --white-color: #ffffff;
    --transition: 0.3s ease-in-out;
}





/* ===== SMOOTH SCROLLING ===== */
html {
    scroll-behavior: smooth;
}

/* ===== NAVIGATION BAR ===== */
.navbar-custom {
    background: var(--color-card);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 233, 184, 0.3);
    padding: 0.8rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(32, 101, 96, 0.1);
    z-index: 1000;
}



.navbar-custom.scrolled {
    padding: 0.5rem 0;
    background: var(--color-card);
    box-shadow: 0 4px 30px rgba(32, 101, 96, 0.15);
}



/* Navbar Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.navbar-brand:hover {
    color: var(--color-info);
    text-decoration: none;
    transform: scale(1.05);
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-custom.scrolled .navbar-logo {
    height: 35px;
}

.brand-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

/* Mobile Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    background: none;
    width: auto;
    height: auto;
}

.navbar-toggler-icon i {
    font-size: 1.2rem;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.navbar-toggler:hover .navbar-toggler-icon i {
    color: var(--color-primary);
    transform: scale(1.1);
}

/* Navigation Links */


.nav-item {
    margin: 0 0.2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text) !important;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-link:hover {
    color: var(--color-primary) !important;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link.active {
    color: var(--color-primary) !important;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(16, 185, 129, 0.1));
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
}

.nav-link i {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-link:hover i,
.nav-link.active i {
    opacity: 1;
    transform: scale(1.1);
}

/* Login Button */
.navbar-actions {
    margin-left: 1rem;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-info));
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-login:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.btn-login:hover::before {
    left: 100%;
}

.btn-login i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-login:hover i {
    transform: scale(1.1);
}

/* Navbar Responsive */
@media (max-width: 992px) {
    .navbar-custom {
        padding: 0.6rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .brand-text {
        font-size: 1.1rem;
    }
    
    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem 0;
        background: var(--color-card);
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--color-border);
    }
    
    .navbar-nav {
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        margin: 0.2rem 0;
        border-radius: 8px;
    }
    
    .navbar-actions {
        margin-left: 0;
        text-align: center;
        padding-top: 1rem;
        border-top: 1px solid var(--color-border);
    }
    
    .btn-login {
        display: inline-flex;
        width: auto;
    }
}

@media (max-width: 768px) {
    .navbar-custom {
        padding: 0.5rem 0;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
        gap: 0.6rem;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .brand-text {
        font-size: 1rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem !important;
    }
    
    .btn-login {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* Add padding to main content to account for fixed navbar */
/* main {
    padding-top: 80px;
}

@media (max-width: 768px) {
    main {
        padding-top: 70px;
    }
} */

/* Basic Styles */
* {
    font-family: var(--primary-font);
}

body {
    text-align: right;
    background: #f0f9ff;
    transition: background-color 0.3s, color 0.3s;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    transition: var(--transition);
    color: var(--color-text);
    margin: 0;
}

h1 {
    font-size: 30px;
    font-weight: 500;
}

h2 {
    font-size: 27px;
    font-weight: 500;
}

h3 {
    font-size: 25px;
    font-weight: 500;
}

h4 {
    font-size: 22px;
    font-weight: 500;
}

h5 {
    font-size: 20px;
    font-weight: 500;
}

h6 {
    font-size: 18px;
    font-weight: 500;
}

p {
    color: var(--color-text-secondary);
    line-height: 1.6;
}

a {
    text-decoration: none !important;
}

/* Button Styles */
.btn {
    padding: 8px 15px;
    border-radius: 9px;
    border: none;
    color: #ffffff !important;
    font-weight: 500;
    cursor: pointer;
    margin: 5px;
    max-width: max-content;
    display: flex;
    align-items: center;
    transition: var(--transition);
    gap: 7px;
    line-height: 1rem;
    text-decoration: none;
}

.btn_primary {
    background-color: var(--color-primary);
}

.btn_success {
    background-color: var(--color-success);
}

.btn_warning {
    background-color: var(--color-warning);
    color: #111827 !important;
}

.btn_error {
    background-color: var(--color-error);
}

.btn_info {
    background-color: var(--color-info);
    color: #111827 !important;
}

.btn_icon {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.btn_primary:focus {
    box-shadow: 0 0 0 .2rem #2065607b;
}

.btn_success:focus {
    box-shadow: 0 0 0 .2rem #10b9817b;
}

.btn_warning:focus {
    box-shadow: 0 0 0 .2rem #f59e0b7b;
}

.btn_error:focus {
    box-shadow: 0 0 0 .2rem #ef44447b;
}

.btn_info:focus {
    box-shadow: 0 0 0 .2rem #0edce37b;
}

/* Landing Page Banner Styles */
.landing_banner {
    min-height: 100vh;
    /* background: #fff8e8; */
    background-image: url('../img/background.jpg'); /* ضع هنا مسار الصورة */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.landing_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgb(0 0 0 / 32%);;
    /* z-index: 1; */
}

/* [data-theme="dark"] .landing_banner {
    background: linear-gradient(135deg, var(--color-bg) 0%, #206560 100%);
} */

.banner_content {
    padding: 2rem 0;
    z-index: 2;
    position: relative;
}

.banner_logo_section {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.banner_logo {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-card);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-primary);
}

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

.banner_title {
    flex: 1;
}

.platform_name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.platform_subtitle {
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 500;
    margin: 0;
}

.banner_tagline {
    margin-bottom: 3rem;
}

.tagline_text {
    font-size: 2rem;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.tagline_description {
    font-size: 1.1rem;
    color: var(--white-color);
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

.banner_cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn_cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(50, 212, 199, 0.3);
    transition: all 0.3s ease;
    transform: translateY(0);
}

.btn_cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(50, 212, 199, 0.4);
}

.btn_outline_primary {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary) !important;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn_outline_primary:hover {
    background: var(--color-primary);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(50, 212, 199, 0.2);
}

/* Banner Visual Section */
.banner_visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner_image_container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating_card {
    position: absolute;
    background: var(--color-card);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 180px;
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.card_stats {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.card_teachers {
    top: 50%;
    left: 5%;
    animation-delay: 2s;
}

.card_groups {
    bottom: 15%;
    right: 15%;
    animation-delay: 4s;
}

.floating_card .card_icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.card_stats .card_icon {
    background: var(--color-success);
}

.card_teachers .card_icon {
    background: var(--color-primary);
}

.card_groups .card_icon {
    background: var(--color-warning);
    color: var(--color-text) !important;
}

.floating_card .card_content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.floating_card .card_content p {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 500;
}

.banner_main_visual {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual_background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geometric_shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.shape_1 {
    width: 100px;
    height: 100px;
    background: var(--color-primary);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.shape_2 {
    width: 80px;
    height: 80px;
    background: var(--color-success);
    bottom: 30%;
    right: 25%;
    animation-delay: 5s;
    border-radius: 50%;
}

.shape_3 {
    width: 60px;
    height: 60px;
    background: var(--color-warning);
    top: 60%;
    left: 60%;
    animation-delay: 10s;
    transform: rotate(45deg);
}

.platform_mockup {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    box-shadow: 0 20px 40px rgba(50, 212, 199, 0.3);
    z-index: 2;
    position: relative;
    animation: pulse 4s ease-in-out infinite;
}

/* Banner Decorations */
.banner_decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.decoration_dots {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(circle, var(--color-primary) 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.decoration_wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.1;
    clip-path: polygon(0 50%, 100% 80%, 100% 100%, 0% 100%);
}

/* Floating Theme Toggle */
.floating_theme_toggle {
    position: fixed;
    top: 5rem;
    left: 2rem;
    z-index: 1000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    background: var(--color-primary);
    border: 3px solid var(--color-card);
    color: white;
    cursor: pointer;
    font-size: 1.3rem;
    backdrop-filter: blur(10px);
}

.floating_theme_toggle:hover {
    transform: scale(1.15) rotate(15deg);
    box-shadow: 0 12px 35px rgba(50, 212, 199, 0.3);
    background: var(--color-success);
}

.floating_theme_toggle:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(38, 135, 129, 0.2);
}

.floating_theme_toggle i {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* [data-theme="dark"] .floating_theme_toggle {
    background: linear-gradient(135deg, var(--color-warning), #fbbf24);
    color: var(--color-text);
    border-color: var(--color-card);
} */

/* [data-theme="dark"] .floating_theme_toggle:hover {
    background: linear-gradient(135deg, #fbbf24, var(--color-info));
    color: var(--color-text);
    box-shadow: 0 12px 35px rgba(245, 158, 11, 0.3);
    transform: scale(1.15) rotate(-15deg);
} */

/* Theme Toggle Responsive */
@media (max-width: 768px) {
    .floating_theme_toggle {
        top: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .banner_visual {
        height: 400px;
        margin-top: 3rem;
    }
    
    .floating_card {
        min-width: 150px;
        padding: 1rem;
    }
    
    .banner_main_visual {
        width: 200px;
        height: 200px;
    }
    
    .platform_mockup {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .landing_banner {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .platform_name {
        font-size: 2rem;
    }
    
    .tagline_text {
        font-size: 1.5rem;
        text-align: center;
    }
    .tagline_description{
        text-align: center;
    }
    .banner_logo_section {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .banner_cta {
        justify-content: center;
    }
    
    .btn_cta, .btn_outline_primary {
        width: 100%;
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .banner_visual {
        height: 300px;
    }
    
    .floating_card {
        position: relative;
        margin: 1rem 0;
        width: 100%;
        animation: none;
    }
    
    .card_stats, .card_teachers, .card_groups {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
    }
    
    .banner_main_visual {
        display: none;
    }
    
    .floating_theme_toggle {
        top: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
    }
    
    .surah-grid-header {
        flex-direction: column;
        align-items: stretch;
    }

    .search-box {
        width: 100%;
    }

    .filter-buttons {
        justify-content: center;
    }

    .surah-cards {
        grid-template-columns: 1fr;
    }

    .surah-body {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    /* .student-info {
        justify-content: center;
    } */
}

/* ===== ABOUT US SECTION ===== */
.about_us_section {
    padding: 5rem 0;
    background: #f0f9ff;
    position: relative;
    overflow: hidden;
}

/* [data-theme="dark"] .about_us_section {
    background: var(--color-card);
} */

.about_content {
    padding: 2rem 0;
}

.section_header {
    margin-bottom: 2.5rem;
}
.about_image_text{
    margin-bottom: 1rem ; 
    text-align: center; 
    font-size: 1.3em;
    color: #22605c; 
    background: #fff; 
    border-radius: 16px; 
    padding: 32px; 
    box-shadow: 0 2px 16px #0001;
}
.section_badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(38, 135, 129, 0.2);
}

.section_title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text);
    /* margin-bottom: 1rem; */
    line-height: 1.3;
}

.about_description {
    margin-bottom: 3rem;
}

.main_description {
    font-size: 1.2rem;
    color: var(--color-text);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.secondary_description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* About Features */

.about_content {
    position: relative;
    z-index: 2;
}

.about_features {
    margin-top: 3rem;
}

.about_features .row {
    gap: 1.5rem 0;
}

.feature_item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: var(--color-bg);
    border-radius: 15px;
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: right;
}

.feature_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.feature_icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.feature_item:nth-child(1) .feature_icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
}

.feature_item:nth-child(2) .feature_icon {
    background: linear-gradient(135deg, var(--color-success), var(--color-info));
}

.feature_item:nth-child(3) .feature_icon {
    background: linear-gradient(135deg, var(--color-warning), var(--color-error));
    color: var(--color-text) !important;
}

.feature_content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.feature_content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* About Visual Section */
.about_visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual_container {
    position: relative;
    width: 100%;
    height: 100%;
}

.stats_card {
    position: absolute;
    background: var(--color-card);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 160px;
    animation: floatSlow 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

.card_1 {
    top: 15%;
    right: 5%;
    animation-delay: 0s;
}

.card_2 {
    top: 55%;
    left: 10%;
    animation-delay: 3s;
}

.card_3 {
    bottom: 20%;
    right: 20%;
    animation-delay: 6s;
}

.stats_icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.card_1 .stats_icon {
    background: linear-gradient(135deg, var(--color-success), var(--color-primary));
}

.card_2 .stats_icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-info));
}

.card_3 .stats_icon {
    background: linear-gradient(135deg, var(--color-warning), var(--color-error));
    color: var(--color-text) !important;
}

.stats_content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.stats_content p {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin: 0;
    font-weight: 500;
}

/* Main Visual Element */
.main_visual_element {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual_bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bg_shape {
    position: absolute;
    border-radius: 20px;
    opacity: 0.15;
    animation: rotateReverse 25s linear infinite;
}

.shape_a {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.shape_b {
    width: 60px;
    height: 60px;
    background: var(--color-success);
    bottom: 20%;
    right: 20%;
    animation-delay: 8s;
    border-radius: 50%;
}

.shape_c {
    width: 45px;
    height: 45px;
    background: var(--color-warning);
    top: 70%;
    left: 70%;
    animation-delay: 16s;
    transform: rotate(45deg);
}

.central_icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    box-shadow: 0 20px 40px rgba(38, 135, 129, 0.3);
    z-index: 2;
    position: relative;
    animation: pulseGlow 5s ease-in-out infinite;
}

/* Section Decoration */
.section_decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    pointer-events: none;
    z-index: 1;
}

.decoration_pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0.1;
    clip-path: polygon(0 70%, 100% 40%, 100% 100%, 0% 100%);
}

/* Additional Animations */
@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes rotateReverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 20px 40px rgba(38, 135, 129, 0.3);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 25px 50px rgba(38, 135, 129, 0.4);
    }
}

/* Responsive Design for About Section */
@media (max-width: 992px) {
    .floating_elements {
        position: absolute;
    }
    
    .floating_shape {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    
    
    .section_title {
        font-size: 1.8rem;
    }
    
    .floating_elements {
        position: absolute;
    }
    
    .floating_shape {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* تبسيط الأنيميشن في الشاشات الصغيرة */
    .floating_shape {
        animation-duration: 3s !important;
    }
    
    .about_features {
        margin-top: 2rem;
    }
    
    .feature_item {
        text-align: center;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem;
    }
}

/* ===== FEATURES SECTION ===== */
.features_section {
    padding: 5rem 0;
    background: #206560;
    position: relative;
    overflow: hidden;
}

/* [data-theme="dark"] .features_section {
    background: linear-gradient(135deg, var(--color-bg) 0%, rgba(38, 135, 129, 0.05) 100%);
} */

.features_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23268781" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
    z-index: 1;
}

.features_section .container {
    position: relative;
    z-index: 2;
}

.features_section .section_header {
    margin-bottom: 4rem;
}

/* Features Section Text Colors for Dark Background */
.features_section .section_title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.features_section .section_subtitle {
    color: #ffe9b8;
}

.features_section .section_badge {
    background: rgba(255, 233, 184, 0.2);
    color: #ffe9b8;
    border: 1px solid rgba(255, 233, 184, 0.3);
}

.section_subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-top: 1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



/* Feature Cards */
.feature_card {
    background: var(--color-card);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    border: 2px solid var(--color-border);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature_card:hover::before {
    left: 100%;
}

.feature_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--color-primary);
}

/* Main Feature Cards (Larger) */
.main_feature {
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--color-card) 0%, rgba(38, 135, 129, 0.03) 100%);
}

.main_feature:hover {
    background: linear-gradient(135deg, var(--color-card) 0%, rgba(38, 135, 129, 0.08) 100%);
}

/* Feature Icon Wrapper */
.feature_icon_wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.feature_icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    position: relative;
    transition: all 0.3s ease;
}

.main_feature .feature_icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

/* Icon Colors */
.feature_card:nth-child(1) .feature_icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
}

.feature_card:nth-child(2) .feature_icon {
    background: linear-gradient(135deg, var(--color-success), var(--color-info));
}

.feature_card:nth-child(3) .feature_icon {
    background: linear-gradient(135deg, var(--color-info), var(--color-primary));
}

.feature_card:nth-child(4) .feature_icon {
    background: linear-gradient(135deg, var(--color-warning), var(--color-error));
}

.feature_card:nth-child(5) .feature_icon {
    background: linear-gradient(135deg, var(--color-error), var(--color-primary));
}

.feature_card:nth-child(6) .feature_icon {
    background: linear-gradient(135deg, var(--color-primary), var(--color-warning));
}

.feature_card:hover .feature_icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Feature Content */
.feature_content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.feature_content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.feature_content p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.main_feature .feature_content h3 {
    font-size: 1.5rem;
}

.main_feature .feature_content p {
    font-size: 1.1rem;
}

/* Development Note */
.development_note {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(245, 158, 11, 0.05));
    border: 2px solid rgba(245, 158, 11, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
}

/* [data-theme="dark"] .development_note {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(245, 158, 11, 0.08));
    border-color: rgba(245, 158, 11, 0.3);
} */

.note_content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.note_icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--color-warning), var(--color-error));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.note_text p {
    margin: 0;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
}

.note_text strong {
    color: var(--color-warning);
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature_card {
    animation: fadeInUp 0.6s ease forwards;
}

.feature_card:nth-child(1) { animation-delay: 0.1s; }
.feature_card:nth-child(2) { animation-delay: 0.2s; }
.feature_card:nth-child(3) { animation-delay: 0.3s; }
.feature_card:nth-child(4) { animation-delay: 0.4s; }
.feature_card:nth-child(5) { animation-delay: 0.5s; }
.feature_card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design for Features Section */
@media (max-width: 992px) {
  
    .feature_card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .main_feature {
        padding: 2.5rem 2rem;
    }
    
    .feature_icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .main_feature .feature_icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
    }
}

@media (max-width: 768px) {
    
    
    .features_section .section_header {
        margin-bottom: 3rem;
    }
    
    .section_subtitle {
        font-size: 1rem;
    }
    
    .feature_card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .main_feature {
        padding: 2rem 1.5rem;
    }
    
    .feature_icon_wrapper {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .note_content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .note_icon {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .feature_content h3 {
        font-size: 1.2rem;
    }
    
    .feature_content h4 {
        font-size: 1.1rem;
    }
    
    .feature_content p {
        font-size: 0.95rem;
    }
    
    .main_feature .feature_content h3 {
        font-size: 1.3rem;
    }
    
    .main_feature .feature_content p {
        font-size: 1rem;
    }
}

/* ===============================
   Beneficiary Groups Section
=============================== */
.beneficiary_section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0fdfc 100%);
    position: relative;
    overflow: hidden;
}

/* [data-theme="dark"] .beneficiary_section {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
} */

.beneficiary_section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(38, 135, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.beneficiary_section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.beneficiary_grid {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

/* Beneficiary Items */
.beneficiary_item {
    background: var(--color-card);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.beneficiary_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(38, 135, 129, 0.15);
    border-color: var(--color-primary);
}

.beneficiary_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.beneficiary_item:hover .beneficiary_icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, var(--color-success), var(--color-info));
}

.beneficiary_content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.beneficiary_content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    
    .beneficiary_item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .beneficiary_icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .beneficiary_content h4 {
        font-size: 1.1rem;
    }
    
    .beneficiary_content p {
        font-size: 0.9rem;
    }
}

/* ===============================
   Why Albarara Section - Creative Design
=============================== */
.why_albarara_section {
    padding: 5rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

Dark theme adjustments
[data-theme="dark"] .why_albarara_section {
    background: radial-gradient(ellipse at center, #0f172a 0%, #1e293b 50%, #334155 100%);
}

/* Animated background particles */
.why_albarara_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(38, 135, 129, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(16, 185, 129, 0.15), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(245, 158, 11, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkle 20s linear infinite;
    z-index: 1;
}

.why_albarara_section .section_header {
    position: relative;
    z-index: 10;
    margin-bottom: 6rem;
}

.why_albarara_section .section_badge {
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    color: white;
}

.why_albarara_section .section_title {
    color: var(--color-text);
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.why_albarara_section .section_subtitle {
    color: var(--color-text-muted);
    font-size: 1.3rem;
    font-weight: 400;
}

/* Dark theme text colors */
/* [data-theme="dark"] .why_albarara_section .section_title {
    color: white;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
} */

/* [data-theme="dark"] .why_albarara_section .section_subtitle {
    color: rgba(255, 255, 255, 0.8);
} */

/* Main Content Container */
.why_content {
    position: relative;
    height: 700px;
    margin: 0 auto;
    max-width: 900px;
    z-index: 5;
}

/* Central Hub */
.central_hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.hub_circle {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-success) 50%, var(--color-info) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 10px 40px rgba(38, 135, 129, 0.3),
        0 0 60px rgba(38, 135, 129, 0.2);
    border: 4px solid var(--color-card);
    animation: hubPulse 4s ease-in-out infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    overflow: hidden;
}

/* Dark theme hub circle */
/* [data-theme="dark"] .hub_circle {
    box-shadow: 
        0 0 60px rgba(38, 135, 129, 0.6),
        0 0 120px rgba(38, 135, 129, 0.4),
        inset 0 0 60px rgba(255, 255, 255, 0.1);
    border: 4px solid rgba(255, 255, 255, 0.2);
} */

.hub_circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: hubShine 3s linear infinite;
}

.hub_icon {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

.hub_text {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    text-align: center;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    z-index: 2;
    position: relative;
}

/* Connection Web */
.connection_web {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 1;
}

.web_line {
    position: absolute;
    width: 2px;
    height: 150px;
    background: linear-gradient(to bottom, 
        rgba(38, 135, 129, 0.8) 0%, 
        rgba(38, 135, 129, 0.4) 50%, 
        transparent 100%);
    transform-origin: bottom center;
    animation: webPulse 3s ease-in-out infinite;
}

.line_1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    animation-delay: 0s;
}

.line_2 {
    top: 21.5%;
    right: 0;
    transform: translateY(-50%) rotate(51.4deg);
    animation-delay: 0.4s;
}

.line_3 {
    bottom: 21.5%;
    right: 0;
    transform: translateY(50%) rotate(128.6deg);
    animation-delay: 0.8s;
}

.line_4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) rotate(180deg);
    animation-delay: 1.2s;
}

.line_5 {
    bottom: 21.5%;
    left: 0;
    transform: translateY(50%) rotate(231.4deg);
    animation-delay: 1.6s;
}

.line_6 {
    top: 21.5%;
    left: 0;
    transform: translateY(-50%) rotate(308.6deg);
    animation-delay: 2s;
}

.line_7 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    animation-delay: 2.4s;
    opacity: 0.5;
}

/* Feature Orbits */
.feature_orbits {
    position: relative;
    width: 100%;
    height: 100%;
}

.orbit_item {
    position: absolute;
    width: 200px;
    height: 120px;
    z-index: 10;
}

/* Orbital Positions */
.orbit_1 {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: orbitFloat1 8s ease-in-out infinite;
}

.orbit_2 {
    top: 80px;
    right: -20px;
    animation: orbitFloat2 8s ease-in-out infinite 1s;
}

.orbit_3 {
    top: 320px;
    right: -20px;
    animation: orbitFloat3 8s ease-in-out infinite 2s;
}

.orbit_4 {
    bottom: 0%;
    left: 32%;
    transform: translateX(-50%);
    animation: orbitFloat4 8s ease-in-out infinite 3s;
}

.orbit_5 {
    top: 320px;
    left: -20px;
    animation: orbitFloat5 8s ease-in-out infinite 4s;
}

.orbit_6 {
    top: 80px;
    left: -20px;
    animation: orbitFloat6 8s ease-in-out infinite 5s;
}

.orbit_7 {
    bottom: -8%;
    right: 19%;
    transform: translateY(-50%);
    animation: orbitFloat7 8s ease-in-out infinite 6s;
}

/* Orbit Cards */
.orbit_card {
    background: var(--color-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

/* Dark theme orbit cards */
/* [data-theme="dark"] .orbit_card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
} */

.orbit_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.orbit_card:hover::before {
    left: 100%;
}

.orbit_card:hover {
    transform: scale(1.05) translateY(-5px);
    background: var(--color-card-hover, rgba(255, 255, 255, 0.9));
    border-color: var(--color-primary);
    box-shadow: 0 15px 50px rgba(38, 135, 129, 0.2);
}

/* Dark theme hover */
/* [data-theme="dark"] .orbit_card:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 50px rgba(38, 135, 129, 0.4);
} */

.orbit_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 20px rgba(38, 135, 129, 0.4);
    transition: all 0.3s ease;
}

.orbit_card:hover .orbit_icon {
    transform: scale(1.1) rotate(10deg);
    background: linear-gradient(135deg, var(--color-success), var(--color-info));
}

.orbit_content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.orbit_content p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.4;
}

/* Dark theme text */
/* [data-theme="dark"] .orbit_content h4 {
    color: white;
} */

/* [data-theme="dark"] .orbit_content p {
    color: rgba(255, 255, 255, 0.8);
} */

/* Floating Particles */
.floating_particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0.6;
}

.particle_1 {
    top: 20%;
    left: 10%;
    animation: particleFloat1 15s linear infinite;
}

.particle_2 {
    top: 60%;
    left: 85%;
    animation: particleFloat2 12s linear infinite 2s;
}

.particle_3 {
    top: 80%;
    left: 20%;
    animation: particleFloat3 18s linear infinite 4s;
}

.particle_4 {
    top: 30%;
    left: 70%;
    animation: particleFloat4 14s linear infinite 1s;
}

.particle_5 {
    top: 10%;
    left: 60%;
    animation: particleFloat5 16s linear infinite 3s;
}

.particle_6 {
    top: 70%;
    left: 5%;
    animation: particleFloat6 13s linear infinite 5s;
}

.particle_7 {
    top: 40%;
    left: 90%;
    animation: particleFloat7 17s linear infinite 2.5s;
}

.particle_8 {
    top: 90%;
    left: 50%;
    animation: particleFloat8 11s linear infinite 4.5s;
}

/* Animations */
@keyframes hubPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 
            0 0 60px rgba(38, 135, 129, 0.6),
            0 0 120px rgba(38, 135, 129, 0.4),
            inset 0 0 60px rgba(255, 255, 255, 0.1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
        box-shadow: 
            0 0 80px rgba(38, 135, 129, 0.8),
            0 0 160px rgba(38, 135, 129, 0.6),
            inset 0 0 80px rgba(255, 255, 255, 0.15);
    }
}

@keyframes hubShine {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes webPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scaleY(1);
    }
    50% {
        opacity: 0.8;
        transform: scaleY(1.2);
    }
}

@keyframes twinkle {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* Orbit Float Animations */
@keyframes orbitFloat1 {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes orbitFloat2 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes orbitFloat3 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(8px); }
}

@keyframes orbitFloat4 {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(10px); }
}

@keyframes orbitFloat5 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(8px); }
}

@keyframes orbitFloat6 {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

@keyframes orbitFloat7 {
    0%, 100% { transform: translateY(-50%) translateX(0px); }
    50% { transform: translateY(-50%) translateX(-5px); }
}

/* Particle Float Animations */
@keyframes particleFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    25% { transform: translateY(-20px) translateX(10px); opacity: 1; }
    50% { transform: translateY(-10px) translateX(-5px); opacity: 0.4; }
    75% { transform: translateY(-30px) translateX(15px); opacity: 0.8; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.5; }
    33% { transform: translateY(15px) translateX(-10px); opacity: 0.9; }
    66% { transform: translateY(-5px) translateX(8px); opacity: 0.3; }
}

@keyframes particleFloat3 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    50% { transform: translateY(-25px) translateX(-15px); opacity: 0.2; }
}

@keyframes particleFloat4 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
    25% { transform: translateY(10px) translateX(-8px); opacity: 0.8; }
    75% { transform: translateY(-15px) translateX(12px); opacity: 0.6; }
}

@keyframes particleFloat5 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    40% { transform: translateY(-18px) translateX(6px); opacity: 0.9; }
    80% { transform: translateY(5px) translateX(-10px); opacity: 0.3; }
}

@keyframes particleFloat6 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.5; }
    30% { transform: translateY(12px) translateX(15px); opacity: 1; }
    70% { transform: translateY(-8px) translateX(-5px); opacity: 0.4; }
}

@keyframes particleFloat7 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    50% { transform: translateY(-20px) translateX(-12px); opacity: 0.2; }
}

@keyframes particleFloat8 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
    25% { transform: translateY(-10px) translateX(8px); opacity: 0.8; }
    75% { transform: translateY(15px) translateX(-6px); opacity: 0.6; }
}

/* Responsive Design */
@media (max-width: 992px) {
    .why_albarara_section {
        min-height: 80vh;
    }
    
    .why_content {
        height: 600px;
        max-width: 700px;
    }
    
    .hub_circle {
        width: 140px;
        height: 140px;
    }
    
    .hub_icon {
        font-size: 2.5rem;
    }
    
    .hub_text {
        font-size: 1rem;
    }
    
    .connection_web {
        width: 600px;
        height: 600px;
    }
    
    .web_line {
        height: 140px;
    }
    
    .orbit_item {
        width: 180px;
        height: 110px;
    }
    
    .orbit_card {
        padding: 1rem;
    }
    
    .orbit_icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .orbit_content h4 {
        font-size: 1rem;
    }
    
    .orbit_content p {
        font-size: 0.8rem;
    }
    
    .orbit_1 {
        top: -10px;
    }
    
    .orbit_2 {
        top: 70px;
        right: -10px;
    }
    
    .orbit_3 {
        top: 300px;
        right: -10px;
    }
    
    .orbit_4 {
        bottom: -10px;
    }
    
    .orbit_5 {
        top: 300px;
        left: -10px;
    }
    
    .orbit_6 {
        top: 70px;
        left: -10px;
    }
    
    .orbit_7 {
        bottom: -11%;
    }
}

@media (max-width: 768px) {
    .why_albarara_section {
        min-height: auto;
    }
    
    .why_albarara_section .section_title {
        font-size: 2.2rem;
    }
    
    .why_albarara_section .section_subtitle {
        font-size: 1.1rem;
    }
    
    .why_content {
        height: 500px;
        max-width: 500px;
    }
    
    .hub_circle {
        width: 120px;
        height: 120px;
    }
    
    .hub_icon {
        font-size: 2rem;
    }
    
    .hub_text {
        font-size: 0.9rem;
    }
    
    .connection_web {
        width: 500px;
        height: 500px;
    }
    
    .web_line {
        height: 120px;
    }
    
    .orbit_item {
        width: 160px;
        height: 100px;
    }
    
    .orbit_card {
        padding: 0.8rem;
    }
    
    .orbit_icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .orbit_content h4 {
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    
    .orbit_content p {
        font-size: 0.75rem;
    }
    
    .orbit_1 {
        top: -10px;
    }
    
    .orbit_2 {
        top: 90px;
        right: -10px;
    }
    
    .orbit_3 {
        top: 240px;
        right: -10px;
    }
    
    .orbit_4 {
        bottom: -10px;
    }
    
    .orbit_5 {
        top: 240px;
        left: -10px;
    }
    
    .orbit_6 {
        top: 90px;
        left: -10px;
    }
    
    .orbit_7 {
        right: 66px;
    }
}

@media (max-width: 576px) {
   
    
    .why_albarara_section .section_title {
        font-size: 1.8rem;
    }
    
    .why_albarara_section .section_subtitle {
        font-size: 1rem;
    }
    
    .why_content {
        height: 400px;
        max-width: 350px;
    }
    
    .hub_circle {
        width: 100px;
        height: 100px;
    }
    
    .hub_icon {
        font-size: 1.8rem;
    }
    
    .hub_text {
        font-size: 0.8rem;
    }
    
    .connection_web {
        width: 400px;
        height: 400px;
    }
    
    .web_line {
        height: 100px;
    }
    
    .orbit_item {
        width: 140px;
        height: 90px;
    }
    
    .orbit_card {
        padding: 0.7rem;
    }
    
    .orbit_icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .orbit_content h4 {
        font-size: 0.8rem;
        margin-bottom: 0.2rem;
    }
    
    .orbit_content p {
        font-size: 0.7rem;
    }
    
    .orbit_1 {
        top: -24px;
    }
    
    .orbit_2 {
        top: 97px;
        right: -20px;
    }
    
    .orbit_3 {
        top: 201px;
        right: -20px;
    }
    
    .orbit_4 {
        bottom: -5px;
        left: 50px;
    }
    
    .orbit_5 {
        top: 205px;
        left: -20px;
    }
    
    .orbit_6 {
        top: 100px;
        left: -20px;
    }
    
    .orbit_7 {
        bottom: -53px;
        right: -20px;
    }
}
@media (max-width: 376px) {
    .orbit_1 {
        top: -24px;
    }
    
    .orbit_2 {
        top: 97px;
        right: 5px;
    }
    
    .orbit_3 {
        top: 215px;
        right: 0px;
    }
    
    .orbit_4 {
        bottom: -20px;
        left: 97px;
    }
    
    .orbit_5 {
        top: 215px;
        left: 0px;
    }
    
    .orbit_6 {
        top: 100px;
        left: 5px;
    }
    
    .orbit_7 {
        bottom: -65px;
        right: 25px;
    }
    .orbit_item {
        width: 120px;
    }
}
@media (max-width: 320px) {
    .orbit_4 {
        left: 74px;
    }
    .orbit_7 {
        right: 15px;
    }
}

/* ===============================
   Partnership Section
=============================== */
.partnership_section {
    padding: 5rem 0;
    background: #206560;
    position: relative;
    overflow: hidden;
}

/* Partnership Section Text Colors for Dark Background */
.partnership_section .section_title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.partnership_section .section_subtitle {
    color: #ffe9b8;
}

.partnership_section .section_badge {
    background: rgba(255, 233, 184, 0.2);
    color: #ffe9b8;
    border: 1px solid rgba(255, 233, 184, 0.3);
}

.partnership_section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(38, 135, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.partnership_section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.partnership_content {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
}

/* Story Timeline */
.story_timeline {
    position: relative;
    padding: 1rem 0;
}

.story_timeline::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-success));
    border-radius: 2px;
}

.timeline_item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: flex-start;
}

.timeline_item:last-child {
    margin-bottom: 0;
}

.timeline_marker {
    position: relative;
    z-index: 3;
    margin-right: 2rem;
}

.marker_icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(38, 135, 129, 0.3);
    border: 4px solid var(--color-card);
    transition: all 0.3s ease;
}

.timeline_item:hover .marker_icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(38, 135, 129, 0.4);
}

.timeline_content {
    flex: 1;
    background: var(--color-card);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-border);
    transition: all 0.3s ease;
    position: relative;
}

.timeline_content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right: 10px solid var(--color-card);
}

.timeline_item:hover .timeline_content {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(38, 135, 129, 0.15);
    border-color: var(--color-primary);
}

.timeline_badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.timeline_content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.timeline_content p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

.timeline_content strong {
    color: var(--color-primary);
    font-weight: 700;
}

/* Dark theme text */
/* [data-theme="dark"] .timeline_content p {
     color: rgba(255, 255, 255, 0.8);
} */

/* ===== CONTACT & SOCIAL SECTION ===== */
.contact_section{
    padding: 2rem 0;
}
.contact_social_section {
    padding: 5rem 0;
    background: #fefefe;
    position: relative;
    overflow: hidden;
}

.contact_methods {
    margin-top: 3rem;
}

.contact_method {
    display: block;
    text-decoration: none;
    background: var(--color-card);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(38, 135, 129, 0.1);
    box-shadow: var(--shadow-card);
    height: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.contact_method::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    border-radius: 0 25px 0 100px;
    transition: all 0.3s ease;
    z-index: 1;
}

.contact_method.whatsapp::before {
    background: linear-gradient(135deg, 
        rgba(37, 211, 102, 0.05) 0%, 
        rgba(37, 211, 102, 0.1) 100%);
}

.contact_method.email::before {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(59, 130, 246, 0.1) 100%);
}

.contact_method.phone::before {
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.05) 0%, 
        rgba(16, 185, 129, 0.1) 100%);
}

.contact_method:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(38, 135, 129, 0.15);
    text-decoration: none;
    border-color: rgba(38, 135, 129, 0.2);
}

.contact_method:hover::before {
    width: 120px;
    height: 120px;
}

.contact_icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.contact_method.whatsapp .contact_icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact_method.email .contact_icon {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.contact_method.phone .contact_icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.contact_icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.contact_method:hover .contact_icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.contact_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.contact_method:hover .contact_title {
    color: var(--color-primary);
}

.contact_description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.contact_info {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: rgba(38, 135, 129, 0.08);
    border-radius: 15px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid rgba(38, 135, 129, 0.15);
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact_method:hover .contact_info {
    background: var(--color-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(38, 135, 129, 0.3);
}

/* Dark Theme Adjustments */
/* [data-theme="dark"] .contact_method {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(38, 135, 129, 0.2);
} */

/* [data-theme="dark"] .contact_info {
    background: rgba(38, 135, 129, 0.12);
    border-color: rgba(38, 135, 129, 0.2);
} */

/* Responsive Design */
@media (max-width: 992px) {
    .contact_section {
        padding: 2rem 0;
    }
    
    .contact_methods {
        margin-top: 2rem;
    }
    
    .contact_method {
        padding: 2rem;
    }
    
    .contact_icon {
        width: 70px;
        height: 70px;
    }
    
    .contact_icon i {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .contact_method {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .contact_icon {
        width: 60px;
        height: 60px;
    }
    
    .contact_icon i {
        font-size: 1.5rem;
    }
    
    .contact_title {
        font-size: 1.2rem;
    }
    
    .contact_description {
        font-size: 0.9rem;
    }
    
    .contact_info {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    .timeline_marker {
        margin-right: 1.5rem;
    }
    
    .marker_icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .timeline_content {
        padding: 1rem;
    }
    
    .timeline_content::before {
        left: -8px;
        border-right-width: 8px;
    }
    
    .timeline_content h3 {
        font-size: 1.1rem;
    }
    
    .timeline_content p {
        font-size: 0.9rem;
    }
    
    .visual_container {
        height: 300px;
        margin-top: 2rem;
    }
    
    .company_logo {
        padding: 1rem;
        max-width: 280px;
    }
    
    .logo_circle {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        margin-left: 0.8rem;
    }
    
    .logo_text h4 {
        font-size: 1rem;
    }
    
    .logo_text p {
        font-size: 0.8rem;
    }
    
    .bridge_line {
        width: 120px;
    }
    
    .bridge_icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .support_note {
        padding: 1.2rem;
        margin-top: 2rem;
    }
    
    .note_icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .note_content h5 {
        font-size: 1rem;
    }
    
    .note_content p {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .timeline_item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .timeline_marker {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .timeline_content::before {
        display: none;
    }
    
    .story_timeline::before {
        display: none;
    }
    
    .visual_container {
        height: auto;
    }
    
    .company_logo {
        margin-bottom: 2rem;
        align-self: center !important;
    }
    
    .partnership_bridge {
        position: static;
        transform: none;
        margin: 1rem 0;
    }
    
    .bridge_line {
        width: 100px;
        height: 2px;
    }
    
    .bridge_icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .floating_elements {
        display: none;
    }
}

/* ===== DEMO REQUEST MODAL ===== */
.modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

/* [data-theme="dark"] .modal-content {
    background-color: var(--color-card);
    border: 1px solid var(--color-border);
} */

.modal-header {
    background: var(--color-primary);
    color: white;
    border-bottom: none;
    padding: 1rem ;
    position: relative;
}

.modal-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: modalHeaderShine 3s ease-in-out infinite;
}

@keyframes modalHeaderShine {
    0%, 100% {
        transform: translateX(-100%);
    }
    50% {
        transform: translateX(100%);
    }
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    font-family: 'Tajawal', sans-serif;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 1;
}

.modal-title i {
    font-size: 1.2rem;
    opacity: 0.9;
}

.modal-header .close {
    color: white;
    opacity: 0.8;
    font-size: 1.8rem;
    font-weight: 300;
    text-shadow: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    margin-right: auto;
    margin-left: 0;
}

.modal-header .close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.modal-body {
    padding: 1rem;
    background: var(--color-card);
}

/* [data-theme="dark"] .modal-body {
    background: var(--color-card);
} */

.demo_form_intro {
    text-align: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.05) 0%, 
        rgba(16, 185, 129, 0.05) 100%);
    border-radius: 15px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.form_description {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
    font-family: 'Tajawal', sans-serif;
}
/* [data-theme="dark"] .form_description {
    color: var(--color-text);
} */

.demo_request_form .form-group {
    margin-bottom: 1.5rem;
}

.demo_request_form label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Tajawal', sans-serif;
}

.demo_request_form label i {
    color: var(--color-primary);
    font-size: 0.9rem;
    width: 16px;
    text-align: center;
}

.demo_request_form .form-control {
    border: 2px solid var(--color-border);
    border-radius: 12px;
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    font-family: 'Tajawal', sans-serif;
    background: var(--color-background);
    color: var(--color-text);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    height: auto;
}

.demo_request_form .form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: var(--color-card);
    outline: none;
}

.demo_request_form .form-control::placeholder {
    color: var(--color-text-muted);
    opacity: 0.7;
}

.demo_request_form textarea.form-control {
    resize: vertical;
    min-height: 100px;
}

.form_privacy_note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--color-success);
}

.form_privacy_note p {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.5;
}
/* [data-theme="dark"] .form_privacy_note p {
    color: var(--color-text);
} */
.form_privacy_note i {
    color: var(--color-success);
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.modal-footer {
    background: var(--color-background);
    border-top: 1px solid var(--color-border);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

/* [data-theme="dark"] .modal-footer {
    background: rgba(17, 24, 39, 0.5);
} */

.modal-footer .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
    min-width: 120px;
    justify-content: center;
}

.modal-footer .btn-secondary {
    background: var(--color-muted);
    border: 1px solid var(--color-border);
    color: var(--color-text-muted);
}

.modal-footer .btn-secondary:hover {
    background: var(--color-border);
    color: var(--color-text);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-footer .btn_primary {
    background: linear-gradient(135deg, var(--color-primary), var(--color-info));
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
}

.modal-footer .btn_primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.modal-footer .btn_primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    color: white;
}

.modal-footer .btn_primary:hover::before {
    left: 100%;
}

/* Modal Responsive */
@media (max-width: 768px) {
    .modal-dialog {
        margin: 0 auto;
        max-width: calc(100% - 2rem);
    }
    
   
    .modal-title {
        font-size: 1.2rem;
    }
    
    
    
    .demo_form_intro {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .form_description {
        font-size: 0.9rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-footer .btn {
        width: 100%;
        margin: 0;
    }
}

/* ===== FAQ SECTION ===== */
.faq_section {
    padding: 3rem 0;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.02) 0%, 
        rgba(16, 185, 129, 0.03) 50%, 
        rgba(139, 69, 19, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .faq_section {
    background: linear-gradient(135deg, 
        rgba(17, 24, 39, 0.9) 0%, 
        rgba(6, 78, 59, 0.1) 50%, 
        rgba(17, 24, 39, 0.9) 100%);
}

.faq_content {
    margin-top: 3rem;
}

/* FAQ Accordion */
.faq_item {
    background: var(--color-card);
    border-radius: 15px;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.faq_item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--color-primary);
}

.faq_header {
    background: transparent;
    border: none;
    padding: 0;
}

.faq_button {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: right;
    font-family: 'Tajawal', sans-serif;
}

.faq_button:focus {
    outline: none;
    box-shadow: none;
}

.faq_button:hover {
    background: rgba(59, 130, 246, 0.05);
}

.faq_question {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: right;
}

.faq_question i {
    color: var(--color-primary);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.faq_icon {
    width: 35px;
    height: 35px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq_button[aria-expanded="true"] .faq_icon {
    transform: rotate(45deg);
    background: linear-gradient(135deg, var(--color-success), var(--color-info));
}

.faq_button[aria-expanded="true"] .faq_icon i::before {
    content: "\f068"; /* fa-minus */
}

.faq_answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 1rem;
    border-top: 1px solid var(--color-border);
    margin-top: 0;
}

.faq_answer p {
    margin: 0;
    padding-top: 1rem;
}

/* FAQ Background Elements */
.faq_bg_elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.bg_faq_icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(59, 130, 246, 0.2);
    animation: faqFloat 10s ease-in-out infinite;
}

.icon_1 {
    top: 20%;
    right: 8%;
    animation-delay: 0s;
}

.icon_2 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
}

.icon_3 {
    top: 60%;
    right: 3%;
    animation-delay: 6s;
}

@keyframes faqFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Dark theme adjustments */
/* [data-theme="dark"] .faq_answer {
    color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .faq_button:hover {
    background: rgba(59, 130, 246, 0.1);
} */

/* FAQ Responsive */
@media (max-width: 992px) {
    .faq_content {
        margin-top: 2.5rem;
    }
    
    .faq_button {
        padding: 1.2rem 1.5rem;
    }
    
    .faq_question {
        font-size: 1rem;
    }
    
    .faq_answer {
        padding: 0 1.5rem 1.2rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .bg_faq_icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .faq_section {
        padding: 2.5rem 0;
    }
    
    .faq_content {
        margin-top: 2rem;
    }
    
    .faq_button {
        padding: 1rem 1.2rem;
    }
    
    .faq_question {
        font-size: 0.95rem;
        gap: 0.8rem;
    }
    
    .faq_icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .faq_answer {
        padding: 0 1.2rem 1rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .bg_faq_icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* ===== HOW IT WORKS SECTION ===== */
.how_it_works_section {
    padding: 3rem 0;
    background: #206560;
    position: relative;
}

/* [data-theme="dark"] .how_it_works_section {
    background: linear-gradient(135deg, 
        rgba(15, 23, 42, 0.9) 0%, 
        rgba(30, 41, 59, 0.8) 100%);
} */
.how_it_works_section .section_title{
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.how_it_works_section .section_subtitle{
    color:#ffe9b8
}
.how_it_works_content {
    margin-top: 4rem;
}

/* Steps Container */
.steps_container {
    display: flex;
    flex-direction: column;
   
    max-width: 800px;
    margin: 0 auto 1rem;
    position: relative;
}

.step_item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: var(--color-card);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.step_item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--color-primary);
}

/* Step Number */
.step_number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(38, 135, 129, 0.3);
    transition: all 0.3s ease;
}

.step_item:hover .step_number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(38, 135, 129, 0.4);
}

/* Step Content */
.step_content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: auto;
}

.step_icon {
    width: 50px;
    height: 50px;
    background: rgba(38, 135, 129, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
    transition: all 0.3s ease;
}

.step_item:hover .step_icon {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

.step_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    line-height: 1.3;
}

.step_description {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Step Connectors */
.step_connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-success));
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
}

.step_connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
    0%, 100% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.3);
    }
}

/* Conclusion Card */
.conclusion_card {
    display: flex;
    gap: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, 
        rgba(16, 185, 129, 0.1) 0%, 
        rgba(59, 130, 246, 0.1) 100%);
    border-radius: 20px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    margin: 0 auto;
    text-align: right;
    position: relative;
    overflow: hidden;
    max-width: 800px;
}

.conclusion_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.1), transparent);
    animation: conclusionShine 3s ease-in-out infinite;
}

@keyframes conclusionShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.conclusion_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-success), var(--color-info));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
    animation: conclusionFloat 3s ease-in-out infinite;
}

@keyframes conclusionFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.conclusion_content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.8rem 0;
    line-height: 1.3;
}

.conclusion_content p {
    font-size: 1.1rem;
    color: #ffe9b8;
    margin: 0;
    line-height: 1.6;
}

/* Dark theme adjustments */
/* [data-theme="dark"] .step_description,
[data-theme="dark"] .conclusion_content p {
    color: rgba(255, 255, 255, 0.8);
} */

/* How It Works Responsive */
@media (max-width: 992px) {
    
    
    .step_item {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .step_number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .conclusion_card {
        padding: 1rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    
    
    .step_item {
        padding: 1.2rem;
        gap: 1.2rem;
        border-radius: 15px;
    }
    
    .step_number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .step_title {
        font-size: 1.2rem;
    }
    
    .conclusion_card {
        padding: 1.5rem;
        border-radius: 15px;
    }
}

@media (max-width: 576px) {
    
    
    .step_item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 1rem;
    }
    
    .step_number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        align-self: center;
    }
    
    .step_content {
        align-items: center;
        text-align: center;
    }
    
    .conclusion_card {
        flex-direction: column;
        padding: 1.2rem;
        gap: 1rem;
    }
}

@media (max-width: 376px) {
    .step_number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .step_title {
        font-size: 1rem;
    }
    
    .step_description {
        font-size: 0.85rem;
    }
}



/* ===== Digital Quranic Knowledge Corner Section ===== */
.knowledge_section {
    padding: 3rem 0;
    background: linear-gradient(135deg, 
        rgba(38, 135, 129, 0.02) 0%, 
        rgba(16, 185, 129, 0.03) 50%, 
        rgba(59, 130, 246, 0.02) 100%);
    position: relative;
    overflow: hidden;
}

.knowledge_content {
    margin-top: 4rem;
}

/* Knowledge Categories */
.knowledge_categories {
    margin-bottom: 2rem;
}

.knowledge_card {
    background: var(--color-card);
    border-radius: 20px;
    padding: 1.5rem;
    /* margin-bottom: 2rem; */
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(38, 135, 129, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.knowledge_card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, 
        rgba(38, 135, 129, 0.05) 0%, 
        rgba(16, 185, 129, 0.08) 100%);
    border-radius: 0 20px 0 100px;
    transition: all 0.3s ease;
}

.knowledge_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(38, 135, 129, 0.15);
    border-color: rgba(38, 135, 129, 0.2);
}

.knowledge_card:hover::before {
    width: 120px;
    height: 120px;
    background: rgba(50, 212, 199, 0.1);
}

.knowledge_icon {
    width: 70px;
    height: 70px;
    background: var(--color-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.knowledge_icon i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
}

.knowledge_card:hover .knowledge_icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 25px rgba(38, 135, 129, 0.3);
}

.knowledge_content_text {
    position: relative;
    z-index: 2;
}

.knowledge_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.knowledge_card:hover .knowledge_title {
    color: var(--color-primary);
}

.knowledge_description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.knowledge_list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.knowledge_list li {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    padding: 0.4rem 0;
    position: relative;
    padding-right: 1.5rem;
    transition: all 0.3s ease;
}

.knowledge_list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-success);
    position: absolute;
    right: 0;
    top: 0.4rem;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.knowledge_card:hover .knowledge_list li::before {
    color: var(--color-primary);
    transform: scale(1.2);
}



/* Background Decorative Elements */
.knowledge_bg_elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg_knowledge_icon {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(38, 135, 129, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(38, 135, 129, 0.2);
    font-size: 2rem;
    animation: knowledgeFloat 6s ease-in-out infinite;
}

.bg_knowledge_icon.icon_1 {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.bg_knowledge_icon.icon_2 {
    top: 60%;
    right: 8%;
    animation-delay: 2s;
}

.bg_knowledge_icon.icon_3 {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

@keyframes knowledgeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }
}

/* Dark Theme Adjustments */
/* [data-theme="dark"] .knowledge_card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(38, 135, 129, 0.2);
}

[data-theme="dark"] .knowledge_card::before {
    background: linear-gradient(135deg, 
        rgba(38, 135, 129, 0.08) 0%, 
        rgba(16, 185, 129, 0.12) 100%);
}

[data-theme="dark"] .featured_resources {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(38, 135, 129, 0.2);
}

[data-theme="dark"] .resource_item {
    background: rgba(38, 135, 129, 0.08);
    border-color: rgba(38, 135, 129, 0.15);
}

[data-theme="dark"] .resource_item:hover {
    background: rgba(38, 135, 129, 0.12);
}

[data-theme="dark"] .cta_content {
    background: linear-gradient(135deg, 
        rgba(38, 135, 129, 0.08) 0%, 
        rgba(16, 185, 129, 0.12) 100%);
    border-color: rgba(38, 135, 129, 0.2);
} */

/* Responsive Design */
@media (max-width: 992px) {
    
    
    .knowledge_content {
        margin-top: 3rem;
    }
    
    .featured_resources {
        margin-top: 2rem;
        position: static;
    }
    
    .knowledge_card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .knowledge_icon {
        width: 60px;
        height: 60px;
    }
    
    .knowledge_icon i {
        font-size: 1.5rem;
    }
    
    .bg_knowledge_icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .knowledge_section {
        padding: 3rem 0;
    }
    
    .knowledge_content {
        margin-top: 2rem;
    }
    
    .knowledge_card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .knowledge_title {
        font-size: 1.2rem;
    }
    
    .featured_resources {
        padding: 2rem;
    }
    
    .resource_item {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
    
    .resource_icon {
        width: 45px;
        height: 45px;
        margin: 0 auto;
    }
    
    .resource_icon i {
        font-size: 1.1rem;
    }
    
    .cta_content {
        padding: 1.5rem;
    }
    
    .knowledge_btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .bg_knowledge_icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

/* ===== SUPPORT & HELP SECTION (FOOTER REPLACEMENT) ===== */
.support_section {
    padding: 4rem 0 2rem;
    background: #206560;
    position: relative;
    overflow: hidden;
    border-top: 3px solid rgba(38, 135, 129, 0.2);
}
.support_section .section_title {
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.support_section .section_subtitle {
    color: #ffe9b8;
}
.support_content {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Resource Groups */
.resources_group {
    background: var(--color-card);
    border-radius: 25px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px rgba(38, 135, 129, 0.15);
    border: 1px solid rgba(38, 135, 129, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.resources_group::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, 
        rgba(38, 135, 129, 0.05) 0%, 
        rgba(16, 185, 129, 0.08) 100%);
    border-radius: 0 25px 0 100%;
    z-index: 1;
}

.group_title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.group_title i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-success) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 8px 20px rgba(38, 135, 129, 0.3);
}

/* Support Items */
.support_item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background: rgba(38, 135, 129, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(38, 135, 129, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.support_item::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(38, 135, 129, 0.08) 50%, 
        transparent 100%);
    transition: all 0.6s ease;
}

.support_item:hover {
    transform: translateY(-5px) translateX(-8px);
    background: rgba(38, 135, 129, 0.06);
    border-color: rgba(38, 135, 129, 0.15);
    box-shadow: 0 15px 35px rgba(38, 135, 129, 0.15);
}

.support_item:hover::before {
    right: 100%;
}

.support_item:last-child {
    margin-bottom: 0;
}

/* Support Icons */
.support_icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    position: relative;
}

.support_icon.pdf {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.support_icon.video {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
}

.support_icon.faq {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.support_icon.support {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.support_icon.download {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.support_icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.support_item:hover .support_icon {
    transform: scale(1.15) rotate(-8deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Support Content Text */
.support_content_text {
    flex: 1;
    margin: auto;
}

.support_title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
}

.support_item:hover .support_title {
    color: var(--color-primary);
}

.support_description {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Support Links */
.support_link {
    color: var(--color-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(38, 135, 129, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(38, 135, 129, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 0.5rem;
    margin-left: 0.5rem;
}

.support_link:hover {
    color: white;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-success) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(38, 135, 129, 0.3);
    text-decoration: none;
}

.support_link i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.support_link:hover i {
    transform: scale(1.2);
}

/* Contact Options */
.contact_options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.support_link.phone {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.2);
    color: #059669;
}

.support_link.phone:hover {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.support_link.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.support_link.whatsapp:hover {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
}

/* Quick Access Card */
.quick_access_card {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.1) 0%, 
        rgba(147, 51, 234, 0.1) 100%);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quick_access_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent, 
        rgba(59, 130, 246, 0.1), 
        transparent);
    animation: quickAccessShine 3s linear infinite;
}

@keyframes quickAccessShine {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card_header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.card_header i {
    font-size: 1.5rem;
    color: var(--color-primary);
    animation: rocketPulse 2s ease-in-out infinite;
}

@keyframes rocketPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2) rotate(5deg); }
}

.card_header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.quick_access_card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.quick_start_btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-success) 100%);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(38, 135, 129, 0.3);
}

.quick_start_btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(38, 135, 129, 0.4);
    color: white;
    text-decoration: none;
}

.quick_start_btn i {
    font-size: 1rem;
    transition: all 0.3s ease;
}

.quick_start_btn:hover i {
    transform: scale(1.3) rotate(-45deg);
}

/* Platform Credits */
.platform_credits {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(38, 135, 129, 0.15);
    position: relative;
}

.platform_credits::before {
    content: '';
    position: absolute;
    top: -2px;
    right: 50%;
    transform: translateX(50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-success) 100%);
    border-radius: 2px;
}

.credits_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.platform_info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.platform_logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-primary);
}

.platform_logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-success) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform_tagline {
    color: #ffe9b8;
    font-size: 0.95rem;
    margin: 0;
    font-style: italic;
}

.copyright_info {
    text-align: right;
    color: var(--color-text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

.copyright_info p {
    margin: 0;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.powered_by {
    font-size: 0.8rem;
    opacity: 0.8;
}

.powered_by strong {
    color: var(--color-primary);
    font-weight: 600;
}

/* Background Decorative Elements */
.support_bg_elements {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.bg_support_icon {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(38, 135, 129, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(38, 135, 129, 0.15);
    font-size: 2.5rem;
    animation: supportFloat 8s ease-in-out infinite;
}

.bg_support_icon.icon_1 {
    top: 8%;
    right: 3%;
    animation-delay: 0s;
}

.bg_support_icon.icon_2 {
    top: 25%;
    right: 85%;
    animation-delay: 2s;
}

.bg_support_icon.icon_3 {
    top: 65%;
    right: 5%;
    animation-delay: 4s;
}

.bg_support_icon.icon_4 {
    top: 80%;
    right: 80%;
    animation-delay: 6s;
}

@keyframes supportFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.2;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.4;
    }
}

/* Dark Theme Adjustments */
/* [data-theme="dark"] .support_section {
    background: linear-gradient(135deg, 
        rgba(38, 135, 129, 0.12) 0%, 
        rgba(16, 185, 129, 0.15) 30%,
        rgba(59, 130, 246, 0.12) 70%,
        rgba(147, 51, 234, 0.10) 100%);
    border-top-color: rgba(38, 135, 129, 0.3);
}

[data-theme="dark"] .resources_group {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(38, 135, 129, 0.2);
}

[data-theme="dark"] .support_item {
    background: rgba(38, 135, 129, 0.08);
    border-color: rgba(38, 135, 129, 0.15);
}

[data-theme="dark"] .support_item:hover {
    background: rgba(38, 135, 129, 0.12);
}

[data-theme="dark"] .quick_access_card {
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.15) 0%, 
        rgba(147, 51, 234, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.3);
} */

/* Responsive Design */
@media (max-width: 992px) {
    .support_section {
        padding: 3rem 0 1.5rem;
    }
    
    .support_content {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .resources_group {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    
    .support_item {
        padding: 0.5rem;
    }
    
    .support_icon {
        width: 55px;
        height: 55px;
    }
    
    .support_icon i {
        font-size: 1.3rem;
    }
    
    .bg_support_icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .support_section {
        padding: 2rem 0 1rem;
    }
    
    .support_content {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .resources_group {
        padding: 0.5rem;
    }
    
    .group_title {
        font-size: 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .group_title i {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .support_item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .support_icon {
        width: 50px;
        height: 50px;
        margin: 0 auto;
    }
    
    .support_icon i {
        font-size: 1.2rem;
    }
    
    .contact_options {
        align-items: center;
    }
    
    .quick_access_card {
        padding: 1.5rem;
    }
    
    .quick_start_btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .credits_content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .copyright_info {
        text-align: center;
    }
    
    .bg_support_icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    
    
    
    
    .video_info {
        padding: 1rem;
    }
    
    .video_title {
        font-size: 1.1rem;
    }
    
    .video_description {
        font-size: 0.9rem;
    }
    
    .video_meta {
        gap: 1rem;
        font-size: 0.8rem;
    }
    
    .play_button {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .cta_content {
        padding: 1.2rem;
    }
    
    .cta_content h4 {
        font-size: 1.2rem;
    }
    
    .youtube_btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .bg_video_icon {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 376px) {
   
    
    .video_title {
        font-size: 1rem;
    }
    
    .video_description {
        font-size: 0.85rem;
    }
    
    .play_button {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .youtube_btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .bg_video_icon {
        display: none;
    }
}

@media (max-width: 320px) {
   
    
    .video_info {
        padding: 0.8rem;
    }
    
    .video_title {
        font-size: 0.95rem;
    }
    
    .video_description {
        font-size: 0.8rem;
    }
    
    .video_meta {
        font-size: 0.75rem;
    }
    
    .cta_content h4 {
        font-size: 1.1rem;
    }
    
    .cta_content p {
        font-size: 0.9rem;
    }
}


/* ==========================================
   LOGIN PAGE STYLES
   ========================================== */

/* Login Container */
.login_container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, 
        var(--color-text) 0%, 
        rgba(38, 135, 129, 0.8) 50%, 
        rgba(38, 135, 129, 0.6) 100%);
    background-attachment: fixed;
}

/* [data-theme="dark"] .login_container {
    background: linear-gradient(135deg, 
        #1a202c 0%, 
        rgba(45, 55, 72, 0.9) 50%, 
        rgba(26, 32, 44, 0.8) 100%);
    background-attachment: fixed;
} */

/* Background Animation */
.login_bg_animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating_shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatUpDown 20s ease-in-out infinite;
}

/* [data-theme="dark"] .floating_shape {
    background: rgba(255, 255, 255, 0.05);
} */

.shape_1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape_2 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    animation-delay: 3s;
}

.shape_3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 6s;
}

.shape_4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: 9s;
}

.shape_5 {
    width: 40px;
    height: 40px;
    top: 60%;
    left: 5%;
    animation-delay: 12s;
}

.shape_6 {
    width: 90px;
    height: 90px;
    top: 40%;
    right: 5%;
    animation-delay: 15s;
}

@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-40px) rotate(180deg);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
        opacity: 1;
    }
}

/* Login Card */
.login_card {
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 700px;
    position: relative;
    z-index: 2;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.login_card.animate-in {
    transform: translateY(0);
    opacity: 1;
}

.login_card.fade-out {
    transform: translateY(-30px) scale(0.95);
    opacity: 0;
}

/* [data-theme="dark"] .login_card {
    background: rgba(45, 55, 72, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
} */

/* Login Header */
.login_header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.login_logo {
    background: white;
    padding: 10px;
    width: 100px;
    height: 100px;
    margin: auto;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border-radius: 5px;
}

.login_logo img {
    height: 100%;
    width: 100%;
    transition: transform 0.3s ease;
}

.login_logo img:hover {
    transform: scale(1.05);
}

/* [data-theme="light"] .logo-dark {
    display: none;
}

[data-theme="dark"] .logo-light {
    display: none;
} */

.login_title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
    
    font-family: 'Tajawal', sans-serif;
}

.login_subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 0;
    font-family: 'Tajawal', sans-serif;
}
[data-theme="dark"] .login_subtitle {
    color: var(--color-text);
}
/* Form Styles */
.login_form {
    margin-bottom: 2rem;
}

.form_group {
    margin-bottom: 1.5rem;
}

.input_container {
    position: relative;
    transition: all 0.3s ease;
}

.input_container.focused {
    transform: translateY(-2px);
}

.form_input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
    font-family: 'Tajawal', sans-serif;
}

.form_input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(38, 135, 129, 0.1);
    background: var(--color-bg-card);
}

.form_label {
    position: absolute;
    top: 50%;
    right: 3rem;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    background: var(--color-bg);
    padding: 0 0.5rem;
    font-family: 'Tajawal', sans-serif;
}
[data-theme="dark"] .form_label {
    color: var(--color-text);
}
.input_container.focused .form_label,
.form_input:focus + .form_label {
    top: 0;
    font-size: 0.85rem;
    color: var(--color-primary);
    background: var(--color-bg-card);
}

.input_icon {
    position: absolute;
    top: 50%;
    right: 1rem;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    z-index: 1;
}

.input_container.focused .input_icon,
.form_input:focus ~ .input_icon {
    color: var(--color-primary);
}

.input_line {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    transition: width 0.3s ease;
    border-radius: 1px;
}

.input_container.focused .input_line,
.form_input:focus ~ .input_line {
    width: 100%;
}

.password_toggle {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    z-index: 2;
}

.password_toggle:hover {
    color: var(--color-primary);
    transform: translateY(-50%) scale(1.1);
}

/* Form Options */
.form_options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.remember_me {
    display: flex;
    align-items: center;
}

.custom_checkbox {
    display: none;
}

.checkbox_label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: var(--color-text);
    font-size: 0.9rem;
    user-select: none;
    font-family: 'Tajawal', sans-serif;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    margin-left: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    background: var(--color-bg);
}

.custom_checkbox:checked + .checkbox_label .checkmark {
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.custom_checkbox:checked + .checkbox_label .checkmark::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.7rem;
}

.forgot_password {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.forgot_password:hover {
    color: var(--color-success);
    text-decoration: none;
}

/* Login Button */
.login_btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-success));
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Tajawal', sans-serif;
}

.login_btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(38, 135, 129, 0.3);
}

.login_btn:active {
    transform: translateY(0);
}

.login_btn.loading {
    pointer-events: none;
}

.login_btn.loading .btn_text {
    opacity: 0;
}

.login_btn.loading .btn_loader {
    opacity: 1;
}

.login_btn.success {
    background: linear-gradient(135deg, var(--color-success), #059669);
}

.btn_text {
    transition: opacity 0.3s ease;
}

.btn_loader {
    position: absolute;
    display: flex;
    gap: 0.3rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.loader_circle {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite both;
}

.loader_circle:nth-child(1) { animation-delay: -0.32s; }
.loader_circle:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.btn_arrow {
    transition: transform 0.3s ease;
}

.login_btn:hover .btn_arrow {
    transform: translateX(-3px);
}

/* Divider */
.login_divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.login_divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--color-border);
}

.login_divider span {
    background: var(--color-bg-card);
    padding: 0 1rem;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-family: 'Tajawal', sans-serif;
}

/* Social Login */
.social_login {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social_btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    border: 2px solid var(--color-border);
    border-radius: 12px;
    background: var(--color-bg);
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-family: 'Tajawal', sans-serif;
}

.social_btn:hover {
    transform: translateY(-1px);
    border-color: var(--color-primary);
    background: var(--color-bg-card);
}

.google_btn:hover {
    border-color: #db4437;
    color: #db4437;
}

.microsoft_btn:hover {
    border-color: #0078d4;
    color: #0078d4;
}

/* Login Footer */
.login_footer {
    text-align: center;
}

.login_footer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    font-family: 'Tajawal', sans-serif;
}

.signup_link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.signup_link:hover {
    color: var(--color-success);
    text-decoration: none;
}

.back_to_home {
    margin-top: 1.5rem;
}

.home_link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-family: 'Tajawal', sans-serif;
}
/* [data-theme="dark"] .home_link {
    color: var(--color-text);
} */

.home_link:hover {
    color: var(--color-primary);
    background: var(--color-bg);
    text-decoration: none;
    transform: translateX(3px);
}

/* Success Message */
.success_message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--color-bg-card);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
    max-width: 400px;
    width: 90%;
}

.success_message.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: successPulse 2s ease-in-out infinite;
}

.success_icon i {
    color: white;
    font-size: 2rem;
}

@keyframes successPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(16, 185, 129, 0);
    }
}

.success_message h3 {
    color: var(--color-text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Tajawal', sans-serif;
}

.success_message p {
    color: var(--color-text-muted);
    font-size: 1rem;
    margin-bottom: 0;
    font-family: 'Tajawal', sans-serif;
}

/* Responsive Design */
@media (max-width: 768px) {
    .login_container {
        padding: 1rem;
    }
    
    .login_card {
        padding: 2rem 1.5rem;
        margin: 1rem 0;
    }
    
    .login_title {
        font-size: 1.75rem;
    }
    
    .form_options {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .social_login {
        gap: 0.5rem;
    }
    
    .success_message {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .floating_shape {
        display: none;
    }
}

@media (max-width: 480px) {
    .login_card {
        padding: 1.5rem 1rem;
    }
    
    .login_title {
        font-size: 1.5rem;
    }
    
    .form_input {
        padding: 0.875rem 0.875rem 0.875rem 2.5rem;
    }
    
    .input_icon {
        right: 0.875rem;
    }
    
    .password_toggle {
        left: 0.875rem;
    }
}

/* End Login Page Styles */