/* ===================== VARIABLES ===================== */
:root {
    --primary-color: #355941;
    --secondary-color: #d4a017;
    --accent-color: #f4ad43;
    --white: #ffffff;
    --dark-bg: #2d4033;
    --text-muted: #7e6b73;
    --transition-smooth: all 0.3s ease;
}


/* ===================== GLOBAL ===================== */
body {
    font-family: 'League Spartan', sans-serif;
    overflow-x: hidden;
    background-color: var(--white);
    color: #333;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

img {
    transition: transform 0.3s ease;
}
img:hover {
    transform: scale(1.05);
}

/* ===================== NAVBAR ===================== */
.navbar {
    background-color: var(--dark-bg);
    animation: slideInLeft 0.8s ease-out;
    position: relative;
    z-index: 1000;
}

.navbar img {
    animation: scaleUp 0.6s ease-out 0.2s both;
}

.navbar-nav>li>a {
    color: var(--white) !important;
    font-size: 15px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.separator {
    width: 2px;
    background-color: var(--white);
    height: 50px;
}

.navbar_contactus_Button {
    background-color: var(--accent-color);
    border-radius: 10px;
    border: none;
    padding: 8px 20px;
    transition: var(--transition-smooth);
}
.navbar_contactus_Button:hover {
    background-color: lightgray;
    color: white;
}

/* ===================== MAIN SECTION ===================== */
.main-section {
    background-image: url('./images/main_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.main-section::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.main-section > div {
    position: relative;
    z-index: 2;
}

.main-section h1 {
    color: #fffff5 !important;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    animation: fadeIn 1s ease-out 0.3s both;
}

.main-section p {
    color: #eeba2b;
    animation: fadeIn 1s ease-out 0.6s both;
}

.main-section button {
    background-color: var(--accent-color);
    border-radius: 10px;
    border: none;
    font-family: sans-serif;
    animation: fadeIn 1s ease-out 0.9s both;
    transition: var(--transition-smooth);
}

.main-section button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(244, 173, 67, 0.4);
}

/* ===================== ABOUT US ===================== */
.about_gik_section {
    background-color: #f7f7f5;
    padding: 80px 0;
}

.aboutgik-title>h2 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #e0b23f;
    text-align: center;
    animation: fadeIn 0.8s ease-out forwards;
}

.left-col>p {
    text-align: left;
    padding-left: 20%;
    padding-top: 10%;
    font-weight: bold;
    animation: slideInLeft 0.8s ease-out forwards;
}

/* ===================== OBJECTIVES ===================== */
.objectives-header,
.objectives-grid {
    background-color: #274534;
    color: white;
    padding: 80px 20px;
}

.objectives-header h2.fw-bold {
    font-weight: 700;
    letter-spacing: 1px;
}

.objectives-header .divider {
    height: 4px;
    width: 100px;
    background-color: var(--secondary-color);
    margin: 15px auto;
}

.objectives-header p {
    color: #d4d2d1;
    font-weight: 400;
}

.objective-card {
    background-color: #fffff5;
    color: #274534;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.objective-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.icon-circle {
    display: inline-block;
    width: 70px; 
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    line-height: 70px;
    font-size: 24px;
    color: #274534;
}
.icon-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===================== MISSION & VISION ===================== */
.card-mission{
    background: linear-gradient(145deg, #eeba2b, #d4a017) !important; 
}

.card-vision{
    background: linear-gradient(145deg, #355941, #243d2d) !important;
}

.card-box {
    padding: 50px 30px;
    border-radius: 40px;
    color: white;
    text-align: center;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    z-index: 1;
}
.card-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.1);
    opacity: 0;
    transition: 0.3s;
    border-radius: 40px;
    z-index: -1;
}
.card-box:hover::before { opacity: 1; }
.card-box:hover { transform: translateY(-20px); box-shadow: 0 30px 60px rgba(0,0,0,0.2);}
.icon-svg { width: 70px; height: 70px; fill: white; margin-bottom: 20px; transition: transform 0.5s ease;}
.card-box:hover .icon-svg { transform: scale(1.2) rotate(15deg);}

/* ===================== GUIDE US ===================== */
.guide-us-section .card {
    background-color: #0a4225 !important;
    border-left: 4px solid #28a745;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-us-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.guide-us-section h4 {
    color: #aabdae !important;
}

.guide-us-section p {
    color: #1b1919 !important;   
}

/* ===================== MEMBERSHIP ===================== */
.member-div{
    background-color: var(--primary-color) !important;
    padding: 80px 20px;
}
.member-button{
    background-color: var(--secondary-color) !important;
    transition: var(--transition-smooth);
}
.contact-button{
    background-color: var(--white) !important;
    transition: var(--transition-smooth);
}
.member-button:hover, .contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* ===================== FOOTER ===================== */
.footer-section{
    background-color: var(--dark-bg);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    opacity: 0;
    transition: all 0.8s ease;
    padding: 40px 20px;
}
.footer-section.animate {
    animation: fadeIn 0.8s ease-out forwards;
}
footer p, footer a, footer h3{
    color: var(--white) !important;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleUp { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
@keyframes bounce { 0%,20%,50%,80%,100%{transform:translateY(0);}40%{transform:translateY(-10px);}60%{transform:translateY(-5px);} }
@keyframes pulse {0%{transform:scale(1);}50%{transform:scale(1.05);}100%{transform:scale(1);} }
@keyframes float {0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);} }
@keyframes shimmer {0%{background-position:-1000px 0;}100%{background-position:1000px 0;} }

/* ===================== UTILITY ===================== */
.animate { opacity: 1 !important; transform: translateY(0) !important; transition: all 0.8s ease-out; }

/* ===================== WHO WE ARE ===================== *//* ===================== WHO WE ARE ===================== */
.who-we-are-section {
    background-color: #f7f7f5;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    position: relative;
}

/*/* نص Who We Are */
.who-we-are-text {
    flex: 1 1 500px;
    max-width: 500px;
    padding: 20px;
    animation: fadeIn 0.8s ease-out forwards;
}

.who-we-are-text h2 {
    color: orange; /* العنوان برتقالي */
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    font-weight: bold;
}

.who-we-are-text p {
    color: var(--text-muted);
    line-height: 1.8;
    text-align: justify;
    font-weight: bold;
}

/* صورة Who We Are */
.who-we-are-image {
    flex: 1 1 300px;
    max-width: 500px;
    max-height: 350px; 
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    margin: 20px;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

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

.who-we-are-image:hover img {
    transform: scale(1.05);
}


/* تنسيق الأنيميشن */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-list-row {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-list-row:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .custom-list-row {
        flex-direction: column;
        text-align: center;
    }
    .icon-box {
        margin-right: 0 !important;
        margin-bottom: 15px;
    }
}

/* Glassmorphism للكروت */
.objective-card.glass-card {
    background: rgba(72, 187, 120, 0.2) !important; /* أخضر زجاجي */
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(72,187,120,0.3);
}
.objective-card.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

/* الأيقونة أكبر شوي */
.icon-circle img {
    max-width: 150px; /* زيادة عن السابق */
    height: auto;
    display: block;
    margin: 0 auto;
}

/* النصوص */
.text-black {
    color: #000000;
}

.text-orange {
    color: #e68f48;
}
/* ===== SECTION BACKGROUND ===== */
.working-together-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f3d2e, #14532d, #0b2e22);
    position: relative;
    overflow: hidden;
    color: white;
}

/* subtle floating light */
.working-together-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(72,187,120,0.3), transparent 70%);
    top: -150px;
    right: -150px;
    filter: blur(100px);
}

