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

body {
    font-family: 'Nunito', sans-serif;
    background-color: #f8f8f8;
    color: #c21f1f;
    line-height: 1.6;
    margin-top: 10px;
}

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

/* ================== LOGO ================== */
.topbar-logo {
    height: 75px;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.topbar-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
}

/* ================== TOPBAR ================== */
.topbar {
    background-color: #fff;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: top 0.3s;
    z-index: 9999;
}

.topbar-left,
.topbar-center,
.topbar-right {
    display: flex;
    align-items: center;
}

.topbar-left {
    flex: 1;
    justify-content: flex-start;
    gap: 14px;
}

.topbar-left a {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 0 16px;
    background-color: #f9f9f9;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.topbar-left a i {
    margin-right: 6px;
    color: #e91e63;
    font-size: 16px;
}

.topbar-left a:hover {
    background-color: #e91e63;
    color: #fff;
}

.topbar-left a:hover i {
    color: #fff;
}

.topbar-center {
    flex: 1;
    justify-content: center;
}

.topbar-right {
    flex: 1;
    justify-content: flex-end;
    gap: 20px;
}

.topbar-right a.social-icon {
    width: 36px;
    height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.topbar-right a.social-icon:hover {
    background-color: #2ecc71;
    color: #fff;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 12px;

}

.language-switcher a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.language-switcher a.active,
.language-switcher a:hover {
    color: #e91e63;
    font-weight: bold;
}

/* FLAG ICON */
.flag-icon {
    width: 24px;
    height: 16px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ================== NAVBAR ================== */
.navbar {
    background-color: #ffffff;
    color: #2c3e50;
    padding: 15px 30px;
    position: static;
    /* Navbar artık sticky değil */
    margin-top: 60px;
    /* Topbar yüksekliği kadar boşluk */
    z-index: 998;
    border-bottom: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon {
    transition: all 0.3s ease;
    display: inline-block;
}

/* ================== NAV LINKS ================== */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 40px;
    font-size: 18px;
    font-weight: 500;
    padding: 0;
    margin: 0;
}

.nav-links li {
    position: relative;
}

.nav-links li a,
.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #202d3a;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 9px;
    transition: background-color 0.3s ease, color 0.3s ease, font-size 0.3s ease;
    font-size: 16px;
    position: relative;
}

.nav-links li a:hover,
.nav-links a:hover {
    font-size: 18px;
}

/* Hoverda alt çizgi animasyonu */
.nav-links li a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 100%;
    background: #e91e63;
    transition: width 0.3s ease, left 0.3s ease;
}

/* Aktif linkte alt çizgi yok */
.nav-links a.active {
    color: #e91e63;
    font-weight: bold;
}

/* ================== DROPDOWN ================== */
.has-dropdown {
    position: relative;
}

.has-dropdown .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    list-style: none;
    padding: 0;
    min-width: 240px;
    z-index: 999;
    border-radius: 10px;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown li {
    border-top: 1px solid #f1f1f1;
}

.dropdown li:first-child {
    border-top: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: font-size 0.3s ease;
}

.dropdown a:hover {
    font-size: 15px;
    color: #2c3e50;
    background-color: transparent;
}


