

:root {
  --primary-color: var(--color-rank-2);
  --primary-dark: var(--color-rank-9);
  --secondary-color: var(--color-rank-4);
  --accent-color: var(--color-rank-11);
  --text-dark: var(--color-rank-3);
  --text-light: var(--color-rank-10);
  --text-muted: var(--color-rank-6);
  --bg-light: var(--color-rank-5);
  --bg-cream: var(--color-rank-8);
  --bg-white: var(--color-rank-1);
  --border-color: var(--color-rank-7);
  --font-heading: 'Lora', serif;
  --font-body: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}
 
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--bg-cream);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

.section-padding {
  padding: 80px 0;
}

.section-title-sm {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--color-rank-1);
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 30px;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--color-rank-1);
}

.btn-outline-primary {
  border-color: var(--text-dark);
  color: var(--text-dark);
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 30px;
}

.btn-outline-primary:hover {
  background-color: var(--text-dark);
  border-color: var(--text-dark);
  color: var(--bg-white);
}

.btn-outline-dark {
  border-color: var(--text-dark);
  color: var(--text-dark);
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 30px;
}

.btn-outline-dark:hover {
  background-color: var(--text-dark);
  color: var(--bg-white);
}

.navbar {
  background-color: var(--bg-white);
  padding: 15px 0;
  transition: var(--transition);
  box-shadow: none;
}

.navbar.scrolled {
  box-shadow: 0 2px 20px var(--color-rank-23);
  padding: 10px 0;
}

.navbar-brand .logo-text {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
}

.navbar-nav .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 8px 16px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-color);
}

.dropdown-menu {
  border: none;
  box-shadow: 0 10px 30px var(--color-rank-23);
  border-radius: 8px;
  padding: 10px 0;
}

.dropdown-item {
  font-size: 14px;
  padding: 8px 20px;
}

.dropdown-item:hover {
  background-color: var(--bg-light);
  color: var(--primary-color);
}

.btn-donate {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--color-rank-1);
}

.btn-donate:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--color-rank-1);
}

.lang-dropdown .btn-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
}

.offcanvas {
  max-width: 300px;
}

.offcanvas-header {
  border-bottom: 1px solid var(--border-color);
}

.offcanvas-body .nav-link {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.hero-section {
  position: relative;
  background-color: var(--bg-cream);
  overflow: hidden;
  min-height: 100vh;
  padding-top: 80px;
}

.hero-slider {
  height: calc(100vh - 80px);
}

.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 30px;
  max-width: 400px;
}

.hero-image-wrapper {
  position: relative;
  margin-left: auto;
  padding-top: 40px;
}

.hero-circle-small {
  position: absolute;
  top: 0;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  z-index: 0;
}

.hero-image {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  border: 8px solid var(--primary-color);
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  height: auto;
}

.hero-badge {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  color: var(--color-rank-1);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 10px 30px var(--color-rank-25);
}

.hero-badge .number {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.hero-badge .text {
  font-size: 11px;
  text-transform: uppercase;
}

.hero-triangle {
  position: absolute;
  bottom: -80px;
  right: -100px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 280px 280px;
  border-color: transparent transparent var(--accent-color) transparent;
  z-index: 0;
}

/* Hero Dekoratif Şekiller - Dark Tonlar */
.hero-deco {
  position: absolute;
  z-index: 0;
}

.hero-deco-ring {
  top: -20px;
  left: -40px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-rank-29);
  border-radius: 50%;
}

.hero-deco-ring::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 90px;
  height: 90px;
  border: 2px dashed var(--color-rank-30);
  border-radius: 50%;
}

.hero-deco-dots {
  bottom: 60px;
  left: -60px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, var(--color-rank-26) 2px, transparent 2px);
  background-size: 12px 12px;
}

.hero-deco-line {
  top: 50%;
  right: -30px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-rank-39), transparent);
  transform: translateY(-50%);
}

.hero-deco-line::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-rank-26), transparent);
}

.hero-deco-line::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 10px;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-rank-29), transparent);
}

.hero-deco-square {
  top: 30%;
  left: -25px;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-rank-26);
  transform: rotate(45deg);
}

.hero-deco-square::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 20px;
  width: 12px;
  height: 12px;
  background-color: var(--color-rank-30);
  transform: rotate(0deg);
}

.hero-shape {
  position: absolute;
}

.hero-shape-1 {
  width: 300px;
  height: 300px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 10%;
  right: 5%;
  opacity: 0.8;
}

.hero-shape-2 {
  width: 150px;
  height: 150px;
  background-color: var(--accent-color);
  border-radius: 50%;
  bottom: 20%;
  left: 45%;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--text-dark);
  opacity: 0.3;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--primary-color);
}
.features-section {
  background-color: var(--bg-white);
}

.features-text {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 700;
  color: var(--text-dark);
}

.stat-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 5px;
}

.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.volunteer-section {
  background-color: var(--bg-cream);
  position: relative;
  overflow: hidden;
}

.volunteer-content {
  padding-right: 50px;
}

