/* --- The Numbers Section --- */
.numbers-section {
    width: 100%;
    background: linear-gradient(180deg, #e5e8ea 0%, #222 100%);
    padding: 60px 0 0 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}
.numbers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px 40px 30px;
    position: relative;
    z-index: 2;
}
.numbers-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    text-align: left;
}
.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    background: none;
}
.numbers-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: none;
}
.numbers-header {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 7px;
}
.numbers-divider {
    width: 100%;
    height: 2px;
    background: #bbb;
    margin-bottom: 18px;
}
.numbers-block {
    margin-bottom: 28px;
}
.numbers-year {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2px;
    font-weight: 500;
}
.numbers-value {
    font-size: 2.6rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
    letter-spacing: 1px;
}
.numbers-label {
    font-size: 1rem;
    color: #000;
    margin-bottom: 0;
    font-weight: 400;
}
@media (max-width: 900px) {
    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .numbers-title {
        font-size: 2rem;
    }
    .numbers-value {
        font-size: 2rem;
    }
}
@media (max-width: 600px) {
    .numbers-section {
        padding: 30px 0 0 0;
    }
    .numbers-container {
        padding: 0 8px 20px 8px;
    }
    .numbers-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }
    .numbers-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .numbers-header {
        font-size: 0.9rem;
    }
    .numbers-value {
        font-size: 1.3rem;
    }
    .numbers-label {
        font-size: 0.7rem;
    }
    .numbers-block {
        margin-bottom: 16px;
    }
}
/* --- End Numbers Section --- */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background-color: #f8f9fa;
    padding: 0;
    margin: 0;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}

/* Header Styles */
.header {
    background: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0;
}

.navbar {
    padding: 15px 0;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #ffd700;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('assets/images/2billion_image.jpg') center center no-repeat;
    background-size: 101%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    color: #fff;
    overflow: hidden;
    margin: 0;
    padding: 0;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0.5px);
    z-index: 10;
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 48px;
    margin-right: 80px;
}

.nav-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu-hero {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link-hero {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.nav-link-hero:hover {
    color: #ffd700;
}

.nav-link-hero i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-link-hero:hover i {
    transform: rotate(180deg);
}

/* قائمة منسدلة */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.95);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    border-radius: 8px;
    padding: 10px 0;
    top: 100%;
    left: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-content a {
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-content a:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: #ffd700;
    padding-left: 25px;
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.download-app-btn {
    margin-left: auto;
}

.btn-download {
    background: #fff;
    color: #333;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-download:hover {
    background: #ffd700;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 100px 40px 100px;
    gap: 30px;
    min-height: 100vh;
}

.hero-main-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 900px;
}

.hero-main-text h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
    margin: 0;
    margin-bottom: 15px;
}

.hero-main-text h5 {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.6;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
    margin: 0;
    max-width: 800px;
    padding: 0;
}

.spend-text,
.invest-text {
    color: #fff;
    display: inline-block;
    margin-right: 20px;
    font-weight: 900;
}

.in-your-text,
.in-your-kids {
    color: #fff;
    display: inline-block;
    margin-right: 20px;
    font-weight: 400;
}

.and-text {
    color: #ffd700;
    display: inline-block;
    font-weight: 900;
}

.kids-text {
    color: #ffd700;
    display: inline-block;
    font-weight: 900;
}

.hero-quote {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 0;
    max-width: 750px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    text-align: left;
    width: 100%;
    box-sizing: border-box;
}

