<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@import url("/font/Gilroy/gilroyVar.css");
@import url("/font/Peristiwa/peristiwaVar.css");
@import url(special.css);

:root {
  --color-white-100: hsl(0, 0%, 100%);
  --color-white-200: hsl(0, 0%, 95%);
  --color-white-300: hsl(0, 0%, 85%);
  --color-white-400: hsl(0, 0%, 75%);
  --color-white-500: hsl(0, 0%, 65%);
  --color-white-600: hsl(0, 0%, 55%);
  --color-black-100: hsl(210, 17%, 12%);
  --color-black-200: hsl(210, 17%, 10%);
  --color-black-300: hsl(210, 16%, 8%);
  --color-black-400: hsl(210, 16%, 6%);
  --color-black-500: hsl(210, 15%, 4%);
  --color-black-600: hsl(210, 15%, 2%);
  --color-blue-100: hsl(212, 96%, 60%);
  --color-blue-200: hsl(213, 94%, 55%);
  --color-blue-300: hsl(217, 91%, 50%);
  --color-blue-400: hsl(221, 83%, 45%);
  --color-blue-500: hsl(224, 76%, 40%);
  --color-blue-600: hsl(226, 71%, 35%);
  --shadow-small: 0 1px 3px 0 rgba(0, 0, 0, 0.1),
    0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-medium: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-large: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --mainColor: #00b497;
  --gilB: "Gilroy-Bold", sans-serif;
  --gilH: "Gilroy-Heavy", sans-serif;
  --gilL: "Gilroy-Light", sans-serif;
  --gilM: "Gilroy-Medium", sans-serif;
  --gilR: "Gilroy-Regular", sans-serif;
  --shadow: 0 0 10px 3px #29292915;
}

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
  text-decoration: none;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background-color: #fff;
  font-family: var(--gilM);
  color: #292929;
  overflow-x: hidden;
}

a,
button {
  cursor: pointer;
  border: none;
  outline: none;
  color: inherit;
  background: none;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  line-height: 1.15;
  text-wrap: balance;
  word-wrap: break-word;
}

p {
  max-width: 50ch;
}

p,
li {
  text-wrap: pretty;
  line-height: inherit;
  word-wrap: break-word;
}

img,
svg,
picture,
video {
  font-style: italic;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  shape-margin: 1rem;
  vertical-align: middle;
}

img,
svg {
  background-size: cover;
  background-repeat: no-repeat;
  image-rendering: crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}

.section {
  margin-inline: auto;
  margin-block: 5rem 2rem;
}

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

.between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-tiny {
  font-size: var(--text-tiny);
}

.text-small {
  font-size: var(--text-small);
}

.text-base {
  font-size: var(--text-base);
}

.text-medium {
  font-size: var(--text-medium);
}

.text-large {
  font-size: var(--text-large);
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-family: var(--gilM);
}

.font-semi {
  font-family: var(--gilM);
  color: #292929;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.font-semi:hover {
  background-color: #00b497;
  padding: 0.3rem 0.6rem;
  color: #fff !important;
  border-radius: 10rem;
}

.font-bold {
  font-family: var(--gilB);
  font-size: 1.3rem;
  color: #292929;
}

.font-light {
  font-family: var(--gilL);
  font-size: 1rem;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-lowercase {
  text-transform: lowercase;
}

.text-capitalize {
  text-transform: capitalize;
}

.btn {
  display: inline-flex;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  align-items: center;
  justify-content: center;
  vertical-align: baseline;
  column-gap: 0.25rem;
  white-space: nowrap;
  padding-block: 0.5rem;
  padding-inline: 1.5rem;
  border-radius: 0.25rem;
  transition: all 0.25s ease;
}

.btn-default {
  color: #292929;
  background-color: var(--color-white-100);
  box-shadow: var(--shadow-medium);
}

.btn-darken {
  color: var(--color-white-100);
  background-color: #292929;
  box-shadow: var(--shadow-medium);
}

.header {
  margin-top: 2.5rem;
  z-index: 10;
  width: 100%;
  height: 100%;
}

.brand {
  font-family: inherit;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
  color: var(--color-blue-300);
}

.navbar-m {
  width: 100%;
  height: 5rem;
  margin-inline: auto;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
  height: 100%;
}

.navbar-block {
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(100vh - 4rem);
  opacity: 0;
  pointer-events: none;
  background-color: var(--color-white-100);
  transition: opacity 0.4s ease;
}

.navbar-block.is-active {
  opacity: 1;
  pointer-events: initial;
}

@media screen and (min-width: 62rem) {
  .navbar-m {
    display: flex;
    justify-content: space-between;
  }

  .navbar-block {
    position: initial;
    height: initial;
    opacity: 1;
    pointer-events: visible;
    background: none;
    transition: none;
  }
}

.menu {
  padding-block: 1rem;
  padding-inline: auto;
}

.menu-link-m {
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #292929;
  transition: color 0.3s ease;
  text-decoration: none !important;
}

@media screen and (min-width: 62rem) {
  .menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    column-gap: 1rem;
    height: 100%;
    padding: unset;
  }

  .menu-item-m {
    display: flex;
    cursor: pointer;
    padding: 0 0.6rem;
    font-family: var(--gilM);
    color: #292929;
    font-size: 1rem;
  }

  .menu-link-m {
    padding: unset;
  }
}

.dropdown-toggle-m {
  cursor: pointer;
  outline: none;
  user-select: none;
}

.dropdown-toggle-m i.bx {
  font-size: 1.5rem;
  line-height: inherit;
  transition: rotate 0.4s ease;
}

.dropdown-content {
  height: 0;
  overflow: hidden;
  background-color: #fafafa;
  transition: height 0.5s ease;
}

.dropdown-column,
.dropdown-group,
.dropdown-items {
  display: grid;
}

.dropdown-group {
  padding-bottom: 1rem;
  padding-inline: 1.5rem;
}

.dropdown-title {
  display: flex;
  column-gap: 1rem;
  align-items: center;
  padding-inline: 1rem;
}

.dropdown-icon i.bx {
  font-size: 1.5rem;
  line-height: 1.5;
  color: var(--color-blue-300);
}

.dropdown-items {
  row-gap: 0.5rem;
  padding-inline: 3.5rem;
  padding-top: 0.35rem;
}

.dropdown-link {
  font-size: var(--text-base);
  font-weight: 400;
  line-height: inherit;
  color: #292929;
  transition: color 0.3s ease;
}

.dropdown-show &gt; .dropdown-toggle-m i.bx {
  rotate: 180deg;
}

.dropdown-block {
  display: flex;
  align-items: flex-start;
  column-gap: 1rem;
  padding-top: 1rem;
  padding-inline: 1rem;
}

@media screen and (min-width: 62rem) {
  .dropdown-toggle-m {
    column-gap: 0.35rem;
    pointer-events: none;
  }

  .dropdown-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 0rem;
    opacity: 0;
    height: max-content;
    pointer-events: none;
    background-color: #fff;
    border-top: 0.1rem solid #29292917;
    border-bottom: 0.1rem solid #29292917;
    transition: top 0.4s, opacity 0.3s ease;
    z-index: 99999999;
  }

  .dropdown-column {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 2rem;
    max-width: 75rem;
    margin-inline: auto;
  }

  .dropdown-group {
    align-content: baseline;
    row-gap: 1.25rem;
    padding-block: 2rem;
  }

  .dropdown-group:first-child,
  .dropdown-group:last-child {
    margin: unset;
  }

  .dropdown-items {
    padding-top: unset;
  }

  .dropdown-block {
    padding-top: unset;
    padding-inline: unset;
  }

  .dropdown-m:hover &gt; .dropdown-content {
    cursor: initial;
    top: 9rem;
    opacity: 1;
    pointer-events: initial;
  }

  .fixed-header .dropdown-m:hover &gt; .dropdown-content {
    cursor: initial;
    top: 7.5rem;
    opacity: 1;
    pointer-events: initial;
  }

  .dropdown-m:hover &gt; .dropdown-toggle-m i.bx {
    rotate: 180deg;
  }
}