.volunteer-image-wrapper {
  position: relative;
}

.volunteer-image {
  position: relative;
  z-index: 2;
}

.volunteer-image img {
  border-radius: 20px;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.volunteer-shape-1 {
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: var(--accent-color);
  border-radius: 50%;
  bottom: -20px;
  left: -20px;
  z-index: 1;
}

.volunteer-shape-2 {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 20px;
  right: -20px;
  z-index: 3;
}

.services-section {
  background-color: var(--bg-white);
}

.service-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 30px;
  transition: var(--transition);
  height: 100%;
}

.service-card:hover {
  box-shadow: 0 10px 40px var(--color-rank-23);
  transform: translateY(-5px);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card h4 {
  font-size: 20px;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.gallery-section {
  background-color: var(--bg-cream);
}

.gallery-wrapper {
  position: relative;
}

.gallery-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.gallery-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.gallery-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rank-1);
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.gallery-thumb {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-thumb:hover {
  transform: scale(1.05);
}

.gallery-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}
.cta-section {
  background-color: var(--secondary-color);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-section-light {
  background-color: var(--bg-light);
}

.cta-section-light .cta-shape {
  background-color: var(--color-rank-40);
}

.cta-section-light .cta-card {
  background: var(--bg-light);
  border-color: var(--border-color);
  box-shadow: 0 14px 30px var(--color-rank-31);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.cta-section-light .cta-card-alt {
  background: var(--bg-white);
  border-color: var(--color-rank-41);
}

.cta-section-light .cta-card-icon {
  background: var(--bg-white);
  color: var(--primary-color);
  box-shadow: 0 8px 20px var(--color-rank-32);
}

.cta-section-light .cta-card-title {
  color: var(--text-dark);
}

.cta-section-light .cta-card-text {
  color: var(--text-light);
}

.cta-section-light .cta-card .btn.btn-outline-light {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.cta-section-light .cta-card .btn.btn-outline-light:hover {
  background-color: var(--secondary-color);
  color: var(--color-rank-1);
}

.cta-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: var(--color-rank-33);
}

.cta-shape-1 {
  top: -50px;
  right: 10%;
}

.cta-shape-2 {
  bottom: -80px;
  left: 20%;
  width: 300px;
  height: 300px;
}

.cta-content h2 {
  color: var(--bg-white);
  font-size: 42px;
  margin-bottom: 15px;
}

.cta-content p {
  color: var(--color-rank-24);
  margin-bottom: 30px;
}

.cta-buttons .btn {
  margin: 5px;
}

.cta-buttons .btn-light {
  background-color: var(--bg-white);
  color: var(--text-dark);
  border: none;
}

.cta-buttons .btn-outline-light {
  border-color: var(--bg-white);
  color: var(--bg-white);
}

.cta-buttons .btn-outline-light:hover {
  background-color: var(--bg-white);
  color: var(--text-dark);
}
.events-section {
  background-color: var(--bg-white);
}

.event-card {
  display: flex;
  align-items: center;
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px var(--color-rank-34);
  transition: var(--transition);
}

.event-card:hover {
  box-shadow: 0 10px 30px var(--color-rank-23);
}

.event-image {
  width: 120px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
  position: relative;
}

.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-badge {
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: var(--secondary-color);
  color: var(--color-rank-1);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
}

.event-content {
  flex: 1;
}

.event-content h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.event-content .date {
  font-size: 13px;
  color: var(--text-muted);
}

.event-btn {
  flex-shrink: 0;
}

.team-section {
  background-color: var(--bg-cream);
}

.team-card {
  text-align: center;
  margin-bottom: 30px;
}

.team-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 1/1;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h5 {
  font-size: 18px;
  margin-bottom: 5px;
}

.team-card .position {
  font-size: 14px;
  color: var(--text-muted);
}

.team-card .divider {
  width: 40px;
  height: 3px;
  background-color: var(--text-dark);
  margin: 10px auto 0;
}

.testimonial-section {
  background-color: var(--bg-white);
}

.testimonial-card {
  text-align: center;
  padding: 40px;
}

.testimonial-quote {
  font-size: 60px;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.testimonial-avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--bg-white);
  margin: 0 -5px;
  object-fit: cover;
}

.testimonial-avatars img.active {
  border-color: var(--primary-color);
  transform: scale(1.2);
  z-index: 1;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 600;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.testimonial-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-nav button:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}
/* ========== Blog Kartları ========== */
.blog-section {
  background-color: var(--bg-white);
}

.blog-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--color-rank-35);
}

.blog-card:hover {
  box-shadow: 0 20px 50px var(--color-rank-27);
  transform: translateY(-8px);
  border-color: transparent;
}

.blog-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}

.blog-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 50%, var(--color-rank-23) 100%);
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

.blog-card:hover .blog-image::before {
  opacity: 1;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.08);
}

.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--secondary-color);
  color: var(--color-rank-1);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.blog-content {
  padding: 24px;
}

.blog-content h5 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
  font-weight: 600;
}

