

:root {
    --primary-color: var(--color-rank-1);
    --primary-dark: var(--color-rank-5);
    --primary-light: var(--color-rank-9);
    --secondary-color: var(--color-rank-11);
    --accent-color: var(--color-rank-12);
    --text-color: var(--color-rank-6);
    --text-light: var(--color-rank-3);
    --text-dark: var(--color-rank-4);
    --bg-light: var(--color-rank-7);
    --bg-purple: var(--color-rank-10);
    --white: var(--color-rank-2);
    --border-color: var(--color-rank-8);
    --shadow: 0 4px 6px -1px var(--color-rank-23), 0 2px 4px -1px var(--color-rank-36);
    --shadow-lg: 0 10px 15px -3px var(--color-rank-23), 0 4px 6px -2px var(--color-rank-37);
    --shadow-xl: 0 20px 25px -5px var(--color-rank-23), 0 10px 10px -5px var(--color-rank-38);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Merriweather', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: linear-gradient(135deg, var(--color-rank-7) 0%, var(--color-rank-10) 50%, var(--color-rank-13) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 28px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 28px;
    font-weight: 500;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.top-bar {
    background-color: var(--secondary-color);
    padding: 10px 0;
    font-size: 14px;
    color: var(--white);
    position: relative;
    z-index: 1000;
}

/* Desktop - top bar için glassmorphism efekti */
@media (min-width: 992px) {
    .top-bar {
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--color-rank-39);
        box-shadow: 0 10px 30px var(--color-rank-40);
    }
}

.top-bar a {
    color: var(--white);
    opacity: 0.9;
}

.top-bar a:hover {
    opacity: 1;
}

.top-bar .social-links a {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-rank-25);
    border-radius: 50%;
    margin-left: 5px;
}

.top-bar .social-links a:hover {
    background: var(--primary-color);
}

.main-navbar {
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.navbar-brand .brand-icon {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-right: 10px;
}

.navbar-brand:hover {
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px !important;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    all: unset;
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--primary-color);
}

.dropdown-menu {
    border: 1px solid var(--color-rank-24);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 10px 0;
    min-width: 200px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    display: block;
    transform: translateY(10px);
    transition: all 0.25s ease;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .navbar .dropdown > .dropdown-toggle::after {
        transition: transform 0.25s ease;
    }
    
    .navbar .dropdown:hover > .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}

/* Mobile dropdown - Bootstrap default */
@media (max-width: 991px) {
    .dropdown-menu {
        opacity: 1;
        visibility: visible;
        display: none;
        transform: none;
    }
    
    .dropdown-menu.show {
        display: block;
    }
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bg-purple);
    color: var(--primary-color);
}

.donate-btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
}

.offcanvas-header {
    border-bottom: 1px solid var(--border-color);
}

.offcanvas-title {
    display: flex;
    align-items: center;
}

.offcanvas-title .brand-icon {
    color: var(--primary-color);
    margin-right: 10px;
}


/* ========================================
   HERO SLIDER - RADICALLY MODERNIZED
   ======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, 
        var(--color-rank-10) 0%, 
        var(--color-rank-7) 30%, 
        var(--color-rank-52) 60%,
        var(--color-rank-13) 100%);
    overflow: hidden;
    padding-bottom: 0;
}

/* Decorative Background Elements */
.hero-decoration {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    top: -200px;
    right: -150px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--accent-color), var(--color-rank-17));
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.hero-shape-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-rank-18), var(--primary-color));
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

.hero-gradient-mesh {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, var(--color-rank-24) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--color-rank-30) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--color-rank-46) 0%, transparent 30%);
    opacity: 0.8;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 30px) scale(1.02); }
}

/* Slider Base */
.hero-slider {
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-slide {
    padding: 0px;
    min-height: calc(100vh - 150px);
    display: flex;
    align-items: center;
}

/* Content Area with Glassmorphism */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content-inner {
    background: var(--color-rank-27);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-29);
    border-radius: var(--radius-lg);
    padding: 45px 30px;
    box-shadow: 
        0 25px 50px -12px var(--color-rank-23),
        0 0 0 1px var(--color-rank-24) inset;
    position: relative;
    overflow: hidden;
    word-break: break-word;
}

.hero-content-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--primary-color), 
        var(--accent-color), 
        var(--primary-light),
        var(--primary-color));
    background-size: 200% 100%;
    animation: shimmerGradient 3s linear infinite;
}

