@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");

@font-face {
  font-family: 'Gilroy-Regular';
  src: url('../assets/fonts/Gilroy-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-Medium';
  src: url('../assets/fonts/Gilroy-Medium.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-Bold';
  src: url('../assets/fonts/Gilroy-Bold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-SemiBold';
  src: url('../assets/fonts/Gilroy-SemiBold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-ExtraBold';
  src: url('../assets/fonts/Gilroy-ExtraBold.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-Heavy';
  src: url('../assets/fonts/Gilroy-Heavy.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-Black';
  src: url('../assets/fonts/Gilroy-Black.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-Light';
  src: url('../assets/fonts/Gilroy-Light.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-ExtraLight';
  src: url('../assets/fonts/Gilroy-ExtraLight.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gilroy-Thin';
  src: url('../assets/fonts/Gilroy-Thin.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Gilroy-Medium", serif;
  font-weight: 500;
  color: #2a283e;
  background-color: #fafafa;
  letter-spacing: 0.6px;
}
.btn {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary {
  padding: 10px 12px;
  border-radius: 8px;
}

.bg-success {
  background-color: #21ad4e !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(33, 173, 78, 0.3);
}

.bg-success::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.bg-success:hover {
  background: linear-gradient(135deg, #28d85f, #21ad4e) !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(33, 173, 78, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1);
}

.bg-success:hover::before {
  left: 100%;
}

.bg-success:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 15px rgba(33, 173, 78, 0.3);
}

/* Mobile hover effects for touch devices */
@media (max-width: 768px) {
  .bg-success:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(33, 173, 78, 0.3);
  }
  
  .bg-success:active {
    transform: scale(0.95);
    box-shadow: 0 4px 15px rgba(33, 173, 78, 0.3);
  }
  
  .activities .activities-content a:hover {
    transform: none;
    box-shadow: 0 2px 8px rgba(62, 106, 225, 0.3);
  }
  
  .activities .activities-content a:active {
    transform: scale(0.95);
    box-shadow: 0 4px 15px rgba(62, 106, 225, 0.3);
  }
}

/* height */
.h-1 {
  height: 4px;
}
.h-2 {
  height: 8px;
}
.h-3 {
  height: 12px;
}
.h-4 {
  height: 16px;
}
.h-5 {
  height: 20px;
}
.h-6 {
  height: 24px;
}
.h-7 {
  height: 28px;
}
.h-8 {
  height: 32px;
}
.h-9 {
  height: 36px;
}
.h-10 {
  height: 40px;
}
.h-11 {
  height: 44px;
}
.h-12 {
  height: 48px;
}
.h-13 {
  height: 52px;
}
.h-14 {
  height: 56px;
}
.h-18 {
  height: 72px;
}

/* width */
.w-1 {
  width: 4px;
}
.w-2 {
  width: 8px;
}
.w-3 {
  width: 12px;
}
.w-4 {
  width: 16px;
}
.w-5 {
  width: 20px;
}
.w-6 {
  width: 24px;
}
.w-7 {
  width: 28px;
}
.w-8 {
  width: 32px;
}
.w-9 {
  width: 36px;
}
.w-10 {
  width: 40px;
}
.w-11 {
  width: 44px;
}
.w-12 {
  width: 48px;
}
.w-13 {
  width: 52px;
}
.w-14 {
  width: 56px;
}
.w-18 {
  width: 72px;
}

/* shadow */
.shadow-sm {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.shadow-md {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

/* text color */
.text-orange {
  color: #dd2a1b;
}
.text-gray {
  color: #858585;
}
.text-green {
  color: #34c759;
}
.text-blue {
  color: #007aff;
}

.text-head-grey {
  color: #707071;
}
/* border radius */
.border-radius-sm {
  border-radius: 4px !important;
}

.border-radius-md {
  border-radius: 8px !important;
}
.border-radius-lg {
  border-radius: 20px !important;
}

.donateButton {
  padding: 10px 20px;
  box-shadow: 1px 1px 3px rgb(0 0 0)
}

header svg {
  filter: drop-shadow(1px 1px 1px #000);
}

.hDonateCard img.border-radius-md  {
  border-radius: 8px !important;
}

.hDonateCard .p-3 {
 background-color: #F3F3F6;
 border-radius: 0 0 20px 20px;
}

.hDonateCard .card_2 {
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
  margin: 0 20px;
}

.fw-semibold {
  font-family: 'Gilroy-Bold', serif;
}

.fw-bold {
  font-family: 'Gilroy-Bold', serif;
}

.smsBagis {
  min-height: 370px;
  background-color: hwb(240deg 95.44% 3.44% / 75%);
}

.smsBagis img.imgCover {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  z-index: -1;
}

.smsBagis img.sms-icon {
  float: right;
  width: 400px;
  margin-top: 30px;
}

.faaliyetlerimiz img {
  border-radius: 20px 20px  0 0;
}

.faaliyetlerimiz h3 {
  color: #343434;
}

.faaliyetlerimiz p {
  color: #707071;
}

.faaliyetlerimiz a {
  display: inline-block;
  line-height: 1;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  box-sizing: border-box;
  text-align: center;
  outline: none;
  transition: 0.2s, visibility;
  font-size: 1rem;
  padding: 15px 18px;
  color: rgb(255, 255, 255);
  background-color: rgb(226, 49, 49);
  width: fit-content;
  text-decoration: none;
  float: right;
}

.slider_04 .faaliyetlerimiz a {
  background-color: rgb(31, 173, 78)
}



.social-media-section h3,
.slider_04 h3 {
  font-family: 'Gilroy-Bold', serif;
  color: #454545;
}

@media (min-width: 992px) {

  .slider_04 .swiper-wrapper {
    display: flex!important;
    flex-wrap: wrap!important;
  }

  .slider_04 .swiper-slide {
    width: calc(33% - 46px)!important;
    margin-right: 75px!important;
    margin-bottom: 50px!important;
  }

  .slider_04 .swiper-slide:nth-child(3n) {
    margin-right: 0!important;
  }

  .hDonateCard .slider_04 .swiper-slide {
    width: calc(25% - 46px)!important;
    margin-right: 61px!important;
    margin-bottom: 50px!important;
  }

  .hDonateCard .slider_04 .swiper-slide:nth-child(4n) { 
    margin-right: 0!important;
  }
}


/* Background color */
.bg-gray {
  background-color: #fff;
}

.bg-gray-100 {
  background-color: #f7f7f8;
}

.bg-red {
  background-color: #dd2a1b;
}
.bg-red-100 {
  background-color: rgba(221, 43, 27, 0.15);
}

.bg-green-100 {
  background-color: rgba(52, 199, 89, 0.15);
}
.bg-orange {
  background-color: #454545;
}
.bg-yellow-100 {
  background-color: #d7b254;
}
.bg-blue-100 {
  background-color: rgba(0, 123, 255, 0.15);
}
.bg-black {
  background-color: rgb(10, 10, 10) !important;
}
.bg-blue {
  background-color: #007aff;
}
.text-red {
  color: #dd2a1b;
}
header {
  z-index: 11;
  display: flex;
  align-items: center;
  transition: 0.17s cubic-bezier(0.25, 0.46, 0.45, 0.94);

}


header nav .dropdown-menu a, header nav .dropdown-menu button {
  text-shadow: none;
}

header.anasayfa .text-black {
  color: #fff !important;
}

header .text-black,
header .profile-dropdown .text-black {
  color: #495057 !important
}

/* Header menü linklerine hover efekti */
header nav a {
  position: relative;
  transition: all 0.3s ease;
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #000000, #000000);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 1px;
}

header.anasayfa nav a::after {
  background: linear-gradient(90deg, #fff, #fff);

}

header nav a:hover::after {
  width: 100%;
}

/* Dropdown toggle için özel stil */
header nav .dropdown-toggle::after {
  display: none;
}

header nav .dropdown-toggle:hover::after {
  width: 100%;
}


/* Mobilde scroll durumunda header background */
@media (max-width: 992px) {
  header {
    background-color: transparent;
  }
  
}


@media (max-width: 992px) {
  header .logo img {
    width: 90px;
  }
  /* header .logo {
    transform: translateX(-50%);
  } */
  header {
    box-shadow: none !important;
    background-color: transparent;
  }
}

@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
  header {
    height: 110px;
  }
  header .logo img {
    width: 130px;
  }
}
@media (max-width: 992px) {
  header {
    padding: 14px 0;
    z-index: 9;
    position: relative;
  }
  header .donate-btn {
    font-size: 13px;
  }
  header .donate-btn svg {
    width: 20px;
    height: auto;
  }
  #toggle-menu {
    z-index: 9998;
    position: relative;
    cursor: pointer;
    pointer-events: auto;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
  
  #toggle-menu:hover {
    opacity: 0.8;
  }
  
  #toggle-menu:active {
    transform: scale(0.95);
  }
  
  #toggle-menu:focus {
    outline: none;
  }
  
  #toggle-menu svg {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
  }
}
.mobile-menu {
  z-index: 9999 !important;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mobile-menu .mobile-menu-content {
  transform: translateX(-100%);
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 70%;
  min-width: 250px;
  max-width: 350px;
  z-index: 10000;
  position: relative;
  background-color: white;
  height: 100%;
  overflow-y: auto;
}
.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu.active .mobile-menu-content {
  transform: translateX(0); /* Menü açıldığında görünür */
}

.mobile-menu .overlay {
  position: absolute;
  inset: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  left: 70%;
}

.signin {
  background-color: #fafafa;
}

@media (min-width: 992px) {
  .signin .col-12 {
    height: calc(100vh - 85px);
  }
}
@media (max-width: 992px) {
  .signin .row {
    padding: 0 16px;
  }
  .signin .col-12 {
    min-height: calc(100vh - 85px);
  }
}
.signin-content {
  max-width: 450px;
}
@media (min-width: 1400px) {
  .signin-content {
    max-width: 580px;
  }
}
.signin-photo .logo {
  left: 60px;
  top: 60px;
}
.signin-photo .text {
  left: 60px;
  right: 60px;
  bottom: 25%;
}
.signin-photo .bottom {
  bottom: 7%;
  padding: 0 60px;
}

.hero_slider {
  margin-top: -114px;
}

.hero_slider .content {
  bottom: 100px;
}
@media (max-width: 992px) {
  .hero_slider .content {
    bottom: 40px;
  }

}
.hero_slider .swiper-pagination-bullet {
  background-color: #ddd !important;
  width: 12px;
  height: 12px;
  opacity: 1;
}

.hero_slider .swiper-pagination-bullet-active {
  background-color: #181a1f!important;
  border:1px solid #fff;
}


.hero_slider img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.swiper_03 .pagination .swiper-pagination-bullet {
  border-radius: 999px;
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #dd2a1b;
  height: 8px;
  width: 8px;
}
.swiper_03 .pagination .swiper-pagination-bullet-active {
  width: 24px;
}

select {
  background-image: url('data:image/svg+xml,<svg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M18 9.00005C18 9.00005 13.5811 15 12 15C10.4188 15 6 9 6 9" stroke="%232A283E" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: right 10px center;
}

.featured_news .main {
  background-color: rgba(221, 43, 27, 0.15);
}
.featured_news .title {
  padding-bottom: 24px;
  margin-bottom: 100px;
}
.featured_news .image {
  margin-top: -100px;
}
@media (max-width: 1440px) {
  .featured_news .title {
    margin-bottom: 70px;
  }
  .featured_news .image {
    margin-top: -70px;
  }
}
.statictics {
  min-height: 500px;
  display: flex;
  align-items: end;
}

.slider_04 {
  position: relative;
}

/* Basit CSS scroll - maksimum performans */
.slider_04 .swiper-wrapper {
  transform: translate3d(0, 0, 0);
}

.slider_04 .swiper-slide {
  transform: translate3d(0, 0, 0);
}

/* Mobilde CSS scroll kullan */
@media (max-width: 768px) {
  .slider_04 .slider {
    overflow: hidden;
  }
  
  .slider_04 .swiper-wrapper {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    transform: none !important;
  }
  
  .slider_04 .swiper-wrapper::-webkit-scrollbar {
    display: none !important;
  }
  
  .slider_04 .swiper-slide {
    flex: 0 0 auto !important;
    width: 85% !important;
    margin-right: 10px !important;
    scroll-snap-align: start !important;
    transform: none !important;
  }
  
  .slider_04 .swiper-slide:last-child {
    margin-right: 0 !important;
  }
  
  /* Pagination'ı gizle */
  .slider_04 .swiper-pagination1,
  .slider_04 .swiper-pagination2,
  .slider_04 .swiper-pagination3 {
    display: none !important;
  }
}

/* Pagination stilleri */
.pagination-dot {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: #ddd !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
  border: none !important;
  outline: none !important;
}

.pagination-dot:hover {
  background-color: #171a20 !important;
}

.pagination-dot.active {
  background-color: #171a20 !important;
}

/* Pagination container - sadece mobilde görünür */
.slider_04 .swiper-pagination1,
.slider_04 .swiper-pagination2,
.slider_04 .swiper-pagination3 {
  display: none !important;
}

/* Mobilde pagination göster */
@media (max-width: 768px) {
  .slider_04 .swiper-pagination1,
  .slider_04 .swiper-pagination2,
  .slider_04 .swiper-pagination3 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-top: 0px !important;
    gap: 8px !important;
  }
}

.accordion-button {
  background-color: #f8f9fa; /* Arka plan rengi */
  color: #333; /* Yazı rengi */
}

.accordion-button:not(.collapsed) {
  background-color: #e9ecef; /* Açıkken arka plan rengi */
  color: #000; /* Açıkken yazı rengi */
}
.faq-content {
  display: none;
  padding-top: 10px;
}
.faq-item {
  border: 1px solid transparent;
  padding: 20px 24px;
  border-radius: 12px;
  background-color: white;
}
.faq-item.active {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  border-color: #dd2a1b;
}
.faq-item .faq-toggle svg {
  transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-item.active .faq-toggle svg {
  transform: rotate(180deg);
}

.donate-section .inn {
  min-height: 350px;
}
.donate-section .right_img {
  position: absolute;
  right: -18%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
}
.donate-section .right_img img {
  width: 100%;
}
.donate-section .left_img {
  position: absolute;
  left: -18%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
}
.donate-section .left_img img {
  width: 100%;
}
/*
.breandcrumHeader {
  background-image: url(../assets/header-bg.jpg);
  background-size: cover;
  z-index: 0;
}

.breandcrumHeader .row::before {
  content: "";
  display: block;
  width: 100%;
  height: 160px;
  background-color: rgb(255 255 255 / 60%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
*/
.breandcrumHeader .h1 {
  color:#454545;
}

@media (max-width: 992px) {
  .donate-section .inn {
    min-height: 450px;
  }
  .donate-section .right_img {
    transform: unset;
    bottom: -10%;
    right: -15%;
    top: auto;
  }
  .donate-section .left_img {
    transform: unset;
    top: -10%;
    left: -15%;
  }
  .faaliyetlerimiz {
    overflow: hidden;
    background-color: rgb(255, 255, 255);
    border: 1px solid rgb(228, 228, 228);
    box-shadow: rgb(228, 228, 228) 0px 1px 0px;
    border-radius: 20px;
  }
  .faaliyetlerimiz img {
    border-radius: 0;
  }
  .faaliyetlerimiz .card {
    border: 0;
  } 
  .faq-item {
    padding: 16px 16px;
  }


}

/* Footer Styles */
.bg-dark-blue {
  background-color: #1e1b3a;
}

footer {
  padding: 100px 0 50px 0;
}

footer .fs-7 {
  font-size: 14px;
  color: #bfbebe;
}

footer a:hover {
  opacity: 0.8;
}

footer .contact-info svg {
  flex-shrink: 0;
}

footer .social-links a {
  transition: opacity 0.3s ease;
}

footer .social-links a:hover {
  opacity: 0.7;
}

footer img {
  width: 100%;
  max-width: 200px;
  margin-top: -30px;
}

footer p {
  color: #bfbebe;
}

footer h5 {
  color: #bfbebe;
}

.card_2 {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
}
.tab-content-item {
  display: none;
}
.tab-content-item.current {
  display: block;
}
.tab-menu {
  border: 1px solid transparent;
  padding: 10px 12px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.08);
}
.tab-menu.current {
  border-color: #dd2a1b;
}

.info_bar {
  border: 1px solid #bfbfbf;
  background-color: #f3f3f6;
  color: #818090;
  border-radius: 0px 10px 0px 10px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #000;
}

.info_bar p {
  color: #000;
}

.info_bar .ornek {
  background: #e5e5e5;
  padding: 5px;
  border-radius: 10px;
  max-width: 360px;
  margin: 0 auto;
  color: #000;
}

.donate_item {
  background-color: white;
  padding: 12px;
  border-radius: 12px;
}
.donate_item .inn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 126px;
}
.donate_item img {
  width: 172px;
  height: 100%;
  object-fit: cover;
  margin-right: 10px;
  flex-shrink: 0;
}
.donate_item .content {
  max-width: 400px;
  margin-right: auto;
}
.donate_item .right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.bagisYap .nav-tabs {
  border: none;
  background: #f3f3f6;
  padding: 10px;
  border-radius: 20px;
}
.bagisYap .nav-link {
  font-size: 19px;
  color: #343434;
  border-radius: 14px;
  border: 1px solid #ccc;
  background: #fff;
  width: 150px;
}

.bagisYap .nav-link.active {
  background: #21ad4e;
  color: #fff;
}


.bagisYap .nav-link:hover {
  border-color: #0f7a57;
  border-radius: 14px;
}

.bagisYap input::placeholder {
  font-size: 1rem;
}

.bagisYap img {
  width: 100%;
  padding: 0;
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
  border: 1px solid #ccc;
}

.bagisYap input,
.sonKullanma select  {
  font-size: 20px;
  letter-spacing: 1px;
}

.bagisYap .form-control:focus {
  box-shadow: none!important;
}

.bagisYap .enter_donate input:focus {
  color: #34c759!important;

}

.iti--separate-dial-code .iti__selected-dial-code {
  font-size: 1rem;
  font-family: 'Gilroy-Bold';
}

@media (max-width: 1200px) {
  .donate_item .content {
    max-width: 300px;
  }
}
@media (max-width: 992px) {
  .donate_item {
    height: auto;
  }
  .donate_item .inn {
    height: auto;
  }
  .donate_item .right {
    justify-content: space-between;
    width: 100%;
  }
  .donate_item > * {
    width: 100%;
  }
  .donate_item img {
    width: 100%;
    height: 200px;
    margin-right: 0;
    margin-bottom: 10px;
  }
  .donate_item .right {
    flex-direction: row-reverse;
    align-items: center;
  }
  .donate_item p {
    font-size: 14px;
    margin-bottom: 16px !important;
  }
}
.profile_page .sign_out {
  margin-top: calc(100vh - 380px);
}

@media (max-width:992px) {
  .profile_page  {
    min-height: calc(100vh - 85px);
  }
}
.bottom_nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08);
  border-radius: 12px 12px 0 0;
  padding: 10px 0;
  background-color: white;
  z-index: 90;
}
.bottom_nav a {
  width: 25%;
  font-size: 13px;
  color: #c9c8c8;
}
.bottom_nav a.active {
  color: #dd2a1b;
}
.checkbox .checkbox-label .icon {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid #dd2a1b;
}
.checkbox input:checked + .checkbox-label .icon {
  background-color: #dd2a1b;
}
.checkbox input:checked + .checkbox-label .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background-color: white;
}

.checkbox input:checked + .checkbox-label .checkbox-inner {
  transform: scale(1);
}

.swiper-button-disabled {
  opacity: 0.4 !important;
}

.button-next,
.button-prev {
  border: 1px solid #dd2a1b;
}

@media (max-width: 992px) {
  .tabs-menu {
    overflow-x: auto;
    margin: 0 -16px;
    padding: 0 16px;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }
  .tabs-menu::-webkit-scrollbar {
    display: none;
  }
  .tabs-menu > * {
    white-space: nowrap;
  }
}

.profile-area {
  position: relative;
}
.profile-area button svg {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-area button.active svg {
  transform: rotate(180deg);
}
.profile-dropdown {
  position: absolute;
  top: 100%;
  transform: translateY(24px);
  right: 0;
  width: 200px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.profile-dropdown a {
  padding: 0 14px;
}

.profile-dropdown a:hover {
  background-color: #f8f9fa;
}
.profile-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(12px);
}

/* Kredi kartı stilleri */
.credit-card {
  position: relative;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.credit-card.flipped {
  transform: rotateY(180deg);
}

.credit-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transform: rotateY(180deg);
  background-color: black;
  border-radius: 24px;
  padding: 20px;
}

.black-strip {
  width: 100%;
  height: 40px;
  background-color: #444;
  margin: 20px 0;
}

.cvv-container {
  background-color: #fff;
  padding: 10px;
  border-radius: 4px;
  width: 60px;
  text-align: center;
}

.scale_hover {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 992px) {
  .scale_hover:hover {
    transform: scale(1.05);
  }
}
@media (max-width: 992px) {
  .scale_hover:active {
    transform: scale(1.05);
  }
}

/* Video Modal Styles */
.video-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
.video-modal .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.video-modal-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
}

.video-modal-content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-container {
  width: 100%;
  position: relative;
  padding-bottom: 63%;
  height: 0;
}

@media (max-width: 991px) {
  .video-container {
    padding-bottom: 100%;
  }
  .kurban_video img {
    aspect-ratio: 16/11;
    object-fit: cover;
  }
}
.kurban_video {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.kurban_video video {
  pointer-events: none;
}
.kurban_video .overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  backdrop-filter: blur(4px);
  background-color: rgba(255, 255, 255, 0.05);
}
.kurban_video video {
  aspect-ratio: 16/9;
  width: 100%;
  /* object-fit: cover; */
  /* object-position: top; */
  background-color: black;
}
@media (max-width: 480px) {
  .video-container {
    padding-bottom: 120%;
  }
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-container video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  border-radius: 16px;
}

.close-video-modal {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.close-video-modal svg {
  width: 42px;
  height: 42px;
}

.copy-success {
  display: flex;
  align-items: center;
  gap: 8px;
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  background-color: #dd2a1b;
  color: white;
  padding: 12px 24px;
  border-radius: 12px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition:  0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.copy-success.show {
  transform: translateX(-50%) translateY(0px);
  opacity: 1;
  visibility: visible;
}

.quantity input {
  pointer-events: none;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
  width: 100%;
  margin-bottom: 0.5rem !important;
}

.donateCard {
  box-shadow: 8px 10px 24px rgba(0, 0, 0, 0.1);
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid #ccc;
}

.kurbanBanner img {
  width: 100%;
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto;
  display: block;
}

.donateCard input::placeholder,
.donateCard textarea::placeholder,
.password-container input::placeholder{
  color: #c4c4c4;
}

/* Alt Menü Stilleri */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-menu {
  position: absolute;
  top: 50px;
  left: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 8px 0;
  margin-top: 8px;
  display: none;
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #2a283e !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.2s ease;
}

.dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #dd2a1b !important;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  display: block;
}

.dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 20px;
}

.dropdown-toggle svg {
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-toggle::after {
  display: none;
}

.activities .activities-content {
  position: absolute;
  bottom: 10px;
  left: 4px;
  width: 100%;
}

.activities .activities-content h3,
.hero_slider .content h1 {
  color: #fff;
    font-size: 28px;
    margin-bottom: 10px;
}

.hero_slider .content h1 {
  font-size: 40px!important;
}

.activities img {
  filter: brightness(0.7);
}

.bagisContainer.activities img {
  filter: brightness(1);
}

.activities .activities-content p,
.activities .activities-content h3,
.hero_slider .content h1,
.hero_slider .content span {
  text-shadow: 1px 1px #000;
}

.activities .activities-content a {
  width: 50%;
  display: block;
  background: #fefff5;
  color: #454545;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  padding: 8px 4px;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(62, 106, 225, 0.3);
}

.bagisContainer .activities-content a {
  color: #fff;
}



.activities .activities-content a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.activities .activities-content a:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #ffffff, #ffffff);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4), 0 4px 10px rgba(0, 0, 0, 0.1);
  color: #000;
}

.activities .activities-content a:hover::before {
  left: 100%;
}

.activities .activities-content a:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 15px rgba(62, 106, 225, 0.3);
}

.vacip-kurban a {
  position: absolute;
  width: 130px;
  right: 230px;
  bottom: 40px;
  padding: 10px !important;
  display: block;
  background: #fefff5;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  padding: 8px 4px;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(62, 106, 225, 0.3);
}

/* Mobil için alt menü */
@media (max-width: 991px) {

  .vacip-kurban a {
    right: 40px;
  }
  .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
    padding: 10px 0 !important;
    margin: 10px 0 !important;
    border-radius: 8px !important;
    display: none;
    border: 1px solid #e9ecef;
  }
  
  .dropdown-menu.show {
    display: block !important;
  }
  
  .dropdown-menu::before {
    display: none !important;
  }
  
  .dropdown-menu a {
    color: #2a283e !important;
    padding: 8px 20px !important;
    font-size: 14px !important;
    display: block !important;
  }
  
  .dropdown-menu a {
  position: relative;
  transition: all 0.3s ease;
}

.dropdown-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #DD2A1B, #FF6B35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 1px;
}

.dropdown-menu a:hover {
  background-color: #e9ecef !important;
  color: #dd2a1b !important;
}

.dropdown-menu a:hover::after {
  width: 100%;
}
  
  /* Mobil menü içindeki dropdown'lar için özel stiller */
  .mobile-menu .dropdown-menu {
    background: #f0f0f0 !important;
    margin: 5px 0 !important;
    padding: 5px 0 !important;
  }
  
  .mobile-menu .dropdown-menu a {
    padding: 8px 25px !important;
    color: #333 !important;
    font-size: 14px !important;
    cursor: pointer;
    pointer-events: auto;
  }
  
  .mobile-menu .dropdown-menu a {
    position: relative;
    transition: all 0.3s ease;
  }

  .mobile-menu .dropdown-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DD2A1B, #FF6B35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
  }

  .mobile-menu .dropdown-menu a:hover {
    background-color: #e0e0e0 !important;
    color: #dd2a1b !important;
  }

  .mobile-menu .dropdown-menu a:hover::after {
    width: 100%;
  }
  
  /* Mobil menü içindeki tüm linkler için genel stiller */
  .mobile-menu a {
    cursor: pointer !important;
    pointer-events: auto !important;
    text-decoration: none !important;
  }
  
  .mobile-menu a {
    position: relative;
    transition: all 0.3s ease;
  }

  .mobile-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #DD2A1B, #FF6B35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 1px;
  }

  .mobile-menu a:hover {
    opacity: 0.8;
  }

  .mobile-menu a:hover::after {
    width: 100%;
  }
}

/* Mobil Bağış Kartları Slider */
@media (max-width: 991px) {
  .hDonateCard .card_2 {
    margin: 0;
  }

  
}

@media (max-width: 768px) {
  .slider_04 .swiper-button-next:after, 
  .slider_04 .swiper-button-prev:after {
    text-shadow: 0 0 3px #000;
  }
  
  .slider_04 .swiper-button-next {
    right: 30px!important;
    color: #fff!important;
  }
  
  .slider_04 .swiper-button-prev {
    left: 30px!important;
    color: #fff!important;
  }
  
  .slider_04 .swiper-pagination-bullet-active {
    background-color: #fff!important;
  }
  
  .slider_04 .swiper-pagination {
    bottom: -40px!important;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .slider_04 .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
  
  .slider_04 .swiper-pagination-bullet-active {
    background-color: rgb(0, 0, 0)!important;
  }

  .smsBagis img.sms-icon {
    display: block;
    float: none;
    margin: 0 auto; 
    width: 100%;
    max-width: 150px;
  }

  .smsBagis .donateButton {
    margin: 30px auto;
    display: block;
    max-width: 300px;
  }

  .smsBagis h3 {
    font-size: 19px !important;
      text-align: center;
      margin: 20px 0;
  }

  .social-media-section h3,
  .social-media-section p {
    text-align: center;
  }

  .social-media-section a {
    display: block;
    max-width: 200px;
  }

  .smsBagis {
    min-height: 180px;
  }

  .faaliyetlerimiz p {
    min-height: 70px;
  }

  footer {
    padding: 50px 0 50px 0;
  }

  footer img {
    margin: 0 auto;
    display: block;
    max-width: 130px;
  }

  footer p {
    text-align: center;
    padding: 10px 0px;
  }

  footer .contact-info .text-end {
    text-align: center!important;
  }

  footer .contact-info svg {
    margin-right: 10px;
  }

  .menu-mobile li:not(:last-child)::after {
    content: "|";
    margin-left: 0.5rem;
    color: #999;
    margin-left: 10px;
}
}

/* Pagination ortalaması için genel stiller */
.slider_04 .swiper-pagination1,
.slider_04 .swiper-pagination2,
.slider_04 .swiper-pagination3 {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  top: 20px!important;
}

.slider_04 .swiper-pagination-bullet {
  margin: 0 4px;
}

/* Faaliyet Detay Page Styles */


.title-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.red-line {
  width: 4px;
  height: 40px;
  background: #DD2A1B;
  border-radius: 2px;
}

.section-title {
  font-family: 'Gilroy-Bold', sans-serif;
  font-size: 1.5rem;
  color: #2A283E;
  margin: 0;
  line-height: 1.3;
}

.content-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #2A283E;
  margin-bottom: 1rem;
}

.subsection-title {
  font-family: 'Gilroy-SemiBold', sans-serif;
  font-size: 1.2rem;
  color: #2A283E;
  margin-bottom: 1rem;
}

.activities-list {
  list-style: none;
  padding: 0;
}

.activities-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 1rem;
  color: #2A283E;
}