/* ===================== CONTACT PAGE STYLES ===================== */
.contact-section {
    background: linear-gradient(135deg, #fdfdfd, #f0f0f5);
    padding: 80px 20px;
    font-family: 'Nunito', sans-serif;
}

.contact .container {
    max-width: 1200px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.contact h2 {
    font-size: 32px;
    color: #2c3e50;
    font-weight: 800;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.contact h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff5722, #4fc3f7);
    border-radius: 4px;
}

.contact-form {
    max-width: 600px;
    margin: 40px auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
    color: #2c3e50;
}

.contact-form label {
    font-weight: 600;
    color: #555;
    margin-bottom: 8px;
    display: block;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fafafa;
    transition: border 0.3s, background-color 0.3s;
    margin-bottom: 20px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #e67e22;
    background-color: #fff;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    width: 100%;
    padding: 14px;
    background-color: #e67e22;
    color: #fff;
    font-weight: bold;
    border-radius: 30px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #3de689;
}

.captcha-margin {
    margin-bottom: 1.5em;
}

.g-recaptcha {
    transform: scale(1);
    transform-origin: 0 0;
}

.form-message {
    display: none;
    margin-top: 1em;
    padding: 1em;
    border-radius: 6px;
    font-weight: bold;
    font-size: 15px;
    text-align: center;
}

/* Başarılı gönderim mesajı */
.form-message.success {
    background-color: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

/* Hata mesajı */
.form-message.error {
    background-color: #ffebee;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* Optional: Contact Info Block */
.contact-info {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #ff5722;
    border-radius: 8px;
    color: #2c3e50;
}

.contact-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Optional: Embedded Map */
.map {
    margin-top: 30px;
}

.map iframe {
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    width: 100%;
    height: 400px;
    border: none;
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-form {
        padding: 25px 20px;
        margin: 20px 10px;
    }

    .contact-form h2 {
        font-size: 20px;
    }

    .contact-form input,
    .contact-form textarea {
        font-size: 14px;
        padding: 10px 12px;
    }

    .contact-form button {
        font-size: 15px;
        padding: 12px;
    }

    .contact h2 {
        font-size: 26px;
    }

    .map iframe {
        height: 250px;
    }

    .g-recaptcha {
        transform: scale(0.93);
        transform-origin: 0 0;
    }
}


/* === HERO SLIDER AREA === */
.hero-slider {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    background-color: #000;
}

/* Background image for each slide */
.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    opacity: 0;
    z-index: 0;
    transition: opacity 1s ease-in-out;
    filter: none;
    background-repeat: no-repeat;
}

/* First slide visible by default */
.hero-slide:first-child {
    opacity: 1;
    z-index: 1;
}

/* Background dark overlay (her slaytın üzerinde) */
.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.35);
    /* Karartma seviyesi */
    z-index: 1;
    transition: background 0.8s ease;
}

/* HERO text area (yazıların bulunduğu kısım) */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    background: none;
    backdrop-filter: none;
    z-index: 2;
}

/* === HERO TEXT === */
.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    animation: fadeInDown 1s ease-out;
}

.hero-overlay p {
    font-size: 1.3rem;
    font-style: italic;
    color: #f5f5f5;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1.3s ease-out;
}

/* === SLIDER BUTTONS === */

.hero-slider .prev,
.hero-slider .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: bold;
    padding: 10px 15px;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    z-index: 10;
    user-select: none;
    transition: background-color 0.3s ease;
}

.hero-slider .prev:hover,
.hero-slider .next:hover {
    background-color: rgba(0, 0, 0, 0.6);
}

.hero-slider .prev {
    left: 20px;
}

.hero-slider .next {
    right: 20px;
}

/* === ANIMATIONS === */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* ================== CTA SECTION ================== */
.cta-section {
    background-color: #ffffff;
    padding: 60px 20px;
    margin-top: 60px;
}

.cta-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: linear-gradient(135deg, #f8f9fa, #f1f1f1);
}

.cta-image {
    flex: 1 1 300px;
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-text {
    flex: 1 1 400px;
    padding: 40px;
    text-align: center;
    color: #2c3e50;
}

.cta-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-text p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-text .btn-donate {
    background-color: #e91e63;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-text .btn-donate:hover {
    background-color: #c2185b;
    color: #fff;
}

/* Responsive CTA */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
    }

    .cta-text {
        padding: 30px 20px;
    }
}





/* ================== PARTNERS ================== */
.partners-section {
    width: 100%;
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.partners-section .section-title {
    font-size: 38px;
    font-weight: 800;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partners-section .section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #00c6ff, #ff6b6b);
    border-radius: 3px;
}

.partner-logos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 30px;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.partner-logos::-webkit-scrollbar {
    height: 8px;
}

.partner-logos::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.partner-logos a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.partner-logos a:hover {
    transform: scale(1.1);
}

.partner-logos img {
    height: 120px;
    width: auto;
    object-fit: contain;
    padding: 16px 24px;
    border-radius: 60px;
    background-color: #fff;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-left: 20px;
}

.partner-logos a:hover img {
    transform: scale(1.07);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.15);
}


