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

@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@800&display=swap");
/* Bağlantılara hover efekti uygular, mevcut renk korunur */


a:hover {
  color: currentColor;
}
@media only screen and (min-width: 2235px) and (max-width: 2245px) and (min-height: 1255px) and (max-height: 1265px) {
  body {
    zoom: 1.30; /* %125 zoom */
  }
  .design-section-2{
    margin-top: 120px;
  }
}
@media only screen and (min-width: 2044px) and (max-width: 2052px) and (min-height: 1147px) and (max-height: 1157px) {
  body {
    zoom: 1.15; /* %125 zoom */
  }
  .design-section-2{
    margin-top: 120px;
  }
}
@media only screen and (min-width: 2555px) and (max-width: 2565px) and (min-height: 1435px) and (max-height: 1445px) {
  body {
    zoom: 1.50; /* %125 zoom */
  }
  .design-section-2{
    margin-top: 120px;
  }
}

@media only screen and (min-width: 3195px) and (max-width: 3205px) and (min-height: 1795px) and (max-height: 1805px) {
  body {
    zoom: 1.85; /* %125 zoom */
  }
  .design-section-2{
    margin-top: 120px;
  }
}
@media only screen and (min-width: 1435px) and (max-width: 1445px) and (min-height: 895px) and (max-height: 905px) {
  body {
    zoom: 0.85; /* %125 zoom */
  }
  .design-section-2{
    margin-top: 120px;
  }
}
@media only screen and (min-width: 2297px) and (max-width: 2307px) and (min-height: 1435px) and (max-height: 1445px) {
  body {
    zoom: 1.40; /* %125 zoom */
  }
  .design-section-2{
    margin-top: 120px;
  }
}

.navbar-custom {
    clip-path: polygon(97.807% 62.917%,
        2.307% 100%,
        2.307% 100%,
        1.935% 99.684%,
        1.581% 98.503%,
        1.251% 96.529%,
        0.948% 93.833%,
        0.679% 90.487%,
        0.448% 86.561%,
        0.259% 82.126%,
        0.118% 77.255%,
        0.03% 72.018%,
        0% 66.486%,
        0% -0%,
        100% -0%,
        100% 29.403%,
        100% 29.403%,
        99.972% 34.74%,
        99.889% 39.814%,
        99.757% 44.56%,
        99.579% 48.908%,
        99.361% 52.793%,
        99.106% 56.147%,
        98.818% 58.904%,
        98.503% 60.996%,
        98.165% 62.356%,
        97.807% 62.917%);
  
  
    background-color: #333;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 120px;
    z-index: 101;
    max-width: 1440px;
    position: fixed;
    /* Navbar'ı ekranın üst tarafına sabitler */
    top: 0;
    /* Üstten boşluk bırakmaz */
    left: 50%;
    /* Soldan %50 kaydırır */
    transform: translateX(-50%);
  }
  

/* Burger Menu */
.burger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  justify-content: center;
  z-index: 102;
}

.burger-menu div {
  width: 30px;
  height: 3px;
  background-color: #fff;
  margin: 4px 0;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-custom .logo img {
  height: 95px;
  width: auto;
  z-index: 100;
  margin-top: -60px;
  margin-left: -25px;
}

.navbar-custom .burger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  justify-content: center;
  margin-top: -40px;
  z-index: 100;

  transition: transform 0.3s ease;
}

