﻿@import url(bootstrap.min.css);
@import url(owl.carousel.css);
@import url(https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap);
@import url(fa/css/all.min.css);
@import url(ekstra.css);

body {
  color: #222;
  font-size: 16px;
  background:#E0E0E0 url('../images/bg.webp');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top; 
}

body.no-bg {
  background:#E0E0E0!important;
}

::selection {
  color: white;
  background: #00a650;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
  padding: 0
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Inter Tight", sans-serif;
}

ul {
  list-style-type: none;
}

p,
ul {
  font-family: "Inter Tight", sans-serif;
  font-weight: 400;
  font-size: 14px;
}

a {
  text-decoration: none;
  display: inline-block;
  outline: 0
}

a:focus,
a:hover,
a:visited {
  text-decoration: none;
  outline: 0
}

img {
  max-width: 100%;
  display: inline-block;
  width: auto;
}


.baslik {
  margin: 0 0 30px 0;
  position: relative;
}

.baslik::before {
  content: "";
  position: absolute;
  left: -1.2em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1.2em;
  background-image: url(../images/favicon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.no-before::before {
  content: none;
}

.buton {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 12px 22px;
  border-radius: 30px;
  background: linear-gradient(90deg, #04c460, #00a650);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 166, 80,, 0.3);
}

.buton:hover {
  transform: scale(1.05) !important;
  box-shadow: 0 8px 25px rgba(0, 166, 80,, 0.45);
}

.buton span {
  position: relative;
  z-index: 2;
}


.buton::after {
  content: "";
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 25px;
  height: 30px;
  background: currentColor; 
  
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 59.919 71.357'><g transform='translate(-6.436 -2.419)'><path d='M737.875,55.324l-17.5,53.707,34.9-18.326L737.19,79.059l-3.952,11.967,4.247-4.563,4.549,3.31L729,96.527Z' transform='translate(-688.92 -52.905)' fill='white'/><path d='M164.833,511.1l17.689-53.8-35.085,18.422,18.081,11.646L169.47,475.4l-3.965,4.653-4.832-3.4L173.7,469.9Z' transform='translate(-141.001 -437.324)' fill='white'/></g></svg>") no-repeat center;
  
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 59.919 71.357'><g transform='translate(-6.436 -2.419)'><path d='M737.875,55.324l-17.5,53.707,34.9-18.326L737.19,79.059l-3.952,11.967,4.247-4.563,4.549,3.31L729,96.527Z' transform='translate(-688.92 -52.905)' fill='white'/><path d='M164.833,511.1l17.689-53.8-35.085,18.422,18.081,11.646L169.47,475.4l-3.965,4.653-4.832-3.4L173.7,469.9Z' transform='translate(-141.001 -437.324)' fill='white'/></g></svg>") no-repeat center;
  
  mask-size: contain;
  -webkit-mask-size: contain;
  transition: transform 0.3s ease;
}

.buton:hover::after {
  transform: translateX(5px);
}

.buton .shine {
  position: absolute;
  inset: 0;
  top: -2px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-200%) skewX(-12deg);
  transition: transform 1s ease;
  z-index: 1;
}

.buton:hover .shine {
  transform: translateX(200%) skewX(-12deg);
}


.animate {
  opacity: 0;
  transition: all 0.8s ease-out;
}
.animate.fade-up {
  transform: translateY(40px);
}

.animate.fade-down {
  transform: translateY(-40px);
}

.animate.fade-left {
  transform: translateX(-40px);
}

.animate.fade-right {
  transform: translateX(40px);
}

.animate.show {
  opacity: 1;
  transform: translate(0, 0);
}

.preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background-color: #e9e9e9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-in-out 0.5s, visibility 0.5s ease-in-out 0.5s; 
}

.preloader-logo {
  width: 160px; 
  height: auto;
  overflow: visible;
}

.parca-sag {
  animation: yukleSag 0.5s forwards ease-out;
}

.parca-sol {
  animation: yukleSol 0.5s forwards ease-out;
}

@keyframes yukleSag {
  0% { transform: translateY(-100vh); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes yukleSol {
  0% { transform: translateY(100vh); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

.preloader.loaded .parca-sag {
  animation: ucusSag 0.5s forwards ease-in-out;
  animation-delay: 0.2s;
}

.preloader.loaded .parca-sol {
  animation: ucusSol 0.5s forwards ease-in-out;
  animation-delay: 0.2s;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes ucusSag {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  100% { transform: translateY(0) translateX(100px); opacity: 0; }
}

@keyframes ucusSol {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  100% { transform: translateY(0) translateX(-100px); opacity: 0; }
}


.icslide:before {
    position: absolute;
    content: "";
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(80deg, #0d1e1e, #264D4D);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    animation: grid-move 20s linear infinite;
    z-index: -1;
}

@keyframes grid-move {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: -40px -40px, -40px -40px, 0 0; }
}


.icslide-section {
    position: relative;
    width: 100%;
    padding: 140px 0 80px;
    display: flex;
    align-items: center; 
    justify-content: center; 
    overflow: hidden;
}

.icslide-section::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(80deg, #0d1e1e, #264D4D);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    animation: grid-move 2s linear infinite;
    z-index: 1; 
}


@keyframes grid-move {
    0% { background-position: 0 0, 0 0, 0 0; }
    100% { background-position: -40px -40px, -40px -40px, 0 0; }
}

.icslide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.icslide-content .title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
}

.icslide-content .subtitle {
    color: #00a650;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0;
}

@media (max-width: 768px) {
    .icslide-content .title {
        font-size: 2rem;
    }
    .icslide-content .subtitle {
        font-size: 1.1rem;
    }
}


.footer-telefon {
  position: fixed;
  z-index: 99;
  left: 2%;
  bottom: 1%;
  width: 60px;
  height: 60px
}

.footer-telefon.left {
  left: 80px
}

.footer-telefon .footer-telefon-btn {
  background: #dca23b;
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(35, 50, 56, 0.1);
  -webkit-transform-origin: center;
  transform-origin: center;
  position: relative;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 1.6em;
  color: #fff;
  z-index: 1;
  display: block;
  transition: all 0.3s ease;
}

.footer-telefon .footer-telefon-btn:hover {
  background: #333333
}

.footer-telefon .ripple,
.footer-telefon .ripple:before,
.footer-telefon .ripple:after {
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #dca23b59;
  top: 0;
  height: 60px;
  position: absolute;
  width: 60px
}

.footer-telefon .ripple:before {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  top: 0
}

.footer-telefon .ripple:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  content: "";
  position: absolute;
  top: 0
}


.footer-whatsapp {
  position: fixed;
  z-index: 99;
  right: 2%;
  bottom: 1%;
  width: 60px;
  height: 60px
}

.footer-whatsapp.left {
  left: 80px
}

.footer-whatsapp .footer-whatsapp-btn {
  background: #25d366;
  border-radius: 50%;
  box-shadow: 0 5px 10px 0 rgba(35, 50, 56, 0.1);
  -webkit-transform-origin: center;
  transform-origin: center;
  position: relative;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  font-size: 1.6em;
  color: #fff;
  z-index: 1;
  display: block;
  transition: all 0.3s ease;
}

.footer-whatsapp .footer-whatsapp-btn:hover {
  background: #128c7e
}

.footer-whatsapp .ripple,
.footer-whatsapp .ripple:before,
.footer-whatsapp .ripple:after {
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  border-radius: 50%;
  box-shadow: 0 0 0 0 #128c7e;
  top: 0;
  height: 60px;
  position: absolute;
  width: 60px
}

.footer-whatsapp .ripple:before {
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  top: 0
}

.footer-whatsapp .ripple:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
  content: "";
  position: absolute;
  top: 0
}


.footer-telefon svg,
.footer-whatsapp svg {
  vertical-align: inherit !important;
  width: 26px;
  height: 26px;
}

@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 50px rgba(94, 188, 231, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(94, 188, 231, 0)
  }
}

@keyframes ripple {
  70% {
    box-shadow: 0 0 0 50px rgba(94, 188, 231, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(94, 188, 231, 0)
  }
}

.mainmenu-area {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: transparent;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: menu_sticky .6s ease-out;
  transition: background 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
}


@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -100px
  }

  50% {
    margin-top: -90px
  }

  100% {
    margin-top: 0
  }
}

@keyframes menu_sticky {
  0% {
    margin-top: -100px
  }

  50% {
    margin-top: -90px
  }

  100% {
    margin-top: 0
  }
}

.navbar {
  padding: 10px 0;
}

.navbar-brand img {
  height: 65px;
}

.logo-ic { display: none; }
.ic-sayfa .logo { display: none; }
.ic-sayfa .logo-ic { display: inline-block; }

.scrolled .logo-ic {display:none!important;}
.scrolled .logo {display:inline-block!important;}


.navbar-nav .nav-link {
  font-size: 17px;
  position: relative;
  color: #444;
  font-weight: 400;
  padding: 8px 12px;
  margin: 0 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.ic-sayfa .navbar-nav .nav-link{color:#fff}

.navbar-nav .nav-link:hover,.navbar-nav .active .nav-link {
  background: #00a650;
  color:#fff;
}
.ic-sayfa .navbar-nav .nav-link:hover {
  background: #00a650;
  color:#fff
}

.mainmenu-area.scrolled .navbar-nav .nav-link {
  color:#fff;
}
.mainmenu-area.scrolled {
  background: rgb(2, 3, 3, 0.9);
}




.dropdown-menu {
  background: rgb(2, 3, 3, 0.9) !important;
  border: none;
  border-radius: 10px;
  padding: 0;
  margin-top: 5px;
  min-width: 250px;
}

.dropdown-menu .dropdown-item {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  padding: 10px 15px;
  transition: all .3s ease;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-item:active,
.dropdown-item:focus {
  background: #00a650;
  color: #fff;
  border-radius: 10px;
}

.ic-sayfa .dropdown-menu .dropdown-item:hover,
.ic-sayfa .dropdown-item:active,
.ic-sayfa .dropdown-item:focus {
  background: #00a650 !important;
  color: #fff;
  border-radius: 10px;
}

.nav-item.dropdown>.show .dropdown-menu {
  display: block;
}

.navbar-toggler {
  border: none;
  outline: none;
  padding: .25rem .5rem;
}

.navbar-toggler-icon {
  position: relative;
  width: 28px;
  height: 2px;
  background-color: #fff;
  display: inline-block;
  transition: background-color .3s ease, transform .3s ease;
  background-image: none !important;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: transform .3s ease, top .3s ease, opacity .3s ease;
}

.navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler-icon::after {
  top: 8px;
}

.navbar-toggler.open .navbar-toggler-icon {
  background-color: transparent;
}

.navbar-toggler.open .navbar-toggler-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler.open .navbar-toggler-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: none;
}




.position-static {
  position: static !important;
}


@media (min-width: 992px) {
  .mega-menu {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 100%;
    padding: 20px;
    border-radius: 0 0 10px 10px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  }
}


.mega-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.mega-item:hover {
  background: #00a650;
  color: #fff;
}

.mega-img-wrap {
  width: 100%;
  height: 130px;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.mega-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mega-item:hover .mega-img-wrap img {
  transform: scale(1.08);
}

.mega-title {
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

@media (max-width: 991px) {
  .mega-menu {
    padding: 0 !important;
    border-radius: 10px !important;
  }
  .mega-item {
    flex-direction: row;
    padding: 10px 15px;
    border-radius: 10px;
  }
  .mega-title {
    font-size: 14px;
    font-weight: 400;
    text-align: left;
  }
}





.main-slider {
  position: relative;
  width: 96%;
  margin:120px auto 60px;
  max-width: 1905px;
  aspect-ratio: 1905 / 677;
  border-radius: 20px;
  overflow: hidden;
}

.main-slider picture {
  display: block;
  width: 100%;
  height: 100%;
}

@media (max-width: 720px) {
  .main-slider {
    aspect-ratio: 720 / 720;
  }
}


.main-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.main-slider img,
.main-slider video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination {
  position: absolute;
  right: 30px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  bottom: auto !important;
  left: auto !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: auto !important;
  z-index: 10;
}

.swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: transparent;
  border: 2px solid #fff;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 !important;
}

.swiper-pagination-bullet:hover {
  transform: scale(1.2);
  background: rgba(255, 255, 255, 0.5);
}

.swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.about-section {
  background: #E0E0E0;
  padding:75px 0 0;
  overflow: hidden;
}

.about-section .col-md-6:first-of-type {
  border-right: 1px solid #e2e2e2;
}

.daktilo-metni {
    transition: color 1s ease-in-out;
}

.daktilo-metni.yesil-yap,
.daktilo-metni.yesil-yap strong {
    color: #00a650 !important;
}

.daktilo-metni::after {
    content: '|';
    animation: imlec-yanip-sonme 0.7s infinite;
    color: #333;
}

.daktilo-metni.bitti::after {
    display: none; 
}

@keyframes imlec-yanip-sonme {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.about-text {
  padding: 20px 0;
}

.about-text h1 {
  font-size: 35px;
  font-weight: 600;
}

.about-text p {
  font-size: 18px;
  font-weight: 400;
  transition: all 0.7s ease;
  margin-bottom: 1.4rem;
}

.about-text p:hover {
  transform: scale(1.03) !important;
}

.about-section .referans-logolar {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-top: 25px;
  margin-bottom: 25px;
}

.about-section .referans-logolar svg {
  height: 45px;
  width: auto;
  opacity: 0.85;
  transition: all 0.5s ease;
}

.about-section .referans-logolar svg:hover {
  opacity: 1;
  transform: scale(1.08);
}

.about-section .hizmet-butonlari {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}



.shape-top-right {
  position: absolute;
  top: -15px;
  right: -15px;
  width: 100px;
  height: 100px;
  border-top: 4px solid #00a650;
  border-right: 4px solid #00a650;
  z-index: 0;
}

.shape-bottom-left {
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border-bottom: 4px solid #f1a03f;
  border-left: 4px solid #f1a03f;
  z-index: 0;
}

.about-video {
  position: relative;
  margin: 20px;
}

.about-video .my-video {
  width: 100%;
  position: relative;
  z-index: 1;
  display: block;
  height: 650px;
  object-fit: cover; 
  object-position: center center;
}

.about-video .mute-toggle,
.about-video .play-pause-toggle {
  position: absolute;
  top: 10px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: 1px solid transparent;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backface-visibility: hidden;
  transform: scale(0.95) translateZ(0);
}

.about-video .mute-toggle {
  right: 10px;
}

.about-video .play-pause-toggle {
  left: 10px;
}

.about-video .mute-toggle:hover,
.about-video .play-pause-toggle:hover {
  background: #00a650;
  color: #ffffff;
  border-color: rgba(0, 166, 80, 0.5);
  transform: scale(1) translateZ(0);
  box-shadow: 0 0 15px rgba(0, 166, 80, 0.4);
}

.video-parallax {
  position: relative;
  margin-top: 94px;
  height: 75vh;
  align-items: center;
  justify-content: center;
  display: flex;
  overflow: hidden;
}


.video-parallax .background-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-parallax .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/video-overlay.png');
  background-repeat: repeat;
  z-index: 1;
}

.video-parallax .relative-container {
  position: relative;
  z-index: 2;
  /* padding:50px 0; */
}

.video-parallax .content {
  background: transparent;
  padding: 25px;
}

.video-parallax .content h3 {
  font-size: 17px;
  color: #ffffff;
}

.video-parallax .content h2 {
  font-size: 35px;
  color: #ffffff;
  font-weight: 600;
}

.video-parallax .content hr {
  border: 1px solid #00a650;
  opacity: 1;
  margin: 2rem 0;
}

.video-parallax .content p {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 2rem;
}

.video-control-btn {
  position: absolute;
  bottom: 30px;
  font-size: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background: rgba(0, 0, 0, 0.4);
  color: #ffffff;
  border: 1px solid transparent;
  padding: 0;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.video-control-btn.left {
  left: 30px;
}

.video-control-btn.right {
  right: 30px;
}

.video-control-btn.top-right {
  top: 30px;
  right: 30px;
  bottom: auto;
}

.video-control-btn:hover {
  background: #00a650;
  color: #ffffff;
  border-color: rgba(0, 166, 80, 0.5);
  transform: scale(1.1) translateZ(0);
  box-shadow: 0 0 15px rgba(0, 166, 80, 0.4);
}


@media (max-width: 720px) {
  .video-parallax .content h2 {font-size: 30px;}
  .video-parallax .content p {font-size: 17px;}
}


.cert {
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}

.cert .item {
  padding-bottom: 30px;
}

.cert .item a {
  width: 100%;
  display: block;
  position: relative;
}

.cert .item .image_holder {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background-color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.cert .item .image_holder figure {
  margin: 0;
}

.cert .item .image_holder .overlay {
  text-align: center;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .3);
  padding: 14px;
  transform: scale(0);
  transition: all .5s ease;
}

.cert .item:hover .overlay {
  transform: scale(1);
}

.cert .item .image_holder .inner {
  top: 50%;
  position: relative;
  margin-top: -35px;
  text-align: center;
}

.cert .item .image_holder .inner i {
  font-size: 20px;
  color: #fff;
  line-height: 42px;
  width: 45px;
  height: 42px;
  border: 1px solid #fff;
}

.cert .item:hover .image_holder h4 {
  bottom: 0;
}

.cert .image_holder h4 {
    background: transparent;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: #020f09;
    display: block;
    font-weight: 400;
    padding: 10px 0;
    margin-top: 5px;
    text-align: center;
    transition: all .5s ease;
    width: 100%;
    font-size: 20px;
}

.cert .item:hover h4 {
  background: #00a650;
  color: #fff;
}

.cert .item .image_holder figure img {
  width: 100%;
  display: block;
  transition: transform 1s ease, filter 1s ease;
}

.cert .item:hover .image_holder figure img {
  transform: scale(1.08);
  filter: blur(2px);
}

.cert .item .favicon-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 3;
  pointer-events: none;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cert .item:hover .favicon-link {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.cert .item .favicon-link img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 6px;
  background: rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert .item:hover .favicon-link img {
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.cert .aciklama p {
  font-size: 18px;
}



.products {
  overflow: hidden;
  position: relative;
  background-color: #f9fafb;
}

.products .item {
  padding-bottom: 30px;
}

.products .item a {
  width: 100%;
}

.products .item .image_holder {
  position: relative;
  overflow: hidden;
}

.products .item .image_holder figure {
  margin: 0;
}

.products .item .image_holder .overlay {
  text-align: center;
  color: #fff;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, .3);
  padding: 14px;
  transform: scale(0);
  transition: all .5s ease;
}

.products .item:hover .overlay {
  transform: scale(1);
}

.products .item .image_holder .inner {
  top: 50%;
  position: relative;
  margin-top: -35px;
  text-align: center;
}

.products .item .image_holder .inner i {
  font-size: 20px;
  color: #fff;
  line-height: 42px;
  width: 45px;
  height: 42px;
  border: 1px solid #fff;
}

.products .item:hover .image_holder h4 {
  bottom: 0;
}

.products .image_holder h4 {
  background: transparent;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff;
  display: block;
  font-weight: 500;
  height: 40px;
  left: 0;
  padding-top: 10px;
  position: absolute;
  text-align: center;
  transition: all .5s ease;
  width: 100%;
  bottom: 0;
  font-size: 17px;
  z-index: 2;
}

.products .item:hover h4 {
  background: #00a650;
}

.products .item .image_holder figure img {
  width: 100%;
  transition: transform 1s ease, filter 1s ease;
}

.products .item:hover .image_holder figure img {
  transform: scale(1.08);
  filter: blur(2px);
}

.products .item .favicon-link {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 3;
  pointer-events: auto;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.products .item:hover .favicon-link {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.products .item .favicon-link img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 6px;
  background: rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products .item .favicon-link:hover img {
  transform: scale(1.15);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.products .aciklama p{font-size:18px;}


/* detay sayfası */
.products-detail .image_holder figure {
    width: 100% !important;
    margin: 0 !important;
    overflow: hidden !important;
    aspect-ratio: 4 / 3; 
    display: block;
}

.products-detail .image_holder figure img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important; 
}



.product-gallery-slider {
    padding-bottom: 40px; 
}
.product-gallery-slider .swiper-button-next,
.product-gallery-slider .swiper-button-prev {
    color: #00a650; 
    transform: scale(0.7);
}
.product-gallery-slider .swiper-pagination-bullet-active {
    background: #00a650;
}

.product-gallery-slider .swiper-pagination {
  top: auto !important;
  bottom: 15px !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  flex-direction: row;
  justify-content: center;
  width: 100% !important;
  gap: 8px;
}

.product-gallery-slider .swiper-pagination-bullet {
  border-color: #999;
}

.product-gallery-slider .swiper-pagination-bullet:hover {
  background: rgba(0, 166, 80, 0.5);
}

.product-gallery-slider .swiper-pagination-bullet-active {
  background: #00a650;
  border-color: #00a650;
  box-shadow: 0 0 8px rgba(0, 166, 80, 0.3);
}


.kullanim-alanlari-wrapper {
    display: flex;
    flex-wrap: wrap; 
    gap: 15px; 
    margin-top: 20px;
}


.alan-butonu {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 30px;
    background: linear-gradient(90deg, #04c460, #00a650);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: default; 
    box-shadow: 0 6px 20px rgba(0, 166, 80, 0.3); 
}


.alan-butonu:hover {
    transform: translateY(-3px) !important; 
    box-shadow: 0 8px 25px rgba(0, 166, 80, 0.45);
}

.alan-butonu span {
    position: relative;
    z-index: 2;
}


.alan-butonu::after {
    content: "";
    position: relative;
    z-index: 2;
    display: inline-block;
    width: 22px;
    height: 26px;
    background: currentColor; 
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 59.919 71.357'><g transform='translate(-6.436 -2.419)'><path d='M737.875,55.324l-17.5,53.707,34.9-18.326L737.19,79.059l-3.952,11.967,4.247-4.563,4.549,3.31L729,96.527Z' transform='translate(-688.92 -52.905)' fill='white'/><path d='M164.833,511.1l17.689-53.8-35.085,18.422,18.081,11.646L169.47,475.4l-3.965,4.653-4.832-3.4L173.7,469.9Z' transform='translate(-141.001 -437.324)' fill='white'/></g></svg>") no-repeat center;
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 59.919 71.357'><g transform='translate(-6.436 -2.419)'><path d='M737.875,55.324l-17.5,53.707,34.9-18.326L737.19,79.059l-3.952,11.967,4.247-4.563,4.549,3.31L729,96.527Z' transform='translate(-688.92 -52.905)' fill='white'/><path d='M164.833,511.1l17.689-53.8-35.085,18.422,18.081,11.646L169.47,475.4l-3.965,4.653-4.832-3.4L173.7,469.9Z' transform='translate(-141.001 -437.324)' fill='white'/></g></svg>") no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
    transition: transform 0.3s ease;
}

.alan-butonu:hover::after {
    transform: translateX(5px);
}


.alan-butonu .shine {
    position: absolute;
    inset: 0;
    top: -2px;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: translateX(-200%) skewX(-12deg);
    transition: transform 1s ease;
    z-index: 1;
}

.alan-butonu:hover .shine {
    transform: translateX(200%) skewX(-12deg);
}



.lazy-figure {
    position: relative;
    min-height: 250px;
    background-color: #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lazy-figure.loading::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: loading-shimmer 1.2s infinite;
    z-index: 1;
}

@keyframes loading-shimmer {
    100% {
        left: 100%;
    }
}

.lazy-figure.error-state::before {
    content: "Resim Bulunamadı";
    color: #d9534f;
    font-family: sans-serif;
    font-size: 14px;
    position: absolute;
    z-index: 1;
    background: none;
    animation: none;
}

.lazy-figure img {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.lazy-figure img.loaded {
    opacity: 1;
}


.page-banner {
  padding: 200px 0;
  margin-top: 80px;
  text-align: center;
  color: #fff;
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.page-banner:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .2);
  z-index: 0
}

.page-banner .content h1 {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 40px;
  position: relative;
  z-index: 1
}

.ihracat{
  background: linear-gradient(180deg,rgba(42, 123, 155, 1) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 166, 80, 1) 100%);
}

.title p{
  color:#222222;
  font-size:23px;
}
.title h2{
  color:#00a650;
  font-size:40px;
  font-weight: 600;
}

.ihracat .card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  height: 100%;
  transition: all 0.3s ease;
  transform: scale(1);
  background-color: #fff;
}
.ihracat .card img{
  height:200px;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
}

.ihracat .card > * {
  position: relative;
  z-index: 1;
}

.ihracat .card h3 {
    font-weight: 500;
    text-align: center;
    font-size: 24px;
    margin: 10px 0;
}

.ihracat .card h4 {
  color:#00a650;
  text-align: center;;
  font-size: 20px;
  margin: 7px 0;
  font-weight: 500;
}
.ihracat .card p {
  font-size: 18px;
}

.ihracat .card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}


.referanslar{
  background: linear-gradient(180deg,rgba(42, 123, 155, 1) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 25%, rgba(0, 166, 80, 1) 100%);
}

.referanslar .card {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  height: 100%;
  transition: all 0.3s ease;
  transform: scale(1);
  background-color: #fff;
}

.referanslar .card > * {
  position: relative;
  z-index: 1;
}

.referanslar .card h3 {
    font-weight: 500;
    text-align: center;
    font-size: 24px;
    margin: 10px 0;
}

.referanslar .card h4 {
  color:#00a650;
  text-align: center;;
  font-size: 20px;
  margin: 7px 0;
  font-weight: 500;
}
.referanslar .card p {
  font-size: 18px;
}

.referanslar .card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}



.kayan-yazi-alani {
  margin: 25px 0;
  position: relative;
  width: 100%;
  height: 270px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}

.serit {
  position: absolute;
  width: 110vw;
  left: -5vw;
  display: flex;
  white-space: nowrap;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.serit-yesil {
  background: #00a650;
  color: #fff;
  transform: rotate(-3deg);
  top: 50px;
  z-index: 2;
}

.serit-turuncu {
  background: #f1a03f;
  color: #fff;
  transform: rotate(2deg);
  top: 130px;
  z-index: 1;
}

.serit-track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.serit-icerik {
  display: flex;
  align-items: center;
  padding: 18px 0;
}

.serit-icerik span {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.ayrac {
  margin: 0 40px;
  color: rgba(255, 255, 255, 0.4) !important;
  font-weight: 300 !important;
}

@media (max-width: 991px) {
  .kayan-yazi-alani {
    height: 200px;
  }
  .serit-icerik span {
    font-size: 24px;
  }
  .serit-yesil {
    top: 50px;
  }
  .serit-turuncu {
    top: 100px;
  }

  .ihracat{
      overflow: hidden;
  }
  .ihracat .card img {
      height: auto!important;
  }

}


.logo-marquee-section {
  margin:0;
  width: 100%;
  background-color: #fff;
  padding: 30px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid #d4d4d4;
  border-bottom: 1px solid #d4d4d4;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.05), 0px -8px 15px rgba(0, 0, 0, 0.05);
}

.logo-marquee-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 35s linear infinite;
  will-change: transform;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333333%);
  }
}

.logo-content {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-content img {
  height: 55px;
  width: auto;
  object-fit: contain;
  margin: 0 60px;
  flex-shrink: 0;
  max-width: none;
  transform: scale(0.92);
  transition: transform 0.4s ease;
  -webkit-user-drag: none;
  user-select: none;
}

.logo-content img:hover {
  transform: scale(1);
}

@media (max-width: 991px) {
  .logo-content img {
    height: 40px;
    margin: 0 40px;
  }

  .logo-marquee-section {
    margin: 0;
  }
}

@media (max-width: 768px) {

  .baslik::before{
    display:none;
  }
  .logo-marquee-section {
    padding: 25px 0;
  }
  .logo-content img {
    height: 35px;
    margin: 0 25px;
  }
}

.signal-map-section {
    background-color: transparent;
    padding: 60px 0 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden!important;
}

.map-container {
    min-width: 1000px;
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.world-map-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.8;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

#dots-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.signal-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #00a650;
    border-radius: 50%;
    z-index: 10;
    opacity: 0;
    transform: translate(-50%, -50%) scale(4);
    transition: opacity 1s ease, transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), z-index 0.2s ease;
    pointer-events: auto;
    cursor: pointer;
}

.signal-dot.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.signal-dot.is-visible:hover {
    z-index: 9999;
}

.signal-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 166, 80, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: none;
}

.signal-dot.is-visible::before {
    animation: signal-pulse 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation-delay: 0.8s;
}

@keyframes signal-pulse {
    0% {
        width: 10px;
        height: 10px;
        opacity: 1;
        border: 2px solid rgba(0, 166, 80, 1);
    }
    100% {
        width: 45px;
        height: 45px;
        opacity: 0;
        border: 2px solid rgba(0, 166, 80, 0);
    }
}

.signal-label {
    position: absolute;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    pointer-events: none;
    background: #333333;
    color: #ffffff;
    padding: 4px 10px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    letter-spacing: 1px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.signal-dot.is-visible:hover .signal-label {
    opacity: 1;
    visibility: visible;
}

.signal-label::after {
    content: '';
    position: absolute;
    border-style: solid;
}

.label-top {
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
}

.label-top::after {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px 5px 0 5px;
    border-color: #333333 transparent transparent transparent;
}

.label-left {
    top: 50%;
    right: calc(100% + 10px);
    transform: translateY(-50%);
}

.label-left::after {
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 5px;
    border-color: transparent transparent transparent #333333;
}

.label-right {
    top: 50%;
    left: calc(100% + 10px);
    transform: translateY(-50%);
}

.label-right::after {
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    border-width: 5px 5px 5px 0;
    border-color: transparent #333333 transparent transparent;
}

.label-bottom {
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
}

.label-bottom::after {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #333333 transparent;
}

.map-footer {
    position: absolute;
    top: 65%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    pointer-events: none;
}

.map-slogan {
    font-size: 30px;
    font-weight: 700;
    color: #333333;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    margin: 0;
}

.map-buton {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    pointer-events: auto;
}

.map-slogan.is-visible,
.map-buton.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.map-slogan.is-visible {
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .signal-label {
        font-size: 12px;
    }
    .map-slogan {
        font-size: 18px;
    }
    .map-header {
        top: 0;
    }
}



.footer {
  background: #222;
  color: #fff;
}

.footer img {
  width: 200px;
  max-width: 100%;
}

.footer p {
  font-weight: 400;
  font-size: 14px;
  color: #fff;
  line-height: 27px
}

.footer .footer-right {
  background-color: #252525;
  background-image: url(../images/back-footer.png);
  background-position: center;
}

.footer-bottom {
  background: #333;
  color: #d1d1d1;
  padding: 20px 0 20px
}

.footer-bottom .copyright-text {
  font-weight: 400;
  font-size: 14px;
  color: #fff
}


.contact-info {
  color: #fff;
  padding: 20px;
  line-height: 1.6;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 15px 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-list a {
  color: #fff;
  text-decoration: none;
  transition: all 1s;
  -ms-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  -webkit-transition: all 1s;
}

.contact-list a:hover {
  color: #00a650;
  text-decoration: none;
  padding: 0 0 0 10px;
}

.contact-list i {
  font-size: 18px;
  color: #00a650;
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #00a650;
  color: #fff;
  font-size: 16px;
  border-radius: 2px;
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
}

.social-icons a:hover {
  background-color: #fff;
  color: #00a650;
}


.contact-section {
  color: #000;
  text-align: center;
  border-radius: 10px;
  padding: 50px 20px;
}

.contact-box {
  background: rgb(0 0 0 / 5%);
  border-radius: 8px;
  padding: 25px 15px;
  transition: all 0.4s ease;
}

.contact-box i {
  font-size: 32px;
  color: #00a650;
  margin-bottom: 15px;
  transition: all 0.4s ease;
}

.contact-box h5 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #222222;
  letter-spacing: 0.5px;
}

.contact-box a {
  color: #222222;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-box a:hover {
  color: #00a650;
}

.contact-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.contact-box:hover i {
  color: #222222;
  transform: scale(1.1);
}


.contact-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.contact-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #00a650;
  color: #fff;
  font-size: 18px;
  border-radius: 50%;
  transition: all 0.4s;
}

.contact-icons a:hover {
  background: #fff;
  color: #00a650;
}


@media (max-width: 768px) {
  .contact-box {
    margin-bottom: 25px;
  }
}



.footer-right {
  padding: 10px;
}

.footer-right .baslik {
  font-weight: 600;
}

.footer-right ul {
  list-style: none;
  padding: 0;
}

.footer-right ul li {
  border-bottom: 1px dashed rgba(102, 102, 102, 0.3);
}

.footer-right ul li a {
  transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  color: #fff;
  padding: 7px 0;
  width: 100%;
}

.footer-right ul li a:hover {
  color: #00a650;
  padding: 7px 0 7px 7px;
}


.scroll-top {
  position: relative;
  left: 50%;
  bottom: -25px;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #222222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 99;
}

.scroll-top:hover {
  background: #00a650;
  border-color: rgba(0, 166, 80,, 0.5);
  transform: translateX(-50%) scale(1.1);
  box-shadow: 0 0 15px rgba(0, 166, 80,, 0.4);
}

.scroll-top i {
  font-size: 15px;
  color: #fff;
}


@media (max-width: 991.98px) {

.logo-ic { display: none; }
.ic-sayfa .logo { display: inline-block; }
.ic-sayfa .logo-ic { display:none; }
.ic-sayfa .navbar-nav .nav-link {color: #fff;}

.mainmenu-area{
  background: rgb(2, 3, 3, 0.9);
}

.mainmenu-area.scrolled .navbar-nav .nav-link {
  color:#fff;
}

  .page-banner{
    background-size:cover;
    background-position:50% 50%;
  }


  .navbar-collapse {
    padding: 10px 0;
  }

  .navbar-nav .nav-link {
    display: block;
    padding: 12px;
    border: none;
    color:#fff;
  }

  .dropdown-menu {
    background: rgba(0, 0, 0, 0.8);
    border-top: none;
    margin: 0 15px;
    border-radius: 0;
  }

  .dropdown-menu .dropdown-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar-nav .nav-link {
    border-radius: 0;
    text-align: left;
  }

  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }

  .slide-caption {
    top: 75%;
  }

  .slide-caption p {
    font-size: 18px;
  }

  .slide-caption h2 {
    font-size: 22px;
  }

  .about-text {
    padding: 40px 0;
  }

  .about-section {
      padding: 25px 0;
  }
  
  .about-section .col-md-6:first-of-type {
    border-right: 0;
  }
}