/* =================================================================
   Sherwin Foundation - Main Stylesheet
   All styles extracted from HTML files and organized
   ================================================================= */

/* === BRAND PALETTE (logo navy #1a3560) === */
:root {
    --brand-navy: #1a3560;        /* primary — matches the logo */
    --brand-navy-dark: #12253f;   /* darker gradient stop */
    --brand-navy-light: #2a4f8a;  /* lighter gradient stop / accents */
    --brand-tint: #eaf0f6;        /* light background tint */
    --brand-tint-2: #f0f4f8;
    --brand-shadow: rgba(42, 79, 138, 0.3);
}

/* === FONTS === */
@font-face {
    font-family: 'Droid Arabic Kufi';
    src: url('assets/font/ArbFONTS-Droid-Arabic-Kufi.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Droid Arabic Kufi Bold';
    src: url('assets/font/ArbFONTS-Droid-Arabic-Kufi-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}



/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.ceo-image {
    width: 100%;
  display: flex;
  justify-content: center;
}

.ceo-image img {
    height: auto;
  width: 100px;
  border-radius: 100px;
  border: 1px solid #111;
  margin-bottom: 20px;
}
 .info-section .card-desc , .info-section ul {
    text-align: right;
 }

 .info-section ul svg {color: #1aca1a;}

body {
    margin: 0;
    font-family: 'Droid Arabic Kufi', sans-serif;
    background-color: #ffffff;
    color: #333;
    text-align: right;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

a:hover {
    opacity: 0.8;
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* === HEADER === */
.header {
    background-color: #fff;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.header .logo img {
    width: 300px;
    height: auto;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1a3560;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.mobile-menu-toggle:hover {
    color: #2a4f8a;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 25px;
    font-size: 16px;
    align-items: center;
}

.nav-menu ul li {
    position: relative;
}

.nav-menu a {
    color: #1a3560;
    font-weight: 500;
    padding: 8px 12px;
    display: block;
    transition: all 0.3s ease;
    text-decoration: none;
}

.nav-menu a:hover {
    color: #2a4f8a;
}

.nav-menu a.active {
    color: #2a4f8a;
    font-weight: 700;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Mega Menu — compact dropdown card */
.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    left: auto;
    transform: translateY(10px);
    width: 320px;
    background: #fff;
    box-shadow: 0 18px 50px rgba(18, 37, 63, 0.18);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 1000;
    border: 1px solid #eef1f6;
    border-radius: 16px;
    padding: 8px;
}
.mega-menu::before { /* caret pointing at the toggle */
    content: '';
    position: absolute;
    top: -7px;
    right: 26px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
    border-top: 1px solid #eef1f6;
    border-left: 1px solid #eef1f6;
}

.mega-dropdown:hover .mega-menu,
.mega-dropdown:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.mega-menu-grid {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0;
}

.mega-menu-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    text-decoration: none;
    color: #1a3560;
    border-radius: 12px;
    transition: background 0.2s ease;
    position: relative;
    overflow: hidden;
}

.mega-menu-item::before { display: none; }

.mega-menu-item:hover {
    background: #f4f6fa;
    transform: none;
}

.mega-menu-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, #2a4f8a 0%, #1a3560 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 19px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(42, 79, 138, 0.25);
}

.mega-menu-item:hover .mega-menu-icon {
    transform: scale(1.06);
}

.mega-menu-content {
    flex: 1;
}

.mega-menu-content h4 {
    margin: 0 0 2px 0;
    font-size: 15px;
    font-weight: 700;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.mega-menu-content p {
    margin: 0;
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
}

.mega-menu-item.active { background: #eef2f9; }

.mega-menu-item.active .mega-menu-icon {
    background: linear-gradient(135deg, #1a3560 0%, #12253f 100%);
}

.mega-menu-item.active .mega-menu-content h4 {
    color: #2a4f8a;
}

/* (removed unused legacy .dropdown-menu block — nav uses .mega-menu) */

/* Donate Button */
.header .btn-donate {
    background: linear-gradient(135deg, #1a3560 0%, #2a4f8a 100%);
    color: #fff;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.header .btn-donate:hover {
    background: linear-gradient(135deg, #1a3560 0%, #2a4f8a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(42, 79, 138, 0.3);
}

.mobile-donate-btn {
    display: none;
}

.desktop-donate-btn {
    display: block;
}

/* Sidebar head (logo + close) — only shown inside the mobile off-canvas menu */
.nav-menu__head { display: none; }

/* Off-canvas menu backdrop + scroll lock (global; only activates on mobile) */
.nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 999;
}
.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}
body.menu-open {
    overflow: hidden;
}

/* Floating contact buttons (WhatsApp + phone) — all pages */
.floating-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    left: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}
.floating-contact .fab {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-contact .fab:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}
.floating-contact .fab-whatsapp { background: #25d366; }
.floating-contact .fab-phone { background: linear-gradient(135deg, #1a3560 0%, #2a4f8a 100%); }
@media (max-width: 992px) {
    .floating-contact { bottom: 18px; right: 16px; }
    .floating-contact .fab { width: 50px; height: 50px; font-size: 22px; }
}

/* Mobile Styles */
@media (max-width: 992px) {
    .mobile-menu-toggle { display: block; }
    .desktop-donate-btn { display: none; }   /* donate lives in the sidebar on mobile → toggle sits on the left */

    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        width: min(330px, 85vw);
        background: #fff;
        box-shadow: -8px 0 30px rgba(18, 37, 63, 0.18);
        transform: translateX(100%);
        transition: transform 0.32s cubic-bezier(.4, 0, .2, 1);
        flex-direction: column;
        align-items: stretch;
        padding: 0;
        overflow-y: auto;
        z-index: 1001;
    }
    .nav-menu.active { transform: translateX(0); }

    /* Sidebar header: brand logo + close button */
    .nav-menu__head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        background: #fff;
        border-bottom: 1px solid #eef1f6;
    }
    .nav-menu__logo { height: 40px; width: auto; }
    .nav-menu__close {
        background: #f4f6fa;
        border: none;
        color: #1a3560;
        width: 38px;
        height: 38px;
        border-radius: 10px;
        font-size: 18px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.2s ease;
    }
    .nav-menu__close:hover { background: #e6ebf3; }

    .nav-menu ul {
        display: block !important;
        width: 100%;
        padding: 10px 12px;
        gap: 0;
    }
    .nav-menu ul li { margin: 2px 0; }
    .nav-menu ul li a {
        padding: 14px 16px;
        border-radius: 12px;
        font-size: 16px;
        color: #1a3560;
    }
    .nav-menu ul li a:hover,
    .nav-menu ul li a.active { background: #f4f6fa; color: #1a3560; }
    .dropdown-toggle { justify-content: space-between; }

    /* Mega menu becomes an inline accordion inside the sidebar */
    .mega-menu {
        position: static;
        transform: none !important;
        min-width: 0;
        max-width: none;
        width: 100% !important;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .mega-menu::before { display: none; }
    .mega-dropdown.active .mega-menu { max-height: 600px; }
    .mega-dropdown.active .dropdown-toggle i { transform: rotate(180deg); }
    .mega-menu .container { padding: 0; }
    .mega-menu-grid { display: flex; flex-direction: column; width: 100%; padding: 0; }
    .mega-menu-item {
        padding: 12px 20px;
        border-radius: 0;
        border-bottom: 1px solid #f4f4f6;
    }
    .mega-menu-item:hover { background: #f4f6fa; }

    /* Donate button pinned toward the bottom of the sidebar */
    .mobile-donate-btn {
        display: block;
        margin: 14px 16px 22px;
    }
    .mobile-donate-btn .btn-donate {
        display: block;
        text-align: center;
        padding: 14px;
        font-size: 16px;
    }
}
.section-subtitle {
    display: inline-block;
    padding: 5px 15px;
    background-color: #eaf0f6;
    color: #2a4f8a;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    font-size: 36px;
    font-weight: bold;
    color: #1a3560;
    margin: 0;
    text-align: center;
}

.section-title-underline {
    width: 60px;
    height: 4px;
    background-color: #2a4f8a;
    margin: 15px auto 30px;
    border-radius: 2px;
}

/* === HERO SECTION === */
.hero {
    background-color: #1a3560;
    color: #fff;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before { /* faint background photo */
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/images/hero-bg.jpg') center/cover no-repeat;
    z-index: 0;
}
.hero::after { /* navy tint keeps the photo subtle behind the text */
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,53,96,0.90) 0%, rgba(26,53,96,0.86) 50%, rgba(42,79,138,0.86) 100%);
    z-index: 0;
}
.hero-content { position: relative; z-index: 1; }
.hero--sub { padding: 80px 0; }

.hero h1 {
    font-size: 55px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    margin: 0 0 20px 0;
}

.hero h2 {
    font-size: 24px;
    font-family: 'Droid Arabic Kufi', sans-serif;
    margin: 0 0 20px 0;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero .hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.hero .hero-buttons a {
    padding: 15px 35px;
    border-radius: 30px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

.hero .hero-buttons a:first-child {
    background-color: #fff;
    color: #1a3560;
}

.hero .hero-buttons a:first-child:hover {
    background-color: #f0a500;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(240, 165, 0, 0.3);
}

.hero .hero-buttons a:last-child {
    background-color: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.hero .hero-buttons a:last-child:hover {
    background-color: #fff;
    color: #1a3560;
    transform: translateY(-2px);
}

.hero .scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
}

.hero .scroll-down i {
    font-size: 24px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* === STATS SECTION === */
.stats {
    padding: 80px 0;
    background-color: #f0f4f8;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.stats-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 23%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stats-section {
    padding: 80px 0;
    background-color: #f0f4f8;
    position: relative;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stats-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 23%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.stats-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a3560, #2a4f8a);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
  font-size: 25px;
}

.stats-icon i {
    color: #fff !important;
    font-size: 30px !important;
}

.stats-number {
    font-size: 40px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    color: #1a3560;
    margin-bottom: 10px;
    font-weight: 700;
    direction: ltr;
}

.stats-label {
    font-size: 16px;
    color: #555;
}

.stats-cta {
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
}

.stats-cta a {
    background-color: #eaf0f6;
    color: #2a4f8a;
    padding: 12px 30px;
    border-radius: 25px;
    font-family: 'Droid Arabic Kufi', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.stats-cta a:hover {
    background-color: #2a4f8a;
    color: #fff;
}

/* === ABOUT SECTION === */
.about-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 24px;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    margin-bottom: 10px;
}

.about-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-grid {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.value-badge {
    background-color: #f0f4f8;
    padding: 12px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2a4f8a;
    font-weight: 500;
    transition: all 0.3s ease;
}

.value-badge:hover {
    background-color: #2a4f8a;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(42, 79, 138, 0.3);
}

.about-image {
    flex: 0 0 350px;
}

.about-logo-card {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    position: relative;
}

.about-logo-card img {
    max-width: 100%;
    border-radius: 15px;
    margin-bottom: 15px;
}

.about-year {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    position: absolute;
    background: white;
    padding: 10px 30px;
    border-radius: 10px;
    bottom: 30px;
    box-shadow: 1px 1px 10px 5px #e6e6e6;
}

.year-number {
    font-size: 30px;
    font-weight: 700;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.year-label {
    color: #555;
    font-size: 12px;
}

.about-timestamp {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 15px;
}

.about-timestamp span {
    font-size: 24px;
    font-weight: 700;
    color: #1a3560;
}

.about-timestamp span:nth-child(2) {
    font-size: 16px;
    font-weight: 400;
    color: #555;
}

/* === PROJECTS SECTION === */
.projects-section {
    padding: 80px 0;
    background-color: #f0f4f8 !important;
}

.projects-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.project-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    width: 31%;
    min-width: 300px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.project-card .project-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a3560, #2a4f8a);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    color: white;
    font-size: 25px;
}

.project-card:hover .project-icon {
    transform: scale(1.1) rotate(5deg);
}

.project-card .project-icon i {
    color: #fff !important;
    font-size: 28px !important;
}

.project-card h3 {
    font-size: 22px;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    font-weight: bold;
    margin-bottom: 15px;
}

.project-card p {
    color: #555;
    line-height: 1.7;
    height: 80px;
    margin-bottom: 20px;
}

.project-card ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.project-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #333;
}

.project-list li svg {
    color: #28a745;
    flex-shrink: 0;
}

/* === NEWS SECTION === */
.news-section {
    padding: 80px 0;
    background-color: #fff;
}

.news-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.news-card {
    background-color: #fff;
    border-radius: 15px;
    width: 31%;
    min-width: 300px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover img {
    transform: scale(1.1);
}


.news-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #dc3545;
    color: white;
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
    z-index: 1;
}

.news-content {
    padding: 25px;
}

.news-meta {
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
}
.partners-description {
    text-align: center;
    margin-bottom: 20px;
}
.news-date svg { 
    margin-left: 10px;
}
.news-date, .news-category {
    background-color: #f0f4f8;
    padding: 5px 10px;
    border-radius: 20px;
    color: #2a4f8a;
}

.news-date i, .news-category i {
    margin-left: 5px;
}

.news-card h3 {
    font-size: 20px;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi', sans-serif;
    letter-spacing: -1px;
    margin: 0 0 15px 0;
    min-height: 56px;
}

.news-card p {
    color: #555;
    line-height: 1.7;
    margin: 0 0 25px 0;
    height: 130px;
    overflow: hidden;
}

.news-card a {
    color: #2a4f8a;
    font-family: 'Droid Arabic Kufi', sans-serif;
    display: inline-block;
    background-color: #f0f4f8;
    padding: 10px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.news-card a:hover {
    background-color: #2a4f8a;
    color: #fff;
    transform: translateX(-5px);
}

/* === PARTNERS SECTION === */
.partners-section {
    padding: 80px 0;
    background-color: #f0f4f8 !important;
}

.partners-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 23%;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.partner-card .partner-icon {
    width: 70px;
    height: 70px;
    background-color: #eaf0f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    color: #1a3560;
    font-size: 30px;
}

.partner-card:hover .partner-icon {
    transform: scale(1.1);
}

.partner-card .partner-icon i {
    color: #2a4f8a !important;
    font-size: 30px !important;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-icon i {
    color: #fff;
}

.partner-card div:last-child {
    font-size: 18px;
    font-family: 'Droid Arabic Kufi', sans-serif;
    color: #1a3560;
}

/* === DONATION SECTION === */
.donation-section {
    padding: 80px 0 !important;
    background: linear-gradient(135deg, #1a3560, #2a4f8a)!important;
    color: #fff !important;
}

.donation-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.donation-text {
    flex: 1;
}

.donation-text h2 {
    font-size: 42px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    font-weight: bold;
    letter-spacing: -1px;
    margin: 0 0 20px 0;
}

.donation-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.donation-text ul {
    list-style: none;
    padding: 0;
    text-align: right;
}

.donation-text ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 18px;
}

.donation-text ul li svg {
    color: #28a745;
}

.donation-form-container {
    flex: 1;
    width: 100%;
}

.donation-form {
    background-color: #fff;
    color: #333;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.donation-form h3 {
    text-align: right;
    font-size: 28px;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    font-weight: bold;
    margin: 0 0 30px 0;
    letter-spacing: -1px;
}

.donation-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.donation-form input,
.donation-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Droid Arabic Kufi', sans-serif;
    margin-bottom: 20px;
    transition: border-color 0.3s ease;
}

.donation-form input:focus,
.donation-form textarea:focus {
    outline: none;
    border-color: #2a4f8a;
}

.donation-form button {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #1a3560, #2a4f8a);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Droid Arabic Kufi', sans-serif;
    transition: all 0.3s ease;
}

.donation-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 53, 96, 0.3);
}

/* === CONTACT SECTION === */
.contact {
    padding: 80px 0;
    background-color: #fff;
}

.contact-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-wrapper {
    background-color: #f0f4f8;
    border-radius: 20px;
    padding: 50px;
}

.contact-content {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h3 {
    font-size: 24px;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    font-weight: bold;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-info p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.contact-details {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e0e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 20px;
    flex-shrink: 0;
    color: #1a3560;
  font-size: 20px;
}

.contact-details .detail-item-icon i {
    color: #1a3560;
    font-size: 22px;
}

.contact-details h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi', sans-serif;
}

.contact-details p {
    margin: 0;
    color: #555;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: #e0e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a4f8a;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #2a4f8a;
    color: #fff;
    transform: translateY(-3px);
}

.contact-form {
    flex: 1.5;
}

.contact-form h3 {
    font-size: 24px;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    font-weight: bold;
    letter-spacing: -1px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 30px;
}

.contact-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fff;
    font-family: 'Droid Arabic Kufi', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #2a4f8a;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    background-color: #fff;
    color: #1a3560;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    font-family: 'Droid Arabic Kufi', sans-serif;
    transition: all 0.3s ease;
    display: block;
    margin: 0 auto;
}

.contact-form button:hover {
    background-color: #1a3560;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 79, 138, 0.3);
}

/* === FOOTER === */
.footer {
    background-color: #1a202c;
    color: #ccc;
    padding: 60px 0 20px 0;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    padding-bottom: 40px;
    border-bottom: 1px solid #1a3560;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 30px;
}

.footer-column:first-child {
    flex: 2;
}

.footer .footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer .footer-logo img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-left: 15px;
    background: white;
}

.footer .footer-logo-text {
    font-weight: 700;
    color: #fff;
    font-size: 20px;
}

.footer .footer-logo-subtitle {
    font-size: 14px;
    color: #ccc;
}

.footer p {
    line-height: 1.8;
    max-width: 350px;
}

.footer h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: #ccc;
    transition: color 0.3s;
}

.footer ul li a:hover {
    color: #fff;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background-color: #1a3560;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #2a4f8a;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 14px;
    color: #aaa;
}

.footer-bottom p {
    margin: 0;
    max-width: 100%;
}

/* === RESPONSIVE UTILITIES === */
.responsive-flex-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.responsive-flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.responsive-width-100 {
    width: 100% !important;
}

.responsive-width-48 {
    width: 48% !important;
    margin-bottom: 20px;
}

.responsive-width-90 {
    width: 90% !important;
    margin-bottom: 20px;
}

.responsive-margin-bottom {
    margin-bottom: 30px;
}

.responsive-text-center {
    text-align: center;
}


/* === RESPONSIVE MEDIA QUERIES === */

/* Tablet (992px and below) */
@media (max-width: 992px) {
    /* Don't hide nav completely - it's handled by the mobile menu toggle */
    .header .nav-menu {
        /* Mobile menu styles are in the main mobile styles section above */
    }
    
    .header-content {
        justify-content: space-between !important;
    }
    .value-badge {
        width: 100%;
    }
    
    .section-title-container {
        text-align: center;
    }
    .hero h1 {
        font-size: 48px !important;
    }
    
    .about-content {
        flex-direction: column-reverse;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .donation-content {
        flex-direction: column-reverse;
    }
    
    .donation-form-container {
        margin-bottom: 40px;
    }
    
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    
    .footer-columns {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-column {
        margin-bottom: 30px;
    }
    
    .stats-card {
        width: 48%;
    }
    
    .project-card {
        width: 48%;
    }
    
    .news-card {
        width: 48%;
    }
    
    .partner-card {
        width: 48%;
    }
}
.section-title-container {
    text-align: center;
}
/* Mobile (768px and below) */
@media (max-width: 768px) {
    .header .logo img {
        width: 200px !important;
    }
    .hero h1 {
        font-size: 32px !important;
    }
    
    .hero h2 {
        font-size: 20px !important;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    .mega-menu-content h4 {
        font-size: 14px !important;
    }
    .nav-menu a {
        padding: 10px 20px !important;
    }
     

    .stats-card,
    .project-card,
    .news-card,
    .partner-card {
        width: 90% !important;
        margin-bottom: 20px;
    }
    
    .responsive-width-48 {
        width: 90% !important;
    }
    
    .contact-form-row {
        flex-direction: column;
    }
    
    .contact-form-row input {
        width: 100% !important;
        margin-bottom: 15px;
    }
    
    .donation-form {
        padding: 30px 20px;
    }
    
    .contact-wrapper {
        padding: 30px 20px;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 24px !important;
    }
    
    .hero .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero .hero-buttons a {
        width: 100%;
        padding: 12px 25px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .header .logo-text .logo-title {
        font-size: 14px;
    }
    
    .header .logo-text .logo-subtitle {
        font-size: 10px;
    }
    
    .header .btn-donate {
        padding: 8px 15px;
        font-size: 12px;
    }
}

/* === ADDITIONAL HOVER EFFECTS === */
button,
.btn-donate,
.hero-buttons a,
.donation-form button,
.contact-form button {
    cursor: pointer;
    transition: all 0.3s ease;
}

button:hover,
.btn-donate:hover {
    transform: scale(1.05);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection color */
::selection {
    background-color: #2a4f8a;
    color: #fff;
}

::-moz-selection {
    background-color: #2a4f8a;
    color: #fff;
}

/* Additional classes for index.html */

.form-group {
    margin-bottom: 20px;
}

.form-submit {
    text-align: center;
}

.form-submit button {
    background-color: #fff;
    color: #2a4f8a;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.form-submit button:hover {
    background-color: #2a4f8a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0,0,0,0.15);
}



/* === TEAM SECTION === */
.team-section {
    padding: 80px 0;
    background-color: #fff;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.team-card {
    background-color: #f0f4f8;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    width: 31%;
    min-width: 300px;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 5px solid #2a4f8a;
    margin-bottom: 20px;
    object-fit: cover;
}

.team-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.team-card .role {
    color: #2a4f8a;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.team-card p {
    color: #6c757d;
    line-height: 1.7;
}

/* === INFO CARDS (Vision, Mission, Goals) === */
.info-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.info-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.info-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    width: 31%;
    min-width: 300px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.07);
    text-align: center;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    background-color: #2a4f8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.info-icon i {
    color: #ffffff;
    font-size: 30px;
}

.info-card h3 {
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 30px 0;
    color: #1a3560;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    text-align: right;
}

.info-list-item {
    background-color: #eef2f6;
    border-radius: 10px;
    padding: 15px;
    display: flex;
justify-content: right;
flex-direction: row-reverse;
}

.info-list-item h4 {
    margin: 0 0 5px 0;
    font-size: 18px;
    font-weight: 700;
    color: #1a3560;
}

.info-list-item p {
    margin: 0;
    color: #6c757d;
    font-size: 14px;
}

.info-list-icon {
    width: 40px;
    height: 40px;
    background-color: #fff;
    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 13px;
}

.info-list-icon svg {
    color: #1a3560;
}

.simple-list-item {
    background-color: #eef2f6;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
}


.simple-list-item i {
    color: #27ae60;
}

/* === HELPER CLASSES === */
.bg-light-blue {
    background-color: #f0f4f8;
}

.bg-white {
    background-color: #fff;
}

.section-padding {
    padding: 80px 0;
}

.team-card.card-white {
    background-color: #fff;
}

.info-icon.icon-light {
    background-color: #eef2f6;
    color: #2a4f8a;
}


.info-icon.icon-light i {
    color: #2a4f8a;
}

.justify-center {
    justify-content: center;
}

.mt-60 {
    margin-top: 60px;
}

.card-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.text-center {
    text-align: center;
}

.icon-text-row {
    display: flex;
    align-items: center;
    gap: 5px;
}

.icon-success {
    color: #28a745;
}

/* === PROJECTS PAGE STYLES === */

/* Projects Hero & Impact Section */
.bg-gray-light {
    background-color: #F5F8FA;
}

.projects-hero-title {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    color: #1a3560;
    margin-top: 0;
    margin-bottom: 20px;
}

.projects-hero-desc {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.project-stat-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px 50px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 250px;
    text-align: center;
}

.project-stat-number {
    font-size: 42px;
    direction: ltr;
    font-weight: 800;
    color: #1a3560;
    margin: 0;
}

.project-stat-label {
    font-size: 16px;
    color: #6c757d;
    margin: 10px 0 0 0;
}

/* Filter Buttons */
.projects-filter {
    display: flex;
    direction: ltr;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: #E9ECEF;
    color: #555;
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Droid Arabic Kufi', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
    background-color: #1a3560;
    color: #FFFFFF;
}

/* Project Cards V2 */
.project-card-v2 {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    width: 360px;
    text-align: center;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
}

.project-card-v2:hover {
    transform: translateY(-10px);
}

/* Top gradient bar using pseudo-element */
.project-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1a3560 0%, #2a4f8a 100%);
    z-index: 1;
}

.project-card-img-wrapper {
    position: relative;
}

.project-card-v2 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-status-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 14px;
    color: white;
}

.status-completed { background: linear-gradient(135deg, #1a3560 0%, #2a4f8a 100%); }
.status-active { background-color: #28a745; }
.status-upcoming { background-color: #f0ad4e; }

.project-card-body {
    padding: 25px;
}

.project-category-badge {
    background-color: #E9ECEF;
    color: #555;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
}

.project-card-v2 h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.project-card-v2 p {
    color: #6c757d;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px 0;

    min-height: 80px;
}

/* === NEWS PAGE STYLES === */

.featured-card {
    display: flex;
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.featured-card-img {
    flex: 1 1 50%;
    position: relative;
}

.featured-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.badge-featured {
    background-color: #D4A03A;
}

.badge-new {
    background-color: #E5484D;
}

.featured-card-content {
    flex: 1 1 50%;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.featured-card-content h3 {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    color: #1a3560;
}

.featured-card-content p {
    color: #6c757d;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.8;
}

.card-meta {
    display: flex;
    gap: 20px;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
}

.card-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-meta i {
    color: #2a4f8a;
}

.btn-details {
    align-self: flex-start;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #1a3560 0%, #2a4f8a 100%);
    color: #fff;
    border: none;
}

.btn-details:hover {
    opacity: 0.9;
    color: #fff;
}

/* Responsive for Featured Card */
@media (max-width: 992px) {
    .featured-card {
        flex-direction: column;
    }
    .featured-card-img {
        height: 300px;
    }
}


.project-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 25px;
    border-top: 1px solid #EEE;
    border-bottom: 1px solid #EEE;
    padding: 15px 0;
}

.project-goals-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.project-goals-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    text-align: right;
    display: inline-block;
}

.project-goals-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.project-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
}

.project-actions a {
    width: 100%;
}

.btn-project-primary {
    background: linear-gradient(135deg, #1a3560 0%, #2a4f8a 100%);
    color: #FFFFFF;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    min-width: 120px;
    border: none;
    display: inline-block;
}

.btn-project-primary:hover {
    opacity: 0.9;
    color: #fff;
}

.btn-project-secondary {
    background-color: #FFFFFF;
    color: #2a4f8a;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #2a4f8a;
    width: 120px;
    display: inline-block;
}

.btn-project-secondary:hover {
    background-color: #f0f4f8;
    color: #1a3560;
}

/* Impact Section */
.impact-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #1a3560 0%, #2a4f8a 100%);
    margin: 0 auto 50px auto;
    border-radius: 2px;
}

.impact-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
}

.impact-icon {
    background: linear-gradient(135deg, #1a3560 0%, #2a4f8a 100%);
    color: #FFFFFF;
    width: 70px;
    height: 70px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px auto;
    font-size: 32px;
}

.impact-number {
    font-size: 36px;
    font-weight: 800;
    color: #2a4f8a;
    margin: 0;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}


/* === NEWS DETAIL PAGE STYLES === */

.article-section {
    padding: 48px 0;
}

.article-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 64px;
}

.article-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #eef1f6;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .article-image { height: 230px; }
}

.article-body {
    padding: 40px;
}

.article-meta-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    margin-bottom: 16px;
    color: #6B7280;
    font-size: 14px;
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px 0;
    text-align: right;
    line-height: 1.4;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.article-intro {
    background-color: #F0F4F8;
    border-radius: 8px;
    padding: 20px;
    font-size: 17px;
    line-height: 1.8;
    color: #4B5563;
    margin: 0 0 40px 0;
}

.article-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #2a4f8a;
    border-bottom: 2px solid #E5E7EB;
    padding-bottom: 12px;
    margin-bottom: 24px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.article-text {
    font-size: 16px;
    line-height: 1.9;
    color: #4B5563;
    margin-bottom: 24px;
}

.article-text-mb-40 {
    margin-bottom: 40px;
}

.custom-list {
    list-style: none;
    padding-right: 0;
    margin: 0 0 40px 0;
    font-size: 16px;
    color: #4B5563;
    line-height: 2;
}

.custom-list-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.custom-list-bullet {
    width: 8px;
    height: 8px;
    background-color: #2a4f8a;
    display: inline-block;
    margin-left: 12px;
    border-radius: 2px;
}

.article-quote {
    background-color: #F0F4F8;
    border-right: 5px solid #2a4f8a;
    padding: 24px;
    margin: 0 0 40px 0;
    border-radius: 8px;
}

.quote-text {
    font-size: 18px;
    font-style: italic;
    color: #374151;
    line-height: 1.8;
    margin: 0 0 16px 0;
}

.quote-author {
    font-style: normal;
    font-weight: 700;
    color: #111827;
}

.article-divider {
    border: 0;
    border-top: 1px solid #E5E7EB;
    margin: 40px 0;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-buttons {
    display: flex;
    gap: 12px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    color: #6B7280;
    font-size: 18px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background-color: #2a4f8a;
    color: #fff;
    border-color: #2a4f8a;
}

.back-link {
    font-weight: 700;
    color: #2a4f8a;
    display: flex;
    align-items: center;
}

.back-link i {
    margin-right: 8px;
}

.related-news-title {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 40px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* Responsive for News Detail */
@media (max-width: 768px) {
    .article-title {
        font-size: 32px;
    }
    .geo-card {
        margin-right: 20px !important;
    }
.outer-geo-card {
    width: 96%;
}


    .about-text {
        padding: 20px;
    }

    .info-card {
        width: 100%;
    }
    .geo-hub-content {
        flex-direction: column;
    }
    .partners-grid {
        justify-content: center !important;
    }

    .social-links {
        justify-content: center;
    }
    
    .article-body {
        padding: 24px;
    }
    
    .article-footer {
        flex-direction: column;
        gap: 20px;
    }
    
    .related-news-grid {
        grid-template-columns: 1fr;
    }
    
    .related-news-grid .article-card {
        margin-bottom: 0;
    }
}

/* Related News Specifics */
.related-card-body {
    padding: 24px;
}

.related-meta {
    margin-bottom: 12px;
    font-size: 13px;
}

.related-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    line-height: 1.5;
}

.related-excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: #4B5563;
    margin: 0 0 24px 0;
}

.article-meta-header span i {
    margin-left: 6px;
}

.mt-64 {
    margin-top: 64px;
}

.ml-8 {
    margin-left: 8px;
}

.ml-10 {
    margin-left: 10px;
}

.text-12 {
    font-size: 12px;
}

/* === PARTNERS PAGE STYLES === */

.partners-hero-title {
    font-size: 56px;
    color: #12253f;
    font-weight: 800;
    margin: 0 0 20px 0;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.partners-hero-desc {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.partnership-type-card {
    background-color: #F8F9FA;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 350px;
    border-top: 4px solid #1a3560;
    transition: transform 0.3s ease;
}

.partnership-type-card:hover {
    transform: translateY(-5px);
}

.type-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    background: linear-gradient(135deg, #1a3560, #2a4f8a);
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.type-icon-wrapper i {
    color: white;
    font-size: 36px;
}

.type-title {
    font-size: 22px;
    font-weight: 700;
    color: #12253f;
    margin-bottom: 15px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.type-desc {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 25px;
}

.type-features {
    list-style: none;
    padding: 0;
    text-align: right;
    display: inline-block;
    margin: 0 auto;
}

.type-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #6c757d;
}

.type-feature-item svg {
    color: #1ABC9C;
}

.partners-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.partner-filter-btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 500;
    border: 1px solid #E0E0E0;
    background-color: white;
    color: #1a3560;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-filter-btn.active,
.partner-filter-btn:hover {
    background-color: #1a3560;
    color: white;
    border-color: #1a3560;
}

.current-partner-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 270px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.current-partner-card:hover {
    transform: translateY(-5px);
}

.partner-logo-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background-color: #F0F4F8;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-wrapper svg {
    color: #1a3560;
    font-size: 32px;
}

.partner-name {
    font-size: 20px;
    font-weight: 700;
    color: #12253f;
    margin-bottom: 5px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.partner-category {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

.partner-desc {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    height: 80px;
    margin-bottom: 20px;
}

.partner-link {
    background-color: #F0F4F8;
    color: #1a3560;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.partner-link:hover {
    background-color: #1a3560;
    color: white;
}

.benefit-card {
    background-color: #F8F9FA;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    width: 350px;
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.cta-section {
    background: linear-gradient(90deg, #1a3560, #1a3560);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 20px 0;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.cta-desc {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background-color: white;
    color: #1a3560;
}

/* === CONTACT PAGE STYLES === */

.contact-email-title {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #1a3560;
}

.contact-email-text {
    margin: 0;
    color: #555;
}

.contact-social-container {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    background-color: #e0e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a4f8a;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social-link:hover {
    background-color: #1a3560;
    color: white;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 900;
    color: #12253f;
    margin: 0 0 15px 0;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.contact-hero-desc {
    font-size: 18px;
    color: #475569;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.main-content-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background-color: #F8F9FA;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1a3560, #2a4f8a);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 24px;
}

.contact-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.contact-card-text {
    color: #64748B;
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

.contact-card-text-ltr {
    color: #64748B;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
    direction: ltr;
    text-align: center;
}
.partners-grid p  {
    font-size: 13px;
}
.social-links-card {
    background: linear-gradient(135deg, #1a3560, #2a4f8a);
    border-radius: 15px;
    padding: 30px;
    color: white;
    text-align: center;
}

.social-links-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px 0;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.social-links-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.article-category , .article-date{
    margin-left: 10px;
}

.article-actions {
    display: flex;
  justify-content: space-between;
  align-items: center;
  text-wrap: nowrap;
}
.social-link {
color: white;
  background-color: #FFFFFF75;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: white;
    transform: translateY(-3px);
}

.contact-form-container {
    background-color: #F8F9FA;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    text-align: right;
    font-size: 32px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.title-underline {
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1a3560, #2a4f8a);
    margin-top: 10px;
    border-radius: 2px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-full-width {
    grid-column: 1 / -1;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.form-label i {
    color: #2a4f8a;
    margin-left: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    background-color: white;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
}

.form-select {
    appearance: none;
    background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%233B71CA%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-position: left 1rem center;
    background-size: .6em;
}

.form-textarea {
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #1a3560, #2a4f8a);
    color: white;
    font-family: 'Cairo', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 30px;
    transition: opacity 0.3s ease;
}

.form-submit-btn:hover {
    opacity: 0.9;
}

.map-placeholder {
    margin-top: 40px;
    background-color: #dbe2ec;
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.map-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #1a3560;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    font-size: 36px;
}

.map-title {
    font-size: 28px;
    font-weight: 700;
    color: #12253f;
    margin: 0 0 10px 0;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.map-desc {
    color: #475569;
    font-size: 18px;
    margin: 0;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background-color: #F8F9FA;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
}

.faq-summary {
    padding: 20px;
    font-weight: 700;
    font-size: 18px;
    color: #12253f;
    cursor: pointer;
    list-style: none;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
}

.faq-content {
    padding: 0 20px 20px 20px;
    color: #475569;
    line-height: 1.8;
    border-top: 1px solid #E2E8F0;
    margin: 0 20px;
}

.faq-content p {
    margin-top: 20px;
}

/* Responsive for Contact Page */
@media (max-width: 992px) {
    .main-content-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}





/* === INFO CARD & GRID SYSTEM === */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding-right: 15px;
    padding-left: 15px;
}

.mb-4 {
    margin-bottom: 1.5rem !important;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    height: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-card h3 {
    color: #1a3560;
    font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card h3 i {
    margin-left: 10px;
}

.badge {
    display: inline-block;
    padding: 0.35em 0.65em;
    font-size: 0.85em;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 0.25rem;
}

.bg-primary {
    background-color: #2a4f8a !important;
}

.text-white {
    color: #fff !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

.text-dark {
    color: #212529 !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.d-flex {
    display: flex !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.mt-3 {
    margin-top: 1rem !important;
}

.me-2 {
    margin-left: 0.5rem !important; /* RTL flip */
}

@media (max-width: 768px) {
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .footer .footer-logo {
        justify-content: center;
    }
    .btn-details {
        font-size: 12px;
    }
    .info-card {
        min-height: 300px !important;
  margin-bottom: 20px !important; 
    }
    .footer p {
        max-width: none !important;
    }
}

/* === GEOGRAPHIC SCOPE REDESIGN === */
.geo-scope-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.geo-hub {
    background: linear-gradient(135deg, #1a3560, #2a4f8a);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    box-shadow: 0 10px 30px rgba(26, 53, 96, 0.15);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.geo-hub::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-image: radial-gradient(#fff 1px, transparent 1px);
    background-size: 20px 20px;
}

.geo-hub-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.hub-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
}

.hub-info h3 {
    margin: 0;
    font-size: 24px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    color: #fff;
}

.hub-info p {
    margin: 5px 0 0;
    opacity: 0.9;
}

.geo-districts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.district-badge {
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.district-badge:hover {
    background: #fff;
    color: #1a3560;
    transform: translateY(-2px);
}

.geo-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: transform 0.3s ease;
    margin-right: 35px;
}

.geo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.card-header-custom {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.card-header-custom i {
    font-size: 24px;
    color: #2a4f8a;
}

.card-header-custom h4 {
    margin: 0;
    font-size: 18px;
    font-family: 'Droid Arabic Kufi Bold', sans-serif;
    color: #1a3560;
}

.regional-list {
    display: flex;
    gap: 15px;
}
.outer-geo-card {
    width: 97%;
}

.regional-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: background 0.3s;
    width: 100%;
}

.regional-item:hover {
    background: #eaf0f6;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2a4f8a;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.regional-item h5 {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    color: #1a3560;
}

.regional-item span {
    font-size: 13px;
    color: #666;
}

.gov-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.gov-tag {
    background: #fff;
    border: 1px solid #e0e0e0;
    color: #555;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s;
}

.gov-tag:hover {
    background: #2a4f8a;
    color: #fff;
    border-color: #2a4f8a;
}

/* === WOW.JS ANIMATION SPEED CUSTOMIZATION === */
.wow {
    visibility: hidden; /* stay hidden until WOW.js reveals — prevents the on-load flash/flicker */
    animation-duration: 0.5s !important; /* Faster animation - default is 1s */
    animation-timing-function: ease-out !important;
}

/* Optional: Different speeds for different animation types */
.animate__fadeInUp {
    animation-duration: 0.5s !important;
}

.animate__fadeIn {
    animation-duration: 0.4s !important;
}

.animate__fadeInLeft,
.animate__fadeInRight {
    animation-duration: 0.6s !important;
}