.navbar-custom .burger-menu div {
  width: 35px;
  height: 3px;
  background-color: white;
  margin: 4px 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 100;
}

  
  /* Fullscreen Menu */
  .fullscreen-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Menü başlangıçta sağda gizli olacak */
    width: 100%;
    height: 100%;
    background-color: #333333;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease;
    /* Sağdan açılma efekti */
    z-index: 100;
  }
  
  .fullscreen-menu nav {
    width: auto;
    /* Genişliği içeriğe göre ayarla */
    text-align: left;
    /* Menü öğelerini sağa hizala */
    margin-right: 20px;
    /* Sağ kenar boşluğu ekle */
  }
  
  .fullscreen-menu.open {
    right: 0;
    transition: right 0.5s ease-in-out;
  }
  .fullscreen-menu ul {
    padding: 0;
    margin: 0;
    text-align: left;
    /* Liste öğelerini hizalama */
    position: absolute;
    top: 20%;
    /* Yukarıdan boşluk bırak */
    right: 25%;
  }
  
  .fullscreen-menu ul li {
    display: block;
    margin-bottom: 10px; /* Alt boşluğu azalt */
  }
  
  .fullscreen-menu ul li a {
    text-transform: uppercase;
    text-align: left;
    /* Linkleri sağa hizala */
    display: block;
    color: white;
    text-decoration: none;
    font-size: 35px;
    transition: color 0.3s;
    padding-top: 5px; /* Üstten boşluk */
    padding-bottom: 5px; /* Alttan boşluk */
    font-weight: 600;
  }
  
  .fullscreen-menu ul li a:hover {
    font-weight: 800;
  }
  
  /* Burger icon transform to X */
  .burger-menu.open div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .burger-menu.open div:nth-child(2) {
    opacity: 0;
  }
  
  .burger-menu.open div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .burger-menu.open div {
    position: absolute;
    left: 50%;
    /* X işaretini tam ortalayın */
    top: 50%;
    /* X işaretini tam ortalayın */
    transform-origin: center;
    /* Dönüşüm merkezi */
  }
  
  .burger-menu.open div:nth-child(1),
  .burger-menu.open div:nth-child(3) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .burger-menu.open div:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  
  .burger-menu.open div:nth-child(3) {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  
  /* Menü açıkken burger butonun ve logonun gözükmesi için */
  .burger-menu,
  .navbar-custom .logo {
    position: relative;
    z-index: 102;
    /* Menüden daha yüksek olacak şekilde z-index veriyoruz */
  }
  
  #retail-dropdown, #hospitality-dropdown {
    margin-bottom: 5px; /* Menülerin arasındaki boşluğu azalt */
  }
  
  #retail-dropdown-content, #hospitality-dropdown-content {
    padding: 0px; /* Dropdown içeriklerdeki boşlukları kaldır */
    margin: 0px; /* Dropdown içeriklerdeki boşlukları kaldır */
  }
  
  .dropdown-content {
    display: none; /* Başlangıçta gizli */
    flex-direction: column;
    max-height: 0; /* Başlangıçta yükseklik yok */
    overflow: hidden; /* Taşan içeriği gizler */
    transition: max-height 0.3s ease-out; /* Geçiş animasyonu */
  }
  .dropdown-content.show {
    display:contents;
    max-height: 500px; /* Yüksekliği artırdık, üçüncü item görünür olacak */
    overflow: hidden; /* Taşma olduğunda gizler */
    transition: max-height 0.3s ease-out; /* Geçiş animasyonu */
  }
  
  .dropdown-content a {
    font-size: 20px;
    padding-left: 20px;
    padding-top: 5px; /* Linklerin yukarı boşluğunu azalt */
    padding-bottom: 5px; /* Linklerin aşağı boşluğunu azalt */
    margin-bottom: 0px; /* Alt boşluk bırakma */
  
  }
  
  /* Active Dropdown */
  .dropdown.active .dropdown-content {
    display: flex;
  }
  
  /* Adjust spacing */
  
  /* Adjust label spacing */
  .fullscreen-menu ul li .dropbtn {
    margin-bottom: 5px;
  }


  .contact-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 300px;
    max-height: 600px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    /* Başlangıçta gizli olacak */
    z-index: 1000;
    overflow: hidden;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  }
  
  .contact-popup.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
  }
  
  .popup-header {
    background-color: #333;
    color: white;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    border-radius: 10px 10px 0 0;
  }
  
  .close-popup-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
  }
  
  .contact-popup-toggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 999;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .contact-form .form-row {
    margin-bottom: 10px;
  }
  
  .contact-form .form-input,
  .contact-form .form-textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact-form .btn {
    width: 100%;
    padding: 10px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
  }
  
  .contact-popup.hidden {
    opacity: 0;
    transform: translateY(100%);
    display: none;
  }  