.blog-content h5 a {
  color: var(--text-dark);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-content h5 a:hover {
  color: var(--primary-color);
}

.blog-content .date {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-content .date::before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: var(--primary-color);
  border-radius: 50%;
}
.newsletter-section {
  background-color: var(--bg-white);
  padding: 60px 0;
}

.newsletter-box {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 40px;
}

.newsletter-box h4 {
  font-size: 24px;
  margin-bottom: 10px;
}

.newsletter-box p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.newsletter-form .form-control {
  border-radius: 30px;
  padding: 12px 20px;
  border: 1px solid var(--border-color);
}

.newsletter-form .btn {
  border-radius: 30px;
  padding: 12px 30px;
}

.partners-section {
  background-color: var(--bg-cream);
  padding: 60px 0;
}

.partner-logo {
  height: 40px;
  opacity: 0.6;
  transition: var(--transition);
  filter: grayscale(100%);
}

.partner-logo:hover {
  opacity: 1;
  filter: grayscale(0);
}

.contact-info-section {
  background-color: var(--bg-light);
  padding: 60px 0;
}

.contact-info-card {
  display: flex;
  align-items: center;
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 25px;
  height: 100%;
}

.contact-info-card .icon-box {
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rank-1);
  font-size: 20px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-info-card .info-content .label {
  font-size: 13px;
  color: var(--text-muted);
  display: block;
  margin-bottom: 5px;
}

.contact-info-card .info-content a,
.contact-info-card .info-content p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0;
}

.contact-info-card .info-content a:hover {
  color: var(--primary-color);
}

.footer-area {
  background-color: var(--secondary-color);
  padding-top: 60px;
}

.footer-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--bg-white);
}

.footer-desc {
  color: var(--color-rank-24);
  margin: 20px 0;
  font-size: 14px;
}

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background-color: var(--color-rank-36);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--color-rank-1);
  margin-right: 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: var(--color-rank-1);
}

.widget-title {
  font-size: 18px;
  color: var(--bg-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--color-rank-24);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--bg-white);
}

.footer-widget p {
  color: var(--color-rank-24);
  font-size: 14px;
  margin-bottom: 15px;
}

.footer-bottom {
  border-top: 1px solid var(--color-rank-37);
  padding: 20px 0;
  margin-top: 40px;
}

.copyright {
  color: var(--color-rank-24);
  font-size: 14px;
  margin: 0;
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom-links a {
  color: var(--color-rank-24);
  font-size: 14px;
}

.footer-bottom-links a:hover {
  color: var(--bg-white);
}
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-color);
  border: none;
  border-radius: 50%;
  color: var(--color-rank-1);
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 5px 20px var(--color-rank-28);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--primary-color);
  transform: translateY(-5px);
}

.badge-primary {
  display: inline-block;
  background: linear-gradient(90deg, var(--primary-color) 40%, var(--primary-dark) 100%);
  color: var(--color-rank-1);
  padding: 4.5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px var(--color-rank-42);
  transition: background 0.25s, color 0.15s, box-shadow 0.2s;
  border: none;
  text-transform: uppercase;
}

.badge-primary:hover, 
.badge-primary:focus {
  background: linear-gradient(90deg, var(--primary-dark) 30%, var(--primary-color) 100%);
  color: var(--color-rank-1);
  box-shadow: 0 4px 16px var(--color-rank-43);
  text-decoration: none;
  outline: none;
}

.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 150px 0 80px;
  margin-top: 100px;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--color-rank-44), var(--color-rank-45));
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.banner-title {
  font-size: 48px;
  color: var(--bg-white);
  margin-bottom: 15px;
}

.breadcrumb {
  justify-content: center;
  margin: 0;
}

.breadcrumb-item a {
  color: var(--color-rank-24);
}

.breadcrumb-item a:hover {
  color: var(--bg-white);
}

.breadcrumb-item.active {
  color: var(--bg-white);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: var(--color-rank-46);
}



.editor-content p {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-light);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.editor-content h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.editor-content h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.editor-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.editor-content h4 {
  font-size: 20px;
  margin-bottom: 12px;
}

.editor-content ul,
.editor-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.editor-content li {
  margin-bottom: 10px;
  color: var(--text-light);
}

.editor-content blockquote {
  border-left: 4px solid var(--primary-color);
  padding: 20px 30px;
  background-color: var(--bg-light);
  margin: 30px 0;
  font-style: italic;
}

.editor-content img {
  border-radius: 12px;
  margin: 20px 0;
}

.sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-widget {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
}