@keyframes shimmerGradient {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--color-rank-30), var(--color-rank-46));
    border: 1px solid var(--color-rank-24);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease-out;
}

.hero-badge i {
    font-size: 0.75rem;
    animation: pulseStar 2s ease-in-out infinite;
}

@keyframes pulseStar {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Typography - Gradient Heading */
.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, 
        var(--text-dark) 0%, 
        var(--primary-color) 50%, 
        var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 0.6s ease-out 0.1s both;
    padding-top: 5px;
    padding-bottom: 5px;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 440px;
    line-height: 1.8;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Hero Button - Modern with Glow */
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 40px var(--color-rank-28),
        0 0 0 0 var(--color-rank-26);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--white) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.btn-hero-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 20px 50px var(--color-rank-32),
        0 0 30px var(--color-rank-26);
    color: var(--white);
}

.btn-hero-primary:hover::before {
    opacity: 0.15;
}

.btn-hero-primary i {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
    transform: translateX(5px);
}

/* Hero Image with Glow Frame */
.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-image-frame {
    position: relative;
    padding: 20px;
}

.hero-image-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--primary-color), 
        var(--accent-color), 
        var(--primary-light));
    border-radius: calc(var(--radius-lg) + 8px);
    opacity: 0.5;
    filter: blur(30px);
    animation: glowPulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.98); }
    50% { opacity: 0.7; transform: scale(1.02); }
}

.hero-image .main-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 
        0 30px 60px -15px var(--color-rank-23),
        0 0 0 1px var(--color-rank-29) inset;
    animation: imageFloat 6s ease-in-out infinite;
}

@keyframes imageFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0deg); }
}

.hero-image .main-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-image:hover .main-image img {
    transform: scale(1.05);
}

/* Image Decorations */
.hero-image-decoration {
    position: absolute;
    bottom: -30px;
    right: -30px;
    pointer-events: none;
}

.decoration-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
    margin-bottom: 10px;
}

.decoration-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-color);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px var(--accent-color); }
    50% { transform: scale(1.3); box-shadow: 0 0 30px var(--accent-color); }
}

/* Pagination - Modern Pill Style */
.hero-pagination-wrapper {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    z-index: 10;
}