/* ===================== DOMAINS OF INTERVENTION =====================*/
.intervention-section {
    text-align: center;
    padding: 40px;
    background-color: #fff;
}

.intervention-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}



/*================== MAP ====================*/

.map-section {
    background: linear-gradient(135deg, #e3f2fd, #fce4ec);
    padding: 80px 20px;
    margin: 0;
    width: 100%;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
}

.map-wrapper {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
    max-width: 1300px;
    margin: auto;
    padding: 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.map-text {
    flex: 1 1 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: auto;
    padding-top: 60px;
    padding-bottom: 60px;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
}

.map-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 12px;
}

.map-text p {
    font-size: 17px;
    color: #444;
    margin-bottom: 30px;
    line-height: 1.6;
}

.project-filters {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: auto;
    overflow-x: auto;
    max-width: 100%;
    padding-top: 20px;
}

.filter-btn {
    background-color: #f9f9f9;
    border: 1px solid #e91e63;
    color: #e91e63;
    padding: 8px 18px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    text-transform: capitalize;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: 'Nunito', 'Segoe UI', sans-serif;
}

.filter-btn:hover {
    background-color: #e91e63;
    color: #fff;
    transform: translateY(-1px);
}

.filter-btn.active {
    background-color: #e91e63;
    color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

#map.styled-map {
    flex: 1 1 520px;
    height: 440px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}


/* ================== FOOTER ================== */
.site-footer {
    background-image: url('../img/footer-bg1.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: darken;
}

.site-footer img.footer-logo {
    height: 140px;
    margin-top: -10px;
    margin-left: 0;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 10px;
}

.footer-slogan {
    font-style: italic;
    font-size: 13px;
    margin-bottom: 12px;
    color: white;
}

.footer-socials a {
    color: #fff;
    font-size: 16px;
    margin: 0 6px;
    transition: color 0.3s ease;
}

.footer-socials a:hover {
    color: #2ecc71;
}

.footer-menu h3 {
    margin-bottom: 12px;
    font-size: 16px;
    color: #fff;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
    line-height: 1.8;
}

.footer-menu li i {
    color: #2ecc71;
    margin-right: 5px;
}

.footer-menu a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #e67e22;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom .footer-brand {
    color: #2ecc71;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-bottom .designed-by {
    color: #ccc;
    font-size: 12px;
    margin-top: 10px;
    display: block;
}

.footer-bottom .designed-by .designer-name {
    color: #2ecc71;
    font-weight: bold;
}

.footer-bottom i {
    margin-right: 6px;
    color: #f39c12;
}

.footer-bottom p {
    font-size: 12px;
    color: #ccc;
}

.footer-bottom a {
    color: #2ecc71;
    text-decoration: none;
    font-weight: bold;
}


/* ===================== INTERVENTION SECTION ==================== */
.intervention-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4f8 100%);
    text-align: center;
    width: 100%;
}

.intervention-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    align-items: stretch;
    margin-top: 40px;
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.intervention-card {
    width: 250px;
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    padding: 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 360px;
}

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

.intervention-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.3s ease;
}

.intervention-card:hover img {
    transform: scale(1.05);
}

.intervention-card h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
}

.intervention-card p {
    margin: 15px 0;
    font-size: 14px;
    color: #666;
    flex-grow: 1;
}

.intervention-card .btn.orange {
    background-color: #e67e22;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
    margin-bottom: 20px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.intervention-card .btn.orange:hover {
    background-color: #d35400;
    transform: scale(1.05);
}

.intervention-card .btn.orange:active {
    background-color: #c0392b;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 40px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #e67e22;
    border-radius: 2px;
}

.gradient-title {
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    margin-bottom: 50px;
}

.gradient-title::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: linear-gradient(to right, #00c6ff, #ff6b6b);
    border-radius: 5px;
    opacity: 1;
}

/* ===================== TABASKI ===================== */
/* ---- GALLERY SECTION ----*/
.gallery-grid-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid-7 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
}