.sidebar-widget h5 {
  font-size: 18px;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.search-form .input-group {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
}

.search-form .form-control {
  border: none;
  padding: 12px 15px;
}

.search-form .btn {
  border: none;
  background-color: var(--secondary-color);
  color: var(--color-rank-1);
  padding: 12px 20px;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.category-list li {
  border: none;
  background: var(--bg-light);
  border-radius: 8px;
  transition: box-shadow 0.2s, background 0.2s;
  box-shadow: 0 2px 8px var(--color-rank-47);
  overflow: hidden;
}

.category-list li.active,
.category-list li:hover {
  background: linear-gradient(90deg, var(--secondary-color) 0%, var(--primary-color) 100%);
  box-shadow: 0 4px 12px var(--color-rank-48);
}

.category-list a {
  display: flex;
  align-items: center;
  color: var(--text-dark);
  padding: 13px 20px;
  font-weight: 500;
  font-size: 15px;
  border-radius: 8px;
  transition: color 0.2s;
  text-decoration: none;
}

.category-list li.active a,
.category-list a:hover {
  color: var(--color-rank-1);
}

.category-list a::after {
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  margin-left: auto;
  transition: transform 0.2s;
  color: inherit;
}

.category-list a:hover::after,
.category-list li.active a::after {
  transform: translateX(4px) scale(1.1);
}

@media (max-width: 575px) {
  .category-list a {
    padding: 11px 14px;
    font-size: 14px;
  }
}



.recent-post {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-color);
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-image {
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 15px;
}

.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h6 {
  font-size: 14px;
  margin-bottom: 5px;
  line-height: 1.4;
}

.recent-post-content h6 a:hover {
  color: var(--primary-color);
}

.recent-post-content .date {
  font-size: 12px;
  color: var(--text-muted);
}
/* ========== Proje Kartları ========== */
.project-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  border: 1px solid var(--color-rank-35);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  box-shadow: 0 20px 50px var(--color-rank-27);
  transform: translateY(-8px);
  border-color: transparent;
}

.project-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: block;
}

.project-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, var(--color-rank-25) 100%);
  z-index: 1;
  opacity: 0;
  transition: var(--transition);
}

.project-card:hover .project-image::before {
  opacity: 1;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.08);
}

.project-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary-color);
  color: var(--color-rank-1);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
}

.project-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content h5 {
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.4;
  font-weight: 600;
}

.project-content h5 a {
  color: var(--text-dark);

}

.project-content h5 a:hover {
  color: var(--primary-color);
}

.project-content p {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 15px;
  line-height: 1.6;
  flex: 1;
}

.project-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-muted);
  padding-top: 15px;
  border-top: 1px solid var(--border-color);
  margin-top: auto;
}

.project-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-meta i {
  color: var(--primary-color);
  font-size: 11px;
}

.pagination {
  justify-content: center;
  margin-top: 40px;
}

.pagination .page-link {
  border: none;
  color: var(--text-dark);
  padding: 10px 18px;
  margin: 0 5px;
  border-radius: 8px;
}

.pagination .page-link:hover {
  background-color: var(--bg-light);
}

.pagination .page-item.active .page-link {
  background-color: var(--secondary-color);
  color: var(--color-rank-1);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1/1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-rank-49);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: var(--color-rank-1);
  font-size: 30px;
}

.board-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  padding: 30px;
  transition: var(--transition);
  height: 100%;
}

.board-card:hover {
  box-shadow: 0 10px 40px var(--color-rank-23);
  transform: translateY(-5px);
}

.board-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.board-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-card h5 {
  font-size: 20px;
  margin-bottom: 5px;
}

.board-card .position {
  font-size: 14px;
  color: var(--text-muted);
}

.document-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.document-card:hover {
  box-shadow: 0 10px 30px var(--color-rank-23);
}

.document-icon {
  width: 50px;
  height: 50px;
  background-color: var(--bg-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 20px;
  flex-shrink: 0;
}

.document-content {
  flex: 1;
}

.document-content h5 {
  font-size: 18px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn:active, .btn:focus-visible, .btn:focus, .btn:disabled {
  background-color: var(--color-rank-12) !important;
  color: var(--color-rank-1) !important;
  border-color: var(--color-rank-12) !important;
}

.img-4-3 {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.document-content p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.document-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.contact-form-section {
  background-color: var(--bg-white);
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 8px;
  padding: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem var(--color-rank-50);
}

.contact-form textarea {
  min-height: 150px;
}

.map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.accordion-item {
  border: none;
  margin-bottom: 15px;
  border-radius: 12px !important;
  overflow: hidden;
}

.accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  background-color: var(--bg-white);
  box-shadow: 0 2px 10px var(--color-rank-34);
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary-color);
  color: var(--color-rank-1);
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-body {
  padding: 20px 25px;
  background-color: var(--bg-white);
}

.donation-form,
.volunteer-form {
  background-color: var(--bg-light) !important;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px var(--color-rank-23);
}

.donation-form h4,
.volunteer-form h4 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: -1.5px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
          background-clip: text;
          text-fill-color: transparent;
  text-align: center;
  border-radius: 8px;
  padding: 0.25em 0;
  /* box-shadow: 0 4px 30px var(--color-rank-51); */
}


.bank-info {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 20px;
}

.bank-info h5 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.bank-info p {
  margin-bottom: 8px;
  font-size: 14px;
      display: flex
;
    align-items: center;
    gap: 5px;
}

.bank-info strong {
  color: var(--text-dark);
}

.btn-outline-iban {
  background-color: var(--color-rank-1);
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  padding: 4px 20px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 18px var(--color-rank-52);
  transition: 
    background 0.2s,
    color 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}

.btn-outline-iban:hover,
.btn-outline-iban:focus {
  background-color: var(--primary-color);
  color: var(--color-rank-1);
  border-color: var(--primary-color);
  box-shadow: 0 8px 24px var(--color-rank-53);
  text-decoration: none;
}


.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.category-tabs .btn {
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
}

.category-tabs .btn.active {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--color-rank-1);
}

