/* Helvetica Font Family */

/* Helvetica Regular */
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/helvetica/Helvetica.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Helvetica Light */
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/helvetica/helvetica-light-587ebe5a59211.ttf")
    format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Helvetica Bold */
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/helvetica/Helvetica-Bold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Helvetica Bold Oblique */
@font-face {
  font-family: "Helvetica Bold Oblique";
  src: url("../fonts/helvetica/Helvetica-BoldOblique.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* Helvetica Oblique */
@font-face {
  font-family: "Helvetica Oblique";
  src: url("../fonts/helvetica/Helvetica-Oblique.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary: #e84135;
  --primary-darker: color-mix(in srgb, var(--primary) 80%, black);
  --white: #fff;
  --black: #000;
  --track-h: 28px;
  --track-bg: #e44336;
  --thumb-size: 20px;
  --thumb-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  --track-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  font-size: 62.5%; /* 10px = 1rem */
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Helvetica", sans-serif;
  font-size: 1.6rem; /* 16px */
  line-height: 1.5;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul,
ol,
li {
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: 1px solid transparent;
}

input:focus {
  outline: none;
  border: 1px solid transparent;
}

.top-bar {
  width: 100vw;
  height: 22px;
  background-color: var(--primary);
}

header.scrolled {
  background-color: rgb(255, 255, 255, 0.7);
}

header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  padding-bottom: 24px;
  position: relative;
}

header .right-side {
  display: flex;
  align-items: center;
  gap: 14px;
}

header .right-side .socials a i {
  font-size: 20px;
  -webkit-text-stroke: 0;
}

header .right-side .lang span {
  font-size: 18px;
  font-weight: 500;
}

header .menu-trigger {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 4px;
  cursor: pointer;
  overflow: hidden;
}

header .menu-trigger span {
  background-color: var(--primary);
  height: 5px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

span.first {
  width: 20px;
  transition-delay: 0s;
}

span.first::after {
  content: "";
  position: absolute;
  background-color: var(--primary);
  left: 100%;
  width: 20px;
  height: 5px;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.1s;
}

span.second {
  width: 26px;
  transition-delay: 0.1s;
}

span.second::after {
  content: "";
  position: absolute;
  background-color: var(--primary);
  left: 100%;
  height: 5px;
  width: 26px;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.2s;
}

span.third {
  width: 32px;
  transition-delay: 0.2s;
}

span.third::after {
  content: "";
  position: absolute;
  background-color: var(--primary);
  left: 100%;
  height: 5px;
  width: 32px;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0.3s;
}

header .menu-trigger:hover span.first {
  transform: translateX(-100%);
}

header .menu-trigger:hover span.first::after {
  transform: translateX(0);
}

header .menu-trigger:hover span.second {
  transform: translateX(-100%);
}

header .menu-trigger:hover span.second::after {
  transform: translateX(0);
}

header .menu-trigger:hover span.thi rd {
  transform: translateX(-100%);
}

header .menu-trigger:hover span.third::after {
  transform: translateX(0);
}

.menu {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--primary);
  padding: 0 15px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
  z-index: 10;
}

.menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.menu-header button i {
  color: var(--white);
  font-size: 22px;
}

.menu-inner ul {
  padding: 18px 0 !important;
}

.menu ul li a.active::before,
.menu ul li a:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  --mask-size: 2px;
  --mask: /* Top line: from left, stops 40px before the right */ linear-gradient(
      to left,
      white 0%,
      transparent 0
    ),
    /* Left line: full */ linear-gradient(to top, white 100%, transparent 0),
    /* Bottom line: starts 40px after left, ends before right */
      linear-gradient(to left, white 0px, white 100%, transparent 0);
  padding: var(--mask-size);
  background: #fff;
  -webkit-mask-image: var(--mask);
  -webkit-mask-size: 100% var(--mask-size), var(--mask-size) 100%,
    100% var(--mask-size);
  -webkit-mask-position: top right, top right, bottom right;
  -webkit-mask-repeat: no-repeat;
  mask-image: var(--mask);
  mask-size: 100% var(--mask-size), var(--mask-size) 100%, 100% var(--mask-size);
  mask-position: top right, top right, bottom right;
  mask-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  font-weight: 700;
}

.menu ul li a {
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  position: relative;
  padding-right: 12px;
  padding-bottom: 4px;
  transition: all 0.3s ease-in-out;
}

.menu ul li a.active {
  font-weight: 500;
}
/* Dropdown container */
.dropdown-cs {
  position: relative;
  cursor: pointer;
}

.dropdown-cs span,
.dropdown-cs i {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 1.6rem;
  color: var(--black);
}

.dropdown-cs i {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

/* Dropdown menu */
.dropdown-cs-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 140px;
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: all 0.25s ease;
  z-index: 99;
}

/* Dropdown item */
.dropdown-cs-menu li a {
  display: block;
  padding: 10px 14px;
  font-size: 1.4rem;
  color: var(--black);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-cs-menu li a:hover {
  background-color: var(--primary);
  color: #fff;
}

/* Active durum */
.dropdown-cs.active .dropdown-cs-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-cs.active i {
  transform: rotate(180deg);
}

/* Home Swiper */

.home-swiper {
  position: relative;
}

.left-sidebar {
  position: fixed;
  width: 53px;
  height: 100vh;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.71);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  z-index: 3;
  transition: all 0.3s ease-in-out;
}

.left-sidebar.active {
  transform: translateX(0);
}

a.instagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.left-sidebar a,
.left-sidebar .tel {
  /*  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: white;
  font-size: 14px; */
  color: var(--white);
  font-size: 15px;
  font-style: normal;
  line-height: 25px;
}

.left-sidebar .tel {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.left-sidebar a span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  letter-spacing: 1px;
}

.left-sidebar i {
  font-size: 18px;
  margin-bottom: 5px;
}

.left-sidebar .tel a {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  margin-top: 10px;
}

.home-swiper .swiper-slide img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}

.home-swiper .swiper-slide .slide-text {
  position: absolute;
  bottom: 20%;
  color: #f3f3f3;
  text-shadow: 2px 0 4.9px rgba(0, 0, 0, 0.43);
  font-size: 36px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(-50%);
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  transition-delay: 1s;
}

.home-swiper .swiper-slide.swiper-slide-fully-visible .slide-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.home-swiper .swiper-button-next::after,
.home-swiper .swiper-button-prev::after {
  display: none;
}

.home-swiper .swiper-button-next,
.home-swiper .swiper-button-prev {
  position: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: unset;
}

.proje-adi-container {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 30%);
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 23px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  transition-delay: 1s;
}

