:root {
  --color1: #fff;
  --color2: #f9a392;
  --color3: #323232;
  --color4: #8ed4cc;
  --color5: #757575;

  --font1: "Elms Sans", sans-serif;
  --font2: "Parisienne", cursive;
  --font3: "Elms Sans", sans-serif;
  /*
  --font1: Raleway, Helvetica, Arial, sans-serif;
  --font3: "Roboto Slab", serif;
  */
}
a {
  text-decoration: none;
}
body {
  background-color: #fff;
  margin: 0;
  padding: 0;
  color: var(--color3);
  font-family: var(--font1);
}
body.menu-open {
  overflow: hidden;
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: all 0.4s ease;
  background-color: transparent; /* Başlangıçta şeffaf */
}

header.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.site-header .logo {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  align-items: center;
}
header.site-header .logo img {
  width: auto;
  height: 100px;
}
header.site-header .main-nav {
  flex-grow: 1;
  display: flex;
  justify-content: end;
  padding-right: 25px;
  border-right: 1px solid #ffffff1f;
  margin-right: 25px;
}
header.site-header .main-nav ul {
  display: flex;
  list-style: none;
  gap: 29px;
  margin-bottom: 0;
  align-items: center;
  margin-top: 0;
}
header.site-header .main-nav a {
  padding: 8px 10px;
  border-bottom: 3px solid #ffffff17;
  letter-spacing: 0.3px;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  color: var(--color1);
}
header.site-header .main-nav a:hover,
header.site-header .main-nav a.active {
  color: var(--color1);
  border-color: #fff;
}
header.site-header .has-dropdown > a {
  display: flex;
  align-items: center;
  gap: 5px;
}
header.site-header .has-dropdown > a::after {
  content: "∨";
  font-size: 12px;
}
header.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
}
header.site-header .menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px 0;
  transition: all 0.4s;
}
header.site-header .menu-toggle.is-active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header.site-header .menu-toggle.is-active .bar:nth-child(2) {
  opacity: 0;
}
header.site-header .menu-toggle.is-active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header.site-header .nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0009;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
header.site-header .nav-overlay.is-active {
  opacity: 1;
  visibility: visible;
}
header.site-header .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
header.site-header .header-right .cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
}
header.site-header .header-right .cart-icon svg {
  width: 20px !important;
  height: 20px !important;
  fill: #fff;
}
@media (max-width: 991.98px) {
  header.site-header .menu-toggle {
    display: block;
  }
  header.site-header .main-nav {
    justify-content: flex-end;
  }
  header.site-header .main-nav ul {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: #1a1a1a;
    padding: 120px 40px 40px;
    align-items: flex-start;
    gap: 25px;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 999;
  }
  header.site-header .main-nav ul.is-active {
    left: 0;
  }
  header.site-header .main-nav ul a {
    font-size: 20px;
  }
}

header.site-header.shrink {
  background-color:#481B43; /* mor renk */
  padding: 10px 0; /* küçülme efekti */
}

header.site-header.shrink .logo img {
  width: auto;
  height: 40px;
}

header.site-header.hide {
  transform: translateY(0%);
}