.hero-slider .swiper-pagination {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.hero-slider .swiper-pagination-bullet {
    width: 40px;
    height: 6px;
    background: var(--color-rank-29);
    opacity: 1;
    margin: 0;
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-slider .swiper-pagination-bullet::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    width: 60px;
    height: 6px;
    background: transparent;
    box-shadow: 0 4px 15px var(--color-rank-28);
}

.hero-slider .swiper-pagination-bullet-active::before {
    transform: scaleX(1);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1200px) {
    .hero-content-inner {
        padding: 40px 35px;
    }
    
    .hero-shape-1 {
        width: 400px;
        height: 400px;
    }
    
    .hero-shape-2 {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
    }
    
    .hero-slide {
        padding: 100px 0 80px;
        min-height: auto;
    }
    
    .hero-slide .row {
        flex-direction: column-reverse;
    }
    
    .hero-content {
        margin-top: 40px;
    }
    
    .hero-content-inner {
        text-align: center;
        padding: 35px 30px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        margin: 0 auto 1.5rem;
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-badge {
        margin: 0 auto 20px;
    }
    
    .hero-image-frame {
        padding: 15px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-pagination-wrapper {
        bottom: 30px;
    }
    
    .hero-image-decoration {
        display: none;
    }
    
    .hero-shape {
        filter: blur(60px);
        opacity: 0.4;
    }
    
    html, body {
        overflow-x: hidden;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        padding: 80px 0 70px;
    }
    
    .hero-content-inner {
        padding: 30px 25px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-hero-primary {
        padding: 14px 28px;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-pagination-wrapper {
        bottom: 20px;
    }
    
    .hero-slider .swiper-pagination-bullet {
        width: 30px;
        height: 5px;
    }
    
    .hero-slider .swiper-pagination-bullet-active {
        width: 45px;
    }
}

@media (max-width: 576px) {
    .hero-slide {
        padding: 70px 0 60px;
    }
    
    .hero-content-inner {
        padding: 25px 20px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .hero-badge {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
    
    .hero-image-frame {
        padding: 10px;
    }
    
    .hero-image-glow {
        filter: blur(20px);
    }
    
    @keyframes imageFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
    }
}



.stats-section {
    padding: 40px 0;
    background: var(--color-rank-41);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--color-rank-24);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-item .stat-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.stat-item h3 {
    font-size: 2.5rem;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-item h3 sup {
    font-size: 1.2rem;
}

.stat-item p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.about-section {
    background-color: var(--white);
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.about-content .btn {
    margin-top: 1rem;
}

.projects-section {
    background-color: var(--bg-light);
}

.project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.project-card .card-image {
    position: relative;
    overflow: hidden;
}

.project-card .card-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .card-image img {
    transform: scale(1.1);
}

.project-card .card-body {
    padding: 25px;
}

.project-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.project-card .card-title a {
    color: var(--text-dark);
}

.project-card .card-title a:hover {
    color: var(--primary-color);
}

.project-card .card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.project-card .card-link {
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.project-card .card-link:hover {
    gap: 12px;
}

/* ========================================
   Video Banner - Modern Glassmorphism
   ======================================== */

.video-banner {
    position: relative;
    padding: 100px 0;
    background: transparent !important;
    overflow: hidden;
}

.video-banner .container {
    position: relative;
    z-index: 1;
}

.video-banner-content {
    background: var(--color-rank-42);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-29);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    box-shadow: 0 8px 32px var(--color-rank-30);
}

.video-banner h2 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-banner p {
    color: var(--text-color);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.play-btn {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 40px var(--color-rank-28);
}

.play-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.play-btn::after {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border: 1px solid var(--color-rank-26);
    border-radius: 50%;
    animation: pulse 2s infinite 0.5s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.play-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 15px 50px var(--color-rank-43);
}

.play-btn i {
    margin-left: 4px;
}

/* ========================================
   CTA Section - Modern Glassmorphism
   ======================================== */

.cta-section {
    padding: 80px 0;
    background: transparent !important;
    position: relative;
}

.cta-card {
    background: var(--color-rank-44);
    backdrop-filter: blur(20px);
    border: 1px solid var(--color-rank-29);
    border-radius: var(--radius-lg);
    padding: 50px 40px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color), var(--primary-light));
    opacity: 0;
    transition: var(--transition);
}

.cta-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--color-rank-31);
    background: var(--color-rank-45);
}

.cta-card:hover::before {
    opacity: 1;
}

.cta-card .icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--color-rank-30), var(--color-rank-46));
    border: 1px solid var(--color-rank-31);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.cta-card:hover .icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    transform: scale(1.1) rotate(5deg);
}

.cta-card .icon i {
    font-size: 2.2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: var(--transition);
}

.cta-card:hover .icon i {
    -webkit-text-fill-color: var(--white);
    background: none;
}

.cta-card h4 {
    margin-bottom: 15px;
    font-size: 1.4rem;
    color: var(--text-dark);
}

.cta-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.cta-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border: none;
    padding: 14px 32px;
    font-weight: 600;
    box-shadow: 0 8px 25px var(--color-rank-26);
}

.cta-card .btn-primary:hover {
    box-shadow: 0 12px 35px var(--color-rank-32);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .video-banner {
        padding: 60px 0;
    }
    
    .video-banner-content {
        padding: 40px 25px;
    }
    
    .video-banner h2 {
        font-size: 1.8rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-card {
        padding: 40px 30px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .video-banner-content {
        padding: 35px 20px;
    }
    
    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 1.2rem;
    }
    
    .video-banner h2 {
        font-size: 1.5rem;
    }
    
    .cta-card .icon {
        width: 70px;
        height: 70px;
    }
    
    .cta-card .icon i {
        font-size: 1.8rem;
    }
}


.gallery-section {
    background-color: var(--white);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 30px;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-rank-47);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .overlay i {
    font-size: 2rem;
    color: var(--white);
}

.faq-section {
    background-color: var(--bg-light);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius) !important;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    background: var(--color-rank-27);
    color: var(--text-dark);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    padding: 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.blog-section {
    background-color: var(--white);
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.blog-card .card-image {
    position: relative;
    overflow: hidden;
}

.blog-card .card-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .card-image img {
    transform: scale(1.1);
}

.blog-card .card-image .category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.blog-card .card-body {
    padding: 25px;
}

.blog-card .card-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-card .card-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.blog-card .card-title a {
    color: var(--text-dark);
}

.blog-card .card-title a:hover {
    color: var(--primary-color);
}

.blog-card .card-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.page-banner {
    position: relative;
    padding: 100px 0;
    background-size: cover;
    background-position: center;
}

.page-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-rank-48);
    backdrop-filter: blur(8px);
}

.page-banner .container {
    position: relative;
    z-index: 1;
}

.banner-title {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-banner .breadcrumb {
    background: transparent;
    margin-bottom: 0;
}

.page-banner .breadcrumb-item a {
    color: var(--color-rank-49);
}

.page-banner .breadcrumb-item a:hover {
    color: var(--white);
}

.page-banner .breadcrumb-item.active {
    color: var(--primary-light);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: var(--color-rank-50);
}

.footer-area {
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--white);
}

.footer-logo .brand-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-right: 10px;
}