.about-history {
  background-color: var(--bg-white);
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.vision-mission {
  background-color: var(--bg-cream);
}

.vm-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 40px;
  height: 100%;
}

.vm-card .icon {
  width: 60px;
  height: 60px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rank-1);
  font-size: 24px;
  margin-bottom: 20px;
}

.vm-card h4 {
  font-size: 24px;
  margin-bottom: 15px;
}

.values-section {
  background-color: var(--bg-white);
}

.value-item {
  text-align: center;
  padding: 30px;
}

.value-item .icon {
  width: 80px;
  height: 80px;
  background-color: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 32px;
  color: var(--primary-color);
}

.value-item h5 {
  font-size: 18px;
  margin-bottom: 10px;
}

.value-item p {
  font-size: 14px;
  color: var(--text-light);
}

.project-detail-gallery {
  margin-bottom: 40px;
}

.project-detail-main {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 15px;
}

.project-detail-main img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.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: 100px;
  object-fit: cover;
}

/* Project detail page - sidebar slider modern & stylish uyumu */
.project-detail-page .sidebar-widget {
  background: linear-gradient(120deg, var(--bg-light) 70%, var(--primary-color) 160%);
  box-shadow: 0 6px 24px var(--color-rank-54);
  border-radius: 16px;
  padding: 28px 22px 24px 22px;
  transition: box-shadow .3s;
}

.project-detail-page .sidebar-widget h5 {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary-color);
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: .5px;
}

.project-detail-page .sidebar-project-slider {
  padding-bottom: 0px;
}

.project-detail-page .sidebar-project-slider .swiper-pagination {
  position: static;
  margin-top: 14px;
  text-align: center;
  --swiper-pagination-color: var(--primary-color);
  --swiper-pagination-bullet-size: 10px;
}
.project-detail-page .sidebar-project-slider .swiper-pagination .swiper-pagination-bullet {
  background: var(--secondary-color);
  opacity: 0.45;
  transition: all .2s;
  margin: 0 3px;
}
.project-detail-page .sidebar-project-slider .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
  opacity: 1;
  transform: scale(1.15);
}

.project-detail-page .project-card:hover {
  transform: none;
  box-shadow: none;
}


.project-info-box {
  background-color: var(--bg-light);
  border-radius: 12px;
  padding: 30px;
  margin-bottom: 30px;
}

.project-info-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
}

.project-info-item:last-child {
  border-bottom: none;
}

.project-info-item .label {
  color: var(--text-muted);
}

.project-info-item .value {
  font-weight: 600;
}

.related-projects h4 {
  font-size: 24px;
  margin-bottom: 30px;
}

.blog-detail-image {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 30px;
}

.blog-detail-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
}

.blog-meta i {
  margin-right: 5px;
  color: var(--primary-color);
}

.related-posts h4 {
  font-size: 24px;
  margin-bottom: 30px;
}

.form-check-label {
  font-size: 14px;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: var(--color-rank-13);
}

