@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary-900: #101010;
  --primary-800: #212121;
  --primary-500: #00000080;
  --primary-400: #777777;
  --primary-100: #a5a5a5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

ol,
ul {
  margin: 0 !important;
  padding: 0 !important;
}

a {
  text-decoration: none !important;
  color: black !important;
  font-size: 16px;
  transition: all 0.3s ease;
}

li {
  list-style: none;
}

section {
  padding: 60px 0;
}

img {
  max-width: 100%;
}

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

.align-end {
  align-items: flex-end;
}

.align-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.logo {
  max-width: 200px;
}

.logo img {
  max-width: 222px;
}

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

.button {
  padding: 15px 30px;
  border: 2px solid white;
  color: white !important;
  border-radius: 5px;
}

.button:hover {
  background-color: white;
  color: black !important;
}

.background {
  background-color: black;
  padding: 75px 0;
}

@media (max-width: 992px) {
  .navigation-container {
    position: absolute;
    bottom: -10px;
    right: 30px;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 10px 0;
    z-index: 2;
  }

  .navigation-container .swiper-button-prev,
  .navigation-container .swiper-button-next {
    position: static;
    width: auto;
    height: auto;
    color: #000; /* isteğe göre */
  }

  .navigation-container .reference-button-prev,
  .navigation-container .reference-button-next {
    position: static;
    width: auto;
    height: auto;
    color: #000; /* isteğe göre */
    transform: rotate(180deg);
  }

  .references .navigation-container {
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}

/* CONTENT WRAPPER START */

.content-wrapper {
  padding: 40px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.content-wrapper ul,
.content-wrapper ol {
  margin-left: 40px;
  margin-bottom: 20px;
}

.content-wrapper ul li {
  list-style: unset;
  margin-bottom: 5px;
}

.content-wrapper ol li {
  list-style: disc;
  margin-bottom: 10px;
}

.content-wrapper p + h2,
.contnet-wrapper p + h3,
.content-wrapper p + h4,
.content-wrapper p + h5,
.content-wrapper p + h6 {
  margin-bottom: 20px;
}

.content-wrapper img {
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
}
/* CONTENT WRAPPER END */

/* ANIMATIONS */

@keyframes stickySlideDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* HEADER START */

header {
  width: 100%;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 9;
}

@media (max-width: 992px) {
  header {
    top: 0;
  }
}

/* DESKTOP HEADER START */

.desktop-header .bottom.sticky {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  background-color: black;
  z-index: 22;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  animation: stickySlideDown 0.5s ease;
  padding: 10px 0;
}

.desktop-header .top {
  border-bottom: 1px solid #fff;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.desktop-header .top .top-left {
  color: white;
  font-size: 14px;
}

.desktop-header .top .top-right {
  display: flex;
  justify-content: flex-end;
}

.desktop-header .top .top-right .social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .desktop-header .row {
  align-items: center;
}

.desktop-header .top .top-right .social-links a {
  color: #000000 !important;
  background: white;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.desktop-header .logo svg {
  width: 200px;
}

.desktop-header nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.desktop-header nav ul li a {
  color: white !important;
  font-size: 14px;
  text-transform: uppercase;
}

.desktop-header nav ul li a:hover {
  opacity: 0.7;
}

@media (max-width: 1200px) {
  .desktop-header nav ul li a {
    font-size: 11px;
  }
}

.desktop-header .bottom {
  transition: all 0.3s ease;
}

.dropdown {
  position: relative;
  cursor: pointer;
}

.dropdown a {
  padding-bottom: 50px;
}

.dropdown-content {
  width: 350px;
  position: absolute;
  background: white;
  margin: 0 auto;
  left: 0;
  right: 0;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  z-index: 9;
  pointer-events: none;
  top: 40px;
  transform: scaleY(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: top;
  opacity: 0;
  border-radius: 10px;
  padding: 30px;
}

.dropdown-items {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 5px !important; /* isteğe göre boşluk */
}

.dropdown-content .dropdown-items li {
  display: block;
  padding: 2px;
  width: 100%;
  transition: all 0.3s ease;
}

.dropdown-content .dropdown-items li a {
  color: black !important;
  padding-bottom: 0;
}

.dropdown:hover .dropdown-content {
  transform: scaleY(1);
  opacity: 1;
  pointer-events: all;
}

.dropdown-icon i {
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-icon i {
  transform: rotate(180deg); /* Ok simgesini döndür */
}

@media (max-width: 992px) {
  .dropdown a {
    padding-bottom: 0 !important;
  }

  .dropdown-icon i {
    display: none;
  }

  .dropdown-content {
    display: none;
  }
}

/* DESKTOP HEADER END */

/* MOBILE HEADER START */

@media (min-width: 992px) {
  .mobile-header {
    display: none;
  }

  .hamburger {
    display: none;
  }
}

@media (max-width: 992px) {
  .mobile-header {
    display: block;
  }

  .desktop-header {
    display: none;
  }
}

.mobile-header.sticky {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  background-color: black;
  z-index: 5;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  animation: stickySlideDown 0.5s ease;
}

.mobile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.mobile-top .logo svg {
  width: 165px;
}

.hamburger {
  display: block;
  cursor: pointer;
  position: relative;
  right: 50px;
  z-index: 6;
}

.hamburger::after {
  content: "MENU";
  position: absolute;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-weight: bold;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 10px;
}

.hamburger .bar:nth-child(2) {
  margin: 5px 0;
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger.active .bar {
  background-color: black;
}

.hamburger.active::after {
  content: "CLOSE";
  position: absolute;
  right: -55px;
  top: 50%;
  transform: translateY(-50%);
  color: black;
}

.header-wrapper {
  background-color: white;
  width: 30%;
  height: 100vh;
  padding-top: 75px;
  position: fixed;
  right: -100%;
  top: 0;
  z-index: 5;
  transition: 0.3s ease;
  text-align: left;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background: linear-gradient(to bottom, #ffffff 0%, #e5faff 100%);
}

@media (max-width: 768px) {
  .header-wrapper {
    width: 35%;
  }
}

@media (max-width: 568px) {
  .header-wrapper {
    width: 50%;
  }
}

@media (max-width: 480px) {
  .header-wrapper {
    width: 70%;
  }
}

.header-wrapper.active {
  right: 0;
}

.overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 4;
  display: none;
  pointer-events: none;
  bottom: 0;
}

.overlay.active {
  display: block;
  pointer-events: all;
}

.header-wrapper nav ul li {
  padding: 10px 0 10px 30px;
  width: 100%;
  border-bottom: 1px solid var(--primary-800);
}

.header-wrapper nav ul li a {
  display: block;
  font-size: 14px;
}

.header-wrapper nav ul li:first-child {
  border-top: 1px solid var(--primary-800);
}

/* MOBILE HEADER END */

/* HEADER END*/

/* HERO START */

.hero {
  padding: 0;
}

.video-container {
  position: relative;
}

.video-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  z-index: 1;
}

.video-container video {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .video-container {
    height: 900px;
  }

  .video-container video {
    height: 100%;
    object-fit: cover;
  }
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
  color: white;
}

@media (max-width: 768px) {
  .hero-content {
    left: auto;
    transform: translate(0, -50%);
    padding: 10px;
  }
}

.hero-content .title {
  font-size: 75px;
}

@media (max-width: 1300px) {
  .hero-content .title {
    font-size: 55px;
  }
}

@media (max-width: 1200px) {
  .hero-content .title {
    font-size: 50px;
  }
}

.hero-content .desc {
  display: flex;
  flex-direction: column;
  font-size: 22px;
  letter-spacing: 2px;
  gap: 10px;
  margin: 20px 0 60px 0;
}

@media (max-width: 1300px) {
  .hero-content .desc {
    font-size: 18px;
  }
}

.hero-content .button {
  padding: 15px 30px;
  border: 5px solid white;
  color: white !important;
  font-size: 22px;
}

.hero-content .button:hover {
  color: black !important;
}

@media (max-width: 1300px) {
  .hero-content .button {
    font-size: 16px;
  }
}

/* HERO END */

/* ABOUT US START */

.about-top {
  padding: 0 0 60px 0;
  text-align: center;
}

.about-top .title {
  font-size: 32px;
}

.about-top .desc {
  margin: 15px 0 35px 0;
}

.about-top .button {
  border: 2px solid black;
  color: black !important;
}

.about-top .button:hover {
  background-color: black;
  color: white !important;
}

.about-box {
  display: inline-block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

@media (max-width: 992px) {
  .about-box {
    width: 100%;
  }
}

.about-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.about-box:hover::after {
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
  .about-box::after {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.about-box img {
  transition: all 0.6s ease;
}

@media (max-width: 992px) {
  .about-box img {
    width: 100%;
  }
}

.about-box:hover img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .about-box:hover img {
    transform: scale(1);
  }
}

.about-box-content {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  padding: 0 20px;
}

.about-title {
  font-size: 32px;
}

.about-desc {
  margin: 10px 0 20px 0;
}

.about-box .button {
  background-color: transparent;
  border: 1px solid white;
  padding: 8px 16px;
  color: white;
  transition: all 0.3s ease;
  border-radius: 5px;
}

.about-box:hover .button {
  background-color: white;
  color: black !important;
}

@media (max-width: 992px) {
  .about-box .button {
    background-color: white;
    color: black !important;
  }
}

/* ABOUT US END */

/* WORK START */

.work {
  position: relative;
  background-color: #f8f8f8;
}

.work .work-absolute-img {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}

.work::before,
.work::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 400px;
  z-index: 2;
  pointer-events: none;
}

/* Üst duman efekti */
.work::before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

/* Alt duman efekti */
.work::after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 1),
    rgba(255, 255, 255, 0)
  );
}

.work .title,
.work .desc {
  text-align: center;
  position: relative;
  z-index: 3;
}

.work .title {
  font-size: 36px;
  color: black;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.work .title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 15%;
  height: 2px;
  background-color: black;
}

.work .desc {
  color: black;
  margin-bottom: 40px;
}

.carousel__button {
  color: var(--carousel-button-color, currentColor) !important;
}

.loop-area {
  height: 800px;
  overflow: hidden;
  position: relative;
}

.loop-area-down .loop-inner {
  animation: scroll-down 20s linear infinite;
}

/* Yukarı kayan animasyon */
.loop-area-up .loop-inner {
  animation: scroll-up 20s linear infinite;
}

.loop-area:hover .loop-inner {
  animation-play-state: paused !important;
}

@keyframes scroll-up {
  0% {
    transform: translateY(0%);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scroll-down {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0%);
  }
}

.work-box {
  display: block;
  position: relative;
  margin-bottom: 30px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  cursor: pointer;
}

.zoom-icon {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: white !important;
  z-index: 5;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  opacity: 0;
  transform: scale(0.8) rotateX(90deg);
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform-origin: center;
}

.work-box:hover .zoom-icon {
  opacity: 1;
  transform: scale(1) rotateX(0deg) translateY(0px);
  transition-delay: 0.1s;
}

@media (max-width: 992px) {
  .zoom-icon {
    opacity: 1;
    transform: scale(1) rotateX(0deg) translateY(0px);
  }
}

.work-box .link {
  display: block;
  height: 100%;
}

.work-box::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}

.work-box:hover::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

@media (max-width: 992px) {
  .work-box::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.work-box img {
  transition: all 0.3s ease;
  width: 100%;
  object-fit: cover;
}

.work-box:hover img {
  transform: scale(1.1);
}

@media (max-width: 992px) {
  .work-box:hover img {
    transform: scale(1);
  }
}

.work-box-content {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.work-box-content .top-title {
  font-size: 15px;
}

.work-box-content .title {
  font-size: 27px;
  font-weight: 600;
  color: white;
}

@media (max-width: 992px) {
  .work-box-content .title {
    font-size: 22px;
  }
}

.work-box-content .title,
.work-box-content .top-title {
  opacity: 0;
  transform: scale(0.8) rotateX(90deg);
  transition: transform 0.6s ease, opacity 0.6s ease;
  transform-origin: center;
  position: relative;
  display: inline-block;
}

.work-box:hover .top-title {
  opacity: 1;
  transform: scale(1) rotateX(0deg) translateY(0px);
  transition-delay: 0.1s;
}

.work-box:hover .title {
  opacity: 1;
  transform: scale(1) rotateX(0deg) translateY(0px);
  transition-delay: 0.2s;
}

@media (max-width: 992px) {
  .work-box-content .title,
  .work-box-content .top-title {
    opacity: 1;
    transform: scale(1) rotateX(0deg) translateY(0px);
  }
}

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

.right-title .right-top-title,
.right-title .right-bottom-title {
  font-size: 32px;
  font-weight: 600;
}

.right-desc {
  margin: 20px 0 50px 0;
  font-size: 22px;
}

.work-right .button {
  border: 2px solid black;
  color: black !important;
}

.work-right .button:hover {
  background-color: black;
  color: white !important;
}

/* WORK END */

/* PRODUCTS START */
.products {
  padding: 20px 0 60px 0;
}

.products .title {
  font-size: 36px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
}

.modal-content .title::after {
  width: 0;
  display: none;
}

.modal-content .title {
  text-align: left;
}

.products .title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  width: 15%;
  height: 2px;
  background-color: black;
}

.tab-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
}

.tab-buttons .tab-button {
  cursor: pointer;
  position: relative;
  font-weight: 600;
  color: #333333b3;
  background-color: transparent;
  border: none;
}

@media (min-width: 992px) {
  .tab-select {
    display: none;
  }
}

@media (max-width: 992px) {
  .tab-buttons {
    display: none;
  }

  .tab-select {
    display: block;
    margin-bottom: 30px;
  }
}

#productSelect {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#productSelect option {
  padding: 10px;
  cursor: pointer;
  display: block;
  border: none;
  width: 100%;
}

.tab-buttons .tab-button.active {
  color: black;
}

.tab-buttons .tab-button:hover {
  color: var(--primary-800);
}

.tab-buttons .tab-button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: black;
  transition: width 0.3s ease;
}

