:root {
    --primary: #03A9F4;
    --primary-dark: #E53935;
    --secondary: #00A699;
    --dark: #2B2D42;
    --light: #F8F9FA;
    --accent: #FFC107;
    --text: #333333;
    --text-light: #6C757D;
    --success: #28A745;
}

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

body {
    font-family: 'Tajawal', sans-serif;
    line-height: 1.8;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

/* Header - Modern Glassmorphism */
.header {
    background: rgba(43, 45, 66, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo i {
    color: var(--primary);
    margin-left: 10px;
    font-size: 1.5rem;
}

.logo:hover {
    transform: scale(1.02);
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.nav-menu a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    right: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover:after {
    width: 100%;
    right: auto;
    left: 0;
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section - Modern Gradient with Floating Elements */
.hero {
    background: linear-gradient(135deg, rgba(43, 45, 66, 0.9) 0%, rgba(33, 37, 41, 0.95) 100%),
    url('https://images.unsplash.com/photo-1488521787991-ed7bbaae773c?w=1200&h=800&fit=crop') center/cover;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-button {
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px #2196F3;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.cta-button i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #2196F3;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #2196F3;
}

.cta-button:hover i {
    transform: translateX(5px);
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 15s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-50px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Stats Section - Modern Card Design */
.stats {
    background: white;
    padding: 6rem 0;
    position: relative;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    padding: 0 30px;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.stat-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: var(--primary);
    transition: all 0.6s ease;
}

.stat-item:hover:before {
    height: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-family: 'Tajawal', sans-serif;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

/* About Section - Modern Split Layout */
.about {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #F8F9FA 0%, #E9ECEF 100%);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-title {

    font-size: 2.8rem;
    margin-bottom: 0rem;
    color: var(--dark);
    font-weight: 800;
    position: relative;
    display: inline-block;
}



.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text);
}

.about-text h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.about-text p {
    margin-bottom: 2rem;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 50%);
}

/* Services Section - Modern Grid with Hover Effects */
.services {
    padding: 8rem 0;
    background: white;
    position: relative;
}

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

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary);
    z-index: -1;
    transition: all 0.4s ease;
}

.service-card:hover:before {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    color: white;
}
.service-card:hover .service-icon i{
    color: white;
}

.service-card:hover .service-icon,
.service-card:hover .service-title,
.service-card:hover p {
    color: white;
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
    font-weight: 700;
    transition: all 0.4s ease;
}

.service-card p {
    color: var(--text-light);
    transition: all 0.4s ease;
}

/* Gallery Section - Modern Masonry Grid */
.gallery {
    padding: 8rem 0;
    background: linear-gradient(to bottom, #F8F9FA 0%, #E9ECEF 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-auto-rows: 250px;
    gap: 1.5rem;
    margin-top: 5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:nth-child(1) {
    grid-row: span 2;
}

.gallery-item:nth-child(4) {
    grid-row: span 2;
}

.gallery-item:nth-child(6) {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 70%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay p {
    font-size: 1.2rem;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay p {
    transform: translateY(0);
}

/* Donation Section - Modern Glassmorphism Form */
.donation {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--dark) 0%, #1A1A2E 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.donation:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgb(3 169 244 / 6%) 0%, transparent 70% 70%);
    animation: pulse 15s infinite linear;
    z-index: 1;
}

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

.donation .section-title {
    color: white;
    position: relative;
    z-index: 2;
}

.donation p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.donation-form {
    max-width: 600px;
    margin: 3rem auto 0;
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 90, 95, 0.3);
    background: white;
}

.donate-button {
    background: var(--primary);
    color: white;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    margin-top: 1.5rem;
    font-family: 'Tajawal', sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgb(33 150 243 / 40%);
}

.donate-button:hover {
    background:#03A9F4
;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px #03A9F4
;
}

.donate-button:active {
    transform: translateY(1px);
}

/* Footer - Modern Multi-column with Gradient */
.footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1A1A2E 100%);
    color: white;
    padding: 6rem 0 2rem;
    position: relative;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    padding: 0 30px;
}

.footer-section {
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 2rem;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    bottom: -10px;
    right: 0;
    background: var(--primary);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    line-height: 1.8;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-section a:hover {
    color: white;
    transform: translateX(-5px);
}

.footer-section i {
    margin-left: 10px;
    color: #fff;
    width: 60px;
    text-align: center;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    justify-content: flex-start; /* Adjust for RTL */
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.2rem; /* Ensure icon size */
    text-decoration: none; /* Remove underline */
}

.social-links a:hover {
    background: var(--primary);

    text-decoration: none;
}

/* Specific icon adjustments for RTL */
[dir="rtl"] .social-links a i {
    margin: 0; /* Remove any default margins */
}

.newsletter-form {
    margin-top: 1.5rem;
}

.newsletter-form input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Tajawal', sans-serif;
}

.newsletter-form button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Tajawal', sans-serif;
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

/* Floating Action Button */

.fabbutton{
    position:fixed;
}
.fab {

    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgb(33 150 243 / 35%);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.fab:hover {
    background:   rgb(33 150 243  );
    transform: scale(1.1);
}

/* Visitor Counter - Modern Design */
.visitor-counter {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: rgba(43, 45, 66, 0.9);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.visitor-counter i {
    margin-left: 10px;
    color: var(--primary);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 992px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image {
        height: 400px;
        order: -1;
    }

    .gallery-item:nth-child(6) {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--dark);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: all 0.5s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .donation-form {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-auto-rows: 200px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .visitor-counter,
    .fab {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
    }

    .fab {
        right: 20px;
        left: auto;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading-circle {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s linear infinite;
}

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


/* Team Section Styles */
/* Global Team Section Styles */
.global-team {
    padding: 8rem 0;
    position: relative;
    background-color: #f9fbfd;
    overflow: hidden;
}

.global-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(3, 169, 244, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    z-index: 0;
    opacity: 0.5;
}

.global-team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.global-header {
    margin-bottom: 5rem;
    text-align: center;
}

.global-logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 2rem;
}

.global-logo {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.global-titles {
    text-align: right;
}

.global-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1rem;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.global-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.global-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
}

.divider-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.global-divider i {
    color: var(--primary);
    font-size: 1.5rem;
}

.global-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.global-member-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.global-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.global-member-image {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.global-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.global-member-card:hover .global-member-image img {
    transform: scale(1.05);
}

.global-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(43, 45, 66, 0.8) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
}

.global-member-card:hover .global-member-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.global-member-info {
    padding: 2rem;
    text-align: center;
}

.global-member-info h3 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.global-member-role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.global-member-bio {
    position: relative;
    margin-bottom: 1.5rem;
    padding: 0 1rem;
}

.quote-icon {
    color: rgba(3, 169, 244, 0.2);
    font-size: 3rem;
    position: absolute;
    top: -20px;
    left: 0;
    z-index: 0;
}

.global-member-bio p {
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.global-member-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.global-member-location i {
    color: var(--primary);
}

.global-cta {
    text-align: center;
    margin-top: 6rem;
    padding: 3rem;
    background: rgba(3, 169, 244, 0.05);
    border-radius: 15px;
    border: 1px dashed var(--primary);
}

.global-cta p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.global-cta-button {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(3, 169, 244, 0.3);
}

.global-cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(3, 169, 244, 0.4);
}

@media (max-width: 992px) {
    .global-logo-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .global-team-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .global-title {
        font-size: 2.2rem;
    }

    .global-subtitle {
        font-size: 1.1rem;
    }

    .global-member-image {
        height: 250px;
    }
}

/* About Organization Styles */
.about-organization {
    padding: 8rem 0;
    position: relative;
    background-color: #f8fafc;
    overflow: hidden;
}

.world-map-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/world-map.png');
    opacity: 0.03;
    z-index: 0;
}

.org-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 1;
}

.org-header {
    margin-bottom: 5rem;
    text-align: center;
}

.org-logo-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 2rem;
}

.org-logo {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.org-main-title {
    font-size: 2.8rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.3;
}

.org-subtitle {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 500;
    margin-top: 1rem;
}

.org-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 2rem 0;
}

.org-divider-line {
    height: 2px;
    width: 80px;
    background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.org-divider i {
    color: var(--primary);
    font-size: 1.8rem;
}

.org-content {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.org-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.org-text {
    text-align: right;
}

.org-text h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
}

.org-text h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.org-text p {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text);
    margin-bottom: 2rem;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

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

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.org-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.org-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.org-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(43, 45, 66, 0.8) 0%, transparent 100%);
    color: white;
    text-align: center;
}

.image-overlay p {
    font-size: 1.5rem;
    font-weight: 500;
}

.org-services {
    margin-top: 4rem;
}

.org-services h3 {
    font-size: 2rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.org-services h3:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(3, 169, 244, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.service-card h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.org-achievements {
    margin-top: 6rem;
}

.org-achievements h3 {
    font-size: 2rem;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.org-achievements h3:after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background: var(--primary);
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: white;
    padding: 2.5rem 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
}

@media (max-width: 1200px) {
    .org-main-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 992px) {
    .org-logo-title {
        flex-direction: column;
        gap: 20px;
    }

    .org-mission {
        grid-template-columns: 1fr;
    }

    .org-image {
        height: 400px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .org-main-title {
        font-size: 2rem;
    }

    .org-subtitle {
        font-size: 1.2rem;
    }

    .org-text h3 {
        font-size: 1.6rem;
    }

    .org-text p {
        font-size: 1.1rem;
    }

    .value-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .org-main-title {
        font-size: 1.8rem;
    }

    .org-logo {
        height: 120px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
