* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Logo Colors from the Tree */
:root {
    --purple: #9932CC;
    --blue: #1E90FF;
    --green: #32CD32;
    --yellow: #FFD700;
    --orange: #FF8C00;
    --red: #DC143C;
    --brown: #8B4513;
    --dark-green: #228B22;
    
    /* Egyptian color palette */
    --egyptian-blue: #0033A0;
    --egyptian-gold: #D4AF37;
    --egyptian-teal: #008080;
    --egyptian-sand: #C2B280;
    --egyptian-red: #C41E3A;
}

/* Egyptian-inspired decorative elements */
.egyptian-border {
    border-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='20' viewBox='0 0 100 20'%3E%3Cpath d='M0,10 L10,0 L20,10 L30,0 L40,10 L50,0 L60,10 L70,0 L80,10 L90,0 L100,10 L100,20 L0,20 Z' fill='%23D4AF37'/%3E%3C/svg%3E") 20 round;
    border-width: 10px;
    border-style: solid;
    padding: 20px;
}

/* Egyptian-inspired section dividers */
.egyptian-divider {
    height: 30px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='30' viewBox='0 0 60 30'%3E%3Cpath d='M0,15 L15,0 L30,15 L45,0 L60,15 L60,30 L0,30 Z' fill='%23D4AF37'/%3E%3C/svg%3E") repeat-x;
    margin: 50px 0;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    height: auto;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-green);
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--green);
}