.invalid-feedback {
  font-size: 13px;
}
@media (max-width: 1199px) {
  .hero-title {
    font-size: 46px;
  }
  .section-title {
    font-size: 36px;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 36px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .navbar-collapse {
    display: none !important;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Hero Tablet - Görsel Üstte, Yazı Altta */
  .hero-section {
    min-height: auto;
    padding: 90px 0 40px;
  }
  .hero-slider {
    height: auto;
  }
  .hero-slide {
    padding: 20px 0;
  }
  .hero-slide .row {
    flex-direction: column-reverse;
  }
  .hero-slide .col-lg-6 {
    width: 100%;
  }

  /* Hero İçerik Tablet */
  .hero-content {
    text-align: center;
    margin-bottom: 0;
    padding-top: 60px;
  }
  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  /* Hero Görsel Tablet */
  .hero-image-wrapper {
    max-width: 320px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .hero-image {
    width: 300px;
    height: 300px;
    box-shadow: 0 15px 50px var(--color-rank-27);
  }
  .hero-triangle {
    right: -40px;
    bottom: -40px;
    border-width: 0 0 180px 180px;
    opacity: 0.85;
  }
  .hero-badge {
    width: 75px;
    height: 75px;
    top: 5px;
    box-shadow: 0 8px 25px var(--color-rank-28);
  }
  .hero-badge .number {
    font-size: 22px;
  }
  .hero-badge .text {
    font-size: 9px;
  }

  /* Dekoratif Şekiller Tablet */
  .hero-deco-ring {
    width: 90px;
    height: 90px;
    left: -25px;
    top: -10px;
    border-width: 3px;
  }
  .hero-deco-ring::before {
    width: 60px;
    height: 60px;
    top: 12px;
    left: 12px;
  }
  .hero-deco-dots {
    width: 60px;
    height: 60px;
    left: -35px;
    bottom: 40px;
  }
  .hero-deco-line {
    width: 45px;
    right: -20px;
  }
  .hero-deco-square {
    left: -15px;
    width: 16px;
    height: 16px;
    top: 25%;
  }

  /* Arka plan şekilleri tablet */
  .hero-shape-1 {
    width: 180px;
    height: 180px;
    top: 0;
    right: -30px;
    opacity: 0.5;
  }
  .hero-shape-2 {
    width: 90px;
    height: 90px;
    bottom: auto;
    top: 20%;
    left: -20px;
    opacity: 0.5;
  }

  /* Pagination Tablet */
  .hero-slider .swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 25px;
  }

  html,body{
    overflow-x: hidden;
  }
}
@media (max-width: 767px) {
  .hero-section {
    min-height: auto;
    padding: 85px 0 30px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--color-rank-18) 100%);
  }
  .hero-slider {
    height: auto;
  }
  .hero-slide {
    padding: 15px 0;
  }
  .hero-title {
    font-size: 28px;
    line-height: 1.3;
  }
  .hero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  .hero-desc {
    font-size: 14px;
    margin-bottom: 20px;
    max-width: 350px;
  }
  .hero-content {
    text-align: center;
    margin-bottom: 0;
    padding-top: 25px;
  }
  .hero-content .btn {
    padding: 12px 28px;
    font-size: 14px;
  }
  .section-title {
    font-size: 30px;
  }
  .banner-title {
    font-size: 36px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
  .event-card {
    flex-direction: column;
    text-align: center;
  }
  .event-image {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
    height: 150px;
  }
  .event-btn {
    margin-top: 15px;
  }

  /* Hero Görsel Mobil */
  .hero-image-wrapper {
    max-width: 280px;
    padding-top: 15px;
    padding-bottom: 15px;
    margin: 0 auto;
  }
  .hero-image {
    width: 260px;
    height: 260px;
    border-width: 5px;
    box-shadow: 0 12px 40px var(--color-rank-23);
  }
  .hero-triangle {
    right: -30px;
    bottom: -30px;
    border-width: 0 0 140px 140px;
    opacity: 0.8;
  }
  .hero-badge {
    width: 68px;
    height: 68px;
    top: 0;
    box-shadow: 0 5px 18px var(--color-rank-25);
  }
  .hero-badge .number {
    font-size: 20px;
  }
  .hero-badge .text {
    font-size: 8px;
    letter-spacing: 0.5px;
  }

  /* Dekoratif Şekiller Mobil */
  .hero-deco-ring {
    width: 70px;
    height: 70px;
    left: -12px;
    top: 0;
    border-width: 2px;
  }
  .hero-deco-ring::before {
    width: 48px;
    height: 48px;
    top: 9px;
    left: 9px;
  }
  .hero-deco-dots {
    width: 50px;
    height: 50px;
    left: -25px;
    bottom: 30px;
    background-size: 9px 9px;
  }
  .hero-deco-line {
    display: none;
  }
  .hero-deco-square {
    left: -10px;
    top: 30%;
    width: 12px;
    height: 12px;
  }
  .hero-deco-square::before {
    width: 8px;
    height: 8px;
    top: -18px;
    left: 15px;
  }

  /* Arka plan şekilleri mobil */
  .hero-shape-1 {
    width: 130px;
    height: 130px;
    top: 0;
    right: -30px;
    opacity: 0.4;
  }
  .hero-shape-2 {
    width: 70px;
    height: 70px;
    top: 15%;
    left: -20px;
    opacity: 0.5;
  }

  /* Pagination Mobil */
  .hero-slider .swiper-pagination {
    margin-top: 20px;
  }
}
@media (max-width: 575px) {
  .hero-section {
    padding: 80px 0 25px;
  }
  .hero-slide {
    padding: 10px 0;
  }
  .hero-title {
    font-size: 24px;
    line-height: 1.35;
  }
  .hero-subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
  }
  .hero-desc {
    font-size: 13px;
    max-width: 300px;
    margin-bottom: 18px;
  }
  .hero-content {
    padding-top: 20px;
  }
  .hero-content .btn {
    padding: 10px 24px;
    font-size: 13px;
  }
  .section-title {
    font-size: 26px;
  }

  .cta-content h2 {
    font-size: 30px;
  }

  /* Hero Görsel Küçük Mobil */
  .hero-image-wrapper {
    max-width: 240px;
    padding-top: 30px;
    padding-bottom: 10px;
  }
  .hero-image {
    width: 220px;
    height: 220px;
    border-width: 4px;
    box-shadow: 0 10px 30px var(--color-rank-32);
  }
  .hero-triangle {
    right: -20px;
    bottom: -20px;
    border-width: 0 0 100px 100px;
    opacity: 0.75;
  }
  .hero-badge {
    width: 60px;
    height: 60px;
    top: -5px;
  }
  .hero-badge .number {
    font-size: 18px;
  }
  .hero-badge .text {
    font-size: 7px;
  }

  /* Dekoratif Şekiller Küçük Mobil */
  .hero-deco-ring {
    width: 55px;
    height: 55px;
    left: -8px;
    top: 0;
    border-width: 2px;
  }
  .hero-deco-ring::before {
    width: 38px;
    height: 38px;
    top: 7px;
    left: 7px;
  }
  .hero-deco-dots {
    width: 40px;
    height: 40px;
    left: -15px;
    bottom: 20px;
    background-size: 8px 8px;
  }
  .hero-deco-square {
    left: -6px;
    width: 10px;
    height: 10px;
  }
  .hero-deco-square::before {
    width: 6px;
    height: 6px;
    top: -14px;
    left: 12px;
  }

  /* Arka plan şekilleri küçük mobil */
  .hero-shape-1 {
    width: 100px;
    height: 100px;
    right: -35px;
    top: -10px;
    opacity: 0.35;
  }
  .hero-shape-2 {
    width: 50px;
    height: 50px;
    top: 12%;
    left: -15px;
    opacity: 0.4;
  }

  /* Pagination Küçük Mobil */
  .hero-slider .swiper-pagination {
    margin-top: 15px;
  }
  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
  }
}

