@charset "UTF-8";
/* ABOUT PAGE DEFINITIONS */
.about {
  position: relative;
  padding: 2rem 10rem;
  height: auto;
  z-index: 99;
}
@media (max-width: 37.5em) {
  .about {
    width: 100%;
  }
}

/* CONTACT PAGE DEFINITIONS */
.contact-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  color: #e6e6e6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: 10rem;
  font-family: "Roboto Condensed", sans-serif;
  box-sizing: border-box;
}
@media (max-width: 56.25em) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 2rem;
  }
}
@media (max-width: 37.5em) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 5rem 2rem;
  }
}

/* LEFT SIDE — COMPANY INFO */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-info h2 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  color: #fff;
}
.contact-info .info-block h3 {
  font-size: 2rem;
  margin-bottom: 0.4rem;
  color: #fff;
}
.contact-info .info-block p {
  font-size: 1.8rem;
  color: #b8b8b8;
  line-height: 1.4;
}

/* RIGHT SIDE — CONTACT FORM */
.contact-form {
  background: #1a1b1e;
  padding: 2.4rem;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
.contact-form h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #fff;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.contact-form .form-row {
  display: flex;
  gap: 1.6rem;
}
@media (max-width: 600px) {
  .contact-form .form-row {
    flex-direction: column;
  }
}
.contact-form .form-row input,
.contact-form .form-row textarea {
  flex: 1;
  padding: 1rem 1.4rem;
  background: #2a2c31;
  border: 1px solid #3a3c42;
  border-radius: 10px;
  color: #fff;
  font-size: 1.6rem;
  resize: none;
  outline: none;
  transition: border 0.2s ease;
}
.contact-form .form-row input:focus,
.contact-form .form-row textarea:focus {
  border-color: #6a8dff;
}
.contact-form .form-row textarea {
  height: 140px;
}
.contact-form .submit-btn {
  padding: 1.2rem;
  background: #6a8dff;
  color: #111;
  border: none;
  border-radius: 10px;
  font-size: 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.contact-form .submit-btn:hover {
  background: #8aa4ff;
}

/* MAP SECTION */
.contact-map {
  grid-column: 1/3;
  height: 350px;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 2rem;
  z-index: 1;
  background-color: orangered;
}
@media (max-width: 900px) {
  .contact-map {
    grid-column: 1/2;
    height: 260px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* -------------------
   PAGE DEFAULT STYLES
------------------- */
/* ---------------------------------------
   PROJECT DETAIL STYLES / custom slider
------------------------------------------ */
.custom-slider {
  position: relative;
  width: 100%;
  height: 100%;
  font-family: "Roboto Condensed", sans-serif;
}

.my-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out; /* Geçiş yumuşaklığı */
  z-index: 1;
}

.my-slide.active {
  opacity: 1;
  z-index: 2;
}

.my-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.custom-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 40px;
  padding: 0 10rem;
}
@media (max-width: 37.5em) {
  .custom-content {
    width: 100%;
    padding: 0 5rem;
  }
}

.hero-title {
  display: block;
  font-size: 3.2rem;
  height: 5rem;
  font-weight: 400;
  letter-spacing: 2px;
  color: #fff;
  color: #28a745;
  margin-left: 5rem;
  transform: translateY(30px);
  transition: 0.8s ease-out;
}
@media (max-width: 37.5em) {
  .hero-title {
    font-size: 2.6rem;
    width: calc(100% - 50px);
  }
}
.hero-title::before {
  content: "";
  position: absolute;
  margin-left: -5rem;
  margin-top: 1rem;
  width: 4rem;
  height: 2rem;
  border: 0.2rem solid rgba(222, 222, 222, 0.99);
}
@media (max-width: 37.5em) {
  .hero-title::before {
    margin-top: 1rem;
  }
}

.hero-desc {
  line-height: 4.8rem;
  text-align: justify;
  font-size: 2.4rem;
  font-weight: 300;
  text-align: left;
  color: #38e4ae;
  width: 50%;
  min-width: 36em;
  transform: translateY(30px);
  transition: 0.8s ease-out 0.2s; /* Hafif gecikmeli */
  white-space: pre-line;
}
@media (max-width: 56.25em) {
  .hero-desc {
    width: 100%;
    min-width: auto;
  }
}

/* Aktif slaytta yazıların yukarı kayma efekti */
.my-slide.active .hero-title,
.my-slide.active .hero-desc {
  transform: translateY(0);
}

.hero-btn {
  align-self: left;
  padding: 18px 45px;
  background: #dc3545;
  text-decoration: none;
  line-height: 1.8rem;
  width: 36rem;
  min-width: 20rem;
  padding: 2rem;
  font-size: 2.4rem;
  font-weight: 400;
  color: whitesmoke;
  letter-spacing: 3px;
  border-radius: 5px;
  transition: 0.3s;
}
@media (max-width: 37.5em) {
  .hero-btn {
    width: 100%;
    text-align: center;
  }
}
.hero-btn:hover {
  background-color: #28a745;
}

/* HOME PAGE DEFINITIONS */
/* PRODJECT DETAILS CSS DEFINITIONS */
/* DETAIL-WRAPPER CSS TANIMLARI */
/* ---------------------------- */
.project-details-wrapper {
  position: fixed; /* rotate için fixed kullanıyoruz */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #111;
  font-family: "Roboto Condensed", sans-serif;
  box-sizing: border-box;
  z-index: 9;
  overflow: hidden;
}
.project-details-wrapper .project-details {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-sizing: border-box;
}
@media (max-width: 37.5em) {
  .project-details-wrapper .project-details {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
    white-space: nowrap;
  }
}
.project-details-wrapper .project-details__image {
  position: relative;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  box-sizing: border-box;
  z-index: 1;
}
@media (max-width: 37.5em) {
  .project-details-wrapper .project-details__image {
    display: block;
    width: auto;
    height: 100vh;
    max-height: 100vh;
    object-fit: contain;
  }
}
.project-details-wrapper .project-details__overlay {
  position: fixed;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 20, 0.7), rgba(20, 0, 0, 0.9));
  opacity: 0.4;
  transition: opacity 0.3s ease;
  z-index: 5;
}
.project-details-wrapper .project-details__overlay.info-open {
  opacity: 0.75;
}
.project-details-wrapper .project-details__info {
  position: fixed;
  bottom: 0;
  left: 50%;
  width: 100%;
  transform: translateX(-50%) scale(0.9);
  color: white;
  text-align: center;
  line-height: 3rem;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  box-sizing: border-box;
  z-index: 8;
}
.project-details-wrapper .project-details__info.show {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
  pointer-events: auto;
}
.project-details-wrapper .project-details__info h1 {
  font-size: 3.2rem;
  padding: 2rem 0;
  text-wrap: wrap;
  line-height: 4rem;
}
.project-details-wrapper .project-details__info h3 {
  font-size: 2rem;
}
.project-details-wrapper .project-details__info--all {
  padding: 2rem;
  font-size: 2rem;
  line-height: 4rem;
  text-wrap: wrap;
}
.project-details-wrapper .project-details__info--all p {
  color: silver;
}
.project-details-wrapper .project-details__detail-btn {
  position: fixed;
  bottom: 12.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(220, 53, 69, 0.99);
  padding: 0.8rem 1.8rem;
  border-radius: 0.8rem;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  opacity: 0.8;
  z-index: 10;
  display: none;
  backdrop-filter: blur(4px);
}
.project-details-wrapper .project-details__detail-btn:hover {
  opacity: 1;
  background: rgba(40, 167, 69, 0.99);
}
.project-details-wrapper:hover .project-details__detail-btn {
  display: block;
}
.project-details-wrapper__btn {
  position: absolute;
  top: 12rem;
  background-color: rgba(220, 53, 69, 0.99);
  color: white;
  padding: 1rem 2rem;
  font-size: 1.6rem;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 0.5rem;
  opacity: 0.8;
  cursor: pointer;
  z-index: 10;
}
.project-details-wrapper__btn-back {
  left: 2rem;
}
.project-details-wrapper__btn-rotate {
  display: none;
  right: 4rem;
}
@media (max-width: 37.5em) {
  .project-details-wrapper__btn-rotate {
    display: block;
  }
}
.project-details-wrapper__btn .fa-undo-alt {
  color: gray;
  padding-right: 1rem;
}
.project-details-wrapper__btn .fa-redo-alt {
  color: gray;
  padding-left: 1rem;
}
.project-details-wrapper__btn:hover {
  opacity: 1;
  background-color: rgba(40, 167, 69, 0.99);
}
.project-details-wrapper__btn:hover .fa-undo-alt, .project-details-wrapper__btn:hover .fa-redo-alt {
  color: black;
}
.project-details-wrapper {
  /* ROTATE MODU: TÜM LAYOUT'U DÖNDÜR */
}
.project-details-wrapper.rotated {
  transform: rotate(90deg) translateY(-100vw); /* senin bulduğun doğru kombinasyon */
  transform-origin: top left;
  width: 100vh; /* swap */
  height: 100vw; /* swap */
  overflow: hidden;
}
.project-details-wrapper.rotated .project-details__image {
  width: auto !important;
  height: calc(100vw - 10px) !important;
  max-width: none !important;
  object-fit: contain !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid silver;
  border-radius: 1.2px;
}
.project-details-wrapper.rotated .project-details-wrapper.rotated .project-details__info {
  position: absolute;
  top: 0;
  right: 0;
  width: 40vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6); /* info panel background opacity */
  padding: 2rem;
  transform: none !important;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 12;
}
.project-details-wrapper.rotated .project-details-wrapper.rotated .project-details__info.show {
  opacity: 1 !important;
  pointer-events: auto;
}
.project-details-wrapper.rotated .project-details-wrapper.rotated .project-details__overlay.info-open {
  opacity: 0.2;
}
.project-details-wrapper.rotated .thumb-bar {
  bottom: 1rem;
}