.activities-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: #DD2A1B;
  border-radius: 50%;
}


.projects-list {
  display: flex;
  flex-direction: column;
}

.projects-list a {
  display: grid;
  text-decoration: none;
}

.project-item {
  border-bottom: 1px solid #ccc;
  padding: 1rem 0 1rem 10px;
}

.project-item.active {
  background: #d7000f;
  color: #fff;
  border-radius: 7px;
}

.project-item.active h4,
.project-item.active p {
  color: #fff;
}

input#kurbanCheckbox {
  margin: 2px 10px 0px 7px;

}

#kurbanCheckbox:checked {
  background-color: #35c759;
    border-color: #067120;
}



.project-icon {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  float: left;
  margin-right: 10px;
}

.project-title {
  font-family: 'Gilroy-Bold', sans-serif;
  font-size: 16px;
  color: #343434;
  line-height: 2;
}

.project-desc {
  color: #6c757d;
  margin: 0;
}

/* Image Gallery Styles */
.image-gallery-section {
  background: #f8f9fa;
}

.gallery-container {
  max-width: 100%;
  overflow: hidden;
}

.gallery-wrapper {
  display: flex;
  gap: 1rem;
  transition: transform 0.3s ease;
}

.gallery-item {
  flex: 0 0 200px;
  height: 200px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.05);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.7);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.gallery-nav:hover {
  background: rgba(0,0,0,0.9);
}