.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  width: 1.5rem;
  height: 1rem;
  border: none;
  outline: none;
  visibility: visible;
}

.burger-line {
  position: absolute;
  display: block;
  right: 0;
  width: 100%;
  height: 2.15px;
  opacity: 1;
  rotate: 0deg;
  border-radius: 0.15rem;
  background-color: #292929;
  transition: all 0.3s ease;
}

.burger-line:nth-child(1) {
  top: 0px;
}

.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}

.burger-line:nth-child(3) {
  top: 1rem;
}

.burger.is-active &gt; .burger-line:nth-child(1) {
  top: 0.5rem;
  rotate: 135deg;
}

.burger.is-active &gt; .burger-line:nth-child(2) {
  opacity: 0;
}

.burger.is-active &gt; .burger-line:nth-child(3) {
  top: 0.5rem;
  rotate: -135deg;
}

@media screen and (min-width: 62rem) {
  .burger {
    display: none;
    visibility: hidden;
  }
}

.logo {
  width: 12rem;
}

.top-dr {
  padding: 1rem 0;
}

.str-bg img {
  position: absolute;
  left: 0;
}

.social-area {
  gap: 7px;
  /* Sosyal medya ikonları arasındaki boşluk */
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 0.1rem solid #2929293d;
  /* Arka plan rengi */
  color: #292929;
  /* İkon rengi */
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 0.2rem;
}

.social-link:hover {
  background-color: #00b497;
  /* Hover'da arka plan rengini değiştir */
  color: #fff;
  /* Hover'da ikon rengini değiştir */
  border: none;
}

.social-link i {
  font-size: 0.9rem;
  /* İkon boyutu */
}

.font-bold i {
  font-size: 0.5rem !important;
  color: #00b497;
  display: flex;
  align-items: center;
  padding-right: 0.4rem;
}

.font-bold {
  display: flex;
  align-items: center;
}

.text-style {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--mainColor);
  text-decoration: underline;
  transition: all 0.15s ease;
}

.text-style:hover {
  font-size: 1.2rem;
  font-weight: 700;
  color: #292929;
  text-decoration: none;
  padding-left: 0.3rem;
  border-left: 0.4rem solid #292929;
}

.text-base.font-normal {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

.text-base.text-style-2 {
  font-size: 1rem;
  text-decoration: underline;
}

.g-btn {
  border: 0.1rem solid var(--mainColor);
  padding: 0.4rem 1.5rem !important;
  border-radius: 30rem;
  color: var(--mainColor);
  transition: all 0.4s ease;
}

.g-btn img {
  margin-left: 0.5rem;
}

.b-btn img {
  margin-left: 0.5rem;
  filter: brightness(0) invert(1);
}

.g-btn:hover {
  border: 0.1rem solid var(--mainColor);
  background-color: var(--mainColor);
  color: #fff;
}

.g-btn:hover img {
  filter: brightness(0) invert(1);
}

.b-btn {
  background-color: var(--mainColor);
  padding: 0.4rem 1.5rem !important;
  border-radius: 30rem;
  color: #fff;
  padding-top: 30rem;
  transition: all 0.4s ease;
}

.b-btn:hover {
  background-color: #292929;
}

.shop {
  position: fixed;
  right: -1.2rem;
  top: 10rem;
  z-index: 99;
}

.shop .shop-icon i {
  color: #fff;
  background-color: #00b497;
  padding: 0.7rem 1rem;
  padding-right: 2rem;
  font-size: 1.4rem;
  border-radius: 20rem;
  cursor: pointer;
  transition: all 0.4s ease;
}

.shop .shop-icon i:hover {
  color: #fff;
  background-color: #292929;
  padding: 0.7rem 1rem;
  padding-right: 4rem;
  font-size: 1.4rem;
  border-radius: 20rem;
  cursor: pointer;
}

/* Bayraklar */
.flag-icon {
  width: 30px;
  height: 20px;
  object-fit: cover;
  margin-right: 5px;
}

/* Dropdown butonu */
.dropdown-toggle img {
  border-radius: 3px;
}

/* Dropdown menüdeki bayraklar */
.dropdown-item img {
  margin-right: 10px;
}

/* Dil Seçici Mobil İçin */
.language-selector {
  margin-left: 8px;
  margin-right: 8px;
}

.language-selector .dropdown-toggle {
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border: none !important;
}

.dropdown-item:hover {
  background-color: #00b497;
  color: #fff;
}

.btn.btn-success {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  border-radius: 50rem;
}

.btn.btn-success img {
  filter: brightness(0) invert(1);
  margin-left: 0.5rem;
}

#splide-full .splide__arrow--prev {
  position: absolute;
  bottom: 0rem !important;
  left: 1rem;
  border-radius: 0.5rem 0 0 0.5rem;
  opacity: 1;
  background-color: var(--mainColor);
  width: 40px;
  height: 40px;
  transition: all 0.4s ease;
}

#splide-full .splide__arrow--next {
  left: 3.6rem;
  border-radius: 0rem 0.5rem 0.5rem 0rem;
  opacity: 1;
  background-color: var(--mainColor);
  width: 40px;
  height: 40px;
  transition: all 0.4s ease;
}

#splide-full .splide__arrow--next:hover,
#splide-full .splide__arrow--prev:hover {
  background-color: #292929;
  opacity: 1 !important;
}

#splide-full .splide__pagination__page.is-active {
  background-color: var(--mainColor);
  border-radius: 0.2rem;
  height: 0.3rem;
  width: 1rem;
}

#splide-full .splide__pagination__page {
  border-radius: 0.2rem;
  height: 0.3rem;
  width: 0.8rem;
}

#splide-full .splide__arrow svg {
  fill: #fff;
}

#splide-full .splide__arrows.splide__arrows--ltr {
  position: absolute;
  right: 7rem !important;
  bottom: 3.5rem;
}

.slide-img {
  object-fit: contain;
  width: 100%;
  min-height: 35rem;
  max-height: 35rem;
}

.splide__pagination {
  top: 50%;
  /* Dikeyde ortalamak için */
  right: 0;
  /* Sola hizalamak için */
  transform: translateY(-50%) translateX(50%) rotateZ(90deg);
  /* Tüm transform işlemleri bir arada */
  position: absolute;
  z-index: 1;
  padding: 0;
  bottom: auto;
  left: auto;
}

#splide-full h1 {
  font-size: 3rem;
  margin-bottom: 2.5rem;
}

#splide-full p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.fixed-header {
  margin-top: 0 !important;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  z-index: 999;
  /* Header her zaman üstte kalacak */
  transform: translateY(-100px);
  animation: slideDown 0.5s ease forwards;
  height: 8rem;
  padding: 1.2rem 0;
  box-shadow: var(--shadow);
}