.gallery-thumb {
  border-radius: 12px;
  overflow: hidden;
  display: block;
}

.gallery-thumb img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-thumb:hover img {
  transform: scale(1.05);
}

.document-card {
  flex-wrap: wrap;
}

.form-check-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-check {
  display: flex;
  align-items: start;
  gap: 10px;
}

/* Kart Responsive Ayarları */
@media (max-width: 991px) {
  .blog-card {
    border-radius: 14px;
  }
  .blog-content {
    padding: 20px;
  }
  .blog-content h5 {
    font-size: 17px;
  }
  .project-card {
    border-radius: 14px;
  }
  .project-content {
    padding: 20px;
  }
  .project-content h5 {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  .document-card {
    flex-direction: column;
    text-align: center;
  }
  .document-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .document-content {
    margin-bottom: 15px;
  }
  .document-actions {
    width: 100%;
    justify-content: center;
  }

  .blog-card {
    border-radius: 12px;
  }
  .blog-card:hover {
    transform: translateY(-5px);
  }
  .blog-content {
    padding: 18px;
  }
  .blog-content h5 {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .blog-badge {
    padding: 5px 12px;
    font-size: 10px;
  }

  .project-card {
    border-radius: 12px;
  }
  .project-card:hover {
    transform: translateY(-5px);
  }
  .project-content {
    padding: 18px;
  }
  .project-content h5 {
    font-size: 17px;
  }
  .project-content p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .project-meta {
    font-size: 11px;
    padding-top: 12px;
  }
  .project-category {
    padding: 5px 12px;
    font-size: 10px;
  }

  .document-content h5 {
    flex-direction: column-reverse;
    align-items: center;
    gap: 10px;
  }

  .donation-form, .volunteer-form {
    padding: 40px 25px !important;
  }
}

@media (max-width: 575px) {
  .blog-content {
    padding: 16px;
  }
  .blog-content h5 {
    font-size: 15px;
  }
  .blog-content .date {
    font-size: 12px;
  }

  .project-content {
    padding: 16px;
  }
  .project-content h5 {
    font-size: 16px;
  }
  .project-content p {
    -webkit-line-clamp: 3;
  }
  .project-meta {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}

.board-card .board-image {
  position: relative;
}

.board-card .board-image img {
  position: relative;
  z-index: 1;
}

.volunteer-form {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 40px var(--color-rank-23);
}

.volunteer-form .form-control,
.volunteer-form .form-select {
  margin-bottom: 20px;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.team-image {
  position: relative;
}

.team-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.team-image img {
  position: relative;
  z-index: 1;
}

.service-card .btn-sm {
  padding: 8px 20px;
  font-size: 13px;
}

.newsletter-form .input-group {
  background: var(--bg-white);
  border-radius: 30px;
  overflow: hidden;
}

.newsletter-form .form-control {
  background: transparent;
}

.newsletter-form .btn {
  margin: 5px;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-card {
  background: var(--color-rank-55);
  border-radius: 24px;
  padding: 32px 28px;
  border: 1px solid var(--color-rank-56);
  box-shadow: 0 18px 45px var(--color-rank-57);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease, background 0.35s ease;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, var(--color-rank-58), transparent 55%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px var(--color-rank-59);
  border-color: var(--color-rank-60);
}

.cta-card:hover::before {
  opacity: 1;
}

.cta-card-alt {
  background: var(--color-rank-61);
}

.cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-rank-36);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-rank-1);
  font-size: 22px;
  box-shadow: 0 10px 22px var(--color-rank-62);
}

.cta-card-title {
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--color-rank-1);
}

.cta-card-text {
  color: var(--color-rank-1);
  font-size: 15px;
  margin-bottom: 18px;
}

.cta-card .btn {
  border-radius: 999px;
  font-weight: 500;
  padding-inline: 26px;
}

.cta-card .btn.btn-light {
  color: var(--text-dark);
  box-shadow: 0 10px 24px var(--color-rank-38);
}

.cta-card .btn.btn-outline-light {
  border-width: 1.5px;
}

.cta-card .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px var(--color-rank-38);
}