.services-t{
  letter-spacing: 0.6px;
  font-size: 19px;
}
.services-font{
  margin-top: -50px;
}
.services-p{
  margin-top: 25px; 
  margin-bottom: 25px; 
  font-size: 22px;
   font-weight: 500;
}
.path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  fill-opacity: 0; /* Başlangıçta dolgu rengini gizliyoruz */
  animation: draw 1s ease-out forwards, fill 1s 1s ease-out forwards; /* Çizim ve dolma animasyonları */
  z-index: -1000;
}
#logo-loader {
  position: fixed;
  top: 80%;
  left: 63%;
  transform: translate(-50%, -50%);
  opacity: 1;
  transition: opacity 1s ease, transform 1s ease;
  z-index: -1000;
  width: 200px;
  height: auto;
}
.mobile-view.what-we-do .custom-row {
  margin-bottom: 30px;
}

.mobile-view.what-we-do .custom-h5 {
  margin-top: 15px;
}

.mobile-view.what-we-do .custom-svg {
  margin-bottom: 15px;
}


#logo-loader.hide {
  opacity: 0;
  transition: opacity 1s ease;
}

.logo-line {
  width: 5px; /* The width of the vertical line */
  height: 70px; /* Height should match the logo */
  background-color: white; /* Line color */
  margin: 0 15px; /* Adds space between the logo and the text */
}

.c-store-text {
  padding-top: 30px;
  color: white; /* Text color */
  font-weight: 500;
  font-size: 35px; /* Font size for the text */
  font-family: 'Montserrat', sans-serif; /* Consistent font */
}
.full-screen-image {
  height: calc(100vh - 130px);
  width: 100vw;
  object-fit: cover;
  /*cover  */
  position: relative;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 40px;
}
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  font-size: 15px;
  background-position: center;
  background-repeat: repeat;
  height: 100vh;
  width: 100%;
  margin: 0;
  padding: 0;
  z-index: -4;
  touch-action: pan-y;
}

.img-hover-zoom {
  position: relative;

}

.img-hover-zoom img {
  transition: transform 0.5s ease;
  border-radius: 40px;
}

.img-hover-zoom:hover img {
  transform: scale(1.1);
}
.gallery-texts{
  text-align: left;
}

.overlay-left,
.overlay-right {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 101%;
  height: 103%;
  border-radius: 40px;
  background-color: rgba(0, 0, 0, 0); /* İlk durumda saydam */
  transition: background-color 0.5s ease, left 0.5s ease, right 0.5s ease;
  display: flex;
  align-items: center; /* İçerikleri dikey olarak ortalar */
  justify-content: center; /* İçerikleri yatay olarak ortalar */
  z-index: 5;
  pointer-events: none; /* Etkileşim resme yönlendirilir */
}

.overlay-left {
  left: -100%; /* Sol overlay başlangıçta dışarıda */
}

.overlay-right {
  right: -100%; /* Sağ overlay başlangıçta dışarıda */
}

/* Yalnızca resim üzerine gelindiğinde overlay'leri göster */
.img-hover-zoom:hover .overlay-left {
  left: 0;
  background-color: rgba(33, 33, 33, 1); /* Siyah arka plana geçiş */
}

.img-hover-zoom:hover .overlay-right {
  right: 0;
  background-color: rgba(33, 33, 33, 1); /* Siyah arka plana geçiş */
}

.overlay-left ul,
.overlay-right ul {
  color: white;
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; /* Ortala */
  font-size: x-large;
}

.overlay-left li,
.overlay-right li {
  margin: 5px 0;
  display: flex;
  align-items: center;
  flex-direction: column; /* Alt alta hizalama */
}

.NumberSvg {
  height: 30px;
  margin-bottom: 10px; /* Alt alta hizalama için boşluk */
}

/* Optional: Change color on hover */
.btn-custom:hover {
  background-color: #2a2a2a;
  /* Darker shade for hover effect */
  border-color: #2a2a2a;
  overflow-x: hidden;
  color: #ffffff;
}

/* HTML için temel font boyutunu ayarlar */
html {
  font-size: 14px;
  position: relative;
  min-height: 100%;
  margin: 0 -14px 0 0;
  padding: 0;
  z-index: -4;
}

/* Bağlantılar için genel stil */
a {
  text-decoration: none;
}

/* Altı çizili olmayan bağlantılar için stil */
a.no-underline {
  text-decoration: none;
}

.news-text {
    flex: 2;
    font-size: 1.2em;
    line-height: 1.6;
  }
  