@keyframes slideDown {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.slider-area {
  margin-top: 2rem;
}

.menu-item-m {
  margin-right: 1rem;
}

.social-icon-bar {
  display: flex;
  justify-content: flex-end;
  margin: 0 auto;
}

.search-bar {
    display: flex;
    /* align-items: center; */
    margin-left: 8px;
    margin-top: -7px;
}

.bagis-area {
  margin-top: 5rem;
  background-image: url(../img/Ellipse.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: auto;
  padding: 5rem 0;
  box-shadow: var(--shadow);
}

.bagis-area .splide__slide {
  padding: 0 1rem;
}

.slider-area .splide__slide {
  padding: 0 1rem;
}

    .slider-area .splide__slide .row {
        align-items: center;
        min-height: 400px;
    }

.bagis-area span {
  background-color: #fff;
  color: var(--mainColor);
  padding: 0.7rem 1rem;
  border-radius: 10rem;
  font-weight: 900;
}

.bagis-destek-label {
    background-color: #fff;
    color: var(--mainColor);
    padding: 0.7rem 1rem;
    border-radius: 10rem;
    font-weight: 900;
}

.bagis-area h1 {
    margin-top: 3rem;
    color: #fff;
    font-weight: 300;
}

.bagis-area h1 img {
  filter: brightness(0) invert(1);
}

.bagis-area h1 b {
  font-weight: bold;
}

.bagis-area p {
  margin-top: 3rem;
  color: #fff;
  font-size: 1.1rem;
}

.btn-light {
  border-radius: 10rem;
  color: var(--mainColor) !important;
  font-weight: 600;
}

.btn-light:hover {
  border-radius: 10rem;
  color: var(--mainColor) !important;
  font-weight: 600;
  background-color: #fff;
  border-color: #00b497;
}

.btn-light img {
  margin: 0 0.5rem;
}

.btn-m3 {
  margin-top: 2rem;
}

#splide-bagis img {
  width: 100%;
  height: 30rem;
  border-radius: 2rem;
  position: relative;
}

#splide-bagis .btn-success {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 3rem;
}

#splide-bagis h2 {
  text-align: end;
  width: 50%;
  float: right;
  margin-bottom: 2rem;
  color: var(--mainColor);
  font-weight: 100;
}

#splide-bagis h2 b {
  color: #292929;
  font-weight: bold !important;
}

#splide-bagis .splide__arrow--next {
  opacity: 1 !important;
  background-color: var(--mainColor);
  right: 0;
  border-radius: 0.3rem;
  padding: 0.1rem;
  font-size: 1.3rem;
}

#splide-bagis .splide__arrow {
  top: 60%;
  transform: translateY(-90%);
}

#splide-bagis .splide__arrow--prev {
  opacity: 1 !important;
  background-color: #fff;
  left: 0;
  border-radius: 0.3rem;
  padding: 0.1rem;
  font-size: 1.3rem;
}

#splide-bagis .splide__arrow--next svg {
  fill: #fff;
}

.faaliyet-area {
  margin-top: 5rem;
  width: 100%;
  background-color: #fff;
  box-shadow: var(--shadow);
  padding: 4rem 0;
  /*background-image: url(../img/public-stars-bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;*/
}

.faaliyet-area h1 {
  font-weight: bold;
  color: #292929;
  margin-bottom: 3rem;
}

.faaliyet-area h1 b {
  color: var(--mainColor);
}

.faaliyet-area p {
  margin-top: 1.2rem;
}

#splide-faaliyet img {
  width: 100%;
  object-fit: cover;
  height: 300px;
  border-radius: 1rem 1rem 0rem 0rem;
}

#splide-faaliyet h2 {
  color: #292929;
  text-align: center;
  background-color: #ffffff;
  padding: 2rem 4rem;
  width: 100%;
  margin: 0;
  font-family: var(--gilB);
  font-size: 1.4rem;
}

#splide-faaliyet .btn-success-card {
  display: flex;
  justify-content: center;
  padding: 0.9rem 0;
  background-color: #00b497;
  margin: 0;
  color: #fff;
  border-radius: 0 0 1.5rem 1.5rem;
  font-size: 1.2rem;
  font-family: var(--gilB);
  border-top: 0.1rem solid #ffffff4d;
}

#splide-faaliyet .splide__slide {
  padding: 0 1rem;
}

.faaliyet-area .mar-btn {
  margin-top: 2rem;
}

#splide-faaliyet .splide__arrow--prev {
  opacity: 1 !important;
  background-color: #fff;
  left: 0;
  border-radius: 0.3rem;
  padding: 0.1rem;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}

#splide-faaliyet .splide__arrow--next {
  opacity: 1 !important;
  background-color: var(--mainColor);
  right: 0;
  border-radius: 0.3rem;
  padding: 0.1rem;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}

#splide-faaliyet .splide__arrow--next svg {
  fill: #fff;
}

.proje-area {
  margin-top: 5rem;
  width: 100%;
  background-color: #fff;
}

.proje-area h1 {
  font-weight: bold;
  color: #292929;
  width: 50%;
}

/*! SVG Türkiye Haritası | CSS | MIT Lisans | dnomak.com */

.svg-turkiye-haritasi {
  width: 100%;
  overflow-x: hidden !important;
}

.svg-turkiye-haritasi svg {
  width: 100%;
  height: auto;
  overflow-x: hidden !important;
}

.il-isimleri {
  position: absolute;
  z-index: 2;
}

.il-isimleri div {
  font-family: var(--gilR);
  display: inline-block;
  background: var(--mainColor);
  color: #fff;
  padding: 0.1rem 2rem;
  border-radius: 10rem;
}

#svg-turkiye-haritasi path {
  cursor: pointer;
  fill: #f0f0f0;
}

#svg-turkiye-haritasi path:hover {
  fill: var(--mainColor);
}

.news-area {
  margin-top: 10rem;
  position: relative;
}

.news-area h1 {
  font-weight: bold;
  color: #292929;
  margin-bottom: 1.5rem;
}

#splide-haber {
  margin-top: 2rem;
  position: relative;
}

#splide-haber .splide__slide {
  position: relative;
  width: 100%;
}

#splide-haber .splide__slide img {
  width: 100%;
  height: 23rem;
  object-fit: cover;
  border-radius: 2rem;
  filter: grayscale(1) brightness(0.5);
  cursor: pointer;
  transition: all 0.4s ease;
}

#splide-haber .splide__slide img:hover {
  filter: grayscale(0) brightness(1);
}

#splide-haber .splide__slide {
  margin: 0 1rem;
}

#splide-haber h2 {
  position: absolute;
  z-index: 999999;
  left: 50%;
  transform: translateX(-50%);
  top: 22%;
  color: #fff;
  width: 75%;
  text-align: center;
  font-family: var(--gilB);
}

#splide-haber h6 span {
  position: absolute;
  z-index: 999999;
  left: 50%;
  transform: translateX(-50%);
  top: 8%;
  color: #fff;
  background: var(--mainColor);
  padding: 0.5rem 1rem;
  border-radius: 10rem;
  text-align: center;
  font-family: var(--gilB);
}

#splide-haber p {
  position: absolute;
  z-index: 999999;
  left: 50%;
  transform: translateX(-50%);
  top: 45%;
  color: #fff;
  width: 75%;
  text-align: center;
  font-family: var(--gilM);
}

#splide-haber a {
  position: absolute;
  z-index: 999999;
  left: 50%;
  transform: translateX(-50%);
  top: 80%;
  color: #fff;
  text-align: center;
  font-family: var(--gilM);
  transition: all 0.4s ease;
}