.gallery-prev {
  left: -20px;
}

.gallery-next {
  right: -20px;
}

.other-projects-section {
  border-left: 1px solid #d7000f;
  padding-left: 20px;
}

.account-number .tab-content {
  border: 1px solid #bfbfbf;
  border-radius: 0px 10px 0px 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .content-section,
  .other-projects-section {
    padding: 1.5rem;
  }
  .other-projects-section {
    border-left: none;
    border-top: 1px solid #ccc;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .gallery-wrapper {
    gap: 0.5rem;
  }
  
  .gallery-item {
    flex: 0 0 150px;
    height: 150px;
  }
  
  .gallery-nav {
    width: 35px;
    height: 35px;
  }
  
  .gallery-prev {
    left: -10px;
  }
  
  .gallery-next {
    right: -10px;
  }
}

@media (max-width: 768px) {
  .title-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .red-line {
    width: 100%;
    height: 3px;
    display: none;
  }
  
  .gallery-item {
    flex: 0 0 120px;
    height: 120px;
  }
  
  .gallery-nav {
    display: none;
  }

  .hero_slider {
    margin-top: -86px;
  }

  .hero_slider .swiper-pagination {
    margin-bottom: -40px!important;
  }
}

/* Donation title with lines */
.donation-title {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  font-size: 19px;
}