.tab-buttons .tab-button:hover::after {
  width: 100%;
}

.tab-buttons .tab-button.active::after {
  width: 100%;
}

.products .wrapper .container {
  position: relative;
}

.products .wrapper .swiper-button-next,
.products .wrapper .swiper-button-prev {
  top: 30%;
}

.products .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -35px;
}

.products .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -35px;
}

.products .wrapper .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 22px;
  cursor: pointer;
  color: #333333b3;
}

.products .wrapper .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 22px;
  cursor: pointer;
  color: #333333b3;
}

.tab-content {
  display: none;
  margin-bottom: 30px;
}

.tab-content.active {
  display: block;
}

.product-box {
  position: relative;
  margin-bottom: 20px;
}

.product-box a {
  text-align: center;
  font-weight: 600;
}

.product-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  background-color: white;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease;
  opacity: 0;
  cursor: pointer;
}

.product-box:hover .product-icon {
  opacity: 1;
}

.product-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  margin-bottom: 15px;
}

.hover-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 1s ease;
}

.product-img:hover .hover-img {
  opacity: 1;
}

.product-box:hover .product-img .hover-img {
  transform: scale(1.3);
}

.product-box .product-sku span {
  color: var(--primary-100);
}

.product-price {
  color: #082779;
}

.products .button {
  color: black !important;
  border: 1px solid black;
}