#splide-haber a i {
  transition: all 0.4s ease;
}

#splide-haber a:hover i {
  padding-left: 0.5rem;
}

#splide-haber .splide__arrow--next {
  opacity: 1 !important;
  background-color: var(--mainColor);
  right: 0;
  border-radius: 0.3rem;
  padding: 0.1rem;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}

#splide-haber .splide__arrow--prev {
  opacity: 1 !important;
  background-color: #fff;
  left: 0;
  border-radius: 0.3rem;
  padding: 0.1rem;
  font-size: 1.3rem;
  box-shadow: var(--shadow);
}

#splide-haber .splide__arrow--next svg {
  fill: #fff;
}

#splide-haber .splide__slide:not(.is-active) {
  filter: blur(3px);
}

#splide-haber .splide__slide.is-active {
  filter: blur(0px);
  transition: all 0.3s ease;
}

.support-area {
  margin-top: 5rem;
}

.support-area h1 {
  font-weight: bold;
  color: #292929;
  margin-bottom: 1.5rem;
  text-align: center;
}

#splide-support .splide__slide {
  margin: 0 1rem;
  border: 0.1rem dashed #2929293a;
  border-radius: 1rem;
}

#splide-support .splide__slide img {
  width: 100%;
  height: 8rem;
  object-fit: contain;
  padding: 1rem 1rem;
  filter: grayscale(1);
  transition: all 0.3s ease;
}

#splide-support .splide__slide img:hover {
  filter: grayscale(0);
}

#splide-support .splide__arrow--prev {
  background-color: #fff;
  opacity: 1;
  left: 0;
  font-size: 1.2rem;
  border-radius: 0.6rem;
  box-shadow: var(--shadow);
}

#splide-support .splide__arrow--next {
  background-color: #fff;
  opacity: 1;
  right: 0;
  font-size: 1.2rem;
  border-radius: 0.6rem;
  box-shadow: var(--shadow);
}

#splide-support {
  margin-top: 2rem;
}

#splide-support .splide__slide.is-active img {
  filter: grayscale(0);
}

footer {
  position: relative;
  width: 100%;
  background-color: var(--mainColor);
  padding: 8rem 0;
  padding-bottom: 3rem;
  color: #fff;
  margin-top: 15rem;
  background-image: url(../img/footer-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

footer .footer-link {
  display: block;
}

footer .col-3:nth-last-child(2) {
  text-align: end;
}

footer .logo-footer {
  width: 14rem;
}

footer h2 {
  font-weight: bold;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}

footer p {
  margin-top: 2rem;
  font-family: var(--gilL);
}

footer .footer-link {
  margin-top: 0.9rem;
}

footer hr {
  margin: 2rem 0 !important;
  margin-bottom: 1rem !important;
}

footer .location {
  margin-top: 0.9rem !important;
}

.sub-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-footer .social-area,
.acik-area,
.copyright {
  width: 33.3333%;
}

.acik-area {
  display: flex;
  justify-content: end;
}

.copyright {
  display: flex;
  justify-content: center;
}

.sub-footer .social-area a {
  margin: 0 1rem;
  margin-left: 0;
  font-size: 1.2rem;
  background-color: #fff;
  color: var(--mainColor);
  padding: 0.5rem;
  border-radius: 0.3rem;
  transition: all 0.3s ease;
  border: 0.1rem solid #fafafa00;
}

.sub-footer .social-area a:hover {
  border: 0.1rem solid #fff;
  background-color: #ffffff00;
  color: #fff;
}

.sub-footer .social-area i {
  width: 25px;
  height: 20px;
  text-align: center;
}

.sub-footer .acik-area img {
  width: 7rem;
}

footer .bulten {
  background-color: #00b497;
  position: absolute;
  top: -6rem;
  width: 1200px;
  left: 50%;
  transform: translateX(-50%);
  padding: 2rem 3.5rem;
  border-radius: 1.5rem 1rem 0 0;
  background-image: url(../img/bulten-img.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: contain;
  box-shadow: var(--shadow);
}

footer .bulten h2 {
  color: #292929;
  font-family: var(--gilB);
  margin: 0;
}

footer .bulten h2 span {
  color: var(--mainColor);
  font-family: var(--gilB);
  margin: 0;
}

footer .bulten p {
  color: #292929;
  font-family: var(--gilB);
  margin: 0;
  margin-top: 1rem;
}

.bulten .form-control {
  padding: 1.8rem 4rem;
  position: relative;
  border-radius: 1rem;
  box-shadow: none !important;
  border: none !important;
  outline: 0 !important;
  margin-top: 1rem;
}

.bulten .btn.btn-success {
  position: absolute;
  top: 50%;
  right: 4.5rem;
  transform: translateY(-50%);
}

.bulten i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #00b497 !important;
  font-size: 1.5rem;
  z-index: 9999999;
  right: 34rem;
}

#svg-turkiye-haritasi .active {
  fill: #00b497;
}

.map-area {
  margin-top: 5rem;
}

.map-area h1 {
  font-weight: bold;
  color: #292929;
  margin-bottom: 1.5rem;
  text-align: center;
}

.map-area h6 {
  color: var(--mainColor);
  margin-bottom: 1.5rem;
  text-align: center;
}

.input-form-area {
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.drop-area-city {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.drop-area-city #communityInput {
  width: 700px;
  text-align: center;
  border: none;
  border-bottom: 0.1rem solid #555555be;
  box-shadow: none !important;
}

.drop-area-city ul {
  width: 100%;
  border: none;
  box-shadow: var(--shadow);
}

#cityModal .modal-title {
  margin: 0 auto;
  font-weight: bold;
}

#cityModal .modal-header .btn-close {
  margin: 0 !important;
  position: absolute;
  right: 0.7rem;
  top: 1rem;
}

#cityModal h5 {
  color: #292929;
  text-align: center;
  font-size: 1rem;
  margin: 0.8rem 0;
}

#cityModal .social-link-modal {
  display: flex;
  justify-content: center;
  margin: 1.4rem auto;
}

#cityModal .social-link-modal a {
  color: #fff;
  background-color: var(--mainColor);
  padding: 0.5rem 1.5rem;
  margin: 0 auto;
  border-radius: 10rem;
  border: 0.2rem solid #fff;
}

#cityModal .modal-content {
  background-image: url(../img/modal-bg.png) !important;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  border: 1px solid #fff !important;
  box-shadow: var(--shadow);
}

#cityModal .modal-dialog {
  position: absolute !important;
  left: 50%;
  top: 50%;
  width: 500px;
  transform: translate(-50%, -50%);
}

.eCityModal .modal-title {
    margin: 0 auto;
    font-weight: bold;
}

.eCityModal .modal-header .btn-close {
    margin: 0 !important;
    position: absolute;
    right: 0.7rem;
    top: 1rem;
}

.eCityModal h5 {
    color: #292929;
    text-align: center;
    font-size: 1rem;
    margin: 0.8rem 0;
}

.eCityModal .social-link-modal {
    display: flex;
    justify-content: center;
    margin: 1.4rem auto;
}

    .eCityModal .social-link-modal a {
        color: #fff;
        background-color: var(--mainColor);
        padding: 0.5rem 1.5rem;
        margin: 0 auto;
        border-radius: 10rem;
        border: 0.2rem solid #fff;
    }

.eCityModal .modal-content {
    background-image: url(../img/modal-bg.png) !important;
    background-position: left bottom;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid #fff !important;
    box-shadow: var(--shadow);
}