/* Üstte bulunan logo sınıfı */
.logo-background {
  position: fixed;
  top: 40px;
  left: 50px;
  display: block;
  z-index: 10;
  transition: all 250ms linear;
}

.logo-background img {
  height: 50px;
  width: auto;
  display: block;
}

.logo {
  position: fixed;
  top: 30px;/* Adjusts the space above the logo */
  left: 20px; /* Adjusts the space from the left edge */
  z-index: 100002; /* Ensures it stays on top */
  display: flex; /* Allows items to be aligned in a row */
  align-items: center; /* Vertically centers the logo and text */
  height: 60px; /* Adjust as needed to fit your design */
}

.logo-img {
  height: 95px;
  height: auto; /* Maintains the aspect ratio */
}
  
  .logo img {
    height: 95px;
    width: auto;
    display: block;
  }

.news-h1 {
  font-weight: 900;
  font-size: 100px;
}


.col-4 h5 {
  margin-top: 20px;
  /* Yazıyı 10 piksel aşağıya kaydırır, istediğiniz değeri ayarlayabilirsiniz */
}

/* Webkit tarayıcılar için (Chrome, Safari, yeni Edge) */
::-webkit-scrollbar {
  display: none;
}

/* Firefox için */
* {
  scrollbar-width: none;
  /* Firefox için scrollbar'ı gizler */
}

/* IE ve Edge için */
* {
  -ms-overflow-style: none;
  /* Internet Explorer ve eski Edge sürümleri için */
}

/* Kaydırma animasyonu için keyframes */
.DoSlid {
  animation-name: slide;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes slide {
  from {
    left: 100vw;
  }

  to {
    left: 0vw;
  }
}



/* Mevcut stilleriniz burada yer alacak */


/*what we do css kısmı*/

a:hover {
  color: currentColor;
}

body {
  font-family: "Montserrat", sans-serif;
  touch-action: pan-y;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
  .navbar-top-stripe {
    clip-path: polygon( 96.106% 64.634%,4.103% 99.516%,4.103% 99.516%,3.442% 99.419%,2.813% 99.054%,2.225% 98.442%,1.687% 97.605%,1.208% 96.566%,0.797% 95.347%,0.461% 93.97%,0.211% 92.457%,0.054% 90.831%,0% 89.113%,0% 0.482%,100% 0.482%,100% 54.231%,100% 54.231%,99.949% 55.889%,99.803% 57.465%,99.568% 58.938%,99.253% 60.288%,98.865% 61.493%,98.412% 62.533%,97.902% 63.388%,97.343% 64.037%,96.741% 64.459%,96.106% 64.634% );  
    background-color: #333;
    padding: 1rem 1.5rem;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 160px;
    z-index: 101;
    max-width: 1440px;
    z-index: 10002; /* Diğer içeriklerin üzerinde kalmasını sağlamak için yüksek bir z-index */
    position: fixed; /* Navbar'ı ekranın üst tarafına sabitler */
    top: 0; /* Üstten boşluk bırakmaz */
    left: 50%; /* Soldan %50 kaydırır */
    transform: translateX(-50%); 
  }
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  touch-action: pan-y;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}



@keyframes slide {
  from {
    left: 100vw;
  }

  to {
    left: 0vw;
  }
}

.DoFade {
  animation-name: fadeOut;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

a {
  text-decoration: none;
}

a.no-underline {
  text-decoration: none;
}




/* Altı çizili olmayan bağlantılar için stil */
.no-underline {
  text-decoration: none;
}


.custom-container {
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}




.main-content {
  padding-top: 90;
}

.container-fluid {
  padding-top: 130px;
}

.animated {
  opacity: 0;
  transform: translateY(-20px);
  animation-duration: 0.5s;
  animation-fill-mode: both;
}

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

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.desktop-view {
  display: block;
}

.mobile-view {
  display: none;
}

.partner-logo {
  width: 50%;
  height: auto;
}

.social-icon {
  width: 50px;
  /* Sosyal medya ikonlarının genişliğini ayarlayın */
  height: auto;
  margin: 5px;
}

.border-start {
  border-left: 2px solid #ccc;
}

.border-end {
  border-right: 2px solid #ccc;
}

.larger-logo {
  width: 80%;
  /* Logo büyüklüğünü ayarlayın */
  height: auto;
}




.logo-container {
  position: relative;
  text-align: center;
  margin-top: 10px;
}

.logo-container .powered-by {
  font-size: 18px;
  color: black;
  font-weight: 400;
}

.logo-container img {
  height: 150px;
  width: auto;
  display: block;
  margin: 0 auto;
}


  
  
  .bottom-font {
    font-weight: 400;
    display: block;
    padding: 5px;
    /* Touch hedefini büyütmek için padding ekleyin */
    margin-bottom: 3px;
    /* Hedefler arasında aralık bırakın */
  }



.card-title {
  font-weight: 700;
}

.news-card {
  display: flex;
  align-items: flex-start;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.news-image {
  flex: 1;
  margin-right: 50px;
}

.news-image img {
  width: 500;
  height: 400px;
}

.news-text {
  flex: 2;
  font-size: 1.2em;
  line-height: 1.6;
}

.news-item {
  display: flex;
  align-items: flex-start;
}

.news-title {
  font-size: 1.5em;
  margin: 0 0 10px 0;
}

.news-text p {
  font-weight: 500;
  margin: 10px 0;
}

.news-caption {
  font-weight: 600;
  font-size: 1.2em;
  color: #555;
  text-align: center;
  margin-top: 10px;
}

.news-container {
  width: 80%;
  margin: 0 auto;
}

.news-content {
  padding: 20px 0;
}

.news-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: white;
}

.news-carousel a {
  text-decoration: none;
  color: black;
  font-weight: bold;
  margin: 0 50px;
}

.news-carousel .arrow {
  font-size: 24px;
  cursor: pointer;
  margin: 0 5px;
}



.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 100px;
  max-width: 1200px;
  margin: 10px 10px 10px 10px;
}


.footer-section {
  padding: 50px 20px;
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}

.footer-social-media, .footer-logo, .footer-links {
  flex: 1;
}

.footer-social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  margin-right: 50px;
  /* Logo ve sosyal medya arası boşluk */
}