.products .button:hover {
  background-color: black;
  color: white !important;
}

.imageSlider {
  position: relative;
}

/* Başlangıçta modali gizle ve yukarıda konumlandır */
/* OVERLAY */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal.show {
  display: flex;
  opacity: 1;
}

/* MODAL KUTUSU */
.modal-content {
  background: white;
  padding: 0 !important;
  border-radius: 8px;
  transform: translateY(-100px);
  opacity: 0;
  animation: none;
}

/* Modal gösterildiğinde içerik animasyonu başlar */
.modal.show .modal-content {
  animation: slideIn 0.4s ease forwards;
}

/* Modal gizlenirken içerik kayarak kapanır */
.modal.hide .modal-content {
  animation: slideOut 0.3s ease forwards;
}

/* Yukarıdan kayarak giriş */
@keyframes slideIn {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Yukarı doğru kayarak çıkış */
@keyframes slideOut {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}

.modal .content-wrapper {
  padding: 10px;
  box-shadow: none;
}

.modal .content-wrapper p {
  margin-bottom: 10px;
}

.modal .content-wrapper ul {
  margin-left: 40px !important;
}

.modal .content-wrapper ul li {
  margin-bottom: 5px;
  font-size: 14px;
}

.modal-content {
  background: white;
  max-width: 700px;
  width: 90%;
  height: 80%;
  overflow-y: scroll;
  border-radius: 10px;
  position: relative;
}

@media (max-width: 992px) {
  .modal-content {
    height: 60%;
  }
}

.close-modal {
  position: absolute;
  top: -35px;
  right: 0px;
  font-size: 20px;
  cursor: pointer;
  z-index: 2;
  color: white;
}

.modal-body {
  padding: 20px !important;
}

.modal-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.modal-img img {
  width: 100%;
}

.modal-img .link {
  width: 100%;
  position: absolute;
  bottom: -100%;
  left: 0;
  background-color: #8ecbde;
  color: white !important;
  text-align: center;
  padding: 10px;
  transition: bottom 0.3s ease;
}

/* Hover efekti: link yukarı çıkar */
.modal-img:hover .link {
  bottom: 0;
}

.no-scroll {
  overflow: hidden;
}

.modal-button-prev,
.modal-button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

.modal-button-prev::after,
.modal-button-next::after {
  content: "";
  display: inline-block;
  border: solid white;
  border-width: 0 2px 2px 0;
  padding: 6px;
}

.modal-button-prev {
  left: 0;
}
.modal-button-prev::after {
  transform: rotate(135deg);
}

.modal-button-next {
  right: 0;
}
.modal-button-next::after {
  transform: rotate(-45deg);
}

/* PRODUCTS END */

/* WHY US START */

.why-us {
  background-color: #00000080;
}

.why-us .title {
  font-size: 36px;
  margin-bottom: 60px;
  color: white;
  text-align: center;
}

.why-us-box {
  text-align: center;
  margin-bottom: 60px;
}

.why-us-box img {
  width: 50px;
  margin-bottom: 10px;
}

.why-us-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 27px;
  color: white;
}