.eCityModal .modal-dialog {
    position: absolute !important;
    left: 50%;
    top: 50%;
    width: 500px;
    transform: translate(-50%, -50%) !important;
}

.general-area-one {
  margin-top: 2rem;
}

.general-area-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.general-area-one h1 {
  color: #00b497;
  font-family: var(--gilB);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.general-area-one p {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: fit-content;
}

.general-area-one strong {
  color: #00b497;
}

.general-area-two {
  margin-top: 7rem;
}

.general-area-two img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.general-area-two h1 {
  color: #00b497;
  font-family: var(--gilB);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.general-area-two p {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  margin-right: 0;
}

.about-area-one {
  margin-top: 7rem;
}

.about-area-one img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.about-area-one h1 {
  color: #00b497;
  font-family: var(--gilB);
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.about-area-one p {
  font-size: 1rem;
  margin-bottom: 2.5rem;
  margin-right: 0;
  max-width: fit-content;
}

.about-area-two {
  margin-top: 7rem;
  position: relative;
}

.about-area-two .card-vm {
  position: relative;
  width: 100%;
  box-shadow: var(--shadow);
  padding: 2rem 3rem;
  border-radius: 1rem;
  height: 100%;
  margin-top: 1rem;
}

.about-area-two .card-vm img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 1;
  border-radius: 1rem;
  object-fit: cover;
}

.about-area-two .card-vm .color-doge {
  width: 80%;
  height: 100%;
  background-color: #ffffffe5;
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(0%, -50%);
  z-index: -1;
  border-radius: 15rem 200rem 0rem 15rem;
}

.about-area-two .card-vm h2 {
  color: #292929;
  margin-bottom: 2rem;
  font-size: 1.5rem;
  font-family: var(--gilB);
  position: absolute;
  top: -2rem;
  left: 0%;
  transform: translateX(25%);
  box-shadow: var(--shadow);
  background-color: #fff;
  border-radius: 1rem 1rem 0 0;
  padding: 0.8rem 2rem;
}

.about-area-two .card-vm p {
  color: #292929;
  margin: 2rem 0;
  margin-bottom: 0;
  font-size: 1rem;
  width: 60%;
}

.about-area-two .card-vm .color-doge:hover {
  background-color: #00b497;
}

.breadcrumb {
  position: relative;
  width: 100%;
  margin-top: 7rem;
  padding: 4rem 0;
  text-align: center;
  background-image: url(../img/bread-bg.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
}

.breadcrumb h1 img {
  display: none;
}

.breadcrumb h6 {
  margin-top: 1rem;
}

.breadcrumb h6 span {
  color: var(--mainColor);
}

.fast-link {
  position: absolute;
  bottom: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.fast-link a {
  background-color: #00b497;
  border-radius: 10rem;
  padding: 0.9rem 2rem;
  color: #fff;
  font-size: 1rem;
  font-family: var(--gilM);
  transition: all 0.3s ease;
}

.fast-link a:hover i {
  position: relative;
  opacity: 1;
  padding-left: 0.8rem;
  transition: all 0.3s ease;
}

.fast-link a:hover {
  background-color: #fff;
  color: #292929;
  box-shadow: var(--shadow);
}

.mali-area-one {
  margin-top: 7rem;
}

.mali-area-one .card-mali {
  border: 0.1rem solid #2929291f;
  padding: 1.5rem;
  border-radius: 1rem;
  margin-top: 1rem;
  transition: all 0.4s ease;
}

.mali-area-one .card-mali h6 {
  color: #00b497;
  text-align: center;
  background-color: #fff;
  padding: 1rem;
  border-radius: 10rem;
  border: 0.1rem solid #2929291f;
}

.mali-area-one .card-mali h5 {
  font-size: 1rem;
  text-align: center;
  margin-top: 1rem;
}

.mali-area-one .card-mali:hover {
  box-shadow: var(--shadow);
  border-color: transparent;
}

.iban-area-one {
  margin-top: 7rem;
}

.iban-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: var(--shadow);
  /* Hafif bir gölge efekti */
  padding: 30px;
  transition: all 0.3s ease;
  /* Hover efektleri için geçiş */
  margin-bottom: 20px;
  /* Kartlar arasında boşluk */
  height: 100%;
}

.iban-card img {
  width: 100%;
  height: 12rem;
  object-fit: contain;
}

/* Kart Hover Efekti */
.iban-card:hover {
  transform: translateY(-5px);
  /* Kartı biraz yukarı kaldırma efekti */
  box-shadow: var(--shadow);
  /* Hafif bir gölge efekti */
}

/* Kartın İçeriği */
.inp-div {
  margin-bottom: 20px;
}

.inp-div h5 {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.inp-div h6 {
  font-size: 15px;
  font-weight: normal;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Metni ve ikonu ayırma */
}

/* Kopyala Butonu */
.copy-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: #00b497;
  /* Öne çıkan renk için uyumlu bir ton */
  transition: color 0.3s ease;
}

.copy-btn:hover {
  color: #292929;
  /* Hover'da rengi koyulaştır */
}

.mali-area-one .card-faaliyet {
  display: flex;
  align-items: center;
  margin: 0 auto;
  border: 0.1rem solid #2929291f;
  border-bottom: 0.3rem solid #00b497;
  padding: 2rem 1rem;
  color: #292929;
  border-radius: 1rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.mali-area-one .card-faaliyet:hover {
  border: none;
  border-bottom: 0.3rem solid #00b49600;
  box-shadow: var(--shadow);
}

.mali-area-one .card-faaliyet h6 {
  font-size: 1.1rem;
  margin: 0;
}

.mali-area-one .card-faaliyet img {
  width: 2rem;
}

.button-area-one {
  margin-top: 1rem;
}

.button-area-one .card-button {
  display: flex;
  align-items: center;
  margin: 0 auto;
  border: 0.1rem solid #2929291f;
  border-bottom: 0.3rem solid #00b497;
  padding: 2rem 1rem;
  color: #292929;
  border-radius: 1rem;
  margin-top: 2rem;
  transition: all 0.3s ease;
}

.button-area-one .card-button:hover {
  border: none;
  border-bottom: 0.3rem solid #00b49600;
  box-shadow: var(--shadow);
}

.button-area-one .card-button h6 {
  font-size: 1.1rem;
  margin: 0;
}

.button-area-one .card-button img {
  width: 2rem;
}

.news-page-area {
  margin-top: 7rem;
}

.news-page-area .card-news {
  display: flex;
  flex-direction: column;
  /* İçerikleri dikey hizalar */
  justify-content: space-between;
  /* İçeriklerin aralarında boşluk bırakır */
  height: 100%;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: var(--shadow);
  /* Gölge efekti */
  overflow: hidden;
  text-align: center;
}

.news-page-area .card-news img {
  width: 100%;
  height: 15rem;
  /* Resim yüksekliği */
  object-fit: cover;
  /* Resmi alanı tam dolduracak şekilde kırpar */
  border-radius: 1rem 1rem 0 0;
  /* Üst kenar yuvarlama */
}

.news-page-area .card-news .box-news {
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  /* İçeriği aşağı doğru hizalar */
  flex-grow: 1;
  /* İçerik kutusu kartın geri kalanını kaplar */
}

.news-page-area .card-news .box-news h1 {
  font-size: 1.6rem;
  font-family: var(--gilB);
  margin-bottom: 1.5rem;
}

.news-page-area .card-news .box-news p {
  flex-grow: 1;
  /* Paragraf kart içinde yayılır */
  margin-bottom: 1.5rem;
}

.news-page-area .card-news .box-news a {
  align-self: center;
  /* Butonu merkeze hizalar */
}

.news-page-area .card-news .box-news a i {
  padding-left: 0.2rem;
  transition: all 0.3s ease;
}

.news-page-area .card-news .box-news a:hover i {
  padding-left: 1rem;
}

/* Pagination (Sayfalandırma) stili */
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  margin-top: 2rem;
}

.pagination .page-link {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  line-height: 1.25;
  color: #00b497;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #00b497;
  border-color: #00b497;
}

.pagination .page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #00b497;
  border-color: #00b497;
}

.pagination .page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

/* News Detail Styles */
.news-detail {
  margin-top: 7rem;
}

.news-detail-card {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 2rem;
  overflow: hidden;
}

.news-detail-image {
  border-radius: 10px;
  max-height: 450px;
  object-fit: cover;
  margin-bottom: 2rem;
}

.news-content {
  padding: 0 1rem;
}

.news-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.news-date {
  font-size: 1rem;
  color: #00b497;
  margin-bottom: 2rem;
}

.news-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.news-text blockquote {
  font-size: 1.3rem;
  font-style: italic;
  background-color: #f9f9f9;
  padding: 1rem;
  border-left: 5px solid #00b497;
  margin: 1.5rem 0;
  color: #555;
}

.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 3rem;
}

.news-footer .btn {
  display: flex;
  align-items: center;
}

.news-footer .share-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.news-footer .share-icons a {
  font-size: 1.5rem;
  color: #00b497;
  transition: color 0.3s ease;
}

.news-footer .share-icons a:hover {
  color: #00b497;
}

/* Job Openings Area Styles */
.job-openings-area {
  margin-top: 7rem;
  padding-bottom: 3rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
}

.job-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.job-card:hover {
  transform: translateY(-5px);
}

.job-image {
  width: 100%;
  height: 300px;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
}

.job-header {
  padding: 1rem;
  text-align: center;
}

.job-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #292929;
}