.footer-social-media p {
  margin: 0;
  font-size: 18px;
  color: white;
}

.social-icons {
  display: flex;
  gap: 15px;
  /* Sosyal medya ikonları arası boşluk */
  margin-top: 10px;
}

.social-icons a img {
  width: 40px;
  height: 40px;
}

.footer-logo {
  text-align: center;
  margin: 0 50px;
  /* Sosyal medya ve linkler arası boşluk */
}

.footer-logo img {
  width: 250px;
  height: auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: right;
  margin-left: 50px;
  /* Logo ve linkler arası boşluk */
}

.footer-links h3 {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #333333;
  text-decoration: none;
  font-weight: 600;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

.site-footer {
  clip-path: polygon(97.807% 62.917%, 2.307% 100%, 2.307% 100%, 1.935% 99.684%,
      1.581% 98.503%, 1.251% 96.529%, 0.948% 93.833%, 0.679% 90.487%,
      0.448% 86.561%, 0.259% 82.126%, 0.118% 77.255%, 0.03% 72.018%,
      0% 66.486%, 0% 0%, 100% 0%, 100% 29.403%, 100% 29.403%,
      99.972% 34.74%, 99.889% 39.814%, 99.757% 44.56%, 99.579% 48.908%,
      99.361% 52.793%, 99.106% 56.147%, 98.818% 58.904%, 98.503% 60.996%,
      98.165% 62.356%, 97.807% 62.917%);
  background-color: #333;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: center;
  /* Ortalamak için */
  align-items: center;
  width: 100%;
  height: 120px;
  max-width: 1440px;
  margin: 0 auto;
  /* Ortalamak için otomatik margin */
  transform: scaleY(-1) scaleX(-1);
  /* Dikey eksende flip yapar */
}

.footer-text {
  margin: 0;
  font-size: 1rem;
  color: white;
  transform: scaleY(-1) scaleX(-1);
  /* Flip işlemini düzeltiyor */
  text-align: center;
  /* Metni ortalar */
}
.footer-social-media {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 20px; /* Sol taraftan uzaklaştırmak için */
}

.social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-icon-link {
  margin: 0 10px;
}
.footer-links {
  text-align: left;
  max-width: 300px; /* İhtiyaca göre ayarlayabilirsiniz */
  margin: 0 auto; /* Yatayda ortalamak için */
}

.footer-links h3 {
  margin-bottom: 10px;
}

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.footer-links-grid a {
  text-decoration: none;
  color: inherit;
  font-size: 14px; /* Yazı boyutunu ayarlayabilirsiniz */
  font-weight: 600;
}
.news-carousel {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  max-width: 1440px; /* Container genişliği */
  margin: 0 auto; /* Ortalamak için */
  position: relative;
}

.news-carousel .arrow {
  font-size: 18px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #333; /* Renk */
  font-weight: bold; /* Kalın yazı */
}

.news-carousel .arrow:first-of-type {
  left: 150px; /* Sol oka container içinde boşluk bırak */
}

.news-carousel .arrow:last-of-type {
  right: 150px; /* Sağ oka container içinde boşluk bırak */
}

@media (max-width: 768px) {
  body {
    touch-action: pan-y;
    overflow-x: hidden;
    width: 100%;
}
  .desktop-view {
    display: none;
  }

  .mobile-view {
    display: block;
  }
  .news-carousel {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    position: relative;
  }

  .news-carousel .arrow {
    font-size: 18px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .news-carousel .arrow:first-of-type {
    left: 10px; /* Sol oka kenardan boşluk bırak */
  }

  .news-carousel .arrow:last-of-type {
    right: 20px; /* Sağ oka kenardan boşluk bırak */
  }

  /* Yazı stili */
  .news-carousel .arrow {
    color: #333; /* Renk */
    font-weight: bold; /* Kalın yazı */
  }


  .vertical-line {
    display: none;
    height: 70px;
    width: 3px;
    background-color: #fff;
  }

  .divSpanHeader {
    display: none;
    position: absolute;
    top: 0px;
    left: 40%;
    display: flex;
    align-items: center;
    margin-top: 10px;
  }

  .spanStyleHeader {
    display: none;
    color: #fff;
    font-size: 2.2em;
    font-weight: 400;
    margin-left: 2px;
    margin-top: 25px;
  }




  .navbar-custom {
    clip-path: polygon(96.106% 64.634%,
        4.103% 99.516%,
        4.103% 99.516%,
        3.442% 99.419%,
        2.813% 99.054%,
        2.225% 98.442%,
        1.687% 97.605%,
        1.208% 96.566%,
        0.797% 95.347%,
        0.461% 93.97%,
        0.211% 92.457%,
        0.054% 90.831%,
        0% 89.113%,
        0% 0.482%,
        100% 0.482%,
        100% 54.231%,
        100% 54.231%,
        99.949% 55.889%,
        99.803% 57.465%,
        99.568% 58.938%,
        99.253% 60.288%,
        98.865% 61.493%,
        98.412% 62.533%,
        97.902% 63.388%,
        97.343% 64.037%,
        96.741% 64.459%,
        96.106% 64.634%);
    top: -2px;
    background-color: #333;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 120px;
    z-index: 101;
  }


  .carousel-text {
display: none;

  }

  .navbar-custom .logo img {
    height: 60px;
    width: auto;
    margin-top: -80px;
    z-index: 100;
  }


  #whatWeDoSection .d-flex {
    flex-direction: column;
    text-align: center;
  }

  #whatWeDoSection .col-md-1,
  #whatWeDoSection .col-md-4,
  #whatWeDoSection .col-md-6 {
    width: 100%;
    margin-top: 20px;
  }

  #Only_T {
    display: none;
    width: 100px;
    margin-top: 0;
  }

  #mainTitleBlack,
  #mainTitleWhite {
    padding-left: 0;
    font-size: 40px;
    margin-left: 30px;
  }

  .whatwedoparag {
    font-size: 16px;
    margin-top: 10px;
    padding: 25px;
    margin-left: -10px;
  }

  .carousel-item {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    transition: transform 0.5s ease;
  }

  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
  }
  .burger-menu {
    position: absolute;
    right: 50px;
}


  .section-container {
    flex-direction: column;
    align-items: center;
  }

  .image-container {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .design-image {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .design-image-reverse {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  .news-h1 {
    font-size: 1.5rem;
    text-align: center;
  }
  .news-item {
    display: flex;
    justify-content: center; /* Ortalar */
    align-items: center; /* Dikey ortalar */
    flex-direction: column; /* İçeriği dikey hizalar */

  }
  .news-image {
    flex: 1;
    margin: 0 auto; /* Ortalar */
    text-align: center; /* İçeriği ortalar */
    display: block; /* Blok olarak ayarlar */
    
    max-width: 100%; /* Resmi taşırmamak için */
  }
  


  .news-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
  }

  .news-caption {
    font-size: 1rem;
    text-align: center;
    margin-top: 10px;
  }

  .news-text {
    width: 100%;
    padding: 0 10px;
  }

  .news-text p {
    font-size: 1rem;
    text-align: justify;
  }

  .news-carousel {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .news-carousel a {
    font-size: 1rem;
    margin: 5px 0;
  }

  /* Mobilde farklı resimler için düzenlemeler */
  .text-box-new {
    width: 100%;
    height: 100vw;
    margin: auto;

  }


  .text-box-sup {
    width: 100%;
    height: 100vw;


    margin: 0 auto;

  }

  .text-box-b {
    width: 100%;
    height: 100vw;
    padding: 15px;

    margin: 0 auto;

  }

  /* Mobilde farklı resimler için */
  .text-box-new::after {
    background-image: url('../Grocery-Store\ Mobile-01.svg');
    /* Mobildeki farklı resim */
  }

  .text-box-new::before {
    background-image: url('../Grocery-Store\ Mobile-02.svg');
    /* Hover sırasında mobildeki farklı resim */
  }

  /* Supply için mobilde farklı resimler */
  .text-box-sup::after {
    background-image: url('../Grocery-Store\ Mobile-03.svg');
    /* Mobilde farklı supply resmi */
  }

  .text-box-sup::before {
    background-image: url('../Grocery-Store\ Mobile-04.svg');
    /* Hover sırasında mobilde farklı supply resmi */
  }

  /* Build için mobilde farklı resimler */
  .text-box-b::after {
    background-image: url('../Grocery-Store\ Mobile-05.svg');
    /* Mobilde farklı build resmi */
  }

  .text-box-b::before {
    background-image: url('../Grocery-Store\ Mobile-06.svg');
    /* Hover sırasında mobilde farklı build resmi */
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-social-media, .footer-logo, .footer-links {
    margin-bottom: 20px;
  }
  .site-footer {
    clip-path: polygon(96.106% 64.634%,
    4.103% 99.516%,
    4.103% 99.516%,
    3.442% 99.419%,
    2.813% 99.054%,
    2.225% 98.442%,
    1.687% 97.605%,
    1.208% 96.566%,
    0.797% 95.347%,
    0.461% 93.97%,
    0.211% 92.457%,
    0.054% 90.831%,
    0% 89.113%,
    0% 0.482%,
    100% 0.482%,
    100% 54.231%,
    100% 54.231%,
    99.949% 55.889%,
    99.803% 57.465%,
    99.568% 58.938%,
    99.253% 60.288%,
    98.865% 61.493%,
    98.412% 62.533%,
    97.902% 63.388%,
    97.343% 64.037%,
    96.741% 64.459%,
    96.106% 64.634%);
    background-color: #333;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: center;
    /* Ortalamak için */
    align-items: center;
    width: 100%;
    height: 120px;
    max-width: 1440px;
    margin: 0 auto;
    /* Ortalamak için otomatik margin */
    transform: scaleY(-1) scaleX(-1);
    /* Dikey eksende flip yapar */
  }
  .footer-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .footer-social-media,
  .footer-links,
  .footer-logo {
    width: 100%;
    margin-bottom: 60px;
  }
  
  .footer-links ul {
    padding: 0;
    margin-left: -90px;
    margin-top: -20px;
  }
  
  .footer-links ul li {
    list-style: none;
    margin-top: 0px;
  }
  
  /* Logoyu en alta almak için */
  .footer-logo {
    order: 2;
  }
  
  .footer-social-media {
    order: 1;
  }
  
  .footer-links {
    order: 3;
  }
  .partner-logo{
    height: 80px;
    width: auto;
  }
}