.home-swiper .swiper-slide.swiper-slide-fully-visible .proje-adi-container {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.proje-adi {
  padding: 12px 72px;
  border-radius: 42px;
  background-color: rgb(232, 65, 53, 0.7);
  color: var(--white);
  font-size: 20px;
  color: var(--white);
}
/* Home Swiper */

.neden-biz {
  padding: 40px 0;
}

.neden-biz .container {
  display: flex;
  gap: 24px;
}

.neden-biz .container .left-text {
  background: linear-gradient(90deg, #fff 1%, #e84135 30%);
  padding-left: 44px;
  padding-top: 14px;
  padding-bottom: 14px;
  font-size: 31px;
  margin-top: -38px;
}

.neden-biz .container .left-text span {
  font-weight: 500;
}

.neden-biz .container .right {
  width: 55%;
  padding-left: 4px;
}

.neden-biz .container .right .text {
  font-size: 15px;
  font-style: normal;
  margin: 10px 0;
}

.neden-biz .container .right .title.primary {
  background-color: var(--primary);
  color: var(--white);
}

.neden-biz .container .right .title.secondary {
  background-color: black;
  color: var(--white);
}

.neden-biz .container .right .title {
  padding-left: 4px;
  position: relative;
  font-size: 15px;
  font-weight: 700;
}

.neden-biz .container .right .title.primary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  background-color: var(--primary);
}

.neden-biz .container .right .title.secondary::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: -100%;
  background-color: black;
}

.akis .items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 22px;
  padding: 32px 0;
}

.akis .items .item {
  text-align: center;
}

.akis .items .item img {
  margin: 10px auto;
}

.akis .items .item .title {
  color: var(--primary);
  font-size: 26px;
  font-weight: 700;
}

.akis .items .item .text {
  font-size: 15px;
}

.projects-on-sale .title {
  font-size: 33px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  padding: 32px 0;
}

.projects-swiper {
  width: 100%;
  overflow-y: visible !important;
  overflow-x: hidden !important;
  padding: 32px 0 !important;
}

.projects-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.projects-swiper .slide-text {
  position: absolute;
  bottom: 16px;
  left: 20%;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
}

.projects-swiper .slide-text .slide-title {
  color: #fff;
  text-shadow: 0 4.602px 4.602px rgba(0, 0, 0, 0.25);
  font-size: 16px;
}

.projects-swiper .slide-text .text-slide {
  font-size: 14px;
  color: var(--white);
}

.projects-swiper .swiper-slide img {
  transition: transform 0.4s ease;
  max-width: 300px;
  width: 100%;
  height: 400px;
  filter: brightness(0.8);
  transition: all 0.3s ease-in-out;
}