.job-location {
  display: block;
  font-size: 1rem;
  color: #777;
  margin-top: 0.5rem;
}

.job-details {
  padding: 1rem;
  flex-grow: 1;
  /* Kartın içeriğini esnek hale getirir */
}

.job-details p {
  font-size: 1rem;
  line-height: 1.5;
}

.job-details ul {
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}

.job-details ul li {
  list-style: disc;
}

.job-footer {
  padding: 1rem;
  text-align: center;
}

/* Financial Reports Area Styles */
.financial-reports-area {
  margin-top: 7rem;
  padding-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
}

.financial-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: #333;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  height: 250px;
}

.financial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.financial-card .card-icon img {
  width: 4rem;
  margin-bottom: 2rem;
}

.card-text h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #292929;
  margin-bottom: 0.5rem;
}

.card-text p {
  font-size: 1rem;
  color: #666;
  margin: 0;
}

/* Yönetim Kurulu Alanı */
.board-members-area {
  margin-top: 7rem;
  padding-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
}

.member-card {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

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

.member-photo {
  width: 230px;
  height: 230px;
  border-radius: 100%;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.member-info h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #292929;
  margin-bottom: 0.5rem;
}

.member-info h3 {
  font-size: 1rem;
  font-weight: 500;
  color: #00b497;
  margin: 1rem 0;
}

.member-info p {
  font-size: 0.9rem;
  color: #666;
  text-align: left;
}

/* Ekibimiz Alanı */
.team-area {
  margin-top: 5rem;
  padding-bottom: 3rem;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 3rem;
  color: #333;
}

.team-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.team-photo {
  width: 250px;
  height: 300px;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  object-fit: cover;
}

.team-card h2 {
  font-size: 1.5rem;
  color: #292929;
  margin-bottom: 0.3rem;
}

.team-card h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #00b497;
}

/* Komiteler Alanı */
.committee-area {
  margin-top: 7rem;
}