.cta-button {
    background: linear-gradient(135deg, #B38728, #0033A0);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.cta-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #B38728, #0033A0);
    border-radius: 25px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-cta {
    background: linear-gradient(90deg, #4CAF50, #2E7D32);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
    background: linear-gradient(90deg, #43A047, #2E7D32);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    background: linear-gradient(135deg, #0F172A 0%, #0033A0 50%, #0F172A 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Egyptian pyramid silhouette in the background */
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='150' viewBox='0 0 300 150' preserveAspectRatio='none'%3E%3Cpath d='M0,150 L150,20 L300,150 Z' fill='%23D4AF37' opacity='0.05'/%3E%3C/svg%3E") no-repeat bottom center/contain,
        /* Egyptian-inspired patterns */
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 51, 160, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(0, 128, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(196, 30, 58, 0.1) 0%, transparent 50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.highlight {
    background: linear-gradient(135deg, var(--purple), var(--blue), var(--green), var(--yellow), var(--orange), var(--red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    animation: rainbow 3s ease-in-out infinite;
}

@keyframes rainbow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--egyptian-gold), var(--egyptian-teal));
    color: white;
    border: 1px solid rgba(212, 175, 55, 0.5);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--egyptian-gold);
    border: 2px solid var(--egyptian-gold);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-logo-img {
    width: 300px;
    height: 300px;
    object-fit: contain;
    animation: gentle-float 4s ease-in-out infinite;
}

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

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icons i {
    position: absolute;
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
}

.floating-icons i:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; color: var(--green); }
.floating-icons i:nth-child(2) { top: 30%; left: 70%; animation-delay: 1s; color: var(--red); }
.floating-icons i:nth-child(3) { top: 50%; left: 10%; animation-delay: 2s; color: var(--blue); }
.floating-icons i:nth-child(4) { top: 70%; left: 60%; animation-delay: 3s; color: var(--yellow); }
.floating-icons i:nth-child(5) { top: 20%; left: 80%; animation-delay: 4s; color: var(--orange); }
.floating-icons i:nth-child(6) { top: 80%; left: 30%; animation-delay: 5s; color: var(--purple); }

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

/* Color Classes for Icons */
.purple { background: linear-gradient(135deg, var(--purple), #8A2BE2); }
.blue { background: linear-gradient(135deg, var(--blue), #4169E1); }
.green { background: linear-gradient(135deg, var(--green), var(--dark-green)); }
.yellow { background: linear-gradient(135deg, var(--yellow), #FFA500); }
.orange { background: linear-gradient(135deg, var(--orange), #FF6347); }
.red { background: linear-gradient(135deg, var(--red), #B22222); }

/* Egyptian-inspired color gradients */
.egyptian-gold { background: linear-gradient(135deg, var(--egyptian-gold), #B8860B); }
.egyptian-blue { background: linear-gradient(135deg, var(--egyptian-blue), #00008B); }
.egyptian-teal { background: linear-gradient(135deg, var(--egyptian-teal), #006666); }
.egyptian-sand { background: linear-gradient(135deg, var(--egyptian-sand), #A89968); }
.egyptian-red { background: linear-gradient(135deg, var(--egyptian-red), #8B0000); }

/* Vision Section */
.vision {
    padding: 6rem 0;
    background: #f8fafc;
}

.vision h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F2937;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px 10px;
}

.vision h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='5' viewBox='0 0 100 5'%3E%3Cpath d='M0,2.5 L5,0 L10,2.5 L15,0 L20,2.5 L25,0 L30,2.5 L35,0 L40,2.5 L45,0 L50,2.5 L55,0 L60,2.5 L65,0 L70,2.5 L75,0 L80,2.5 L85,0 L90,2.5 L95,0 L100,2.5' stroke='%23D4AF37' stroke-width='1' fill='none'/%3E%3C/svg%3E") repeat-x;
}

.vision-statement {
    font-size: 1.5rem;
    text-align: center;
    color: #374151;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.6;
}

.vision-goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.goal {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.goal:hover {
    transform: translateY(-5px);
}

.goal-icon {
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.goal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1F2937;
}

.goal-content p {
    color: #6B7280;
    line-height: 1.6;
}

/* Sectors Section */
.sectors {
    padding: 6rem 0;
    background: white;
}

.sectors h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1F2937;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px 10px;
}

.sectors h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='5' viewBox='0 0 100 5'%3E%3Cpath d='M0,2.5 L5,0 L10,2.5 L15,0 L20,2.5 L25,0 L30,2.5 L35,0 L40,2.5 L45,0 L50,2.5 L55,0 L60,2.5 L65,0 L70,2.5 L75,0 L80,2.5 L85,0 L90,2.5 L95,0 L100,2.5' stroke='%23D4AF37' stroke-width='1' fill='none'/%3E%3C/svg%3E") repeat-x;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6B7280;
    margin-bottom: 3rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.sector-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sector-card.featured {
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    color: white;
    border-color: var(--green);
}

.sector-card.healthcare:hover { border-color: var(--red); }
.sector-card.education:hover { border-color: var(--blue); }
.sector-card.finance:hover { border-color: var(--yellow); }
.sector-card.sustainability:hover { border-color: var(--green); }
.sector-card.culture:hover { border-color: var(--purple); }

.sector-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.sector-card.featured .sector-icon {
    background: rgba(255, 255, 255, 0.2);
}

.sector-card.healthcare .sector-icon { background: linear-gradient(135deg, var(--red), #B22222); }
.sector-card.education .sector-icon { background: linear-gradient(135deg, var(--blue), #4169E1); }
.sector-card.finance .sector-icon { background: linear-gradient(135deg, var(--yellow), var(--orange)); }
.sector-card.sustainability .sector-icon { background: linear-gradient(135deg, var(--green), var(--dark-green)); }
.sector-card.culture .sector-icon { background: linear-gradient(135deg, var(--purple), #8A2BE2); }

.sector-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.sector-card.featured h3 {
    color: white;
}

.sector-card p {
    color: #6B7280;
    line-height: 1.6;
}

.sector-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.sector-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Approach Section */
.approach {
    padding: 6rem 0;
    background: #f8fafc;
}

.approach h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1F2937;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    padding: 0 20px 10px;
}

.approach h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='5' viewBox='0 0 100 5'%3E%3Cpath d='M0,2.5 L5,0 L10,2.5 L15,0 L20,2.5 L25,0 L30,2.5 L35,0 L40,2.5 L45,0 L50,2.5 L55,0 L60,2.5 L65,0 L70,2.5 L75,0 L80,2.5 L85,0 L90,2.5 L95,0 L100,2.5' stroke='%23D4AF37' stroke-width='1' fill='none'/%3E%3C/svg%3E") repeat-x;
}

.approach-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.approach-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--egyptian-gold), var(--egyptian-blue), var(--egyptian-teal));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    z-index: 2;
    position: relative;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1F2937;
}

.timeline-content p {
    color: #6B7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-content ul {
    list-style: none;
    padding-left: 0;
}

.timeline-content li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    color: #6B7280;
}

.timeline-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: bold;
}

.approach-quote {
    font-size: 0.95rem;
    font-style: italic;
    color: #4A5568;
    border-left: 3px solid var(--egyptian-blue);
    padding: 0.7rem 1rem;
    margin: 1rem 0;
    background-color: rgba(0, 51, 160, 0.05);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .approach-quote {
        font-size: 0.9rem;
        padding: 0.5rem 0.8rem;
    }
}

/* Join section enhancements */
.join {
    padding: 5rem 0;
    position: relative;
    background: #1F2937;
    color: white;
    overflow: hidden;
}

.join::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='150' viewBox='0 0 300 150' preserveAspectRatio='none'%3E%3Cpath d='M0,150 L150,20 L300,150 Z' fill='%23D4AF37' opacity='0.04'/%3E%3C/svg%3E") no-repeat center bottom/contain;
    pointer-events: none;
    z-index: 0;
}

.join-content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 1;
    text-align: center;
}

.join h2 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.join h2 .highlight {
    background: linear-gradient(90deg, #4CAF50, var(--egyptian-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline;
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.join p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.join .btn-primary-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 1.5rem 0 1rem;
}

.join .btn-primary {
    background: linear-gradient(135deg, #4CAF50, var(--egyptian-teal));
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
    min-width: 240px;
    max-width: 280px;
    width: 85%;
}

.join .btn-primary:hover, .join .btn-primary:focus {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.4);
    background: linear-gradient(135deg, #43A047, #006666);
}

.join .btn-primary i {
    margin-right: 8px;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0.75rem auto 2rem;
    padding: 0.5rem 1rem;
    width: 85%;
    max-width: 320px;
    text-align: center;
}

.privacy-note i {
    font-size: 0.9rem;
    color: var(--egyptian-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 3px;
    vertical-align: middle;
}

.privacy-note span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.4;
}

.join-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.stat i {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    padding: 1rem;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.stat h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 0.9rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
}

.stat.flexible i {
    background: linear-gradient(135deg, #4267B2, #1877F2);
}

.stat.volunteer i {
    background: linear-gradient(135deg, #E4405F, #DD2A7B);
}

.stat.impact i {
    background: linear-gradient(135deg, #FD7E14, #FF9800);
}

/* Join section mobile styling */
@media (max-width: 768px) {
    .join {
        padding: 3rem 0;
    }
    
    .join-content {
        padding: 1.5rem 1rem;
        margin: 0 15px;
        text-align: center;
    }
    
    .join h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .join p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .join .btn-primary-wrapper {
        margin: 1.2rem 0 0.8rem;
    }
    
    .join .btn-primary {
        width: 90%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .join-stats {
        flex-direction: column;
        gap: 2rem;
        margin: 2rem auto;
    }
    
    .stat {
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .stat i {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
        padding: 0.8rem;
    }
    
    .stat h3 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .stat p {
        font-size: 0.9rem;
    }
    
    .privacy-note {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin: 0.5rem auto 1.5rem;
        font-size: 0.8rem;
        padding: 0.5rem;
        width: 90%;
        max-width: 280px;
    }
    
    .privacy-note i {
        font-size: 0.8rem;
        margin-right: 4px;
    }
}

/* Keep the join-message styles */
.join-message {
    max-width: 800px;
    margin: 0 auto 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.join-message p {
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

.join-message strong {
    color: var(--egyptian-gold);
    font-weight: 600;
}

@media (max-width: 768px) {
    .join-message {
        padding: 0.8rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .join-message p {
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: #1F2937;
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='10' viewBox='0 0 100 10'%3E%3Cpath d='M0,0 L10,10 L20,0 L30,10 L40,0 L50,10 L60,0 L70,10 L80,0 L90,10 L100,0' fill='%23D4AF37' /%3E%3C/svg%3E") repeat-x;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-logo .logo-icon {
    width: 30px;
    height: 30px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links .social-link {
    display: inline-flex;
    align-items: center;
    background-color: #1877f2;
    border-radius: 20px;
    padding: 8px 15px;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.footer-links .social-link:hover {
    background-color: #166fe5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.footer-links .social-link i {
    margin-right: 8px;
}

.footer-links a:hover {
    color: var(--green);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Make header sticky on mobile */
    .header {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1100;
        height: auto;
        background: rgba(255, 255, 255, 0.98);
    }
    
    /* Fix menu button on mobile */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        z-index: 1100; /* Ensure menu is above other elements */
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    /* Fix spacing for content */
    main {
        padding-top: 20px;
    }
    
    /* Join section mobile optimizations */
    .join {
        padding: 3rem 0;
        position: relative; /* Fix from sticky to relative */
        background: linear-gradient(135deg, #1F2937, #374151); /* Restore background */
        color: white; /* Restore text color */
    }
    
    .join-content {
        padding: 0 1.5rem;
    }
    
    .join h2 {
        font-size: 2.2rem;
    }
    
    .join p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        opacity: 0.9;
    }
    
    .join .btn-primary {
        margin: 1.5rem 0 0.5rem;
        width: 100%;
        padding: 1.2rem 1rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    /* Make hero section more concise on mobile */
    .hero {
        padding-top: 20px;
        min-height: 80vh; /* Reduced height for mobile */
    }
    
    .hero-subtitle {
        font-size: 1rem; /* Smaller font for mobile */
        margin-bottom: 1rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding-top: 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-logo-img {
        width: 200px;
        height: 200px;
    }
    
    .vision-goals {
        grid-template-columns: 1fr;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 1rem; /* Reduced spacing between cards */
    }
    
    /* Make sector cards more concise on mobile */
    .sector-card {
        padding: 1.2rem; /* Less padding */
        margin-bottom: 0;
    }
    
    .sector-card p {
        font-size: 0.9rem; /* Smaller text */
        line-height: 1.4;
    }
    
    .sector-card h3 {
        margin-bottom: 0.6rem;
        font-size: 1.1rem;
    }
    
    .approach-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 4rem;
        margin-bottom: 1.5rem; /* Add spacing between items */
    }
    
    .timeline-item:nth-child(even) {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
        top: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    /* Condense timeline content on mobile */
    .timeline-content p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .timeline-content ul {
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .timeline-content li {
        margin-bottom: 0.3rem;
    }
    
    .join-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .join .btn-primary {
        margin: 1.5rem 0 0.5rem;
        width: 100%;
    }
    
    .join-benefits {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .privacy-note {
        display: flex;
        align-items: center;
        text-align: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        font-size: 0.8rem;
    }
    
    .privacy-note i {
        font-size: 0.8rem;
        margin-right: 4px;
    }
}

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

/* Section padding adjustment for fixed header */
section {
    scroll-margin-top: 0;
}

@media (max-width: 768px) {
    section {
        scroll-margin-top: 0;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* Active navigation styling */
.nav-menu a.active {
    color: var(--green);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--green);
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Back to top button */
.back-to-top {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--green), var(--dark-green));
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    z-index: 1050;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    display: block;
}

@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        line-height: 40px;
        bottom: 15px;
        right: 15px;
    }
}

/* Sticky Join Button */
.sticky-join {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1050;
    display: none;
    transition: all 0.3s ease;
}

.sticky-join a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.sticky-join a:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.sticky-join i {
    margin-right: 8px;
}

.sticky-join.show {
    display: block;
}

@media (max-width: 768px) {
    .sticky-join {
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        max-width: 300px;
    }
    
    .sticky-join a {
        width: 100%;
        padding: 12px 15px;
        justify-content: center;
        font-size: 1.1rem;
    }
    
    /* Adjust back to top button to not overlap with sticky join */
    .back-to-top {
        bottom: 75px;
    }
}

/* Arabic welcome text */
.arabic-welcome {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    color: var(--egyptian-gold);
    margin: 0.5rem 0 1rem;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.5px;
    direction: rtl;
}

@media (max-width: 768px) {
    .arabic-welcome {
        font-size: 1.2rem;
    }
}

.personal-message {
    font-style: italic;
    font-size: 1.1rem;
    color: #4A5568;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    padding: 1.5rem 2rem;
    line-height: 1.7;
    position: relative;
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 4px solid var(--egyptian-gold);
    border-radius: 0 8px 8px 0;
}

.personal-message::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 4rem;
    position: absolute;
    left: 10px;
    top: -15px;
    color: var(--egyptian-gold);
    opacity: 0.3;
}

@media (max-width: 768px) {
    .personal-message {
        font-size: 1rem;
        padding: 1rem 1.5rem;
        margin-bottom: 2rem;
    }
}

.hero-metaphor {
    max-width: 700px;
    margin: 1.5rem 0 2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    background-color: rgba(0, 51, 160, 0.2);
    border-left: 4px solid var(--egyptian-gold);
}

.hero-metaphor p {
    font-size: 1rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-metaphor {
        margin: 1rem 0 1.5rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-metaphor p {
        font-size: 0.9rem;
    }
}