.gallery-grid-7 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-grid-7 img:hover {
    transform: scale(1.05);
}

.view-more-btn {
    padding: 12px 28px;
    background-color: #e67e22;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.view-more-btn:hover {
    background-color: #d35400;
}

.view-more-btn:focus {
    outline: none;
}

/* ================== MODERN SLIDER ================== */
.modern-slider-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.modern-slider {
    display: flex;
    gap: 10px;
}

.slider-images {
    display: flex;
    overflow: hidden;
    width: 100%;
}

.slider-images .slide {
    width: calc(33.33% - 10px);
    /* 3 resim yan yana */
    height: 250px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: opacity 0.5s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.slider-images .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease-in-out;
}

.slider-images .slide:hover img {
    transform: scale(1.1);
}

/* ================== RESPONSIVE ================== */
@media (max-width: 992px) {
    .gallery-grid-7 {
        grid-template-columns: repeat(3, 1fr);
    }

    .slider-images .slide {
        width: calc(50% - 10px);
        height: 200px;
    }
}

@media (max-width: 768px) {
    .gallery-grid-7 {
        grid-template-columns: repeat(2, 1fr);
    }

    .slider-images .slide {
        width: 100%;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .gallery-grid-7 {
        grid-template-columns: 1fr;
    }

    .slider-images .slide {
        width: 100%;
        height: 160px;
    }
}

/* ===================== ABOUT SECTION ===================== */
.action-section {
    padding: 80px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.action-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

.action-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}

.action-section ul {
    margin-top: 20px;
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.action-section ul li {
    font-size: 18px;
    color: #555;
    display: flex;
    align-items: center;
}

.action-section ul li::before {
    content: '✔️';
    margin-right: 10px;
    font-size: 20px;
    color: #e67e22;
    /* Green check icon */
}

.action-section h3 {
    color: #e67e22;
    margin-top: 30px;
    font-size: 28px;
}

/* ================== HERO PAGE ================== */
.hero-page {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.hero-page-overlay {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-page-overlay h1 {
    font-size: 48px;
    font-weight: 700;
}

/* ================== BREADCRUMB ================== */
.breadcrumb-bar {
    background-color: #f5f5f5;
    padding: 20px 0;
}

.breadcrumb-bar p {
    text-align: center;
    font-size: 16px;
    color: #333;
}

.breadcrumb-bar a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.breadcrumb-bar span {
    color: #e67e22;
}


/* ================== HERO BANNER ================== */
.hero-page {
    position: relative;
    width: 100%;
    height: 30vh;
    /* Increased banner height */
    background-size: cover;
    background-position: center;
}

.hero-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Slight dark overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.hero-page-overlay h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Adjustments based on screen size */

/*================== VIE ONG ====================*/

h2,
h3 {
    font-family: 'Roboto', sans-serif;
    color: #e67e22;
    font-weight: bold;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

ul {
    font-size: 16px;
    color: #444;
    margin-bottom: 25px;
}

li {
    line-height: 1.8;
}

h1 {
    font-family: 'Arial', sans-serif;
    color: rgb(255, 255, 255);
    text-align: center;
    margin-bottom: 20px;
}

.team-member {
    text-align: center;
    margin-bottom: 30px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.team-member:hover img {
    transform: scale(1.05);
}

.team-member h4 {
    font-size: 18px;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

.team-member p {
    font-size: 14px;
    color: #777;
}

.team-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.team-member {
    flex: 1 1 20%;
    max-width: 200px;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.action-section {
    padding: 50px 0;
}

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



/* ===================== VIE DE L'ONG SECTION ===================== */
.vie-ong-section {
    padding: 60px 0;
    background-color: #f4f7fa;
    text-align: center;
}

/* Flex container for aligning titles */
.vie-ong-section .content-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    /* Increase spacing between left and right */
    margin: 0 auto;
    max-width: 1200px;
}

/* İçeriklerin alt alta gelmesini sağlamak için */
.vie-ong-section .left,
.vie-ong-section .right {
    flex: 1;
    padding: 0 15px;
    /* Add padding to both sides */
}

/* Style for topic headers */
.vie-ong-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
    text-align: left;
}

.vie-ong-section h3 {
    font-size: 30px;
    font-weight: bold;
    color: #e67e22;
    margin-bottom: 20px;
    text-align: left;
}

/* Style for paragraphs and list items */
.vie-ong-section p,
.vie-ong-section ul {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: left;
}

.vie-ong-section ul {
    list-style-type: none;
    padding-left: 0;
}

.vie-ong-section ul li {
    padding-left: 20px;
    text-indent: -20px;
}

/* Style for content cards */
.vie-ong-section .card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.vie-ong-section .card:hover {
    transform: translateY(-5px);
}

/* ===================== IMAGE SCALING AND POSITIONING ===================== */
.vie-ong-section img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.vie-ong-section img:hover {
    transform: scale(1.05);
}

/* =================== RESPONSIVE DESIGN =================== */



/* ================== CONTENT EDUCATION ================== */
.content-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.content-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 20px;
}

.content-section ul {
    list-style: none;
    margin-top: 20px;
    padding: 0;
    font-size: 16px;
    text-align: left;
    display: inline-block;
    max-width: 900px;
    margin: 0 auto;
}

.content-section ul li {
    margin-bottom: 10px;
}

.content-section ul li::before {
    content: '✔️';
    margin-right: 10px;
    font-size: 20px;
    color: #e67e22;
}

/* ================== TABLE STYLES ================== */
.table-responsive {
    margin-top: 40px;
    overflow-x: auto;
    max-width: 100%;
    margin-bottom: 40px;
}

table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

thead {
    background-color: #333;
    color: white;
    text-align: left;
}

th,
td {
    padding: 12px 20px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

tr:hover {
    background-color: #8c8181;
}

th {
    font-size: 18px;
}

td {
    font-size: 16px;
}

table td,
table th {
    border: none;
    padding: 12px;
}

table tr:last-child td {
    border-bottom: none;
}





/* ================== RESPONSIVE DESIGN ================== */
@media (max-width: 1024px) {
    .intervention-card {
        width: 40%;
        /* Daha küçük ekranlarda %40 genişlik */
    }
}

@media (max-width: 768px) {
    .intervention-card {
        width: 48%;
        /* %48 genişlik */
    }
}

@media (max-width: 480px) {
    .intervention-card {
        width: 100%;
        /* %100 genişlik */
    }
}

@media (max-width: 1024px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-left,
    .about-right {
        flex: none;
        width: 100%;
        padding: 10px;
    }

    .about-right img {
        max-width: 80%;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .section-description {
        font-size: 16px;
    }

    .executive-members,
    .intervention-fields {
        display: block;
        text-align: center;
    }
}

@media (max-width: 1024px) {
    .hero-page {
        height: 60vh;
        /* Orta boyutlu ekranlar için yükseklik biraz daha küçük */
    }
}

@media (max-width: 768px) {
    .hero-page {
        height: 50vh;
        /* Küçük ekranlar için daha da küçültülmüş yükseklik */
    }

    .hero-page-overlay h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .team-member {
        flex: 1 1 80%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .hero-page-overlay h1 {
        font-size: 32px;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .vie-ong-section .content-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .vie-ong-section .left,
    .vie-ong-section .right {
        width: 100%;
    }

    .vie-ong-section h2 {
        font-size: 28px;
    }

    .vie-ong-section h3 {
        font-size: 24px;
    }
}

@media (max-width: 1024px) {
    .slider-images .slide {
        width: calc(50% - 10px);
        /* 2 resim göstermek için %50 genişlik */
    }
}

@media (max-width: 1024px) {
    .slider-images .slide {
        width: calc(50% - 10px);
        /* 2 resim göstermek için %50 genişlik */
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 70vh;
        /* Daha uzun tut, çok kısa kalmasın */
        min-height: 400px;
    }
}

/*=========TOPBAR========*/
@media (max-width: 768px) {
    .topbar {
        flex-direction: row;
        height: auto;
        padding: 10px 20px;
        text-align: center;
        gap: 10px;
    }

    .topbar-left {
        display: none;
    }

    .topbar-center {
        flex: 1;
        justify-content: flex-start;
    }

    .topbar-right {
        flex: 1;
        justify-content: flex-end;
        flex-direction: row;
        align-items: center;
    }

    .topbar-right a.social-icon {
        display: none;
    }

    .language-switcher {
        display: flex;
        gap: 6px;
        justify-content: flex-end;
    }
}

/* ========== MOBILE MENU ========== */

/* ========== MOBILE MENU ========== */

/* 🍔 Hamburger menü görünürlüğü varsayılan olarak kapalı */
.menu-toggle {
    display: none;
}

/* Mobil ekranlar için ayarlamalar */
@media (max-width: 768px) {

    .navbar {
        position: relative;
        /* ✅ menu-toggle görünmesi için gerekli */
    }

 .menu-toggle {
     display: block;
     position: absolute;
     right: 20px;
     top: 70px;
     /* veya daha aşağı bir değer */
     z-index: 1001;
     background: none;
     border: none;
     font-size: 28px;
     color: #ffffff;
     cursor: pointer;
 }

    .nav-links {
        flex-direction: column;
        align-items: center;
        background-color: #ffffff;
        width: 220px;
        position: absolute;
        top: 100%;
        right: 0;
        display: none;
        padding: 10px 0;
        box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.08);
        z-index: 998;
        border-radius: 0 0 8px 8px;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links li a {
        display: block;
        padding: 8px 16px;
        font-size: 14px;
        width: 100%;
        color: #2c3e50;
        text-decoration: none;
        font-weight: 500;
    }

    .has-dropdown .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        display: none;
        box-shadow: none;
        background-color: transparent;
    }

    .has-dropdown:hover .dropdown {
        display: block;
    }
}

    /* PARTNER LOGOLARI */
    .partner-logos {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 16px;
        justify-items: center;
        padding: 20px;
    }

    .partner-logos a {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .partner-logos img {
        width: 100px;
        height: auto;
        object-fit: contain;
    }

    /* SCROLL TOP */
    .scroll-top {
        position: static;
        margin-top: 10px;
    }


@media (max-width: 480px) {
    .hero-slider {
        height: 60vh;
        min-height: 350px;
        height: auto;/* ekran boyuna göre uzasın */
        min-height: 300px;
        padding: 40px 0;
    }

    .hero-overlay {
        justify-content: center;
        align-items: center;
        padding-top: 20px;
        padding-bottom: 20px;
        text-align: center;
    }

    .hero-overlay h1 {
        font-size: 26px;/* daha küçük başlık */
        padding: 0 20px;
        line-height: 1.3;
    }
    .hero-overlay p {
        font-size: 14px;/* daha küçük açıklama */
        padding: 0 10px;
    }

    .partner-logos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .partner-logos img {
        width: 80px;
    }
}

/*========= MAP RESPONSIVE =========*/
@media (max-width: 1024px) {
    .map-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .project-filters {
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 20px;
    }

    #map.styled-map {
        width: 100%;
        height: 360px;
    }
}

@media (max-width: 768px) {
    .map-text {
        text-align: center;
        align-items: center;
    }

    .project-filters {
        justify-content: center;
        flex-wrap: wrap;
    }
}



/* ================== FOOTER RESPONSIVE ================== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
        /* daraltıldı */
    }

    .footer-menu ul {
        padding-left: 0;
    }

    .footer-menu li i {
        display: none;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 8px;
        /* daraltıldı */
    }

    .footer-bottom {
        font-size: 11px;
        /* daraltıldı */
        padding: 15px 10px 0;
    }
}