.footer-logo:hover {
    color: var(--primary-light);
}

.footer-widget p {
    color: var(--color-rank-22);
}

.widget-title {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--white);
    font-family: var(--font-primary);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-rank-22);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    margin-bottom: 15px;
    color: var(--color-rank-22);
}

.footer-contact li i {
    color: var(--primary-light);
    margin-right: 15px;
    margin-top: 5px;
}

.footer-area .social-links a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-rank-25);
    border-radius: 50%;
    color: var(--white);
    margin-right: 10px;
    transition: var(--transition);
}

.footer-area .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--color-rank-25);
}

.footer-bottom p {
    color: var(--color-rank-22);
}

.footer-bottom-links a {
    color: var(--color-rank-22);
    margin-left: 20px;
}

.footer-bottom-links a:hover {
    color: var(--primary-light);
}

.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1040;
    box-shadow: var(--shadow-lg);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}


.editor-content {
    font-size: 1.05rem;
    line-height: 1.9;
}

.editor-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.editor-content h1, 
.editor-content h2, 
.editor-content h3, 
.editor-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.editor-content ul, 
.editor-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.editor-content li {
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.editor-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 20px 30px;
    margin: 2rem 0;
    background: var(--bg-light);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--text-light);
}

.editor-content img {
    border-radius: var(--radius);
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.sidebar-widget .widget-title {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.sidebar-widget .search-form {
    position: relative;
}

.sidebar-widget .search-form input {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    outline: none;
    transition: var(--transition);
}

.sidebar-widget .search-form input:focus {
    border-color: var(--primary-color);
}

.sidebar-widget .search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
}

.sidebar-widget .search-form button:hover {
    background: var(--primary-dark);
}

.sidebar-widget .category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget .category-list li {
    margin-bottom: 10px;
}

.sidebar-widget .category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--bg-light);
    border-radius: var(--radius);
    color: var(--text-color);
    transition: var(--transition);
}

.sidebar-widget .category-list a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.sidebar-widget .category-list a span {
    background: var(--primary-color);
    color: var(--white);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.sidebar-widget .category-list a:hover span {
    background: var(--white);
    color: var(--primary-color);
}

.sidebar-widget .recent-posts {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget .recent-posts li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget .recent-posts li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-widget .recent-posts .post-thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-widget .recent-posts .post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-widget .recent-posts .post-info h6 {
    font-size: 0.95rem;
    margin-bottom: 5px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.sidebar-widget .recent-posts .post-info h6 a {
    color: var(--text-dark);
}

.sidebar-widget .recent-posts .post-info h6 a:hover {
    color: var(--primary-color);
}

.sidebar-widget .recent-posts .post-info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

.pagination-wrapper {
    margin-top: 40px;
}

.pagination .page-link {
    border: none;
    padding: 12px 18px;
    margin: 0 5px;
    border-radius: var(--radius);
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.pagination .page-link:hover {
    background: var(--primary-color);
    color: var(--white);
}

.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: var(--white);
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .icon {
    width: 70px;
    height: 70px;
    background: var(--bg-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-info-card .icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-info-card h5 {
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.contact-info-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form .form-control {
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--color-rank-24);
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
    filter: grayscale(1);
}

.board-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.board-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.board-card .card-image {
    position: relative;
    overflow: hidden;
}

.board-card .card-image img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--transition);
}

.board-card:hover .card-image img {
    transform: scale(1.1);
}

.board-card .card-image .social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, var(--color-rank-51));
    display: flex;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: var(--transition);
}

.board-card:hover .card-image .social-overlay {
    opacity: 1;
}

.board-card .social-overlay a {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.board-card .social-overlay a:hover {
    background: var(--primary-color);
    color: var(--white);
}

.board-card .card-body {
    padding: 25px;
}

.board-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.board-card .card-subtitle {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.document-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 20px;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.document-card .doc-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-purple);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.document-card .doc-icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.document-card .doc-icon.pdf i {
    color: var(--color-rank-14);
}

.document-card .doc-icon.doc i {
    color: var(--color-rank-15);
}

.document-card .doc-icon.xls i {
    color: var(--color-rank-16);
}

.document-card .doc-info {
    flex-grow: 1;
}

.document-card .doc-info h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-primary);
    font-weight: 600;
}

.document-card .doc-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.document-card .doc-actions {
    display: flex;
    gap: 10px;
}

.document-card .doc-actions .btn {
    padding: 8px 15px;
    font-size: 0.85rem;
}

.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.category-filter a {
    padding: 10px 20px;
    background: var(--bg-light);
    border-radius: 30px;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.category-filter a:hover,
.category-filter a.active {
    background: var(--primary-color);
    color: var(--white);
}

.donation-form,
.volunteer-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.donation-form .form-control,
.donation-form .form-select,
.volunteer-form .form-control,
.volunteer-form .form-select {
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    margin-bottom: 20px;
    transition: var(--transition);
}

.donation-form .form-control:focus,
.donation-form .form-select:focus,
.volunteer-form .form-control:focus,
.volunteer-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--color-rank-24);
}