.slider-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  background-color: #333;
  overflow: hidden;
}
.slider-container .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  display: flex;
  align-items: center;
}
.slider-container .slide img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.slider-container .slide.active {
  opacity: 1;
}
.slider-container .slide.active img {
  z-index: 1;
}
.slider-container .slide .text-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9;
  background: #0000007a;
}
.slider-container .slide .textic {
  position: relative;
  z-index: 9;
  color: #fff;
  text-align: center;
  margin: 20px auto 0;
}
.slider-container .slide .textic .icon1 {
  height: 25px;
  margin: 0 auto 15px;
  display: block;
  text-align: center;
  width: 100%;
}
.slider-container .slide .textic .icon1 img {
  width: auto;
  height: 19px;
  position: relative;
}
.slider-container .slide .textic .text1 {
  display: block;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  font-size: 48px;
  line-height: 1.3;
  margin-bottom: 0;
  color: #fff;
  font-family: var(--font2);
}
.slider-container .slide .textic .text2 {
  display: block;
  font-weight: 300;
  font-size: 68px;
  font-family: var(--font1);
  margin-bottom: 15px;
}
.slider-container .slide .textic .text3 {
  display: block;
  font-weight: 400;
  font-size: 17px;
  font-family: var(--font3);
  margin-bottom: 25px;
}
.slide.active {
  opacity: 1;
}
.slider-container .slide .textic .text-btn {
  z-index: 11;
  background-color:#481B43;
  font-family: Raleway;
  text-transform: uppercase;
  display: inline-block;
  will-change: transform;
  touch-action: manipulation;
  height: auto;
  width: auto;
  color: var(--color1);
  white-space: normal;
  min-height: 0;
  min-width: 0;
  max-height: none;
  max-width: none;
  text-align: center;
  line-height: 60px;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 11px;
  border-color: transparent;
  padding-left: 69px;
  padding-right: 69px;
  backdrop-filter: none;
  transform: translate(0px, 0px);
}
.slider-container .slide .textic .text-btn:hover {
  background-color: var(--color1);
  color: #481B43;
}
.slider-container .slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #00000080;
  color: #fff;
  border: none;
  padding: 5px 10px;
  font-size: 23px;
  display: flex;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  border-radius: 5px;
  z-index: 10;
  transition: background-color 0.3s ease;
  height: 42px;
  width: 42px;
}
.slider-container .slider-btn svg {
  width: 22px !important;
  height: 22px !important;
  fill: #fff;
}
.slider-container .prev-btn {
  left: 15px;
}
.slider-container .next-btn {
  right: 15px;
}
.slider-container .slider-btn:hover {
  background-color: #000c;
}
.slider-container .slide .textic > * {
  opacity: 0;
  transform: translateY(40px);
}
.slider-container .slide.active .textic > * {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.slider-container .slide.active .textic .text1 {
  transition-delay: 0.2s;
}
.slider-container .slide.active .textic .text2 {
  transition-delay: 0.4s;
}
.slider-container .slide.active .textic .text3 {
  transition-delay: 0.6s;
}
.slider-container .slide.active .textic .text-btn {
  transition-delay: 0.8s;
}
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ffffff80;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.slider-dots .dot:hover {
  background-color: #fffc;
}
.slider-dots .dot.active {
  background-color: #fff;
  transform: scale(1.2);
}
.hizmetler-ikon-alani {
  width: 100%;
  height: auto;
  background-color: #f8f8f8;
  padding: 60px 0;
}

.hizmetler-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.hizmet-kutusu {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.hizmet-kutusu-icerik {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
  box-sizing: border-box;
  background: #fff;
}
.hizmet-kutusu-resim img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hizmetler-item:hover .hizmet-kutusu.hizmet-kutusu-resim img {
  transform: scale(1.1);
}
.ikon-alani {
  position: relative;
  height: 64px;
  width: 64px;
  margin-bottom: 25px;
  transition: transform 0.4s ease-out;
}
.ikon-alani img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.4s ease;
}
.ikon-hover {
  opacity: 0;
}
.hizmetler-item:hover .hizmet-kutusu-icerik .ikon-alani {
  transform: translateY(-15px);
}
.hizmetler-item:hover .hizmet-kutusu-icerik .ikon-orijinal {
  opacity: 0;
}
.hizmetler-item:hover .hizmet-kutusu-icerik .ikon-hover {
  opacity: 1;
}
.hizmet-kutusu-icerik h3 {
  font-family: var(--font1);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0 0 15px;
  text-transform: uppercase;
}
.hizmet-kutusu-icerik p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--metin-rengi);
  margin: 0;
  font-family: var(--font3);
}
.detay-link {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--baslik-rengi);
  text-decoration: none;
  margin-top: 25px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.hizmetler-item:hover .hizmet-kutusu-icerik .detay-link {
  opacity: 1;
  transform: translateY(0);
}

.hizmetler-item:hover .hizmetler-ikon-alani svg {
  fill: red;
}