/* WHY US END */

/* REFERENCES START */

.references {
  background-color: #f9f9f9;
}

.references .container {
  position: relative;
}

.references .title {
  font-size: 36px;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
}

.references .title::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 15%;
  height: 2px;
  background-color: black;
}

.reference-button-prev,
.reference-button-next {
  position: absolute;
  top: 80%;
  width: 40px;
  height: 40px;
  z-index: 10;
  cursor: pointer;
  border-radius: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #212121;
  font-size: 20px;
}

.reference-button-prev::after,
.reference-button-next::after {
  content: "";
  display: inline-block;
  border: solid #212121;
  border-width: 0 1px 1px 0;
  padding: 6px;
}

.reference-button-prev {
  left: -35px;
}
.reference-button-prev::after {
  transform: rotate(135deg);
}

.reference-button-next {
  right: -35px;
}
.reference-button-next::after {
  transform: rotate(-45deg);
}

/* REFERENCES END */

/* FOOTER START */

footer {
  padding: 20px 0 60px 0;
  background-color: black;
  color: var(--primary-100);
}

footer .left .logo {
  display: inline-block;
  margin-bottom: 15px;
}

footer .title {
  font-size: 22px;
  font-weight: 600;
  color: white;
  margin-bottom: 40px;
  border-bottom: 1px solid white;
}