.donation-form textarea.form-control,
.volunteer-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.donation-form .form-label,
.volunteer-form .form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.donation-form .form-check,
.volunteer-form .form-check {
    margin-bottom: 10px;
}

.donation-form .form-check-label,
.volunteer-form .form-check-label {
    color: var(--text-color);
}

.bank-info {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 30px;
}

.bank-info h5 {
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.bank-info table {
    width: 100%;
}

.bank-info table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.bank-info table td:first-child {
    font-weight: 600;
    color: var(--text-dark);
    /*width: 40%;*/
}

.value-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px;
    text-align: center;
    box-shadow: var(--shadow);
    height: 100%;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card .icon {
    width: 70px;
    height: 70px;
    background: var(--bg-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-card .icon i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.value-card h5 {
    margin-bottom: 15px;
    font-family: var(--font-primary);
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.95rem;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: var(--shadow);
}

.timeline-item .year {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-item h5 {
    margin-bottom: 10px;
    font-family: var(--font-primary);
}

.timeline-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.related-posts {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--border-color);
}

.project-detail-gallery {
    margin-bottom: 30px;
}

.project-detail-gallery .main-image {
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 15px;
}

.project-detail-gallery .main-image img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

.project-detail-gallery .thumb-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.project-detail-gallery .thumb-images a {
    border-radius: var(--radius);
    overflow: hidden;
}

.project-detail-gallery .thumb-images img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: var(--transition);
}

.project-detail-gallery .thumb-images a:hover img {
    transform: scale(1.1);
}

.project-info-box {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 30px;
}

.project-info-box h5 {
    margin-bottom: 20px;
    font-family: var(--font-primary);
}

.project-info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.project-info-box ul li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.project-info-box ul li:last-child {
    border-bottom: none;
}

.project-info-box ul li span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.project-info-box ul li span:last-child {
    color: var(--text-light);
}

@media (max-width: 991px) {
    .section-title {
        font-size: 2rem;
    }
    .banner-title {
        font-size: 2.2rem;
    }

    .nav-link.active::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .stat-item h3 {
        font-size: 2rem;
    }
    .document-card {
        flex-direction: column;
        text-align: center;
    }
    .document-card .doc-actions {
        width: 100%;
        justify-content: center;
    }
}


/* ===================================
   Floating Background Orbs
   =================================== */

/* ========================================
   Floating Orbs Background Animation
   ======================================== */

.floating-orbs-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    opacity: 0.2;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--color-rank-1), var(--color-rank-9));
    top: 5%;
    left: 5%;
    animation: float-1 20s ease-in-out infinite alternate;
}

.orb-2 {
    width: 450px;
    height: 450px;
    background: linear-gradient(135deg, var(--color-rank-12), var(--color-rank-17));
    top: 45%;
    right: 5%;
    animation: float-2 25s ease-in-out infinite alternate;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--color-rank-18), var(--color-rank-19));
    bottom: 10%;
    left: 15%;
    animation: float-3 22s ease-in-out infinite alternate;
}