.donation-title::before,
.donation-title::after {
  content: '';
  position: absolute;
  top: 45%;
  width: 100%;
  height: 2px;
  background-color: #dbdbdb;
  transform: translateY(-50%);
}

.donation-title::before {
  right: 100%;
}

.donation-title::after {
  left: 100%;
}

.breandcrumHeaderTitle  {
  display: flex;
  align-items: center;
  justify-content: center; /* Ortalamak için */
  gap: 20px;
  position: relative;
  margin-top: 10px;
}
.breandcrumHeaderTitle h1 {
  position: relative;
  z-index: 1;
}

.breandcrumHeaderTitle::before,
.breandcrumHeaderTitle::after {
  content: "";
  flex: 1;
  height: 2px;
  max-width: 200px;
  background: linear-gradient(to left, rgb(215 0 15), rgba(0,0,0,0));
}

/* Sağ çizgi */
.breandcrumHeaderTitle::after {
  background: linear-gradient(to right, rgb(215 0 15), rgba(0,0,0,0));
}

@media (max-width: 768px) {
  .donation-title::before,
  .donation-title::after {
    width: 30px;
  }
  
  .donation-title::before {
    margin-right: 10px;
  }
  
  .donation-title::after {
    margin-left: 10px;
  }

  .bagisYap .nav-link {
    padding:8px;
    width: 124px;
  }
  .bagisYap .nav-link {
    font-size: 17px;
  }
}

