:root{

    --blue:#2563eb;
    --green:#10b981;
    --dark:#0f172a;
    --white:#fff;
    --gray:#f8fafc;
    --text:#475569;

    --gradient:
    linear-gradient(
        135deg,
        #2563eb,
        #10b981
    );

    --shadow:
    0 15px 40px rgba(0,0,0,0.08);

    --shadow-hover:
    0 25px 60px rgba(0,0,0,0.15);
}

/* ===================================== */
/* RESET */
/* ===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Cairo',sans-serif;

    background:var(--gray);

    color:var(--text);

    overflow-x:hidden;
}

.container{

    width:90%;

    max-width:1250px;

    margin:auto;
}

/* ===================================== */
/* HERO */
/* ===================================== */

.project-hero{

    position:relative;

    min-height:78vh;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

    overflow:hidden;

    padding:0 20px;

    background:
    linear-gradient(
        rgba(0,0,0,0.58),
        rgba(0,0,0,0.78)
    ),
    url("photo/aytam.png");

    background-size:cover;

    background-position:center center;

    background-repeat:no-repeat;

    border-bottom-left-radius:55px;
    border-bottom-right-radius:55px;
}

/* تأثير احترافي */

.project-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(
        rgba(255,255,255,0.08),
        transparent
    );

    z-index:1;
}

/* Overlay */

.overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,0.2),
        transparent
    );
}

/* HERO CONTENT */

.hero-content{

    position:relative;

    z-index:2;

    max-width:850px;

    width:100%;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;
}

/* BADGE */

.hero-badge{

    display:inline-block;

    padding:13px 28px;

    border-radius:50px;

    background:
    rgba(255,255,255,0.12);

    color:white;

    font-size:15px;

    font-weight:800;

    margin-bottom:28px;

    backdrop-filter:blur(10px);

    box-shadow:
    0 8px 25px rgba(255,255,255,0.08);
}

/* TITLE */

.hero-content h1{

    color:white;

    font-size:64px;

    line-height:1.4;

    font-weight:900;

    margin-bottom:22px;

    text-shadow:
    0 10px 30px rgba(0,0,0,0.45);
}

/* PARAGRAPH */

.hero-content p{

    color:#f1f5f9;

    font-size:20px;

    line-height:2.1;

    max-width:760px;

    margin:auto;
}

/* ===================================== */
/* SECTION */
/* ===================================== */

.project-section{

    padding:100px 0;
}

.project-wrapper{

    display:grid;

    grid-template-columns:
    340px 1fr;

    gap:45px;

    align-items:start;
}

/* ===================================== */
/* IMAGE */
/* ===================================== */

.project-image{

    position:sticky;

    top:100px;

    background:white;

    border-radius:30px;

    overflow:hidden;

    padding:15px;

    box-shadow:var(--shadow);
}

.project-image img{

    width:100%;

    height:450px;

    object-fit:cover;

    border-radius:22px;

    transition:0.5s ease;
}

.project-image:hover img{

    transform:scale(1.04);
}

/* ===================================== */
/* CONTENT */
/* ===================================== */

.project-content{

    background:white;

    padding:55px;

    border-radius:35px;

    box-shadow:var(--shadow);

    position:relative;

    overflow:hidden;
}

/* خلفية خفيفة */

.project-content::before{

    content:"";

    position:absolute;

    width:180px;
    height:180px;

    background:
    radial-gradient(
        rgba(37,99,235,0.08),
        transparent
    );

    top:-50px;
    left:-50px;

    border-radius:50%;
}

/* TAG */

.project-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 24px;

    border-radius:50px;

    background:
    rgba(37,99,235,0.1);

    color:var(--blue);

    font-size:15px;

    font-weight:800;

    margin-bottom:28px;
}

/* TITLE */

.project-content h2{

    font-size:48px;

    color:var(--dark);

    margin-bottom:25px;

    font-weight:900;
}

/* TEXT */

.project-content p{

    font-size:18px;

    line-height:2.2;

    color:#64748b;

    margin-bottom:22px;
}

/* ===================================== */
/* BOX */
/* ===================================== */

.project-box{

    background:#f8fafc;

    padding:32px;

    border-radius:28px;

    margin-top:28px;

    border:
    1px solid rgba(0,0,0,0.04);

    transition:0.4s ease;
}