.hero-quote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.hero-quote cite {
    display: block;
    text-align: left;
    font-size: 1rem;
    color: #ffd700;
    font-weight: 600;
    font-style: normal;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Statistics Section */
.stats-section {
    padding: 60px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
    width: 100%;
    margin: 0;
    overflow: hidden;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.stats-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.2;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stats-row.first-row {
    margin-bottom: 20px;
}

.stats-row.second-row {
    justify-content: center;
    max-width: 66.67%;
    margin: 0 auto;
}

.stat-item {
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 140px;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stat-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.stat-orange {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.stat-red {
    background: linear-gradient(135deg, #8b1538 0%, #a91b4a 100%);
}

.stat-green {
    background: linear-gradient(135deg, #3d4a2b 0%, #4a5a35 100%);
}

.stat-orange-red {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    text-transform: uppercase;
    opacity: 0.95;
}

/* Responsive Design for Statistics */
@media (max-width: 900px) {
    .stats-title {
        font-size: 2.8rem;
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .stats-row.first-row,
    .stats-row.second-row {
        justify-content: center;
        max-width: 100%;
        margin: 0;
    }
    
    .stats-row.first-row {
        margin-bottom: 15px;
    }
    
    .stat-item {
        min-width: 250px;
        max-width: 300px;
        flex: 1 1 calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 40px 0;
    }
    
    .stats-container {
        padding: 0 15px;
    }
    
    .stats-title {
        font-size: 2.2rem;
        margin-bottom: 30px;
        padding: 0 10px;
        line-height: 1.3;
    }
    
    .stats-grid {
        gap: 12px;
    }
    
    .stats-row {
        gap: 12px;
    }
    
    .stats-row.first-row,
    .stats-row.second-row {
        margin: 0;
        max-width: 100%;
    }
    
    .stats-row.first-row {
        margin-bottom: 12px;
    }
    
    .stat-item {
        padding: 20px 15px;
        min-height: 120px;
        flex: 1;
        min-width: 0;
        max-width: none;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 8px;
        text-align: center;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.3;
        text-align: center;
        white-space: normal;
        overflow: visible;
        width: 100%;
        padding: 0 3px;
        word-wrap: break-word;
        hyphens: auto;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 30px 0;
    }
    
    .stats-container {
        padding: 0 10px;
    }
    
    .stats-grid {
        gap: 10px;
    }
    
    .stats-row {
        gap: 8px;
    }
    
    .stat-item {
        padding: 18px 12px;
        min-height: 110px;
        flex: 1;
        min-width: 0;
        max-width: none;
    }
    
    .stat-number {
        font-size: 1.4rem;
        margin-bottom: 6px;
        line-height: 1.2;
    }
    
    .stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
        padding: 0 2px;
        word-wrap: break-word;
        hyphens: auto;
    }
}

/* Together Section */

/* Together We Support Section */
.together-section {
    padding: 80px 0;
    background: #f5f5f5;
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}

/* Force grid layout */
.together-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    width: 100%;
}

.together-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 25px;
    align-items: center !important;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    min-height: 400px;
}

.together-left {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    grid-column: 1 !important;
    order: 1 !important;
    background: transparent !important;
    border: none !important;
    isolation: isolate;
}

.together-right {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    width: 100% !important;
    grid-column: 2 !important;
    order: 2 !important;
    padding: 0 15px;
}

.billioner-image {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 10px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    position: relative;
    isolation: isolate;
}

.billioner-image img,
#image_billioner101 {
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    max-height: 450px !important;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
    object-fit: contain !important;
    display: block !important;
    mix-blend-mode: normal !important;
    background: none !important;
    background-color: transparent !important;
    filter: brightness(1.02) contrast(1.05);
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative;
    z-index: 10;
    isolation: isolate;
    box-sizing: border-box !important;
}

.billioner-image img:hover,
#image_billioner101:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.18);
    filter: brightness(1.05) contrast(1.08);
}

/* عزل كامل للصورة عن تأثيرات الصفحة */
#image_billioner101 {
    all: unset !important;
    display: block !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    max-height: 350px !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.4s ease !important;
    object-fit: contain !important;
    background: none !important;
    background-color: transparent !important;
    filter: brightness(1.02) contrast(1.05) !important;
    position: relative !important;
    z-index: 10 !important;
    isolation: isolate !important;
    mix-blend-mode: normal !important;
}

.together-right {
    padding: 0 15px;
    width: 100%;
}

.together-right h2 {
    font-size: 2.4rem !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 20px !important;
    line-height: 1.3 !important;
    text-align: left !important;
    width: 100% !important;
}

.together-right p {
    font-size: 1.2rem !important;
    line-height: 1.6 !important;
    color: #666 !important;
    max-width: 100% !important;
    text-align: justify !important;
    margin: 0 !important;
    width: 100% !important;
    hyphens: auto !important;
    text-justify: inter-word !important;
}

.together-right p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    max-width: 450px;
}

/* App Features Section */
.app-features {
    padding: 60px 0;
    background: #000;
    color: #fff;
    margin: 0;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.app-features .container {
    max-width: none;
    padding: 0;
}

.app-features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #fff;
}

.features-content {
    display: grid;
    grid-template-columns: 350px 1fr 350px;
    gap: 0;
    align-items: flex-start;
    width: 100vw;
    max-width: none;
    margin: 0;
    padding: 0;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}


.features-left {
    display: flex;
    flex-direction: column;
    gap: 35px;
    height: fit-content;
    position: relative;
    z-index: 3;
}

