    :root {

        --primary: #0d9488;

        --primary-dark: #0f766e;

        --primary-light: #5eead4;

        --accent: #14b8a6;

        --accent2: #06b6d4;

        --green: #16a34a;

        --green-light: #4ade80;

        --bg: #f0fdfa;

        --bg2: #ecfdf5;

        --white: #ffffff;

        --text: #134e4a;

        --text-light: #5eead4;

        --gray: #64748b;

        --card-shadow: 0 8px 32px rgba(13, 148, 136, 0.13);

        --radius: 18px;

    }


@font-face {

    font-family: "Peyda-main";

    src: url("../fonts/peydabold.ttf") format('truetype');

    font-weight: normal;

    font-style: normal;

  }

  

  

  @font-face {

    font-family: "vazir-main";

    src: url("../fonts/vazir.ttf") format('truetype');

    font-weight: normal;

    font-style: normal;

  }



  @font-face {

    font-family: "lalezar-main";

    src: url("../fonts/lalezar.ttf") format('truetype');

    font-weight: normal;

    font-style: normal;

  }


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
                font-family: 'Vazirmatn', sans-serif;

    }

a{
    text-decoration: none;
}

    body {


        background: var(--bg);

        color: var(--text);

        overflow-x: hidden;

    }



    /* ─── SCROLLBAR ─── */

    ::-webkit-scrollbar {
        width: 7px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--primary-light);
        border-radius: 10px;
    }



    /* ─── NAVBAR ─── */

    nav {

        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;

        background: rgba(255, 255, 255, 0.92);

        backdrop-filter: blur(18px);

        border-bottom: 1.5px solid rgba(13, 148, 136, 0.12);

        padding: 0 2rem;

        display: flex;
        align-items: center;
        justify-content: space-between;

        height: 90px;

        box-shadow: 0 2px 24px rgba(13, 148, 136, 0.08);

        transition: all .3s;

    }

    .nav-logo {

        display: flex;
        align-items: center;
        gap: .7rem;

        text-decoration: none;

    }

    .nav-logo .logo-icon {

        width: 70px;
        height: 70px;

        background: linear-gradient(135deg, var(--primary), var(--accent2));

        border-radius: 14px;

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 1.5rem;
        color: #fff;

        box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);

    }



    .nav-logo .logo-icon img {

        width: 70%;

    }



    .nav-logo span {

        font-size: 1.45rem;
        font-weight: 800;

        background: linear-gradient(135deg, var(--primary-dark), var(--accent2));

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

    }

    .nav-links {

        display: flex;
        align-items: center;
        gap: 2rem;

        list-style: none;

    }

    .nav-links a {

        text-decoration: none;
        color: var(--text);

        font-weight: 500;
        font-size: .97rem;

        position: relative;
        padding-bottom: 3px;

        transition: color .25s;

    }

    .nav-links a i {
        margin-left: 6px;
        font-size: 14px;
    }

    .nav-links a::after {

        content: '';
        position: absolute;
        bottom: 0;
        right: 0;

        width: 0;
        height: 2px;

        background: linear-gradient(90deg, var(--primary), var(--accent2));

        border-radius: 2px;
        transition: width .3s;

    }

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

    .nav-links a:hover::after {
        width: 100%;
    }

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





      .news-ticker-container {
            background: linear-gradient(135deg, #319795, #38B2AC, #4FD1C5);
            border-bottom: 3px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 4px 16px rgba(49, 151, 149, 0.2);
            position: relative;
            overflow: hidden;
            margin-top: 90px;
        }

        .news-ticker-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

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

        .news-ticker-wrapper {
            display: flex;
            align-items: center;
            padding: 4px 0;
            position: relative;
        }

        .news-ticker-label {
            background: rgba(255, 255, 255, 0.95);
            color: #319795;
            padding: 8px 20px;
            font-weight: 700;
            font-size: 14px;
            border-radius: 0 8px 8px 0;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            z-index: 2;
            flex-shrink: 0;
            position: relative;
        }

        .news-ticker-label::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid rgba(255, 255, 255, 0.95);
            border-top: 16px solid transparent;
            border-bottom: 16px solid transparent;
        }

        .news-ticker-content {
            flex: 1;
            overflow: hidden;
            position: relative;
            margin-right: 20px;
        }

        .news-ticker-content::before,
        .news-ticker-content::after {
            content: '';
            position: absolute;
            top: 0;
            width: 60px;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .news-ticker-content::before {
            right: 0;
            background: linear-gradient(to left, #4FD1C5, transparent);
        }

        .news-ticker-content::after {
            left: 0;
            background: linear-gradient(to right, #319795, transparent);
        }

        .news-ticker-list {
            display: flex;
            animation: scroll 20s linear infinite;
            white-space: nowrap;
        }

        .news-ticker-list:hover {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(0);
            }
        }

        .news-ticker-item {
            display: inline-flex;
            align-items: center;
            margin-left: 48px;
            color: white;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            padding: 4px 0;
        }

        .news-ticker-item::before {
            content: '●';
            margin-left: 12px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 8px;
        }

        .news-ticker-item:hover {
            color: #ffffff;
            transform: translateY(-1px);
        }

        .news-ticker-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            right: 0;
            width: 0;
            height: 2px;
            background: white;
            transition: width 0.3s ease;
        }

        .news-ticker-item:hover::after {
            width: 100%;
        }

        .news-ticker-icon {
            margin-left: 8px;
            font-size: 16px;
        }

        @media (max-width: 768px) {
            .news-ticker-wrapper {
                padding: 4px 0;
            }

            .news-ticker-label {
                padding: 6px 12px;
                font-size: 12px;
            }

            .news-ticker-content {
                margin-right: 12px;
            }

            .news-ticker-item {
                font-size: 13px;
                margin-left: 32px;
            }

            .news-ticker-list {
                animation-duration: 15s;
            }
        }

        @media (max-width: 480px) {
            .news-ticker-label {
                padding: 5px 10px;
                font-size: 11px;
            }

            .news-ticker-item {
                font-size: 12px;
                margin-left: 24px;
            }

            .news-ticker-icon {
                font-size: 14px;
            }
        }

        @media (prefers-reduced-motion: reduce) {
            .news-ticker-list {
                animation: none;
            }
            
            .news-ticker-container::before {
                animation: none;
            }
        }

    .btn-outline {

        padding: .5rem 1.3rem;
        border-radius: 10px;

        border: 2px solid var(--primary);
        color: var(--primary);

        font-weight: 600;
        font-size: .9rem;

        cursor: pointer;
        background: transparent;
        transition: all .25s;

    }

    .btn-outline:hover {
        background: var(--primary);
        color: #fff;
    }

    .btn-primary {

        padding: .55rem 1.4rem;
        border-radius: 10px;

        background: linear-gradient(135deg, var(--primary), var(--accent2));

        color: #fff;
        border: none;

        font-family: 'Vazirmatn', sans-serif;
        font-weight: 700;
        font-size: .9rem;

        cursor: pointer;
        transition: all .3s;

        box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);

    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
    }

    /* ─── MOBILE MENU TOGGLE BUTTON ─── */
    .menu-toggle {
        display: none;
        /* فقط در موبایل نمایش داده شود */
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        flex-direction: column;
        gap: 5px;
        z-index: 1100;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 3px;
        background: var(--text);
        border-radius: 3px;
        transition: all 0.3s ease;
    }

    /* State when menu is open (animation to X) */
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }

    /* ─── MOBILE SIDE MENU ─── */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        /* منو از راست وارد می‌شود (مناسب فارسی) */
        width: 280px;
        max-width: 80vw;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.12);
        z-index: 9999999;
        padding: 2rem 1.5rem;
        transform: translateX(100%);
        /* مخفی در راست */
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .mobile-menu.active {
        transform: translateX(0);
    }

    /* لایه تیره پشت منو */
    .mobile-menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(3px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* دکمه بستن داخل منو */
    .mobile-menu .close-btn {
        align-self: flex-end;
        background: none;
        border: none;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--text);
        margin-bottom: 1.5rem;
        line-height: 1;
    }

    /* بازسازی لینک‌ها درون منو */
    .mobile-menu .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        list-style: none;
        padding: 0;
        margin: 0;
        align-items: stretch;
    }

    .mobile-menu .nav-links a {
        font-size: 1.05rem;
        font-weight: 600;
        text-decoration: none;
        color: var(--text);
        display: block;
        padding: 0.5rem 0;
        border-bottom: 1px solid var(--bg);
        transition: color 0.2s;
    }

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

    /* نمایش دکمه همبرگری فقط در موبایل */
    @media (max-width: 600px) {
        .menu-toggle {
            display: flex;
        }

        /* مخفی کردن لینک‌های داخل نوبار اصلی (قبلاً داشتید) */
    }


    /* ─── HERO ─── */

    .hero {


        position: relative;

        overflow: hidden;

        display: flex;

        align-items: center;

        padding-top: 30px;



        background:

            linear-gradient(135deg, rgba(13, 79, 71, 0.8) 0%, rgba(13, 148, 136, 0.7) 40%, rgba(6, 182, 212, 0.6) 80%, rgba(8, 145, 178, 0.7) 100%),

            url("../img/back1.png");



        background-size: cover;

        background-position: center;

        background-repeat: no-repeat;

        background-attachment: fixed;

    }



    .hero-bg-shapes span {

        position: absolute;
        border-radius: 50%;

        background: rgba(255, 255, 255, 0.05);

        animation: float 8s ease-in-out infinite;

    }

    .hero-bg-shapes span:nth-child(1) {
        width: 500px;
        height: 500px;
        top: -150px;
        left: -100px;
        animation-delay: 0s;
    }

    .hero-bg-shapes span:nth-child(2) {
        width: 350px;
        height: 350px;
        bottom: -80px;
        right: -80px;
        animation-delay: 2s;
    }

    .hero-bg-shapes span:nth-child(3) {
        width: 200px;
        height: 200px;
        top: 40%;
        left: 55%;
        animation-delay: 4s;
    }

    .hero-bg-shapes span:nth-child(4) {
        width: 120px;
        height: 120px;
        top: 20%;
        right: 20%;
        animation-delay: 1s;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0) scale(1);
        }

        50% {
            transform: translateY(-30px) scale(1.05);
        }

    }

    .hero-content {

        position: relative;
        z-index: 2;

        max-width: 1200px;
        margin: 0 auto;

        padding: 0rem 2rem;

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;

    }

    .hero-text h1 {

font-size: clamp(2rem, 2vw, 3rem);

        font-weight: 900;
        color: #fff;
        line-height: 1.1;
text-align: center;
        margin-bottom: 1.1rem;


    }

    .hero-text h1 span {

text-align: center;

        color: #0f765c;
        text-shadow:
            -2px -2px 0 white,
            2px -2px 0 white,
            -2px 2px 0 white,
            2px 2px 0 white;

    }

    .hero-text p {

        font-size: 1rem;
        color: rgba(255, 255, 255, 0.85);

        line-height: 1.2;
        margin-bottom: 2rem;
        font-weight: 900;

    }

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

    .hero-btn-main {

        padding: .85rem 2.2rem;
        border-radius: 14px;

        background: #fff;
        color: var(--primary-dark);

        font-family: 'Vazirmatn', sans-serif;
        font-weight: 800;
        font-size: 1rem;

        border: none;
        cursor: pointer;
        transition: all .3s;

        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);

    }

    .hero-btn-main:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    }

    .hero-btn-sec {

        padding: .85rem 2.2rem;
        border-radius: 14px;

        background: rgba(0, 0, 0, 0.15);
        color: #fff;

        font-family: 'Vazirmatn', sans-serif;
        font-weight: 700;
        font-size: 1rem;

        border: 2px solid rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all .3s;

        backdrop-filter: blur(8px);

    }

    .hero-btn-sec:hover {
        background: rgba(255, 255, 255, 0.25);
    }



    /* Hero Stats */

    .hero-stats {

        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;

        margin-top: 2.5rem;

    }

    .hero-stat {

        background: rgba(0, 0, 0, 0.12);

        backdrop-filter: blur(12px);

        border: 1px solid rgba(255, 255, 255, 0.2);

        border-radius: 16px;
        padding: 1.2rem 1rem;
        text-align: center;

    }

    .hero-stat .num {

        font-size: 1.8rem;
        font-weight: 900;
        color: #fff;

        display: block;

    }

    .hero-stat .lbl {

        font-size: .8rem;
        color: rgba(255, 255, 255, 0.75);

        margin-top: .2rem;
        display: block;

    }



    /* Hero Visual */

    .hero-visual {

        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;

    }

    .hero-card-main {

        background: rgba(255, 255, 255, 0.15);

        backdrop-filter: blur(20px);

        border: 1px solid rgba(255, 255, 255, 0.25);

        border-radius: 28px;
        padding: 2rem;

        width: 100%;
        max-width: 380px;

        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);

    }

    .hero-card-main .card-header {

        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1.5rem;

    }

    .card-avatar {

        width: 52px;
        height: 52px;
        border-radius: 50%;

        background: linear-gradient(135deg, #a7f3d0, #67e8f9);

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 1.4rem;

    }

    .card-info h4 {
        color: #fff;
        font-weight: 700;
        font-size: 1rem;
    }

    .card-info p {
        color: rgba(255, 255, 255, 0.7);
        font-size: .82rem;
    }

    .progress-wrap {
        margin-bottom: 1.2rem;
    }

    .progress-label {

        display: flex;
        justify-content: space-between;

        color: rgba(255, 255, 255, 0.85);
        font-size: .85rem;
        margin-bottom: .5rem;

    }

    .progress-bar {

        height: 10px;
        background: rgba(255, 255, 255, 0.2);

        border-radius: 10px;
        overflow: hidden;

    }

    .progress-fill {

        height: 100%;

        background: linear-gradient(90deg, #a7f3d0, #67e8f9);

        border-radius: 10px;
        transition: width 1.5s ease;

    }

    .mini-donors {

        display: flex;
        align-items: center;
        gap: .5rem;
        margin-top: 1rem;

    }

    .mini-donors .avatars {
        display: flex;
    }

    .mini-donors .avatars span {

        width: 30px;
        height: 30px;
        border-radius: 50%;

        border: 2px solid rgba(255, 255, 255, 0.4);

        margin-left: -8px;
        display: flex;
        align-items: center;
        justify-content: center;

        font-size: .75rem;
        font-weight: 700;
        color: #fff;

    }

    .mini-donors .avatars span:nth-child(1) {
        background: #0d9488;
    }

    .mini-donors .avatars span:nth-child(2) {
        background: #06b6d4;
    }

    .mini-donors .avatars span:nth-child(3) {
        background: #16a34a;
    }

    .mini-donors p {
        color: rgba(255, 255, 255, 0.8);
        font-size: .82rem;
    }



    /* Floating badges */

    .float-badge {

        position: absolute;

        background: #fff;
        border-radius: 14px;
        padding: .7rem 1rem;

        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

        display: flex;
        align-items: center;
        gap: .6rem;

        animation: floatBadge 4s ease-in-out infinite;

    }

    .float-badge .icon {
        font-size: 1.3rem;
    }

    .float-badge .info {
        font-size: .78rem;
    }

    .float-badge .info strong {
        display: block;
        color: var(--text);
        font-weight: 700;
    }

    .float-badge .info span {
        color: var(--gray);
    }

    .float-badge:nth-child(2) {
        top: -20px;
        left: -30px;
        animation-delay: 1s;
    }

    .float-badge:nth-child(3) {
        bottom: 20px;
        left: -40px;
        animation-delay: 2.5s;
    }

    @keyframes floatBadge {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }

    }



    /* ─── SECTION COMMON ─── */

    section {
        padding-bottom: 20px;
        padding-top: 20px;
    }

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

    .section-header {
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .section-tag {

        display: inline-block;

        background: linear-gradient(135deg, rgba(13, 148, 136, .12), rgba(6, 182, 212, .12));

        color: var(--primary);
        font-weight: 700;
        font-size: .85rem;

        padding: .4rem 1.2rem;
        border-radius: 30px;

        border: 1px solid rgba(13, 148, 136, .2);

        margin-bottom: .8rem;

    }

    .section-header h2 {

        font-size: clamp(1.8rem, 3vw, 2.6rem);

        font-weight: 900;
        color: var(--text);

        margin-bottom: .8rem;
        line-height: 1.3;

    }

    .section-header h2 span {

        background: linear-gradient(135deg, var(--primary), var(--accent2));

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

    }

    .section-header p {
        color: var(--gray);
        font-size: 1rem;
        max-width: 560px;
        margin: 0 auto;
        line-height: 1.8;
    }



    /* ─── STATS BAR ─── */

    .stats-bar {

        background: linear-gradient(135deg, var(--primary-dark), var(--accent2));

        padding: 2.5rem 2rem;

    }

    .stats-grid {

        max-width: 1200px;
        margin: 0 auto;

        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;

    }

    .stat-item {

        text-align: center;
        padding: 1rem 1rem;

        border-left: 1px solid rgba(255, 255, 255, 0.15);

    }

    .stat-item:last-child {
        border-left: none;
    }

    .stat-item .icon {

        font-size: 2rem;
        margin-bottom: .6rem;

        background: linear-gradient(135deg, #a7f3d0, #67e8f9);

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

    }

    .stat-item .number {

        font-size: 2.2rem;
        font-weight: 900;
        color: #fff;
        display: block;

    }

    .stat-item .label {
        font-family: "Peyda-main";
        color: rgb(255, 255, 255);
        font-size: 1.2rem;
        margin-top: .2rem;
        font-weight: 800;
    }



    /* ─── CATEGORIES ─── */

    .categories {
        background: var(--white);
    }

    .cat-grid {

        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.2rem;

    }

    .cat-card {

        background: var(--bg);

        border: 2px solid transparent;

        border-radius: var(--radius);
        padding: 1.8rem 1rem;

        text-align: center;
        cursor: pointer;

        transition: all .3s;
        position: relative;
        overflow: hidden;

    }

    .cat-card::before {

        content: '';
        position: absolute;
        inset: 0;

        background: linear-gradient(135deg, rgba(13, 148, 136, .06), rgba(6, 182, 212, .06));

        opacity: 0;
        transition: opacity .3s;

    }

    .cat-card:hover {
        border-color: var(--primary);
        transform: translateY(-5px);
        box-shadow: var(--card-shadow);
    }

    .cat-card:hover::before {
        opacity: 1;
    }

    .cat-icon {

        width: 60px;
        height: 60px;
        border-radius: 16px;
        margin: 0 auto 1rem;

        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;

    }

    .cat-card h4 {
        font-size: .92rem;
        font-weight: 700;
        color: var(--text);
        margin-bottom: .3rem;
    }

    .cat-card span {
        font-size: .78rem;
        color: var(--gray);
    }



    /* ─── PROJECTS ─── */

    .projects {
        background: var(--bg);
    }

    .projects-grid {

        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 1.8rem;

    }

    .project-card {

        background: var(--white);
        border-radius: var(--radius);

        overflow: hidden;
        box-shadow: var(--card-shadow);

        transition: all .35s;
        border: 1px solid rgba(13, 148, 136, 0.08);

    }

    .project-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 50px rgba(13, 148, 136, 0.18);
    }

    .project-img {

        height: 200px;
        position: relative;
        overflow: hidden;

    }

    .project-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s;
    }

    .project-card:hover .project-img img {
        transform: scale(1.06);
    }

    .project-badge {

        position: absolute;
        top: 12px;
        right: 12px;

        padding: .3rem .9rem;
        border-radius: 20px;

        font-size: .75rem;
        font-weight: 700;
        color: #fff;

    }

    .badge-active {
        background: linear-gradient(135deg, var(--green), #22c55e);
    }

    .badge-urgent {
        background: linear-gradient(135deg, #ef4444, #f97316);
    }

    .badge-featured {
        background: linear-gradient(135deg, var(--primary), var(--accent2));
    }

    .project-body {
        padding: 1.5rem;
    }

    .project-cat {

        font-size: .75rem;
        font-weight: 700;
        color: var(--primary);

        background: rgba(13, 148, 136, .1);
        padding: .25rem .8rem;

        border-radius: 20px;
        display: inline-block;
        margin-bottom: .8rem;

    }

    .project-body h3 {
        font-size: 1.05rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: .6rem;
        line-height: 1.5;
    }

    .project-body p {
        font-size: .87rem;
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .project-progress {
        margin-bottom: 1rem;
    }

    .proj-prog-label {

        display: flex;
        justify-content: space-between;

        font-size: .82rem;
        color: var(--gray);
        margin-bottom: .4rem;

    }

    .proj-prog-label strong {
        color: var(--primary);
    }

    .proj-prog-bar {

        height: 8px;
        background: var(--bg);

        border-radius: 8px;
        overflow: hidden;

    }

    .proj-prog-fill {

        height: 100%;

        background: linear-gradient(90deg, var(--primary), var(--accent2));

        border-radius: 8px;

    }

    .project-footer {

        display: flex;
        align-items: center;
        justify-content: space-between;

        padding-top: 1rem;
        border-top: 1px solid var(--bg);

    }

    .project-charity {

        display: flex;
        align-items: center;
        gap: .5rem;

    }

    .charity-logo {

        width: 30px;
        height: 30px;
        border-radius: 8px;

        background: linear-gradient(135deg, var(--primary-light), var(--accent2));

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: .8rem;
        color: #fff;
        font-weight: 700;

    }

    .project-charity span {
        font-size: .8rem;
        color: var(--gray);
    }

    .donate-btn {

        padding: .5rem 1.2rem;
        border-radius: 10px;

        background: linear-gradient(135deg, var(--primary), var(--accent2));

        color: #fff;
        border: none;
        font-family: 'Vazirmatn', sans-serif;

        font-weight: 700;
        font-size: .85rem;
        cursor: pointer;
        transition: all .3s;

    }

    .donate-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 14px rgba(13, 148, 136, 0.35);
    }



    /* ─── HOW IT WORKS ─── */

    .how {
        background: var(--white);
    }

    .steps-grid {

        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 2rem;

        position: relative;

    }

    .step-card {

        text-align: center;
        padding: 2rem 1.5rem;

        background: var(--bg);
        border-radius: var(--radius);

        border: 1px solid rgba(13, 148, 136, 0.1);

        transition: all .3s;
        position: relative;

    }

    .step-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--card-shadow);
        border-color: var(--primary-light);
    }

    .step-num {

        position: absolute;
        top: -16px;
        right: 50%;
        transform: translateX(50%);

        width: 32px;
        height: 32px;
        border-radius: 50%;

        background: linear-gradient(135deg, var(--primary), var(--accent2));

        color: #fff;
        font-weight: 900;
        font-size: .9rem;

        display: flex;
        align-items: center;
        justify-content: center;

        box-shadow: 0 4px 12px rgba(13, 148, 136, 0.35);

    }

    .step-icon {

        width: 72px;
        height: 72px;
        border-radius: 20px;
        margin: .5rem auto 1.2rem;

        background: linear-gradient(135deg, rgba(13, 148, 136, .12), rgba(6, 182, 212, .12));

        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;

    }

    .step-card h4 {
        font-size: 1rem;
        font-weight: 800;
        color: var(--text);
        margin-bottom: .6rem;
    }

    .step-card p {
        font-size: .87rem;
        color: var(--gray);
        line-height: 1.7;
    }



    /* ─── CHARITIES ─── */

    .charities-sec {
        background: var(--bg);
    }

    .charities-grid {

        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;

    }

    .charity-card {

        background: var(--white);
        border-radius: var(--radius);

        padding: 1.8rem;
        box-shadow: var(--card-shadow);

        border: 1px solid rgba(13, 148, 136, 0.08);

        transition: all .3s;
        cursor: pointer;

    }

    .charity-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary-light);
    }

    .charity-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 1rem;
    }

    .charity-logo-big {

        width: 56px;
        height: 56px;
        border-radius: 16px;

        background: linear-gradient(135deg, var(--primary), var(--accent2));

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 1.5rem;
        color: #fff;
        flex-shrink: 0;

    }

    .charity-info h4 {
        font-size: 1rem;
        font-weight: 800;
        color: var(--text);
    }

    .charity-info .verified {

        display: inline-flex;
        align-items: center;
        gap: .3rem;

        font-size: .75rem;
        color: var(--green);
        font-weight: 600;
        margin-top: .2rem;

    }

    .charity-card p {
        font-size: .85rem;
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .charity-stats {
        display: flex;
        gap: 1.5rem;
    }

    .charity-stat {
        text-align: center;
    }

    .charity-stat strong {
        display: block;
        font-size: 1.1rem;
        font-weight: 800;
        color: var(--primary);
    }

    .charity-stat span {
        font-size: .75rem;
        color: var(--gray);
    }

    .follow-btn {

        margin-top: 1.2rem;
        width: 100%;
        padding: .6rem;

        border-radius: 10px;
        border: 2px solid var(--primary);

        color: var(--primary);
        background: transparent;

        font-family: 'Vazirmatn', sans-serif;
        font-weight: 700;
        font-size: .88rem;

        cursor: pointer;
        transition: all .3s;

    }

    .follow-btn:hover {
        background: var(--primary);
        color: #fff;
    }



    /* ─── VOLUNTEER ─── */

    .volunteer {

        background: linear-gradient(135deg, #0d4f47 0%, #0d9488 50%, #0891b2 100%);

        position: relative;
        overflow: hidden;

    }

    .volunteer::before {

        content: '';
        position: absolute;
        inset: 0;

        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

    }

    .volunteer .container {
        position: relative;
        z-index: 1;
    }

    .volunteer-inner {

        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;

    }

    .volunteer-text h2 {

        font-size: clamp(1.8rem, 3vw, 2.5rem);
        font-weight: 900;
        color: #fff;

        margin-bottom: 1rem;
        line-height: 1.3;

    }

    .volunteer-text h2 span {

        background: linear-gradient(90deg, #a7f3d0, #67e8f9);

        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

    }

    .volunteer-text p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .vol-features {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .vol-feature {

        display: flex;
        align-items: center;
        gap: 1rem;

        background: rgba(255, 255, 255, 0.1);
        border-radius: 12px;
        padding: 1rem 1.2rem;

        backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.15);

    }

    .vol-feature .icon {
        font-size: 1.4rem;
    }

    .vol-feature p {
        color: rgba(255, 255, 255, 0.9);
        font-size: .9rem;
        font-weight: 500;
    }

    .vol-tasks {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .vol-task {

        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(12px);

        border: 1px solid rgba(255, 255, 255, 0.2);

        border-radius: 14px;
        padding: 1.2rem 1.5rem;

        transition: all .3s;

    }

    .vol-task:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateX(-4px);
    }

    .vol-task-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: .4rem;
    }

    .vol-task-header h4 {
        color: #fff;
        font-weight: 700;
        font-size: .95rem;
    }

    .vol-task-header .points {

        background: linear-gradient(135deg, #a7f3d0, #67e8f9);

        color: var(--text);
        font-size: .75rem;
        font-weight: 800;

        padding: .25rem .7rem;
        border-radius: 20px;

    }

    .vol-task p {
        color: rgba(255, 255, 255, 0.7);
        font-size: .82rem;
    }

    .vol-task-meta {
        display: flex;
        gap: 1rem;
        margin-top: .6rem;
    }

    .vol-task-meta span {
        color: rgba(255, 255, 255, 0.6);
        font-size: .78rem;
        display: flex;
        align-items: center;
        gap: .3rem;
    }

    .vol-join-btn {

        padding: .9rem 2.5rem;
        border-radius: 14px;

        background: #fff;
        color: var(--primary-dark);

        font-family: 'Vazirmatn', sans-serif;
        font-weight: 800;
        font-size: 1rem;

        border: none;
        cursor: pointer;
        transition: all .3s;

        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);

    }

    .vol-join-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }



    /* ─── FOOTER ─── */

    footer {

        background: #0a2e2b;

        color: rgba(255, 255, 255, 0.75);

        padding: 4rem 2rem 1.5rem;

    }

    .footer-grid {

        max-width: 1200px;
        margin: 0 auto;

        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 3rem;

        padding-bottom: 3rem;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    }

    .footer-brand .logo-wrap {

        display: flex;
        align-items: center;
        gap: .7rem;
        margin-bottom: 1rem;

    }

    .footer-brand .logo-icon {

        width: 44px;
        height: 44px;
        border-radius: 12px;

        background: linear-gradient(135deg, var(--primary), var(--accent2));

        display: flex;
        align-items: center;
        justify-content: center;

        font-size: 1.3rem;
        color: #fff;
    }

    .footer-brand .logo-name {

        font-size: 1.3rem;
        font-weight: 800;
        color: #fff;

    }

    .footer-brand p {
        font-size: .88rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
    }

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

    .social-links a {

        width: 38px;
        height: 38px;
        border-radius: 10px;

        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);

        display: flex;
        align-items: center;
        justify-content: center;

        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: .95rem;

        transition: all .3s;

    }

    .social-links a:hover {
        background: var(--primary);
        color: #fff;
        border-color: var(--primary);
    }

    .footer-col h5 {
        color: #fff;
        font-weight: 700;
        font-size: .95rem;
        margin-bottom: 1.2rem;
    }

    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: .6rem;
    }

    .footer-col ul a {

        color: rgba(255, 255, 255, 0.65);
        text-decoration: none;
        font-size: .87rem;

        transition: color .25s;

    }

    .footer-col ul a:hover {
        color: var(--primary-light);
    }

    .footer-bottom {

        max-width: 1200px;
        margin: 1.5rem auto 0;

        display: flex;
        justify-content: space-between;
        align-items: center;

        font-size: .83rem;
        color: rgba(255, 255, 255, 0.4);

    }
@media (max-width: 1070px) {
 .nav-links {
            display: none;
        }
    }

    /* ─── RESPONSIVE ─── 
    
     .hero-visual {
            display: none;
        }
    */

    @media (max-width: 900px) {

        .hero-content {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

         .hero-visual {


            margin-top: 0px;
        }

        .volunteer-inner {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }

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

    @media (max-width: 600px) {

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

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

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

    }