@media (max-width: 992px) {
  .hizmetler-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .hizmetler-grid {
    grid-template-columns: 1fr;
  }
  .hizmet-kutusu {
    aspect-ratio: 0;
  }
}
.hizmetler-bolumu {
  position: relative;
  width: 100%;
  height: 440px;
  overflow: hidden;
  color: #fff;
}
.arkaplan-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: opacity 0.7s ease-in-out;
  z-index: 1;
}
.arkaplan-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #000000b3, #0003);
  transition: background 0.5s ease;
}
.hizmet-panelleri {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.hizmet-panelleri a{
  width: 100%;
  color: white;
}
.panel {
  flex: 1;
  position: relative;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  overflow: hidden;
  border-right: 1px solid #fff3;
  transition: background-color 0.4s ease;
  height: 100%;
}
.panel:last-child {
  border-right: none;
}
.panel:hover {
  background-color: #0003;
}
.panel-sayi {
  position: absolute;
  left: 40px;
  font-size: 25px;
  font-weight: 700;
  color: #ffffffe6;
  top: -100px;
  opacity: 0;
  transition: top 0.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s ease;
}
.panel:hover .panel-sayi {
  top: 40px;
  opacity: 1;
}
.panel-icerik h2 {
  font-size: 26px;
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
}
.panel-icerik p {
  font-size: 1rem;
  font-weight: 300;
  margin: 0;
  color: #ffffffd9;
  font-family: var(--font3);
}

@media(max-width:1024px){
  .panel {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    transition: opacity 0.8s ease;
  }

  .panel.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
  }

  .hizmet-panelleri {
    position: relative;
  }
}
.hakkimizda-bolumu {
  width: 100%;
  height: auto;
  position: relative;
  padding: 120px 0;
}
.hakkimizda-bolumu .urunler-bolumu {
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 60px;
}
.hakkimizda-bolumu .metin-icerigi {
  flex: 1;
}
.hakkimizda-bolumu .resim-icerigi {
  flex: 1;
  position: relative;
}
.hakkimizda-bolumu .resim-icerigi img {
  max-width: 100%;
  height: auto;
  display: block;
  width: 100%;
}
.hakkimizda-bolumu .alt-baslik {
  font-family: var(--font2);
  color: #481B43;
  font-size: 38px;
  margin: 0 0 10px;
  font-weight: 300;
}
.hakkimizda-bolumu .ana-baslik {
  font-family: var(--font1);
  color: var(--text-color-dark);
  font-size: 2.438em;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 20px;
}
.hakkimizda-bolumu p {
  color: var(--color5);
  font-size: 17px;
  font-family: var(--font3);
  margin: 0 0 45px;
  line-height: 1.6;
}
.btn-genel {
  display: inline-block;
  position: relative;
  background-color: #481B43;
  padding: 18px 40px;
  border-radius: 2px;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
}
.btn-genel .btn-text-wrapper {
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}
.btn-genel .btn-text {
  display: block;
  color: #fff;
  font-family: var(--font1);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
}
.btn-genel:hover .btn-text-wrapper {
  transform: translateY(-50%);
}
.btn-genel .text-bottom {
  position: absolute;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}
.btn-genel:hover .text-bottom {
  opacity: 1;
  transform: translateY(-50%);
}
.btn-genel .text-top {
  transition: transform 0.4s cubic-bezier(0.7, 0, 0.2, 1);
}
.btn-genel:hover .text-top {
  opacity: 1;
  transform: translateY(-150%);
}
.hakkimizda-bolumu .hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #ef535099;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hakkimizda-bolumu .hotspot::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #ef535080;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hakkimizda-bolumu .hotspot-1 {
  top: 8%;
  right: 40%;
}
.hakkimizda-bolumu .hotspot-2 {
  top: 48%;
  right: 28%;
}
.hakkimizda-bolumu .hotspot-3 {
  top: 38%;
  left: 16%;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}
@media (max-width: 768px) {
  .hakkimizda-bolumu {
    flex-direction: column;
    text-align: center;
    padding: 50px 0;
  }
  .hakkimizda-bolumu .resim-icerigi {
    margin-top: 40px;
  }
}

.ekibimiz {
  width: 100%;
  padding: 80px 0;
  background: #f8f8f8;
}

.ekibimiz .header-baslik{
  width: 100%;
  max-width: 80%;
  margin-bottom: 0px;
}
.ekibimiz h3{
  width: 100%;
  font-size:38px!important;
}