.features-right {
    display: flex;
    flex-direction: column;
    gap: 55px;
    height: fit-content;
    position: relative;
    z-index: 2;
}

.features-left {
    padding: 20px 30px 20px 20px;
    margin-left: 0;
    justify-self: start;
}

.features-right {
    padding: 20px 20px 20px 30px;
    margin-right: 1px;
    justify-self: end;
}

/* إزاحة الكروت العلوية إلى الأعلى */
.features-left .feature-item:first-child,
.features-right .feature-item:first-child {
    transform: translateY(-15%);
}

/* إزاحة الكروت السفلية إلى الأسفل */
.features-left .feature-item:last-child,
.features-right .feature-item:last-child {
    transform: translateY(15%);
}

.features-center {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    height: fit-content;
    position: relative;
    z-index: 1;
}

.phone-mockups img {
    max-width: 150%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(255, 255, 255, 0.15));
    position: relative;
    z-index: 1;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: left;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    height: fit-content;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 300px;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.1);
    z-index: 4;
}

/* تأثير hover للكروت العلوية */
.features-left .feature-item:first-child:hover,
.features-right .feature-item:first-child:hover {
    transform: translateY(-15%) translateY(-5px) scale(1.02);
}

/* تأثير hover للكروت السفلية */
.features-left .feature-item:last-child:hover,
.features-right .feature-item:last-child:hover {
    transform: translateY(15%) translateY(-5px) scale(1.02);
}

.feature-icon {
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 8px;
    margin-bottom: 5px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-text h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600;
    text-align: left;
    width: 100%;
    line-height: 1.3;
    height: 50px;
    display: flex;
    align-items: center;
}