/* SLIDE ANIMATION CLASSES */
.slide-img,
.project-details__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
  box-sizing: border-box;
}

/* Başlangıçta merkezde olan */
.slide-center {
  transform: translateX(0);
}

/* soldan gelen / sola giden */
.slide-left {
  transform: translateX(-100%);
}

/* sağdan gelen / sağa giden */
.slide-right {
  transform: translateX(100%);
}

/* NAV BUTTONS */
.nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 40px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 10;
}
@media (max-width: 37.5em) {
  .nav {
    padding: 0;
    background-color: transparent;
    border-radius: 0;
  }
}
.nav:hover {
  color: #28a745;
}
.nav.prev {
  left: 20px;
}
.nav.next {
  right: 20px;
}

/* THUMBNAILS */
.thumb-bar {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 120px;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 15px;
  background: rgba(26, 27, 30, 0.1411764706);
  backdrop-filter: blur(6px);
  overflow-x: hidden;
  z-index: 10;
}
@media (max-width: 37.5em) {
  .thumb-bar {
    height: 11rem;
  }
}
.thumb-bar .thumb {
  height: 100%;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
.thumb-bar .thumb:hover {
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

/* PROJECT PAGE DEFINITIONS */
/* ----------------------------------------
    PROJECTS - PROJECT ITEMS CSS TANIMLARI
------------------------------------------- */
.projects {
  position: relative;
  width: 100%;
  height: 100vh;
  color: black;
  box-sizing: inherit;
  padding: 0;
  z-index: 1001;
}
@media (max-width: 56.25em) {
  .projects {
    padding: 0;
    height: auto;
  }
}
.projects__items {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5rem;
  padding: 5rem 0;
  box-sizing: border-box;
}
@media (max-width: 37.5em) {
  .projects__items {
    flex-direction: column;
    justify-content: center;
  }
}
.projects__item {
  position: relative;
  width: 20%;
  padding: 1rem;
  background-color: silver;
  box-sizing: border-box;
}
@media (max-width: 75em) {
  .projects__item {
    width: 27%;
  }
}
@media (max-width: 56.25em) {
  .projects__item {
    width: 45%;
  }
}
@media (max-width: 37.5em) {
  .projects__item {
    width: 100%;
  }
}
.projects__item__text {
  position: absolute;
  bottom: -3rem;
  height: 2rem;
  left: 50%;
  transform: translate(-50%, 0);
  transition: all 5ms;
  color: #38e4ae;
  width: 100%;
  font-family: Abel, sans-serif;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 700;
  padding: 0;
  text-align: center;
  word-wrap: nowrap;
  vertical-align: top;
  overflow: hidden;
  z-index: 1005;
}
@media (max-width: 37.5em) {
  .projects__item__text {
    font-size: 2rem;
  }
}
.projects__item:hover .projects__item__text {
  color: #fff;
}
.projects__item__image {
  width: 100%;
}
.projects__item__image::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.85);
}
.projects__item .btn {
  min-width: 50%;
}
.projects__item .btn__viewproject {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 1rem;
  opacity: 0;
  border: 1px solid white;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease-in-out;
}
@media (max-width: 37.5em) {
  .projects__item .btn__viewproject {
    font-size: 1.8rem;
    padding: 2rem;
  }
}
.projects__item .btn__viewproject:hover {
  background-color: rgba(40, 167, 69, 0.9);
  cursor: pointer;
}
.projects__item:hover .btn__viewproject {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  opacity: 1;
}
.projects__item__details {
  width: 50%;
  text-transform: initial;
  color: #808080;
  line-height: 3rem;
  text-align: justify;
  font-size: 1.6rem;
}