.iyilik-section img {
  max-width: 1000px;
  display: block;
  margin: 0 auto;
}

/* Gallery Slider Styles */
.gallery-section {
  margin-bottom: 2rem;
  padding: 0 1.5rem;
}

.gallery-slider {
  position: relative;
}

.gallery-swiper {
  overflow: hidden;
  width: 100%;
}

.gallery-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.gallery-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}


.gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.swiper-slide img.gallery-img {
  width: 100%!important;
}

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

.gallery-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
  gap: 8px;
  position: relative;
}

.gallery-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: none;
  outline: none;
  margin: 0 4px;
}

.gallery-pagination .swiper-pagination-bullet:hover {
  background-color: #DD2A1B;
}

.gallery-pagination .swiper-pagination-bullet-active {
  background-color: #DD2A1B;
}

/* Desktop styles */
@media (min-width: 992px) {
  .gallery-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    transform: none !important;
  }
  
  .gallery-swiper .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
  }
  
  .gallery-pagination {
    display: none !important;
  }
  
  .gallery-img {
    height: 150px;
  }
}

/* Mobile styles */
@media (max-width: 991px) {
  .gallery-swiper {
    overflow: hidden !important;
  }
  
  .gallery-swiper .swiper-wrapper {
    display: flex !important;
  }
  
  .gallery-swiper .swiper-slide {
    height: auto !important;
  }
  
  .gallery-img {
    height: 200px;
    width: 100%;
    object-fit: cover;
  }
  
  .gallery-pagination {
    display: flex !important;
  }
}