@media (max-width: 991.98px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-card {
    padding: 26px 22px;
  }
}

@media (max-width: 575.98px) {
  .cta-card {
    padding: 22px 20px;
  }

  .cta-card-title {
    font-size: 22px;
  }
}

.footer-widget .newsletter-form .form-control {
  background: var(--color-rank-33);
  border-color: var(--color-rank-37);
  color: var(--bg-white);
}

.footer-widget .newsletter-form .form-control::placeholder {
  color: var(--color-rank-1);
}

.footer-widget .newsletter-form .btn {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--color-rank-1);
}

.img-fluid.rounded-4 {
  border-radius: 20px !important;
}

.list-unstyled .fa-check-circle {
  color: var(--secondary-color);
}


/* ========== Video Banner Section ========== */
.video-banner-section {
  position: relative;
  background-image: url('https://picsum.photos/1920/600?random=100');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
}

.video-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-rank-4) 0%, var(--color-rank-26) 100%);
}

.video-banner-content {
  position: relative;
  z-index: 2;
}

.video-banner-subtitle {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 15px;
  display: block;
}

.video-banner-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--bg-white);
  margin-bottom: 15px;
}

.video-banner-desc {
  font-size: 18px;
  color: var(--color-rank-24);
  margin-bottom: 40px;
}

.video-play-btn {
  display: inline-flex;
  width: 100px;
  height: 100px;
  background-color: var(--primary-color);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--color-rank-1);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.video-play-btn::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 130px;
  border: 2px solid var(--color-rank-41);
  border-radius: 50%;
  animation: pulse-ring 2s infinite;
}

.video-play-btn::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border: 1px solid var(--color-rank-41);
  border-radius: 50%;
  animation: pulse-ring 2s infinite 0.5s;
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}

.video-play-btn:hover {
  background-color: var(--secondary-color);
  transform: scale(1.1);
  color: var(--color-rank-1);
}

.video-play-btn i {
  margin-left: 5px;
}

/* Gallery Thumb Güncellemesi */
.gallery-thumb img {
  height: 200px;
}

@media (max-width: 991px) {
  .video-banner-title {
    font-size: 36px;
  }
  
  .video-banner-section {
    padding: 80px 0;
    background-attachment: scroll;
  }
  
  .video-play-btn {
    width: 80px;
    height: 80px;
    font-size: 22px;
  }
  
  .video-play-btn::before {
    width: 100px;
    height: 100px;
  }
  
  .video-play-btn::after {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 576px) {
  .video-banner-title {
    font-size: 28px;
  }
  
  .video-banner-desc {
    font-size: 16px;
  }
}




/* 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-28);

    /* 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-19);

    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-1);
}

/* 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-13);

    font-size: 14px;

    font-weight: 500;
}

div:where(.swal2-container) div:where(.swal2-actions) .swal2-confirm {
    background-image: none;
    color: var(--color-rank-1);
    background-color: var(--primary-dark);
}

/* Spinner Stili */

.custom-spinner {
    display: inline-block;

    width: 16px;

    height: 16px;

    border: 2px solid var(--color-rank-1);

    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);
    }
}


.make-sticky {
  position: sticky;
  top: 100px;
}


.navbar-brand img, .offcanvas-title img , .footer-widget img {
  object-fit: contain;
}




.social-link {
    margin-top: 10px;
}
.social-link ul {
    display: flex;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}
.social-link li {
    display: inline-block;
}
.social-link a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-rank-20);
    border-radius: 50%;
    transition: background 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px var(--color-rank-31);
    font-size: 1.35rem;
    color: var(--color-rank-21);
    text-decoration: none;
    border: none;
}
.social-link a:hover {
    background: var(--color-rank-22);
    color: var(--color-rank-1);
    box-shadow: 0 2px 14px var(--color-rank-22);
}
.social-link a.facebook:hover   { background: var(--color-rank-14); color: var(--color-rank-1); }
.social-link a.twitter:hover    { background: var(--color-rank-15); color: var(--color-rank-1);   }
.social-link a.linkedin:hover   { background: var(--color-rank-16); color: var(--color-rank-1); }
.social-link a.whatsapp:hover   { background: var(--color-rank-17); color: var(--color-rank-1); }
/* Brand icon colors */
.social-link a.facebook   { color: var(--color-rank-14); }
.social-link a.twitter    { color: var(--color-rank-15);    }
.social-link a.linkedin   { color: var(--color-rank-16);}
.social-link a.whatsapp   { color: var(--color-rank-17); }

.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);
}