@keyframes float-1 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(100px, -80px) scale(1.1);
    }
    50% {
        transform: translate(200px, 50px) scale(0.9);
    }
    75% {
        transform: translate(50px, 120px) scale(1.05);
    }
    100% {
        transform: translate(-80px, -50px) scale(1);
    }
}

@keyframes float-2 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(-120px, 100px) scale(0.9);
    }
    50% {
        transform: translate(-200px, -60px) scale(1.1);
    }
    75% {
        transform: translate(-80px, -130px) scale(0.95);
    }
    100% {
        transform: translate(100px, 70px) scale(1);
    }
}

@keyframes float-3 {
    0% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(150px, 90px) scale(1.05);
    }
    50% {
        transform: translate(-100px, -100px) scale(0.95);
    }
    75% {
        transform: translate(180px, -70px) scale(1.1);
    }
    100% {
        transform: translate(-120px, 80px) scale(1);
    }
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    .orb-1 {
        width: 280px;
        height: 280px;
        filter: blur(50px);
    }
    
    .orb-2 {
        width: 250px;
        height: 250px;
        filter: blur(50px);
    }
    
    .orb-3 {
        width: 220px;
        height: 220px;
        filter: blur(50px);
    }
}

/* Performans optimizasyonu */
@media (prefers-reduced-motion: reduce) {
    .orb {
        animation: none;
    }
}

/* Z-index düzenlemeleri */
.header-area {
    position: relative;
    z-index: 1000;
    background: transparent;
}

.main-navbar {
    position: relative;
    z-index: 1050;
}

.main-navbar.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.dropdown-menu {
    z-index: 1060;
}

.hero-section,
section,
.footer-area {
    position: relative;
    z-index: 1;
    background: transparent;
}

/* Glassmorphism arka planlar */
.hero-section {
    background: var(--color-rank-52) !important;
}

.projects-section,
.faq-section {
    background: var(--color-rank-53) !important;
    background:transparent !important;
}

.about-section,
.gallery-section,
.blog-section {
    background: var(--color-rank-33) !important;
    background:transparent !important;
}



.footer-area {
    background: var(--color-rank-54) !important;
}

.stats-section {
    background: var(--color-rank-33) !important;
    background:transparent !important;
}

/* Kartlar için glassmorphism */
.project-card,
.blog-card,
.board-card,
.cta-card,
.contact-info-card,
.document-card {
    background: var(--color-rank-27);
    backdrop-filter: blur(10px);
}

.sidebar-widget,
.contact-form,
.donation-form,
.volunteer-form {
    background: var(--color-rank-27);
    backdrop-filter: blur(10px);
}

/* Navbar glassmorphism */
@media (min-width: 992px) {
    .main-navbar {
        background: radial-gradient(circle at top left, var(--color-rank-32), transparent 40%),
                    radial-gradient(circle at top right, var(--color-rank-34), transparent 55%);
        background-color: var(--color-rank-35);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }


}

.main-navbar {
    background: transparent;
    backdrop-filter: blur(15px);
}

.main-navbar.sticky {
    background: radial-gradient(circle at top left, var(--color-rank-55), transparent 40%),
                    radial-gradient(circle at top right, var(--color-rank-34), transparent 55%);
        background-color: var(--color-rank-35);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
}

.dropdown-menu {
    background: var(--color-rank-56);
    backdrop-filter: blur(15px);
}

/* Offcanvas ve modal z-index */
.offcanvas {
    z-index: 1080;
}

.modal {
    z-index: 1090;
}


.make-sticky {
    position: sticky;
    top: 120px;
}


/* whatsapp-Ã§errez */

.whatsapp-button {
    position: fixed;

    left: 20px;

    bottom: 20px;

    z-index: 999;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */
}

.whatsapp-button a {
    display: block;
}

.whatsapp-button img {
    width: 60px;

    /* Ä°kon boyutunu ayarlayabilirsiniz */

    height: 60px;

    border-radius: 50%;

    /* Yuvarlak gÃ¶rÃ¼nÃ¼m iÃ§in */

    box-shadow: 2px 2px 8px var(--color-rank-57);

    /* Hafif gÃ¶lge */

    transition: transform 0.3s ease-in-out;

    /* Hover efekti iÃ§in geÃ§iÅŸ */
}