.project-box:hover{

    transform:translateY(-5px);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

.project-box h3{

    display:flex;

    align-items:center;

    gap:12px;

    font-size:24px;

    color:var(--dark);

    margin-bottom:15px;
}

.project-box i{

    color:var(--green);

    font-size:24px;
}

/* ===================================== */
/* TABLE */
/* ===================================== */

.project-table{

    margin-top:45px;

    overflow:hidden;

    border-radius:25px;

    box-shadow:
    0 12px 35px rgba(0,0,0,0.08);
}

.project-table table{

    width:100%;

    border-collapse:collapse;

    background:white;
}

.project-table th{

    background:var(--gradient);

    color:white;

    padding:22px;

    font-size:17px;

    font-weight:800;
}

.project-table td{

    padding:20px;

    text-align:center;

    border-bottom:
    1px solid #edf2f7;

    color:#334155;

    font-weight:700;
}

.project-table tr:hover{

    background:#f8fafc;
}

/* ===================================== */
/* INFO */
/* ===================================== */

.info-boxes{

    display:grid;

    grid-template-columns:
    repeat(2,1fr);

    gap:25px;

    margin-top:45px;
}

.info-card{

    background:#f8fafc;

    border-radius:28px;

    padding:25px;

    display:flex;

    align-items:flex-start;

    gap:18px;

    transition:0.4s ease;

    border:
    1px solid rgba(0,0,0,0.05);
}

.info-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 15px 35px rgba(0,0,0,0.08);
}

.info-card i{

    width:65px;
    height:65px;

    border-radius:50%;

    background:var(--gradient);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    flex-shrink:0;
}

.info-card h4{

    color:var(--dark);

    font-size:22px;

    margin-bottom:8px;

    font-weight:800;
}

.info-card p{

    margin:0;

    font-size:15px;

    line-height:1.9;
}

/* ===================================== */
/* STATS */
/* ===================================== */

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:25px;

    margin-top:45px;
}

.stat-card{

    background:var(--gradient);

    color:white;

    padding:35px 25px;

    border-radius:30px;

    text-align:center;

    transition:0.4s ease;

    box-shadow:
    0 15px 35px rgba(37,99,235,0.22);
}

.stat-card:hover{

    transform:
    translateY(-6px)
    scale(1.03);
}

.stat-card h3{

    font-size:42px;

    margin-bottom:12px;

    font-weight:900;
}

.stat-card p{

    color:white;

    margin:0;

    font-size:17px;
}

/* ===================================== */
/* BUTTON */
/* ===================================== */

.donate-btn-main{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:14px;

    margin-top:55px;

    padding:18px 42px;

    border-radius:60px;

    background:var(--gradient);

    color:white;

    text-decoration:none;

    font-size:18px;

    font-weight:800;

    transition:0.4s ease;

    box-shadow:
    0 18px 45px rgba(37,99,235,0.28);
}

.donate-btn-main:hover{

    transform:
    translateY(-5px)
    scale(1.03);

    box-shadow:
    0 28px 60px rgba(37,99,235,0.38);
}

/* ===================================== */
/* FOOTER */
/* ===================================== */

footer{

    background:#0f172a;

    color:white;

    padding:60px 0 25px;

    margin-top:90px;
}

.footer-container{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    gap:40px;
}

.footer-section h3{

    margin-bottom:20px;

    font-size:22px;
}

.social-icons{

    display:flex;

    gap:15px;
}

.social-icons a{

    width:45px;
    height:45px;

    border-radius:50%;

    background:
    rgba(255,255,255,0.08);

    color:white;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    transition:0.4s ease;
}

.social-icons a:hover{

    background:var(--gradient);

    transform:translateY(-5px);
}

.footer-copy{

    text-align:center;

    margin-top:40px;

    color:#cbd5e1;

    font-size:15px;
}

/* ===================================== */
/* RESPONSIVE */
/* ===================================== */

@media(max-width:1100px){

    .project-wrapper{

        grid-template-columns:1fr;
    }

    .project-image{

        position:relative;

        top:0;

        max-width:500px;

        margin:auto;
    }
}

@media(max-width:768px){

    .project-hero{

        min-height:58vh;

        padding:40px 20px;
    }

    .hero-content h1{

        font-size:38px;
    }

    .hero-content p{

        font-size:16px;

        line-height:1.9;
    }

    .project-content{

        padding:30px 22px;
    }

    .project-content h2{

        font-size:34px;
    }

    .project-content p{

        font-size:16px;
    }

    .info-boxes,
    .stats-grid{

        grid-template-columns:1fr;
    }

    .project-image img{

        height:320px;
    }

    .donate-btn-main{

        width:100%;
    }

    .footer-container{

        flex-direction:column;
    }
}