footer .center-item {
  color: var(--primary-100) !important;
}

footer .center-item:not(:last-child) {
  margin-bottom: 10px;
}

footer .right .right-item {
  margin-bottom: 10px;
}

footer .right .social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

footer .right .social-links a {
  color: white !important;
}

/* FOOTER END */

/* PAGE HEADER START */

.page-header {
  background-color: black;
  text-align: center;
  padding: 180px 0 60px 0;
  color: white;
}

.page-header h1 {
  font-size: 54px;
  font-weight: 900;
}

/* PAGE HEADER EMD */

/* WORK PAGE START */

.works {
  padding: 0 0 60px 0;
}

.work-tabs {
  padding: 20px 0;
}

.work-tabs .tab-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

@media (min-width: 992px) {
  .work-tabs .tab-select {
    display: none;
  }
}

#tabSelect {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

#tabSelect option {
  padding: 10px;
  cursor: pointer;
  display: block;
  border: none;
  width: 100%;
}

@media (max-width: 992px) {
  .work-tabs .tab-buttons {
    display: none;
  }
  .work-tabs .tab-select {
    display: flex;
    justify-content: center;
  }
}

.tab-item {
  transform: translateY(50px); /* Öğeleri biraz aşağıya kaydırıyoruz */
  opacity: 0;
  transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.tab-item.hide {
  display: none;
  opacity: 0;
  visibility: hidden;
}

.tab-item.show {
  display: block;
  opacity: 1;
  visibility: visible;
}

.works .col-lg-4.hide {
  display: none;
}
/* WORK PAGE END */

/* CONTACT PAGE START */

.contact-page-desc {
  text-align: center;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page-desc .desc {
  width: 35%;
}

@media (max-width: 992px) {
  .contact-page-desc .desc {
    width: 75%;
  }
}

@media (max-width: 450px) {
  .contact-page-desc .desc {
    width: 95%;
  }
}

@media (max-width: 992px) {
  .contact {
    padding: 0;
  }
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--primary-400) !important;
}

@media (max-width: 992px) {
  .contact-box {
    margin-bottom: 30px;
  }
}

.contact-box i {
  font-size: 42px;
}

.contact-box .contact-title {
  font-size: 14px;
  font-weight: 600;
  color: black;
  border-bottom: 1px solid black;
  padding-bottom: 5px;
}

.contact-box .contact-info {
  padding-top: 5px;
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
}

.form-title .top-title {
  color: var(--primary-400);
}

.form-title .bottom-title {
  font-size: 22px;
  font-weight: 600;
}

.form-item {
  width: 100%;
  margin-bottom: 20px;
}

.form-item input,
.form-item textarea {
  width: 100%;
  padding: 10px;
  resize: none;
}

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

@media (max-width: 768px) {
  .contact-form .wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .recaptcha {
    margin-bottom: 20px;
  }
}

.contact-form .wrapper .button {
  background-color: black;
  border: 1px solid black;
  border-radius: 30px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  transition: all 0.3s ease;
}

.contact-form .wrapper .button:hover {
  background-color: white;
  color: black;
}

/* CONTACT PAGE END */

/* PRODUCT DETAIL START */

.img-wrapper {
  position: relative;
  padding-bottom: 25px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ebebeb;
}

.img-wrapper .zoom {
  position: absolute;
  left: 10px;
  bottom: 60px;
  background-color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.first-img {
  margin-bottom: 20px;
}

.img-wrapper img {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.detail-info .info-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.detail-info .info-wrapper .info-title {
  font-weight: 600;
}

.product-detail .content-wrapper {
  box-shadow: none;
  padding: 0 20px;
  color: var(--primary-100);
}

.product-detail .breadcrumb {
  padding-top: 0 !important;
  margin-bottom: 15px !important;
}

.content-wrapper .title {
  font-size: 27px;
  margin-bottom: 5px;
  font-weight: 600;
  color: black;
}

.content-wrapper .price {
  font-size: 18px;
  font-weight: 600;
  color: #082779;
  margin-bottom: 10px;
}

.content-wrapper .package {
  font-size: 18px;
  font-weight: 600;
  color: #1e3050;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--primary-100);
}

@media (max-width: 992px) {
  .product-detail .breadcrumb {
    display: none;
  }
  .product-detail .content-wrapper {
    padding: 0;
  }
}

.product-detail .content-wrapper ul {
  padding-left: 20px !important;
  margin-bottom: 20px !important;
  color: var(--primary-100);
}

.product-detail .content-wrapper .button {
  width: 100%;
  display: inline-block;
  background-color: #082779;
  border: 1px solid #082779;
  color: white;
  text-align: center;
  font-weight: 600;
  margin-bottom: 25px;
  padding: 10px;
}

.product-detail .content-wrapper .button:hover {
  background-color: white;
  color: #082779;
}

.features .features-title {
  font-size: 18px;
  font-weight: 600;
  color: #1e3050;
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 2px solid #ebebeb;
}

.features .features-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.features .features-item i {
  color: #1e3050;
}

.features .features-item .features-item-title {
  font-size: 14px;
  color: var(--primary-400);
}

.related-product .container {
  position: relative;
}

.related-product .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -35px;
}

.related-product .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -35px;
}

@media (max-width: 992px) {
  .related-product .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    display: none;
  }

  .related-product .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    display: none;
  }
}