.ekibimiz-konteyner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.ekibimiz-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.ekibimiz-kart {
  position: relative;
}
.ekibimiz-resim-konteyner {
  overflow: hidden;
  position: relative;
}
.ekibimiz-resim {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ekibimiz-kart:hover .ekibimiz-resim {
  transform: scale(1.08);
}
.ekibimiz-bilgi {
  padding-top: 25px;
  text-align: left;
}
.ekibimiz-isim {
  font-size: 25px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.ekibimiz-unvan {
  font-size: 1rem;
  color: var(--color5);
  margin: 0;
  font-family: var(--font3);
}
.ekibimiz-sosyal {
  display: flex;
  justify-content: start;
  gap: 18px;
  margin-top: 25px;
}
.ekibimiz-sosyal a {
  display: inline-block;
  color: var(--ekip-renk-baslik);
  opacity: 0;
  transform: translateY(20px);
  transition-property: opacity, transform, color;
  transition-duration: 0.4s;
  transition-timing-function: ease-out;
}
.ekibimiz-kart:hover .ekibimiz-sosyal a {
  opacity: 1;
  transform: translateY(0);
}
.ekibimiz-sosyal a:nth-child(1) {
  transition-delay: 0.1s;
}
.ekibimiz-sosyal a:nth-child(2) {
  transition-delay: 0.2s;
}
.ekibimiz-sosyal a:nth-child(3) {
  transition-delay: 0.3s;
}
.ekibimiz-sosyal a:nth-child(4) {
  transition-delay: 0.4s;
}
.ekibimiz-sosyal a:hover {
  color: #8ed4cc;
}
.ekibimiz-sosyal svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}
@media (max-width: 992px) {
  .ekibimiz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .ekibimiz-grid {
    grid-template-columns: 1fr;
  }
}
.header-baslik {
  width: 100%;
  height: auto;
  margin-bottom: 60px;
}
.header-baslik img.logoicon {
  height: auto;
  width: 284px;
}
.header-baslik h2 {
  width: 100%;
  height: auto;
  margin-bottom: 0.25em;
  font-size: 2.375em;
  line-height: 1.3em;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.95px;
  font-family: var(--font2);
  color: #481B43;
  margin-top: 0px;
  margin-bottom: 20px;
}
.header-baslik h3 {
  width: 100%;
  height: auto;
  font-size: 2.938em;
  letter-spacing: 4.7px;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
  color: var(--color3);
}
.yorumlar {
  position: relative;
  width: 100%;
  height: 90vh;
  background-image: url(../images/yorumlar.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color1);
  text-align: center;
  flex-direction: column;
}
.yorumlar .header-baslik {
  margin-bottom: 0;
}
.yorumlar .container {
  position: relative;
  z-index: 9;
}
.yorumlar .header-baslik h3 {
  color: var(--color1);
}
.yorumlar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e99;
  z-index: 1;
}
.yorumlar-slider-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  z-index: 2;
}
.yorumlar-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.7, 0, 0.2, 1);
}
.yorumlar-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.yorumlar-alt-baslik {
  font-family: var(--font2);
  color: #481B43;
  font-size: 2.2rem;
  margin: 0 0 10px;
  font-weight: 700;
}
.yorumlar-ana-baslik {
  font-family: var(--font1);
  font-size: 2.8rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin: 0;
  font-weight: 700;
  color: var(--color1);
}
.yorumlar-dekor {
  width: 80px;
  height: 30px;
  margin: 20px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' fill='%23e6a3a3'%3E%3Cpath d='M50,15 C30,15 30,5 10,5 L0,5 L0,3 L10,3 C30,3 30,13 50,13 C70,13 70,3 90,3 L100,3 L100,5 L90,5 C70,5 70,15 50,15 Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.yorumlar-metin {
  font-family: var(--font3);
  font-style: italic;
  font-size: 30px 20px;
  line-height: 1.5;
  max-width: 960px;
  margin: 0 0 30px;
  color: var(--color1);
}
.yorumlar-profil-resmi {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff80;
  margin-bottom: 20px;
  background: #ccc;
  font-size: 30px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color3);
  font-family: var(--font3);
}
.yorumlar-yazar-isim {
  font-family: var(--font1);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--color1);
}
.yorumlar-yazar-unvan {
  font-family: var(--font3);
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--color1);
}
.yorumlar-noktalar {
  position: relative;
  display: inline-flex;
  gap: 15px;
  z-index: 3;
  margin: 30px auto 0;
}
.yorumlar-nokta {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid var(--color1);
  cursor: pointer;
  padding: 0;
  opacity: 0.7;
  transition: background-color 0.4s ease, opacity 0.4s ease;
}
.yorumlar-nokta.active,
.yorumlar-nokta:hover {
  background-color: #481B43;
  border-color: #481B43;
  opacity: 1;
}
.sayac {
  background-color: #481B43;
  color: #fff;
  padding: 120px 0;
}
.sayac .container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
}
.sayac-oge {
  padding: 15px;
  min-width: 220px;
}
.sayac-ikon {
  font-size: 52px;
  margin-bottom: 25px;
  line-height: 1;
}
.sayac-ikon svg {
  width: 55px;
  height: 55px;
  fill: #fff;
}