.committee {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 4rem;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.committee:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.committee-img {
  flex: 1 1 100%;
  max-width: 100%;
  width: 100%;
  overflow: hidden;
}

.committee-img img {
  width: 100%;
  height: auto;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.committee-content {
  flex: 1 1 100%;
  padding: 2rem;
  text-align: justify;
}

.committee-content h2 {
  margin-bottom: 1.5rem;
  text-align: center;
}

.committee-content p {
  font-size: 1rem;
  color: #292929;
  max-width: 600px;
}

.committee-content h2::first-letter {
  font-size: 2.8rem;
  font-family: "Peristiwa", sans-serif;
  color: #00b497;
}

/* Activities Section */
.activities-section {
  margin-top: 7rem;
}

/* Sidebar */
.activities-section .sidebar {
  background-color: #ffffff;
  /* Beyaz arka plan */
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  height: 100% !important;
}

/* Arama Barı */
.activities-section .search-bar {
  margin-bottom: 1.5rem;
}

.activities-section .input-group {
  display: flex;
}

.activities-section .search-input {
  border: 1px solid #ddd;
  border-radius: 0.4rem 0 0 0.4rem;
  padding: 0.6rem 1rem;
  flex: 1;
  transition: border-color 0.3s;
}

.activities-section .search-input:focus {
  border-color: #00b497;
  /* Focus rengi */
  box-shadow: 0 0 5px rgba(0, 179, 151, 0.5);
}

.activities-section .btn-search {
  background-color: #00b497;
  border: none;
  border-radius: 0 0.4rem 0.4rem 0;
  padding: 0.6rem 1rem;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s;
}

/* Popüler Faaliyetler */
.popular-activities {
  margin-top: 2rem;
}

.popular-activities h5 {
  font-weight: bold;
  margin-bottom: 1rem;
}

/* Kategoriler */
.activities-section .category-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #00b497;
  text-decoration: none;
  /* Link altını kaldır */
  transition: background-color 0.3s;
}

.activities-section .category-link:hover {
  background-color: rgba(0, 179, 151, 0.1);
  /* Hover rengi */
}

/* Card Yapısı */
.activity-card {
  border: none;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s;
  box-shadow: var(--shadow);
  height: 100%;
}

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

.activity-card img {
  height: 200px;
  /* Sabit yükseklik */
  object-fit: cover;
  /* Resmin alanı doldurmasını sağlar */
}

.activities-section .card-body {
  text-align: center;
  /* Metni ortala */
}

.activities-section .card-title {
  color: #292929;
  margin-bottom: 0;
}

.activities-section .btn-success {
  margin-top: 1rem;
  /* Butonun üst boşluğu */
}

.activities-section .card-footer {
  background-color: #fff;
  display: flex;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 2rem;
  border: none;
  padding: 0;
}

/* Detaylar Bölümü */
.details-section {
  margin-top: 7rem;
  padding: 2rem 0;
  background-color: #f9f9f9;
  /* Hafif arka plan rengi */
}

/* Kapak Fotoğrafı */
.cover-photo img {
  border-radius: 10px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 30rem;
  object-fit: cover;
}

/* Başlık */
.details-title {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 2rem 0;
  text-align: center;
  color: var(--mainColor);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* İçerik Alanı */
.content-area {
  margin-top: 3rem;
  background: white;
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.content-subtitle {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 1.5rem;
}

/* Düzenlenebilir Alan */
.editable-area {
  border-left: 4px solid var(--mainColor);
  /* Sol tarafta vurgu çizgisi */
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border: 1px dashed #ddd;
  /* Kesik kenar */
  border-radius: 5px;
}

.editable-area ul {
  padding-left: 1.5rem;
  list-style-type: disc;
  margin: 1.5rem 0;
}

.editable-area ul li {
  margin-bottom: 0.8rem;
}

/* Blok Alıntı (Quote) */
.quote {
  margin: 2rem 0;
  padding: 1rem;
  border-left: 4px solid var(--mainColor);
  background-color: #f9f9f9;
  font-style: italic;
  color: #555;
  font-size: 1.1rem;
}

/* Calendar Section */
.calendar-section {
  margin-top: 7rem;
}

.calendar-title {
  font-size: 2.5rem;
  text-align: center;
  color: var(--mainColor);
  margin-bottom: 3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Calendar Container */
.calendar-container {
  display: flex;
  justify-content: center;
}

#calendar {
  width: 100%;
  border: 1.8px dashed #ddd;
  border-radius: 10px;
  padding: 1rem;
  background-color: white;
  box-shadow: var(--shadow);
}

/* Modal */
.calendar-section .modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

.calendar-section .modal-content {
  background-color: white;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 600px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}

.calendar-section .close {
  position: absolute;
  top: 1rem;
  right: 2rem;
  color: #292929b4;
  font-size: 36px;
  font-weight: bold;
  cursor: pointer;
}

.calendar-section .close:hover,
.calendar-section .close:focus {
  color: #e90752;
}

.calendar-section .event-details {
  text-align: center;
}

.calendar-section .event-details img {
  object-fit: contain;
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.calendar-section .event-details h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.calendar-section .event-details p {
  font-size: 1.2rem;
  color: #666;
}

.calendar-section .fc-h-event {
  background-color: #00b497 !important;
  border-color: #00b497 !important;
  text-align: center !important;
  z-index: 999999 !important;
}

.calendar-section .fc-day-today {
  background-color: transparent !important;
  /* Açık sarı renk */
  background: none !important;
  background-image: url(../img/logodikey.png) !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: contain !important;
  z-index: -1 !important;
}

.calendar-section .fc .fc-button-primary:disabled,
.fc .fc-button-primary {
  background-color: #00b497 !important;
  border-color: #00b497 !important;
  box-shadow: none !important;
}

.notification-section {
  margin-top: 7rem;
}

.notification-section .container {
  max-width: 700px;
  background-color: white;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border-radius: 15px;
  position: relative;
}

.notification-section .form-group {
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.notification-section label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #555;
}

.notification-section input,
.notification-section select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 0.1rem solid #ddd;
  border-radius: 0.5rem;
  transition: all 0.3s;
  background-color: #ffffff;
}

.notification-section input:focus,
.notification-section select:focus {
  outline: none;
  border-color: #00afa3;
  box-shadow: var(--shadow);
}

.notification-section select {
  background-color: #f9f9f9;
  cursor: pointer;
}

.notification-section .btn-success {
  width: 100%;
}

.notification-section .btn-submit:hover {
  background-color: #008d79;
}

.notification-section .form-group:last-child {
  margin-bottom: 0;
}

.articles-section {
  margin-top: 7rem;
}

.articles-section .section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #00afa3;
  font-family: "Poppins", sans-serif;
}

/* Makale Elemanı */
.article-item {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Makale Görseli */
.article-image {
  flex: 1;
  margin-right: 2rem;
}

.article-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 100%;
}

/* Makale İçerik */
.article-content {
  flex: 2;
}

.article-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.8rem;
  font-weight: bold;
}

.article-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.article-date {
  font-size: 0.9rem;
  color: #999;
}

.articles-section .btn-success i {
  transition: all 0.3s ease;
}

.articles-section .btn-success:hover i {
  padding-left: 0.5rem;
}

/* Detay Sayfası */
.article-detail-section {
  margin-top: 7rem;
}

.article-detail-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.blogs-section {
  margin-top: 7rem;
}

.blogs-section .section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  color: #00afa3;
  font-family: "Poppins", sans-serif;
}

/* Makale Elemanı */
.blog-item {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Makale Görseli */
.blog-image {
  flex: 1;
  margin-right: 2rem;
}

.blog-image img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  height: 100%;
}

/* Makale İçerik */
.blog-content {
  flex: 2;
}

.blog-title {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 0.8rem;
  font-weight: bold;
  color: #00b497;
}

.blog-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-date {
  font-size: 0.9rem;
  color: #999;
}

.blogs-section .btn-success i {
  transition: all 0.3s ease;
}

.blogs-section .btn-success:hover i {
  padding-left: 0.5rem;
}

/* Detay Sayfası */
.blog-detail-section {
  margin-top: 7rem;
}

.blog-detail-section .container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.detail-cover-photo {
  position: relative;
}

/* Kapak Fotoğrafı */
.detail-cover-photo img {
  position: relative;
  width: 100%;
  height: 40rem;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Başlık ve Tarih */
.detail-header {
  margin: 2rem 0;
  text-align: start;
}

.detail-title {
  font-size: 2rem;
  color: #292929;
}

/* İçerik */
.detail-content {
  margin-top: 3rem;
  background-color: #fff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  border: 0.13rem dashed #e7e7e7;
}

.detail-content p {
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.detail-content p:last-child {
  margin-bottom: 0;
}

.publish-date {
  text-align: center;
  background-color: var(--mainColor);
  border-radius: 20rem;
  padding: 0.7rem 1.5rem;
  color: #fff;
  position: absolute;
  top: 1rem;
  right: 1rem;
  box-shadow: var(--shadow);
}

.book-section {
  margin-top: 7rem;
}

.book-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}

.content-book h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #292929;
}

.content-book p {
  font-size: 1rem;
  color: #666;
  line-height: 1.8;
}

.content-book p:last-of-type {
  margin-bottom: 0;
}

.book-section .content {
  background-color: #fff;
  width: 50%;
  padding-left: 0 !important;
  box-shadow: var(--shadow);
  margin: 0;
  border-radius: 0 1rem 1rem 0;
  margin-top: 2.5rem;
}

.book-section .img-area {
  padding-right: 0 !important;
  box-shadow: var(--shadow);
  border-radius: 1rem 0 0 1rem;
  margin-top: 2.5rem;
}

.book-section .content-book {
  padding-left: 2rem;
}

.contact-section .container {
  position: relative;
  width: 100%;
  margin-top: 7rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-section .form {
  width: 100%;
  max-width: 820px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-section .contact-form {
  background-color: var(--mainColor);
  position: relative;
}

.contact-section .circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, var(--mainColor) 9);
  position: absolute;
}

.contact-section .circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.contact-section .circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-section .contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: var(--mainColor);
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

.contact-section form {
  padding: 2.3rem 2.2rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.contact-section .title {
  color: #fff;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.contact-section .input-container {
  position: relative;
  margin: 1rem 0;
}

.contact-section .input {
  width: 100%;
  outline: none;
  border: 1px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 5px;
  transition: 0.3s;
}

.contact-section textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 5px;
  resize: none;
  overflow-y: auto;
}

.contact-section .input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 0.9rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.contact-section .input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.contact-section .btn {
  background-color: #fff;
  border-radius: 10rem;
  color: var(--mainColor);
  width: 100%;
}

.contact-section .input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.contact-section .input-container span:before,
.contact-section .input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: var(--mainColor);
  top: 50%;
  transform: translateY(-50%);
}

.contact-section .input-container span:before {
  left: 50%;
}

.contact-section .input-container span:after {
  right: 50%;
}