.projects-swiper .swiper-slide-active {
  transform: scale(1.15) !important;
  z-index: 2;
}

.projects-swiper .swiper-slide-active .slide-text,
.projects-swiper .swiper-slide:hover .slide-text {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.projects-swiper .swiper-slide-active img {
  filter: brightness(1);
}

.slider-nav {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-self: center;
}

.range {
  -webkit-appearance: none;
  appearance: none;
  /* width: 240px; */
  background: transparent;
  outline: none;
}
.range::-webkit-slider-runnable-track {
  height: var(--track-h);
  background: var(--track-bg);
  border-radius: 9999px;
  box-shadow: var(--track-shadow);
  padding: 0 8px;
}

.slider-nav .range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: var(--thumb-size);
  height: var(--thumb-size);
  background: #fff;
  border-radius: 50%;
  box-shadow: var(--thumb-shadow);
  margin-top: calc((var(--track-h) - var(--thumb-size)) / 2);
  cursor: pointer;
  border: 0;
}

.slider-nav .range::-moz-range-track {
  height: var(--track-h);
  background: var(--track-bg);
  border-radius: 9999px;
  box-shadow: var(--track-shadow);
}
.slider-nav .range::-moz-range-thumb {
  width: var(--thumb-size);
  height: var(--thumb-size);
  background: #fff;
  border: none;
  border-radius: 50%;
  box-shadow: var(--thumb-shadow);
  cursor: pointer;
}

.slider-nav .range:focus-visible {
  outline: none;
}
.slider-nav .range:hover::-webkit-slider-thumb,
.slider-nav .range:hover::-moz-range-thumb {
  transform: scale(1.02);
}

.all-projects {
  padding: 32px 0;
  text-align: center;
  /* background: linear-gradient(180deg, #b9b9b9 0%, rgba(255, 255, 255, 0) 100%); */
}

.all-projects .header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.all-projects .title {
  color: #000;
  font-size: 33.61px;
  font-weight: 700;
  margin-bottom: 10px;
}

.all-projects p {
  width: 50%;
}

.project-cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 24px;
  padding: 24px 0;
}

.project-cats .cat-img img {
  object-fit: cover;
  width: 100%;
}