/* -----------------------------
    PROJECT LIST CSS TANIMLARI
----------------------------- */
.projects-container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 5rem 2rem;
  background-color: transparent;
  box-sizing: border-box;
  z-index: 2;
}
@media (max-width: 37.5em) {
  .projects-container {
    padding: 5rem 0;
  }
}
.projects-container .result {
  position: absolute;
  top: 20rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  font-size: 2.4rem;
}

/* PROJECT CARD */
.project-card {
  position: absolute;
  width: var(--card-width);
  background: #1f2023;
  border-radius: 14px;
  overflow: hidden;
  color: #e6e6e6;
  opacity: 0.8;
  transform: translate(var(--mx), var(--my));
  transition: opacity 0.4s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
@media (max-width: 37.5em) {
  .project-card {
    position: relative;
  }
}
.project-card .card-inner {
  transition: transform 0.4s ease;
}
.project-card:hover {
  opacity: 1;
  box-shadow: 5px 5px 20px rgba(96, 96, 96, 0.95);
}
.project-card:hover .card-inner {
  transform: scale(1.05);
}
.project-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.project-card h3 {
  font-size: 1.7rem;
  margin: 1.2rem 1.4rem 0.4rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.3px;
  text-align: center;
}
.project-card p {
  font-size: 1.25rem;
  margin: 0 1.4rem 1.4rem;
  color: #b8b8b8;
  line-height: 1.45;
  text-align: center;
}
.project-card.visible {
  opacity: 1;
}

/* SERVICES DEFINITIONS */
.services {
  position: relative;
  height: 100vh;
  overflow: hidden;
  box-sizing: border-box;
  font-family: "Abel", sans-serif;
  text-transform: uppercase;
  z-index: 98;
}
@media (max-width: 56.25em) {
  .services {
    height: auto !important;
    overflow: visible;
  }
}
@media (max-width: 37.5em) {
  .services {
    height: auto !important;
    width: 100%;
    overflow: visible !important;
  }
}
.services__items {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 400;
  padding: 0;
  margin: 0;
}
@media (max-width: 56.25em) {
  .services__items {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media (max-width: 37.5em) {
  .services__items {
    flex-direction: column;
    flex-wrap: nowrap;
    height: auto !important;
    overflow: visible !important;
  }
}
.services__item {
  position: relative;
  flex: 1 0 25%;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}
@media (max-width: 56.25em) {
  .services__item {
    position: relative;
    width: 50%;
    height: 100vh !important;
    min-width: 50%;
    flex: none !important;
  }
}
@media (max-width: 37.5em) {
  .services__item {
    flex: none !important;
    width: 100% !important;
    height: 100vh !important;
    position: relative;
    display: block;
  }
}
.services__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.services__item__button {
  position: absolute;
  opacity: 0;
  bottom: -6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  padding: 2rem;
  color: whitesmoke;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: all 1s;
  border: 0.1rem solid #38e4ae;
  background-color: rgba(52, 62, 61, 0.8);
  cursor: pointer;
  z-index: 99;
}
.services__item__button a {
  color: inherit;
  text-decoration: none;
}
.services__item__button:hover {
  bottom: 6rem;
  background-color: rgba(40, 167, 69, 0.99);
}
.services__item:hover .services__item__image:hover {
  filter: brightness(50%);
}
.services__item:hover .services__item__button {
  opacity: 1;
  bottom: 3rem;
}
.services__item__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  transition: all 5ms;
  color: #ababab;
  font-size: 3rem;
  font-weight: 400;
  padding: 2rem;
  z-index: 99;
}
@media (max-width: 37.5em) {
  .services__item__text {
    font-size: 2.4rem;
  }
}
.services__item:hover .services__item__text {
  color: #dedede;
  background-color: transparent;
}
.services__item__button:hover ~ .services__item__image, .services__item__text:hover ~ .services__item__image {
  filter: brightness(50%);
}
.services__item__image {
  height: 100%;
  filter: brightness(20%);
  transition: all 0.5s ease-in;
}
@media (max-width: 37.5em) {
  .services__item__image {
    width: 100%;
  }
}
@media (max-width: 56.25em) {
  .services__item__image {
    width: 100%;
  }
}
.services__item__image:hover {
  filter: brightness(50%);
}

/*# sourceMappingURL=style.css.map */