/* ===== HEADER ===== */
.header {
    text-align: center;
    margin-bottom: 80px;
}

.header h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.header p {
    max-width: 750px;
    margin: auto;
    opacity: 0.85;
}
.partner-card,
.partner-card p,
.partner-card li {
    font-weight: 700;
}
/* ===== GLASS CARD ===== */
.glass-card {
    backdrop-filter: blur(20px);
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 50px 40px;
    color: white;
    transition: all 0.5s ease;
    transform: translateY(40px);
    opacity: 0;
}

.glass-card:hover {
    transform: translateY(-15px) scale(1.03);
    background: rgba(255,255,255,0.12);
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

/* ===== ICON ===== */
.icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.icon-wrapper img {
    width: 130px;
    height: 130px;
    object-fit: contain;
    transition: 0.4s ease;
}

.glass-card:hover img {
    transform: scale(1.15);
}

/* ===== TEXT ===== */
.glass-card h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

.card-desc {
    opacity: 0.85;
    margin-bottom: 20px;
}

/* ===== LIST ===== */
.glass-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.glass-card ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.check {
    color: #4ade80;
    font-weight: bold;
    margin-right: 8px;
}

/* ===== ANIMATIONS ===== */
.reveal-top {
    transform: translateY(-40px);
    opacity: 0;
    transition: all 0.8s ease;
}

.reveal-card {
    transition: all 0.8s ease;
}

.active {
    transform: translateY(0) !important;
    opacity: 1 !important;
}






/* ====== FONT ====== */
body {
    font-family: 'Inter', sans-serif;
}

/* ====== SECTIONS ====== */
.service-section {
    position: relative;
    overflow: hidden;
}

/* أخضر */
.section-green {
    background: linear-gradient(135deg, #0f3d2e, #1f7a5c);
    color: #fff;
}

/* أبيض */
.section-white {
    background: #ffffff;
    color: #1f2937;
}

/* ====== GLASS CARD ====== */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* ====== TITLE ====== */
.section-label {
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: 800;
    opacity: 0.85;
    margin-bottom: 12px;
}

/* ====== ICON + TITLE ====== */
.service-title {
    display: flex;
    align-items: center;
    gap: 16px;
}

.service-title img {
    width: 85px;
    height: auto;
}

/* ====== FEATURES ====== */
.features-list li {
    font-weight: 700;
}

/* ====== IMAGE ====== */
.service-image-box img {
    border-radius: 28px;
}

/* ====== ANIMATION ====== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}














/* ===== CSS Who We Are Section ===== */

/* قسم كامل مع Glassmorphism */
.who-we-are-section {
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 60px 0;
    margin: 40px 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

/* العنوان الرئيسي برتقالي */
.who-we-are-section .who-we-are-title {
    color: #f8a529;
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* باقي العناوين داخل نفس القسم غامقة */
.who-we-are-section h2:not(.who-we-are-title) {
    color: #1f3d2f;
    font-weight: 700;
}

/* النصوص */
.who-we-are-section p {
    font-weight: 700;
    color: #1f3d2f;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Scroll Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* صورة مع ظل */
.who-we-are-section .who-we-are-image img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.5s ease;
}

.who-we-are-section .who-we-are-image img:hover {
    transform: scale(1.05);
}


/* ===== Glass Effect ===== */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

/* ===== About Text ===== */
.about-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #dda157; /* 🟠 برتقالي */
    margin-bottom: 20px;
}

.about-desc {
    font-size: 1.1rem;
    font-weight: 500;
    color: #080202;
    line-height: 1.9;
}

/* ===== Image ===== */
/* ===== Image Wrapper ===== */
.about-image {
    padding: 10px;
    border-radius: 32px;
    border: 2px solid #dda157; /* 🟠 برتقالي */
}

.about-image img {
    max-height: 460px;
    width: 100%;
    object-fit: cover;
    border-radius: 24px;
}
/* ===== Reveal Animation ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Children delay */
.animate-child {
    transition-delay: 0.15s;
}
/* ===== About Glass Card (TEXT) ===== */
.about-glass-card {
    padding: 4rem 4.5rem; 
    min-height: 100%;
}





/* ===== Mission & Vision Section Glassmorphism ===== */
.mission-vision-section .card-box {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.8s ease, opacity 0.8s ease;
    border: 2px solid rgba(218, 153, 87, 0.5); /* برتقالي شفاف */
}

.mission-vision-section h3 {
    font-weight: 700;
    font-size: 1.8rem;
    color: #0a0600; 
    margin-bottom: 1rem;
}

.mission-vision-section p {
    font-weight: 500;
    color: #fdfbfb; 
    line-height: 1.7;
}

.mission-vision-section .icon-svg {
    width: 60px;
    height: 60px;
    fill: #dddad7; 
    margin-bottom: 1rem;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animate child delay */
.animate-child {
    transition-delay: 0.15s;
}




.become-partner-section .glass-card {
    background: rgba(255, 255, 255, 0.15); /* أبيض شفاف */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 3rem 2rem;
    transition: transform 0.8s ease, box-shadow 0.5s ease;
    border: 2px solid rgba(218, 153, 87, 0.5); /* برتقالي شفاف */
}

.become-partner-section .glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.become-partner-section h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #faa43b; 
    margin-bottom: 1.5rem;
}

.become-partner-section p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #000000; 
    margin-bottom: 2rem;
    line-height: 1.8;
}

.become-partner-section .btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.become-partner-section .btn-primary {
    background-color: #28a745;
    color: #fff;
    border: none;
}

.become-partner-section .btn-primary:hover {
    background-color: #218838;
}

.become-partner-section .btn-secondary {
    background-color: #f8a529; 
    color: #fff;
    border: none;
}

.become-partner-section .btn-secondary:hover {
    background-color: #dda157;
}


.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.9s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


.animate-child {
    transition-delay: 0.15s;
}
/* ===== Objectives Section ===== *//*
/* ===== Objectives Section ===== */
.objectives-combined {
    background-color: #ffffff !important; 
    padding: 40px 0; /* تقليل المسافة العلوية والسفلية للقسم */
}

.objectives-combined .header {
    margin-bottom: 20px !important; /* تقليل الفراغ تحت كلمة Our Objective */
}

.objectives-combined .header h2 {
    color: #198754;
    font-weight: 800;
    margin-bottom: 5px; /* تقليل المسافة تحت العنوان الرئيسي مباشرة */
}

/* الكارت الأخضر */
.glass-card.green-card {
    background: #1f7a5c !important;
    border-radius: 25px;
    border: none;
    padding: 30px 25px; /* تقليل البادينج داخل الكرت ليكون متناسق */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); 
    transition: transform 0.3s ease;
}

/* الدائرة البيضاء */
.icon-circle {
    width: 70px;
    height: 70px;
    background-color: #ffffff; 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px; /* تقليل المسافة تحت الدائرة */
    overflow: hidden;
}

.icon-circle img {
    width: 100%; 
    height: 90%;
    object-fit: cover;
}

/* النص داخل الكارت */
.objectives-combined .objective-card p {
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.15rem;
    margin: 0;
    line-height: 1.4;
}



/* Facebook */
.footer-section .social-link-facebook i {
  color: #1877f2 !important; 
}
.footer-section .social-link-facebook:hover i {
  color: #0c63d4 !important; 
}

/* Twitter / X */
.footer-section .social-link-twitter i {
  color: #1DA1F2 !important; 
}
.footer-section .social-link-twitter:hover i {
  color: #1a91da !important; 
}

/* Instagram */
.footer-section .social-link-instagram i {
  color: #E4405F !important; 
}
.footer-section .social-link-instagram:hover i {
  color: #d13046 !important; 
}

/* YouTube */
.footer-section .social-link-youtube i {
  color: #FF0000 !important; 
}
.footer-section .social-link-youtube:hover i {
  color: #cc0000 !important; 
}

/* Telegram */
.footer-section .social-link-telegram i {
  color: #0088cc !important; 
}
.footer-section .social-link-telegram:hover i {
  color: #0077b3 !important; 
}