.project-cats .cat-title {
  color: #000;
  font-size: 20.084px;
  letter-spacing: 0.803px;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0 0 10.459px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.project-cats .cat-title span {
  font-weight: 700;
}

.project-cats .cat {
  transition: all 0.3s ease-in-out;
}

.project-cats .cat:hover {
  transform: scale(1.1);
}

.project-cats .cat:hover .triangle {
  border-color: transparent transparent white transparent;
}
.project-cats .cat:hover .cat-title {
  background: var(--primary);
  color: var(--white);
}

.project-cats .cat-title .triangle {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 0 0 80px 80px;
  border-color: transparent transparent #000000 transparent;
  transform: rotate(0deg);
  transition: all 0.3s ease-in-out;
}

.footer-contact-us {
  min-height: 263.704px;
  background-image: url("../images/contact-bg.png");
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.footer-contact-us .title {
  color: #fff;
  text-align: center;
  text-shadow: 0 3.195px 3.195px rgba(0, 0, 0, 0.25);
  font-size: 33px;
  margin-bottom: 20px;
}

.footer-contact-us .input-container {
  width: 100%;
    display: flex
;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.footer-contact-us .input-container .inp {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.footer-contact-us .input-container button {
  position: absolute;
  right: 0;
  border-radius: 3.483px;
  background: var(--primary);
  height: 100%;
  padding: 0 20px;
  color: var(--white);
  transition: all 0.3s ease-in-out;
}

.footer-contact-us .input-container button:hover {
  background-color: var(--primary-darker);
}

.footer-contact-us .input-container input {
  border-radius: 5px;
  background: #fff;
  color: rgba(0, 0, 0, 0.44);
  font-family: Rubik;
  font-size: 16.424px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
  padding: 16px;
  width: 100%;
}

footer {
  background: var(--white);
  padding: 47px 0 34px 0;
  color: var(--black);
  position: relative;
}

footer .footer-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  color: var(--black);
  padding-bottom: 24px;
}

/* @media (max-width: 768px) {
  footer .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 20px;
  }
} */

@media (max-width: 992px) {
  .footer-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  footer .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 32px;
  }
  .contact-block-item {
    color: var(--text-color-2);
    display: flex;
    gap: 6px;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}

.slogan {
  padding-top: 12px;
  color: var(--black);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 22.575px; /* 173.654% */
  letter-spacing: -0.195px;
}

.col-title {
  color: var(--black);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 25px; /* 125% */
  padding-bottom: 18px;
  text-transform: uppercase;
}

footer .column ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

footer .column ul li a {
  color: var(--black) !important;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 25px; /* 166.667% */
  transition: all 0.3s ease-in-out;
}

footer .column ul li a:hover {
  color: var(--primary) !important;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-block-item {
  color: #000;
  font-size: 15px;
  font-style: normal;
  display: flex;
  gap: 4px;
}

.contact-block-item span {
  color: var(--black);
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}

.contact-block-item p {
  color: var(--black);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.contact-block-item a {
  color: #000;
  font-size: 15px;
  font-style: normal;
  transition: all 0.3s ease-in-out;
}

.contact-block-item a:hover {
  color: var(--primary) !important;
}

.contact-block-item i {
  padding-right: 4px;
}

.contact-block-item span {
  display: flex;
}

.socials {
  display: flex;
  gap: 6px;
}

.socials i {
  font-size: 18px;
}

.socials a svg {
  transition: all 0.3s ease-in-out;
}

.socials a:hover svg {
  fill: var(--primary);
}

.numaralar {
  display: flex;
  flex-direction: column;
}

.copyright {
  padding: 10px 0;
  border-top: 1px solid black;
}

.copright-inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

.hakkimizda {
  padding-top: 32px;
}

.hakkimizda .top {
  display: flex;
}

.hakkimizda .title {
  color: var(--white);
  font-size: 35px;
  font-weight: 400;
  background-color: var(--primary);
  position: relative;
  padding: 5px 0 5px 15px;
  text-transform: uppercase;
  width: 40%;
  margin-left: auto;
}

.hakkimizda .title::after {
  content: "";
  position: absolute;
  right: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--primary);
}

.hakkimizda .top p {
  margin-top: 30px !important;
  margin-left: 40px;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.bottom {
  background-color: var(--black);
  color: var(--white);
  padding: 24px 0;
}

.bottom p {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
}

.vector {
  position: absolute;
  top: 10%;
  right: 0;
  width: 100%;
  z-index: -1;
}

.projects {
  padding: 64px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.projects .project {
  max-width: 250px;
  width: 100%;
}

.projects .project .project-image {
  padding: 5px;
  border: 5px solid #707070;
  position: relative;
  width: 100%;
}

.projects .project .project-image .overlay {
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(232, 65, 53, 0.59);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
  text-align: center;
}

.projects .project:hover .project-image .overlay {
  visibility: visible;
  opacity: 1;
}

.projects .project .project-image img {
  max-width: 250px;
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.projects .project .project-title {
  text-align: center;
  color: #000;
  font-size: 28px;
  font-weight: 300;
}

.projects .project .project-title span {
  text-align: center;
  color: #000;
  font-size: 28px;
  font-weight: 500;
  text-transform: uppercase;
}

.kentsel-donusum {
  padding: 32px 0;
}

.kentsel-donusum .images {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.kentsel-donusum .images img {
  max-width: 350px;
  height: 200px;
  width: 100%;
  display: block;
}

.dark-gray {
  background-color: #4a4a4a;
}

.light-gray {
  background-color: #d9d9d9;
  color: var(--black);
}

.references {
  padding: 32px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.reference {
  max-width: 250px;
  height: 100px;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

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

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

.reference .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -100%;
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  padding: 8px 10px;
  transition: bottom 0.4s ease;
}

.reference:hover .caption {
  bottom: 0;
}

.iletisim iframe {
  width: 100%;
  padding-left: 53px;
}

.iletisim-bilgi .items {
  display: flex;
  align-items: start;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1000px;
  flex-wrap: wrap;
}

.iletisim-bilgi .item {
  display: flex;
  width: 33.3%;
}

.iletisim-bilgi .item .icon {
  margin-right: 10px;
}

.iletisim-bilgi .item .icon i {
  font-size: 20px;
}

.iletisim-bilgi .item .title {
  margin-right: 3px;
  font-size: 20px;
  font-weight: 600;
}

.iletisim-bilgi .item .text {
  display: flex;
  flex-direction: column;
  margin-left: 4px;
  font-size: 18px;
  font-weight: 400;
}

.iletisim-bilgi .item .text a {
  transition: all 0.3s ease-in-out;
}

.iletisim-bilgi .item .text a:hover {
  color: var(--primary);
}

.iletisim-form {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
}

.iletisim-form .group {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.iletisim-form input,
.iletisim-form textarea {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #ddd;
  padding: 14px 16px;
  font-size: 15px;
  color: var(--black);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease,
    transform 0.15s ease;
  outline: none;
  resize: none;
}

.iletisim-form input::placeholder,
.iletisim-form textarea::placeholder {
  color: #aaa;
}

.iletisim-form input:focus,
.iletisim-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(224, 52, 12, 0.15);
  transform: translateY(-1px);
}

.iletisim-form textarea {
  min-height: 140px;
  line-height: 1.5;
}

.iletisim-form button {
  padding: 14px 28px;
  border: none;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.15s ease;
}

.iletisim-form button:hover {
  background: var(--primary-darker);
  transform: translateY(-1px);
}

.proje-detay {
  padding: 32px 0;
  display: flex;
  gap: 24px;
}

.detay {
  padding: 12px !important;
  border: 8px solid var(--primary);
  max-width: 450px;
  width: 100%;
  height: 450px;
}

.proje-detay .right {
  width: 100%;
}

.proje-detay .right .title-cs {
  font-size: 35px;
  color: var(--white);
  padding-left: 10px;
  background-color: var(--primary);
  width: 100%;
  position: relative;
  margin-bottom: 35px;
}

.proje-detay .right .title-cs::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  right: -100%;
}

.detail-titles {
  display: flex;
  gap: 24px;
}

.detail-titles span {
  color: var(--white);
  font-size: 22px;
  text-align: center;
  background-color: var(--primary);
  padding: 4px 24px;
  border-radius: 4px;
  width: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.detail-titles p {
  text-align: center;
  margin-top: 10px !important;
  font-size: 17px;
}

.proje-detay .right .description {
  margin: 20px 0;
  font-size: 18px;
}

.thumb-swiper .swiper-slide {
  max-width: 155px;
  width: 100%;
  height: 155px;
}

.thumb-swiper {
  z-index: 10;
}

.thumb-swiper .swiper-button-next::after {
  display: none;
}

.thumb-swiper .swiper-slide {
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  padding: 4px;
}

.thumb-swiper .swiper-slide-thumb-active {
  border: 2px solid var(--primary);
}

/* sadece projects-swiper içindeki slaytlar için */
.projects-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.title-cs.mob {
  display: none;
}

@media (max-width: 992px) {
  .project-cats {
    grid-template-columns: repeat(2, 1fr);
    padding-right: 16px;
    padding-left: 16px;
  }

  .neden-biz .container .right {
    width: 100%;
  }

  .proje-detay {
    flex-direction: column;
  }

  .proje-detay .right {
    display: flex;
    flex-direction: column-reverse;
  }

  .proje-detay .right .title-cs.desk {
    display: none;
  }
  .proje-detay .right .title-cs.mob {
    display: block;
  }

  .iletisim-bilgi .items {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 18px;
  }

  .iletisim-form {
    padding: 32px 16px;
  }
}

@media (max-width: 768px) {
  .akis .items {
    grid-template-columns: repeat(3, 1fr);
  }

  .neden-biz .container {
    flex-direction: column;
    text-align: center;
  }

  .hakkimizda .title {
    width: 80%;
  }

  .hakkimizda .top {
    flex-direction: column;
    padding-top: 20px;
  }

  .hakkimizda .top p {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .project-cats .cat-title {
    font-size: 16px;
  }

  .project-cats .cat-title .triangle {
    border-width: 0 0 68px 68px;
  }

  .footer-contact-us .title {
    font-size: 28px;
  }

  .footer-contact-us {
    padding: 0 16px;
  }

  .all-projects p {
    width: 80%;
  }

  .akis .items {
    grid-template-columns: repeat(2, 1fr);
  }

  .detay .swiper-slide img {
    width: 100%;
    height: 100%;
  }

  .iletisim-bilgi .item {
    width: 70%;
  }

  .iletisim-form .group {
    flex-direction: column;
  }

  .left-sidebar {
    transform: translateX(-100%);
  }

  .contact-trigger {
    display: block !important;
  }
}

.contact-trigger {
  display: none;
  position: fixed;
  top: 30%;
  left: 0;
  background: rgba(0, 0, 0, 0.71);
  padding: 6px 8px;
  color: white;
  z-index: 3;
  transition: all .3s ease-in-out;
}

.contact-trigger.active{
  transform: translateX(53px);
}

@media (max-width: 475px) {
  .project-cats {
    grid-template-columns: repeat(1, 1fr);
  }

  .akis .items {
    grid-template-columns: repeat(1, 1fr);
  }

  .proje-detay .right {
    padding: 0 16px;
  }

  .detail-titles {
    flex-wrap: wrap;
  }
}


/* here */
.logo {
  width: 219px;
  height: 53px;
}