.related-product .container .swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  font-size: 22px;
  cursor: pointer;
  color: #212121;
}

.related-product .container .swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  font-size: 22px;
  cursor: pointer;
  color: #212121;
}

.related-product .title {
  padding: 15px 0;
}

.related-product .title span {
  font-weight: 600;
  color: #082779;
  border-top: 3px solid #082779;
  padding-top: 25px;
}

.related-product .line {
  border-top: 1px solid #ebebeb;
  padding-top: 10px;
}

.related-product .swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: -40px !important;
}

.related-product .swiper-pagination-bullet-active {
  background-color: #212121 !important;
  border: 2px solid #212121;
}

.swiper-pagination-bullet {
  border: 2px solid #212121;
  background-color: white !important;
}

/* PRODUCT DETAIL END */

/* PRODUCT PAGE START */

.product-page {
  padding: 0;
}

.category-box {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  cursor: pointer;
}

.category-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 1;
  transition: all 0.3s ease;
}

.category-box img {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  transform: scale(1);
  transition: all 0.3s ease;
}

.category-box:hover img {
  transform: scale(1.1);
}

.category-box .category-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  font-weight: 600;
  z-index: 2;
  text-align: center;
}

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

.custom-select {
  position: relative;
  width: 35%;
}

@media (max-width: 1200px) {
  .custom-select {
    width: 90%;
  }
}