.feature-text p {
    color: #ddd;
    line-height: 1.4;
    font-size: 0.8rem;
    text-align: left;
    width: 100%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    flex-grow: 1;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background: #f8f9fa;
    margin: 0;
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

.works-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.works-phone {
    display: flex;
    justify-content: center;
}

.works-phone img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.step-item.active {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-item:hover {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #333;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-item.active .step-number {
    background: #ffd700;
    color: #333;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Download Section */
.download-section {
    padding: 0;
    background: #333;
    color: #fff;
    margin: 20px;
    position: relative;
    z-index: 2;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.download-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
    margin-bottom: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 20px 0 20px;
    height: 200px;
}

.download-text {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.download-text h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.download-text p {
    font-size: 1rem;
    margin-bottom: 25px;
    color: #ccc;
}


.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
}

.download-btn {
    display: inline-block;
    transition: transform 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.download-btn img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.download-btn:hover img {
    transform: scale(1.05);
}

.download-phones {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 45%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.download-phones img {
    width: 60%;
    height: auto;
    max-height: 280px;
    border-radius: 0;
    margin-bottom: 0;
    display: block;
    object-fit: contain;
    object-position: bottom center;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
    margin: 0;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info i {
    color: #ffd700;
    width: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffd700;
}

.footer-bottom p {
    color: #666;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        margin: 0;
        box-sizing: border-box;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu-hero {
        display: none;
    }

    .hero-main-text h1 {
        font-size: 3rem;
        line-height: 1.2;
        letter-spacing: 1px;
    }

    .hero-background .nav-container {
        justify-content: center;
    }

    .btn-download {
        padding: 10px 20px;
        font-size: 14px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }

    /* إعادة تعيين ترتيب الكروت للجوال */
    .stat-item:nth-child(1),
    .stat-item:nth-child(2),
    .stat-item:nth-child(3),
    .stat-item:nth-child(4),
    .stat-item:nth-child(5) {
        grid-column: auto;
        grid-row: auto;
        margin: 0;
    }

    .together-content {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        text-align: left !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 10px !important;
        min-height: 300px !important;
    }

    .together-left {
        grid-column: 1 !important;
        order: 1 !important;
    }

    .together-right {
        grid-column: 2 !important;
        order: 2 !important;
        padding: 0 5px !important;
    }

    .billioner-image img,
    #image_billioner101 {
        max-height: 180px;
        max-width: 90%;
        width: auto;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .together-right h2 {
        font-size: 1.0rem !important;
        margin-bottom: 8px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        font-weight: 600 !important;
    }

    .together-right p {
        font-size: 0.65rem !important;
        line-height: 1.4 !important;
        text-align: justify !important;
        margin: 0 !important;
        max-width: 100% !important;
        hyphens: auto !important;
        text-justify: inter-word !important;
        word-spacing: 0.1em !important;
    }

    .together-right {
        padding: 0 10px;
    }

    .features-content,
    .works-content,
    .download-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .download-content {
        padding: 20px 15px 0 15px;
        height: auto;
        text-align: center;
    }

    .download-text {
        order: 1;
        margin-bottom: 20px;
    }

    .download-text h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .download-text p {
        font-size: 0.9rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .download-phones {
        position: relative;
        width: 100%;
        height: auto;
        min-height: 200px;
        order: 2;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .download-phones img {
        width: 70%;
        max-width: 300px;
    }

    .features-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 15px;
        transform: none;
        position: relative;
        left: auto;
        width: 100%;
        max-width: 100%;
    }

    .features-center {
        order: 1;
        padding: 10px;
        margin: 0 auto;
        max-width: 300px;
    }

    .phone-mockups img {
        max-width: 100%;
        height: auto;
        max-height: 350px;
    }

    .features-left,
    .features-right {
        order: 2;
        padding: 15px;
        margin: 0;
        justify-self: center;
        width: 100%;
        max-width: 500px;
    }

    .features-left {
        margin-bottom: 20px;
    }

    .features-right {
        margin-top: 20px;
    }

    .feature-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        padding: 15px;
        margin-bottom: 15px;
        max-width: 100%;
        width: 100%;
        gap: 15px;
        transform: none !important;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .feature-icon img {
        width: 80%;
        height: 80%;
    }

    .feature-text {
        flex: 1;
    }

    .feature-text h3 {
        font-size: 1rem;
        height: auto;
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .feature-text p {
        font-size: 0.85rem;
        line-height: 1.3;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 15px;
    }

    .download-btn {
        width: 100%;
        max-width: 200px;
        display: flex;
        justify-content: center;
    }

    .download-btn img {
        height: 55px;
    }

    .download-section {
        height: auto;
        min-height: 400px;
        margin: 10px;
        padding: 20px 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100vw;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
        padding: 0 10px;
        margin: 0;
        box-sizing: border-box;
    }

    .hero-main-text h1 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
    }

    .hero-content {
        padding: 80px 15px;
        gap: 25px;
        min-height: calc(65vh - 70px);
        justify-content: center;
    }

    .together-content {
        display: grid !important;
        gap: 15px !important;
        padding: 0 10px !important;
        grid-template-columns: 1fr 1fr !important;
        align-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        min-height: 250px !important;
    }

    .together-left {
        grid-column: 1 !important;
        order: 1 !important;
    }

    .together-right {
        grid-column: 2 !important;
        order: 2 !important;
        padding: 0 5px !important;
    }

    .billioner-image img,
    #image_billioner101 {
        max-height: 120px;
        max-width: 80%;
        width: auto;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    }

    .together-right h2 {
        font-size: 0.7rem !important;
        margin-bottom: 5px !important;
        line-height: 1.2 !important;
        text-align: left !important;
        font-weight: 600 !important;
    }

    .together-right p {
        font-size: 0.45rem !important;
        line-height: 1.3 !important;
        text-align: justify !important;
        margin: 0 !important;
        hyphens: auto !important;
        text-justify: inter-word !important;
        word-spacing: 0.1em !important;
        letter-spacing: 0.02em !important;
    }

    /* .together-right h2 {
        font-size: 1.4rem !important;
        margin-bottom: 10px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .together-right p {
        font-size: 0.75rem !important;
        line-height: 1.4 !important;
        text-align: left !important;
        margin: 0 !important;
    } */

    .together-section {
        padding: 60px 0;
    }

    .app-features h2,
    .how-it-works h2 {
        font-size: 2rem;
    }

    .app-features h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .features-content {
        padding: 15px 10px;
        gap: 15px;
    }

    .features-center {
        max-width: 250px;
        padding: 5px;
    }

    .phone-mockups img {
        max-height: 300px;
    }

    .features-left,
    .features-right {
        padding: 10px;
        max-width: 100%;
    }

    .feature-item {
        padding: 12px;
        margin-bottom: 12px;
        gap: 12px;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-text h3 {
        font-size: 0.9rem;
    }

    .feature-text p {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }

    .download-text h2 {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .download-text p {
        font-size: 0.85rem;
        margin-bottom: 15px;
        padding: 0 10px;
    }

    .download-phones {
        min-height: 180px;
        margin-top: 15px;
    }

    .download-phones img {
        width: 65%;
        max-width: 250px;
    }

    .download-section {
        margin: 5px;
        min-height: 350px;
    }

    .download-content {
        padding: 15px 10px 0 10px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-quote {
        margin: 15px auto 0;
        padding: 15px 18px;
        max-width: calc(100% - 30px);
        border-radius: 10px;
    }

    .hero-quote p {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .hero-quote cite {
        font-size: 0.85rem;
        text-align: center;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        align-self: center;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ffd700;
}

/* Mobile Navigation Styles */
.mobile-menu-toggle {
    display: none;
}

/* Fixed navigation for mobile */
@media (max-width: 768px) {
    body {
        padding-top: 0;
    }
}

.mobile-menu-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    color: #ffd700;
    transform: scale(1.05);
}

.mobile-side-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 9999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

.mobile-side-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-logo img {
    height: 35px;
    width: auto;
}

.close-mobile-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    padding: 8px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.close-mobile-menu:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffd700;
}

.mobile-menu-content {
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: calc(100vh - 100px);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-dropdown {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.mobile-dropdown-toggle {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    width: 100%;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.mobile-dropdown.active .mobile-dropdown-toggle i {
    transform: rotate(180deg);
}

.mobile-dropdown-toggle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.mobile-dropdown-toggle:hover::before {
    left: 100%;
}

.mobile-dropdown-toggle:hover {
    background: rgba(255, 215, 0, 0.1);
    color: #ffd700;
}

.mobile-dropdown-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-dropdown.active .mobile-dropdown-content {
    max-height: 300px;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-dropdown-content a {
    display: block;
    color: #ccc;
    text-decoration: none;
    padding: 12px 25px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.mobile-dropdown-content a:last-child {
    border-bottom: none;
}

.mobile-dropdown-content a:hover {
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding-left: 35px;
}

.mobile-dropdown-content a::before {
    content: '▸';
    position: absolute;
    left: 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-dropdown-content a:hover::before {
    opacity: 1;
}

.mobile-download-section {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-btn-download {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #333;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.3);
}

.mobile-btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Animations */
.mobile-side-menu.active .mobile-dropdown {
    animation: slideInFromRight 0.5s ease forwards;
    opacity: 0;
    transform: translateX(50px);
}

.mobile-side-menu.active .mobile-dropdown:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-side-menu.active .mobile-dropdown:nth-child(2) {
    animation-delay: 0.2s;
}

.mobile-side-menu.active .mobile-dropdown:nth-child(3) {
    animation-delay: 0.3s;
}

.mobile-side-menu.active .mobile-dropdown:nth-child(4) {
    animation-delay: 0.4s;
}

.mobile-side-menu.active .mobile-btn-download {
    animation: slideInFromRight 0.5s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
    transform: translateX(50px);
}

@keyframes slideInFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .hero {
        position: relative;
        height: 70vh;
        min-height: 70vh;
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        background-repeat: no-repeat;
        overflow: hidden;
    }

    .hero-background {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(0.5px);
        z-index: 1;
    }

    .hero-content {
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 20px;
        padding: 60px 20px;
        min-height: calc(70vh - 80px);
        text-align: left;
    }

    .hero-main-text {
        width: 100%;
        margin-bottom: 25px;
        display: flex;
        flex-direction: column;
        gap: 25px;
        max-width: 100%;
    }

    .hero-main-text h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        letter-spacing: 1px;
        text-align: left;
        text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
        margin: 0;
        margin-bottom: 10px;
    }

    .hero-main-text h5 {
        font-size: 1rem;
        line-height: 1.5;
        margin: 0;
        color: #fff;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        font-weight: 400;
    }

    .hero-quote {
        margin: 0 auto;
        padding: 20px 25px;
        max-width: 90%;
        background: rgba(0, 0, 0, 0.75);
        border-radius: 15px;
        color: #fff;
        z-index: 2;
        position: relative;
    }

    .hero-quote p {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .hero-quote cite {
        display: block;
        font-size: 1rem;
        text-align: right;
        color: #ffd700;
    }

    .nav-container {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        width: 100%;
        box-sizing: border-box;
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(15px);
        border-radius: 0 0 20px 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }

    .nav-logo img {
        height: 40px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    }

    .spend-text {
        display: block;
        margin-bottom: 0;
    }

    .spend-text::after {
        content: " IN YOUR LAND";
        color: #ffd700;
    }

    .invest-text {
        display: block;
    }

    .invest-text::after {
        content: " IN YOUR KIDS";
        color: #ffd700;
    }

    .in-your-text,
    .and-text,
    .in-your-kids,
    .kids-text {
        display: none;
    }
}

/* --- Pillars of Progress Section --- */
.pillars-section {
    position: relative;
    width: 100%;
    min-height: 400px;
    background: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.pillars-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/billion_image_101.png') center center/cover no-repeat;
    filter: grayscale(0.5) brightness(0.9);
    z-index: 1;
}
.pillars-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    min-height: 400px;
    box-sizing: border-box;
}
.pillars-left {
    flex: 1 1 40%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding-right: 40px;
    min-width: 220px;
}
.pillars-left h2 {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.3;
    margin: 0;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.pillars-right {
    flex: 2 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
    padding-left: 40px;
    min-width: 260px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.35);
}
.pillars-right p {
    margin: 0 0 12px 0;
    color: #fff;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
}
@media (max-width: 900px) {
    .pillars-content {
        flex-direction: column;
        padding: 40px 15px;
        min-height: 350px;
    }
    .pillars-left, .pillars-right {
        padding: 0;
        min-width: 0;
    }
    .pillars-left {
        margin-bottom: 25px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    .pillars-right {
        align-items: flex-start;
        justify-content: flex-start;
    }
}
@media (max-width: 600px) {
    .pillars-section {
        min-height: 250px;
    }
    .pillars-content {
        flex-direction: column;
        padding: 25px 5px;
        min-height: 200px;
    }
    .pillars-left h2 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    .pillars-right {
        font-size: 0.7rem;
        line-height: 1.5;
        padding: 0;
    }
    .pillars-right p {
        font-size: 0.7rem;
        line-height: 1.5;
    }
}
/* --- نهاية Pillars of Progress --- */

/* حذف كود features القديم بالكامل */
.features-content, .features-left, .features-right, .features-center, .feature-item, .feature-icon, .feature-text, .app-features {
    display: none !important;
}

/* Fixed Icon */
.fixed-icon {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fixed-icon:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.4);
}

.fixed-icon img {
    width: 35px;
    height: 35px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .fixed-icon {
        width: 50px;
        height: 50px;
        right: 15px;
    }
    
    .fixed-icon img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .fixed-icon {
        width: 45px;
        height: 45px;
        right: 10px;
    }
    
    .fixed-icon img {
        width: 25px;
        height: 25px;
    }
}

/* Chat Modal Styles */
.chat-modal {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
    z-index: 10001;
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideInFromBottom 0.3s ease-out;
}

.chat-modal.active {
    display: flex;
}

.chat-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.chat-modal-overlay.active {
    display: block;
    opacity: 1;
}

.chat-modal-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header {
    background: linear-gradient(135deg, #17213c 0%, #0077ff 100%);
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px 15px 0 0;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.chat-close {
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s ease;
}

.chat-close:hover {
    transform: scale(1.2);
}

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    height: calc(100% - 80px);
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 80%;
    animation: messageSlideIn 0.3s ease-out;
}

.bot-message {
    align-items: flex-start;
}

.user-message {
    align-items: flex-end;
    align-self: flex-end;
}

.message-content {
    padding: 12px 16px;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
}

.bot-message .message-content {
    background: #e9ecef;
    color: #333;
    border-bottom-left-radius: 5px;
}

.user-message .message-content {
    background: linear-gradient(135deg, #17213c 0%, #0077ff 100%);
    color: white;
    border-bottom-right-radius: 5px;
}

.message-time {
    font-size: 0.7rem;
    color: #6c757d;
    margin-top: 5px;
    padding: 0 5px;
}

.chat-input-container {
    padding: 20px;
    background: white;
    border-top: 1px solid #dee2e6;
    display: flex;
    gap: 10px;
    align-items: center;
}

#chatInput {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #dee2e6;
    border-radius: 25px;
    outline: none;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

#chatInput:focus {
    border-color: #0077ff;
}

.send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #17213c 0%, #0077ff 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.send-btn:hover {
    transform: scale(1.1);
}

.send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Chat Modal Animations */
@keyframes slideInFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes messageSlideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Chat Modal Mobile Responsive */
@media (max-width: 768px) {
    .chat-modal {
        width: calc(100vw - 20px);
        height: 70vh;
        right: 10px;
        bottom: 90px;
    }
}

@media (max-width: 480px) {
    .chat-modal {
        width: calc(100vw - 10px);
        height: 75vh;
        right: 5px;
        bottom: 80px;
    }
}