.whatsapp-button img:hover {
    transform: scale(1.1);

    /* Hoverda hafif bÃ¼yÃ¼me efekti */
}

/* Ã§erez bandÄ± */

.cookie-banner {
    position: fixed;

    left: 0;

    bottom: 0;

    width: 100%;

    background-color: #f8f8f8ef;

    color: var(--color-rank-20);

    padding: 15px 20px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    z-index: 1000;

    /* DiÄŸer elementlerin Ã¼zerinde gÃ¶rÃ¼nmesini saÄŸlar */

    box-shadow: 0 -2px 5px var(--color-rank-23);

    transform: translateY(100%);

    /* BaÅŸlangÄ±Ã§ta aÅŸaÄŸÄ± kaydÄ±rarak gizle */

    opacity: 0;

    /* GÃ¶rÃ¼nÃ¼rlÃ¼ÄŸÃ¼ de sÄ±fÄ±ra indir */

    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;

    /* OpaklÄ±k geÃ§iÅŸini de ekle */
}

.cookie-banner.show {
    transform: translateY(0);

    /* GÃ¶stermek iÃ§in yukarÄ± kaydÄ±r */

    opacity: 1;

    /* GÃ¶rÃ¼nÃ¼r yap */
}

.cookie-banner.hidden {
    transform: translateY(100%);

    opacity: 0;
}

.cookie-text {
    font-size: 16px;
}

.cookie-link {
    color: var(--primary-color);

    text-decoration: none;

    margin-left: 10px;
}

.cookie-link:hover {
    text-decoration: underline;
}

.cookie-button {
    background-color: var(--primary-color);

    color: white;

    border: none;

    padding: 5px 15px;

    border-radius: 5px;

    cursor: pointer;

    font-size: 16px;

    transition: background-color 0.3s ease-in-out;
}

.cookie-button:hover {
    background-color: var(--primary-color);
    color: var(--color-rank-2);
}

/* Responsive TasarÄ±m */

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;

        align-items: stretch;

        padding: 10px;

        text-align: center;
    }

    .cookie-text {
        margin-bottom: 10px;
    }

    .cookie-link {
        display: block;

        margin: 5px 0;
    }

    .cookie-button {
        width: 100%;
    }
}

/* Ã§erez bandÄ± */

/* whatsapp-Ã§errez */

/* formlarla */

.swal2-container {
    z-index: 99999999999 !important;
}

.swal2-container .select2-container {
    display: none;
}

.zorunlu-alanlar {
    display: flex;

    gap: 10px;

    flex-direction: column;
}

.zorunlu-alanlar span {
    color: var(--color-rank-21);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-2);
    background-color: var(--primary-color);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-2);

    border-top: 2px solid transparent;

    border-radius: 50%;

    animation: spin 0.8s linear infinite;

    margin-left: 8px;

    vertical-align: middle;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.document-card .doc-actions {
        flex-direction: column;
    min-width: 168px;
}

.pagination .page-link {
    width: 50px;
    text-align: center;
}

.no-results {
    background: var(--white);
    border-radius: var(--radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}

.category-list li.active > a {
    color: var(--primary-color);
    font-weight: 600;
    background: var(--bg-light);
    border-radius: 6px;
}
.badge {
    background: var(--bg-light);
    color: var(--text-color) !important;
    border-radius: 6px;
    padding: 9px 14px;
    font-size: 0.8rem;
    font-weight: 500;
    transition: var(--transition);
    box-shadow: var(--shadow);
    line-height: 1;
    border: 1px solid var(--border-color);
}
.badge:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    border-color: var(--primary-color);
}

.project-detail-thumbs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 15px;
}

.project-detail-thumbs .thumb {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition);
}
.project-detail-thumbs .thumb:hover,
.project-detail-thumbs .thumb.active {
  opacity: 1;
}

.project-detail-thumbs .thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.volunteer-form h4, .donation-form h4, .contact-form h4 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--primary-color);
    font-family: var(--font-heading);
    text-transform: none;
    letter-spacing: 0.015em;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 6px 18px var(--color-rank-58));
    border-radius: 12px;
    padding: 0.3em 0;
    transition: color 0.2s;
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .donate-btn {
        font-size: 14px;
        min-width: 135px;
        padding: 10px 12px;
    }
}

.custom-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    margin: 0 auto;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    background-color: var(--primary-color);
}