.select-trigger {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #888;
}

.select-trigger .arrow {
  font-size: 12px;
}

.select-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 250px;
  overflow-y: auto;
  z-index: 10;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.custom-select.open .select-list {
  display: block;
}

.search-container {
  padding: 5px;
  position: sticky;
  top: 0;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

#searchInput {
  width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

.option {
  padding: 10px;
  cursor: pointer;
  display: block;
  border: none;
  background-color: transparent;
  width: 100%;
  text-align: left;
}

.option:hover {
  background-color: #082779;
  color: #fff;
}

.product-content {
  display: none;
}
.product-content.active {
  display: block;
}
.option.active {
  background-color: #082779;
  color: #fff;
}
/* PRODUCT PAGE END*/

/* BREADCRUMB START */

.breadcrumb {
  padding-top: 20px !important;
  padding-left: 20px !important;
  margin-bottom: 30px !important;
}

.breadcrumb .links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  flex-wrap: wrap;
}

.breadcrumb .links li {
  color: var(--primary-400);
}

.breadcrumb .links li:last-child {
  font-weight: 600;
  color: black;
}

.breadcrumb .links li a {
  font-weight: 400;
  color: var(--primary-400) !important;
  font-size: 14px;
}

.breadcrumb .links li:not(:last-child)::after {
  position: absolute;
  content: "/";
  right: -7px;
}

.breadcrumb .links li {
  position: relative;
}
/* BREADCRUMB END */

/* WORK DETAIL START */

.work-detail-img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
  overflow: hidden;
}

.work-detail-img img {
  width: 100%;
}

.work-detail-img:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.work-detail aside {
  position: sticky;
  top: 100px;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 10px;
}

.work-detail .aside-info {
  margin-bottom: 20px;
}

.work-detail .aside-info .title {
  font-weight: 600;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.work-detail .aside-info .content {
  font-size: 14px;
  color: var(--primary-400);
}

.work-detail .wrapper {
  margin-bottom: 60px;
}

/* WORK DETAIL END */

/* ABOUT US PAGE START */

.about-us img {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

/* ABOUT US PAGE END */

/* SINGLE PAGE START */

.custom-design .title {
  font-size: 46px;
  font-weight: 600;
  margin-bottom: 30px;
}

.custom-design img {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.custom-design .button {
  display: inline-block;
  margin-top: 30px;
  background-color: black;
  border: 1px solid black;
  color: white !important;
}

.custom-design .button:hover {
  background-color: white;
  color: black !important;
}

.custom-design .wrapper {
  margin-bottom: 30px;
}

.custom-design .btn-wrapper {
  text-align: center;
}

/* SINGLE PAGE END */



.error-page-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.error-page-right .error-title {
  font-weight: 600;
  font-size: 20px;
}

.error-page-right .home-link {
  padding: 10px 35px;
  background: black;
  color: white !important;
  border-radius: 5px;
}


img.default-img {
  height: 270px;
  width: 100%;
}

img.default-product-img {
  height: 166px;
  width: 100%;
}