.contact-section .input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
  font-size: 0.8rem;
}

.contact-section .input-container.focus span:before,
.contact-section .input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-section .contact-info {
  padding: 2.3rem 2.2rem;
  position: relative;
}

.contact-section .contact-info .title {
  color: var(--mainColor);
}

.contact-section .text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.contact-section .information {
  margin: 2rem 0;
}

.contact-section .information i {
  color: var(--mainColor);
  padding-right: 1rem;
}

.contact-section .icon {
  width: 28px;
  margin-right: 0.7rem;
}

.contact-section .social-media {
  padding: 2rem 0 0 0;
}

.contact-section .social-media p {
  color: #333;
}

.contact-section .social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.contact-section .social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: var(--mainColor);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.contact-section .social-icons a:hover {
  transform: scale(1.05);
}

.contact-section .contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid var(--mainColor);
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.contact-section .big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, var(--mainColor), var(--mainColor));
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.contact-section .big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.contact-section .square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .contact-section .form {
    grid-template-columns: 1fr;
  }

  .contact-section .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-section .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .contact-section .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .contact-section .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .contact-section .text {
    margin: 1rem 0 1.5rem 0;
  }

  .contact-section .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .contact-section .container {
    padding: 1.5rem;
  }

  .contact-section .contact-info:before {
    display: none;
  }

  .contact-section .square,
  .contact-section .big-circle {
    display: none;
  }

  .contact-section form,
  .contact-section .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .contact-section .text,
  .contact-section .information,
  .contact-section .social-media p {
    font-size: 0.8rem;
  }

  .contact-section .title {
    font-size: 1.15rem;
  }

  .contact-section .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .contact-section .icon {
    width: 23px;
  }

  .contact-section .input {
    padding: 0.45rem 1.2rem;
  }

  .contact-section .btn {
    padding: 0.45rem 1.2rem;
  }
}

.map-google-section {
  margin-top: 5rem;
}

.map-google-section iframe {
  width: 100%;
  /* Genişliği %100 yapar */
  height: 30rem;
  margin-top: 2rem;
  background-color: #fff;
  padding: 2rem;
  box-shadow: var(--shadow);
  border-radius: 1rem;
  filter: hue-rotate(320deg);
}

.volunteer-section {
  margin-top: 7rem;
}

.volunteer-section .nav-tabs {
  justify-content: center;
  --bs-nav-tabs-border-color: none !important;
}

.volunteer-section .tab-pane form {
  margin: auto;
  margin-top: 2rem;
  box-shadow: var(--shadow);
  padding: 2rem;
  border-radius: 0.5rem;
}

.volunteer-section .form-control {
  border-radius: 8px;
  padding: 12px;
  border: 0.1rem dashed #29292929;
  box-shadow: none !important;
}

.volunteer-section .form-control:focus {
  border: 0.1rem dashed var(--mainColor);
}

.volunteer-section .form-label {
  font-weight: bold;
  color: #333;
}

.volunteer-section .nav-tabs .nav-link {
  color: #292929;
}

.volunteer-section .nav-tabs .nav-link.active {
  color: var(--mainColor);
  border: 0.1rem dashed #29292929 !important;
  box-shadow: var(--shadow);
}

.volunteer-info-section {
  margin-top: 7rem;
}

.volunteer-info-section .img-fluid {
  border-radius: 8px;
}

.volunteer-info-section .content-text {
  padding-left: 30px;
}

.volunteer-info-section h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.volunteer-info-section p {
  font-size: 16px;
  margin-bottom: 20px;
}

.volunteer-info-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.volunteer-info-section li {
  font-size: 16px;
  margin-bottom: 10px;
}

.static-page {
  margin-top: 7rem;
}

.static-page-cop {
  box-shadow: var(--shadow);
  padding: 5rem 3rem;
  border: 0.1rem dashed #29292929;
  border-radius: 1rem;
}

#searchModal .modal-content {
  border-radius: 4rem;
  padding: 1rem;
  border: none;
  box-shadow: none !important;
  outline: none !important;
  background-image: url(../img/modal-bg.png);
  background-position: left center;
  background-repeat: no-repeat;
}

#searchModal .modal-header {
  border-bottom: none;
  text-align: center;
  color: #292929;
}

#searchModal input {
  border-radius: 10rem 0rem 0rem 10rem;
  border: 0.1rem dashed #29292929;
  box-shadow: none;
}

#searchModal input:focus {
  border-radius: 10rem 0rem 0rem 10rem;
  border: 0.1rem dashed var(--mainColor);
}

#searchModal .btn-primary {
  border-radius: 0rem 10rem 10rem 0rem;
  background-color: var(--mainColor);
  border-color: var(--mainColor);
}

.wpcf7 .input-container {
  position: relative;
  margin-bottom: 35px;
}

/* Input ve textarea için */
.wpcf7 .input-container input,
.wpcf7 .input-container textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: transparent;
  font-size: 1rem;
  outline: none;
  color: #fff; /* Kullanıcının yazdığı metin de beyaz olsun */
}

/* Placeholder rengi beyaz */
.wpcf7 .input-container input::placeholder,
.wpcf7 .input-container textarea::placeholder {
  color: #fff;
  opacity: 1;
}

.wpcf7 .input-container input::-webkit-input-placeholder,
.wpcf7 .input-container textarea::-webkit-input-placeholder {
  color: #fff;
}

.wpcf7 .input-container input:-ms-input-placeholder,
.wpcf7 .input-container textarea:-ms-input-placeholder {
  color: #fff;
}

.wpcf7 .input-container input::-moz-placeholder,
.wpcf7 .input-container textarea::-moz-placeholder {
  color: #fff;
  opacity: 1;
}

.wpcf7 .input-container input:-moz-placeholder,
.wpcf7 .input-container textarea:-moz-placeholder {
  color: #fff;
  opacity: 1;
}

/* Label pozisyonu */
.wpcf7 .input-container label {
  position: absolute;
  top: 14px;
  left: 18px;
  font-size: 1rem;
  color: #777;
  background-color: #00b894; /* Form arka plan rengiyle uyumlu */
  padding: 0 5px;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Label yukarı çıksın */
.wpcf7 .input-container input:focus ~ label,
.wpcf7 .input-container input:not(:placeholder-shown) ~ label,
.wpcf7 .input-container textarea:focus ~ label,
.wpcf7 .input-container textarea:not(:placeholder-shown) ~ label {
  top: -10px;
  left: 10px;
  font-size: 0.75rem;
  color: #fff;
}

/* Hata mesajı (kırmızı uyarılar) */
.wpcf7-not-valid-tip {
  color: #ffdddd;
  background-color: transparent;
  font-size: 0.9rem;
  margin-top: 4px;
  display: block;
}

/* Genel form uyarısı */
.wpcf7-response-output {
  border: 2px solid #ffa500;
  color: #fff;
  padding: 10px 15px;
  margin-top: 15px;
  border-radius: 5px;
  background-color: #ffa50030;
  font-weight: 500;
}

/* Gönder butonu */
.wpcf7 .btn {
  background-color: #fff;
  color: #00b894;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}

.wpcf7 .btn:hover {
  background-color: #f2f2f2;
}

input.wpcf7-form-control.wpcf7-text.wpcf7-validates-as-required.input::placeholder {
  color: white;
}

input.wpcf7-form-control.wpcf7-tel.wpcf7-text.wpcf7-validates-as-tel.input::placeholder {
  color: white;
}

textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required.input::placeholder {
  color: white;
}
</pre></body></html>