.sayac-rakam {
  font-size: 4.5rem;
  font-weight: 500;
  margin: 0;
  padding: 0;
  line-height: 1.1;
  font-family: var(--font3);
}
.sayac-metin {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 15px;
  opacity: 0.9;
}
@media (max-width: 992px) {
  .sayac {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
@media (max-width: 576px) {
  .sayac {
    grid-template-columns: 1fr;
    padding: 50px 20px;
  }
  .sayac-rakam {
    font-size: 3.5rem;
  }
}

.blog-container {
  width: 100%;
  height: auto;
  background: #f8f8f8;
  padding: 60px 0px;
}

.blog-container .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 0 auto;
}

.blog-card {
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-basis: calc(25% - 30px);
  flex-grow: 1;
}
.blog-card:hover {
  transform: translateY(-5px);
}
.blog-card .card-image img {
  width: 100%;
  height: 343px;
  object-fit: cover;
  display: block;
}
.blog-card .card-content {
  padding: 25px 0px;
}
.blog-card .card-category {
  color: #481B43;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 10px;
}
.blog-card .card-title {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  margin: 0 0 15px;
  line-height: 1.3;
}
.blog-card .card-title a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
.blog-card .card-title a:hover {
  color: #481B43;
}
.blog-card .card-meta {
  font-size: 14px;
  color: #999;
  margin: 0;
  font-weight: 300;
  font-family: var(--font3);
  font-style: italic;
}
.blog-card .card-meta span + span {
  margin-left: 8px;
}
@media (max-width: 992px) {
  .blog-card {
    flex-basis: calc(50% - 30px);
  }
}
@media (max-width: 600px) {
  .blog-container {
    gap: 20px;
  }
  .blog-card {
    flex-basis: 100%;
  }
}

/*galeri*/

.galeri {
  padding: 100px 0px;
}
.galeri h3 {
  width: 100%;
  height: auto;
  font-size: 40px;
}

.galeri-liste {
  display: flex;
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.galeri-item {
  flex: 1;
  height: 100%;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.galeri-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.galeri-item:hover::after {
  opacity: 1;
}

.galeri-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

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

.galeri .follow-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  background-color: #ffffff;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #481B43;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  border: 1px solid rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.galeri .follow-button:hover {
  background-color: #f7f7f7;
}

.galeri .follow-button svg {
  width: 18px;
  height: 18px;
  stroke: #481B43;
  stroke-width: 2.5;
}

@media (max-width: 768px) {
  .galeri {
    height: auto;
    overflow-x: auto;
  }

  .galeri-item {
    flex: 0 0 180px;
  }
}

.text-center {
  text-align: center;
}

.footer6 {
  width: 100%;
  height: auto;
  position: relative;
  background-size: cover;
  color: #fff;
  background: #6b6e6f;
  overflow: hidden;
}

.footer6 .maps {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}

.footer6 .maps iframe {
  width: 100%;
  height: 100% !important;
  margin-bottom: 0px;
}

.footer6 .iletisimbg {
  width: 100%;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.footer6 .iletisimbg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(https://jacqueline.themerex.net/wp-content/uploads/2021/07/decoration-bg.png);
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  right: -20px;
  opacity: 5%;
}

.footer6 .iletisimbg .iletisim {
  padding: 0px 100px;
  position: relative;
  z-index: 1;
}

.footer6 .iletisimbg .iletisim h2 {
  font-size: 38px;
  font-weight: 500;
  font-family: var(--font2);
  margin: 0px;
  color: #481B43;
}

.footer6 .iletisimbg .iletisim h3 {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0px;
  font-size: 25px;
  font-weight: 400;
}

.footer6 .iletisimbg .iletisim h4 {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 0px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7em;
  margin-bottom: 10px;
  font-family: var(--font3);
}

.footer6 .iletisimbg .iletisim .footer-sosyal {
  width: 100%;
  height: auto;
  margin-top: 40px;
}

.footer6 .iletisimbg .iletisim .footer-sosyal li {
  width: auto;
  height: auto;
  list-style: none;
  display: inline-block;
  margin-right: 10px;
}

.footer6 .iletisimbg .iletisim .footer-sosyal li a {
  width: 41px;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  border-radius: 50%;
}

.footer6 .iletisimbg .iletisim .footer-sosyal li a svg{
    width: 20px;
    height: 20px;
    overflow: inherit;
    fill: #481B43;
}

.footer6 .iletisimbg .iletisim .footer-sosyal li a:hover svg{
  fill: white;
}

.footer6 .iletisimbg .iletisim .footer-sosyal li a:hover {
  background: #481B43;
  color: #fff;
}

.footer6 .footer-bilgi {
  width: 100%;
  height: auto;
  background: #fff;
  padding: 20px 0px;
  color: #000;
}

.footer6 .footer-bilgi .listee {
  width: 100%;
  height: auto;
  text-align: center;
}

.footer6 .footer-bilgi .listee li {
  list-style: none;
  display: inline-block;
  margin-right: 25px;
}

.footer6 .footer-bilgi .listee li a {
  color: #000;
  font-size: 0.9rem;
  line-height: 24px;
  padding: 0;
}

.footer6 .footer-bilgi .listee li a:hover {
  color: #481B43;
}

.footer6 .footer-bilgi .sosyal {
  width: auto;
}

.footer6 .footer-bilgi .sosyal li {
  display: inline-block;
  margin-left: 5px;
}

.footer6 .footer-bilgi .sosyal li a {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #2b2a29;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

.footer6 .footer-bilgi .sosyal li a:hover {
  background: #481B43;
  color: #fff;
}

.footer6 .footer-bilgi .bilgi-baslik {
  margin-right: 16px;
  color: #aaa;
}

.footer6 .footer-firma {
  width: 100%;
  height: auto;
  padding: 12px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer6 .footer-firma .footer-text {
  font-size: 0.8rem;
  opacity: 80%;
}

.footer6 .footer-firma .footer-logo {
  height: 20px;
  display: flex;
  margin-left: 15px;
}

.footer6 .footer-firma .footer-logo img {
  height: 100%;
}

.footer6 .iletisim-list {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 30px;
  margin-bottom: 30px;
}

.footer6 .iletisim-list a {
  color: #fff;
}

.mt-5 {
  margin-top: 25px;
}

.mobilbuttonlar{
  display: none;
}

@media(max-width:1024px){

  body{
    padding-top: 70px;
  }
  
  .hizmetler-ikon-alani{
    padding: 0;
  }
  
  .slider-container .slide .textic{

  }

  .slider-container .slider-btn{
      display: none;
  }

  .slider-container .slide .textic .text1{
      font-size: 35px;
  }

  .slider-container {
    aspect-ratio: 16 / 16;
  }

  .slider-container .slide .textic .icon1{
    display: none;
  }

  .slider-container .slide .textic .text2 {
      font-size: 25px;
  }

  header {
    background-color: #481b43 !important;
    padding: 10px 0 !important;
  }

  header img {
      width: auto !important;
      height: 40px !important;
  }

  .hizmet-kutusu-resim{
    display: none;

  }

  .hizmet-panelleri {
    display: block;
  }

  .hakkimizda-bolumu .resim-icerigi{
    display: none;
  }

  .ekibimiz h3 {
    font-size: 30px !important;
  }

  .yorumlar{
    display: none;
  }

  .footer6 .iletisimbg .iletisim {
      padding: 50px 30px
  }

  .footer6 .footer-bilgi{
    display: none;
  }

  .footer6 .maps{
    display: none;
  }

  .footer6{
    margin-bottom: 40px;
  }

  .galeri .follow-button{
    font-size: 13px;
  }

  .sayac-oge {
      padding: 15px;
      min-width: 160px;
      width: 50%;
  }

  .iletisim7 [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
    width: 100%;
  }

  .btn {
      border-radius: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 10px 20px;
      width: 100%
  }

  .btn svg {
      width: 24px;
      height: 24px;
      fill: currentColor
  }

  .mobilbuttonlar {
      position: fixed;
      width: 100%;
      bottom: 0;
      z-index: 999;
      display: flex;
  }

  .btn1 {
      background: #481B43;
      border-color: #481B43;
      color: #fff
  }

  .btn2 {
      background: #2f102c;
      border-color: #2f102c;
      color: #fff
  }

  .btn3 {
      background: #1a0818;
      border-color: #1a0818;
      color: #fff
  }

}