   header {
    text-align: center;
    margin-bottom: 40px;
}

/* Referans listesi modülü stilleri */
.referans-listesi {
    margin: 0 auto;
    max-width: 80%;
    margin-bottom:100px;
}

.referans-listesi__tanimlama {
    text-align: center;
    margin-bottom: 25px;
    font-weight: bolder;
    font-size: 35px;
    padding: 15px;
    text-transform: uppercase;
    background-color: #07070775; /* Açık mavi bir arka plan */
    border-left: 5px solid #007bff; /* Mavi bir sol kenarlık */
    border-radius: 8px;
}

.referans-listesi__tanimlama p {
    margin: 0;
    color: #ffffff;
   
}

.referans-listesi__ul {
    list-style-type: none;
    padding: 0;
}

.referans-listesi__oge {
    background-color: #00000083;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
  text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.referans-listesi__oge:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.referans-listesi__metin {
    display: block;
    color: #ffffff;
     font-size: 18px;
}


   
   .hakkimiz{
    margin-top: 80px;
     margin-bottom: 30px; 
     background:rgba(0, 0, 0, 0.342);  
     padding: 15px; 
     border-radius: 10px;
   }
   
   /* Preloader'ın Tam Ekran Kaplamasını Sağlayan CSS */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
          
            width: 100%;
            height: 100%;
            background-color: #001d1f; /* Koyu arka plan rengi */
            display: flex;
            flex-direction: column; /* İçeriği dikey hizalar */
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
        }

        /* Preloader gizlendiğinde uygulanacak stil */
        .preloader-hidden {
            opacity: 0;
            visibility: hidden;
        }
        
        /* Logo Alanı */
        .preloader-logo {
            margin-bottom: 40px; /* Diğer içerikle arasına boşluk bırakır */
        }

        .preloader-logo img {
            width: 200px; /* Logonuzun genişliği */
            height: auto; /* Orantılı olarak yükseklik */
            border-radius: 8px; /* Logoya hafif yuvarlak köşeler */
        }
        
        /* Resimlerin Konumlandırılması ve Kapsayıcısı */
        .preloader-images {
            position: relative;
            width: 100px;
            height: 70px;
            /* Spinner'ın referans noktası olacak */
        }

        .preloader-images img {
            position: absolute;
            top: 0;
            left: 0;
            justify-content: center;
            width: 120px;
            height: 120px;
            opacity: 0;
             animation: crossfade 4s infinite; /* Animasyon adı değişti */
            border-radius: 50%; /* Resimlerin köşelerini yuvarlar */
        
            object-fit: cover; /* Resmi kapsayıcıya sığdırır */
        }

              /* Her resim için sıralı animasyon gecikmesi */
              .preloader-images img:nth-child(1) { animation-delay: 0s; }
              .preloader-images img:nth-child(2) { animation-delay: 1s; }
              .preloader-images img:nth-child(3) { animation-delay: 2s; }
              .preloader-images img:nth-child(4) { animation-delay: 3s; }       

            @keyframes crossfade {
                0%, 25% {
                    opacity: 0;
                }
                12.5% {
                    opacity: 1; /* Animasyonun ortasında tam görünürlük */
                }
            }
         /* Dönen Spinner Animasyonu */
        .preloader-images::before {
            content: '';
            position: absolute;
            /* Spinner'ı resimlerin etrafında ortalamak için hesaplama */
            /* Resim kapsayıcısı: 100x70px. Spinner: 140x140px. */
            /* left: (100 - 140) / 2 = -20px */
            /* top: (70 - 140) / 2 = -35px */
            
            width: 120px; /* Resim kapsayıcısından daha büyük */
            height: 120px;
            border: 4px solid rgba(255, 255, 255, 0.3); /* Şeffaf mavi iç kenarlık */
            border-top-color: #ffffff; /* Üst kenarlık rengi (mavi) */
            border-right-color: #ffffff; /* Sağ kenarlık rengi (mavi) */
            border-radius: 50%; /* Tamamen yuvarlak yapar */
            animation: spin 1.5s linear infinite; /* Spinner'ın dönme animasyonu */
            z-index: 2; /* Spinner'ı resimlerin arkasına alır */
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* "Sayfa Yükleniyor" Yazısı için CSS */
        .loading-text {
            margin-top: 80px; /* Resimlerin altında boşluk bırakır */
            font-size: 24px;
            font-weight: bold;
            color: #ccc; /* Koyu arka plana uyumlu açık renk */
              background: linear-gradient(90deg, #333, #fff, #333); /* Siyah-beyaz-siyah geçiş */
              background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine-rtl  2s infinite linear;
             display: inline-block;
        }

       /* Noktalar için ayrı bir stil tanımlıyoruz */
        .loading-text span {
           margin-left: 5px;
            -webkit-text-fill-color: #fff; /* Noktalara beyaz renk verelim */
            -webkit-background-clip: unset; /* Animasyonun sadece ana metinde kalmasını sağlar */
            background: none; /* Arka plan animasyonunu kaldırır */
            color: #fff; /* Diğer tarayıcılar için renk tanımı */
            animation: blink 1.4s infinite;
            opacity: 0;
        }

        @keyframes shine-rtl {
            0% { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        @keyframes blink {
            0%, 100% { opacity: 0; }
            50% { opacity: 1; }
        }

        /* Her nokta için ayrı gecikme */
        .loading-text span:nth-child(1) { animation-delay: 0s; }
        .loading-text span:nth-child(2) { animation-delay: 0.2s; }
        .loading-text span:nth-child(3) { animation-delay: 0.4s; }
                


        /* Sayfa içeriği için temel stil */
        .content {
            text-align: center;
            padding: 50px;
            background-color: #fff;
            color: #333;
            min-height: 100vh; /* Sayfanın uzunluğunu simüle eder */
        }

.navbar-nav li a.active {
 box-shadow: rgb(0, 0, 0) 0px 0px 20px 10px;
  transition: top 0.2s ease;
  z-index: 999;
 background-color: #ffffff;
color: #000000 !important;
font-weight: bolder;
}


.icon-bar {
    position: fixed;
    opacity: 0.9;
    z-index: 5000;
    top:10%;
  }
  
  .icon-bar a {
    display: block;
    text-align: center;
    padding: 16px;
    color: white;
    font-size: 20px;
    width: 70px;
    transition: width 1s, padding 1s, transform 2s;
  }
  
  @media (max-width: 1805px) {
    .icon-bar a {
        display: block;
        text-align: center;
        padding: 10px;
        color: white;
        width: 40px;
        font-size: 20px;
      }
    }
    @media (max-width: 1075px) {
      
        .icon-bar a {
            display: block;
            text-align: center;
            padding: 5px;
            color: white;
            width: 30px;
            font-size: 15px;
          }
        }



  .icon-bar a:hover {
   
    color: white;
    transform: rotate(1deg);
    width: 200px;
  }
  
  .facebook {
    background: #3b5898b9;
    color: white;
  }
  
  .twitter {
    background: #55ACEE;
    color: white;
  }
  
  .google {
    background: #dd4b39;
    color: white;
  }
  
  .linkedin {
    background: #007bb5;
    color: white;
  }
  
  .youtube {
    background: #bb0000;
    color: white;
  }
  

  .instagram {
      background: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), 
      radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), 
      radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), 
      radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), 
      radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), 
      radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), 
      radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), 
      linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
      color: white;
  }
  
  





@keyframes fadein{
    from{opacity:0;}
    to{opacity:1;}
 }

html, body {
  margin: 0;
      padding: 0;
      height: 100%;
} 
.page-container {
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      justify-content: center !important;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 19px;
    font-weight: 300;
    color: white;
    background-color: #001d1f;
    line-height: 1.5;
    
}

a {
	color: #9F6;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
	color: #3CF;
}

p {
    line-height: 1.7;
}

h2 {
    font-size: 1.8rem;
}

.highlight {
    color: #99FF66;
}

.page-container {
    display: flex;
    flex-direction: column;
    justify-content: top;
 
}

.container-fluid {
   width: 100%;
}

.btn {
    font-size: 1.3rem;
    padding: 13px 23px;
    border-radius: 0;
}

.btn-primary {
    background-color: white;
    border: none;
    color: #333;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #5cac38;
    background-color: white;
}

/* Style the video: 100% width and height to cover the entire window */


#tm-nav {
    z-index: 1000;
}





.circle {
    position: absolute;
    left: calc(50% - 10px);
    bottom: -10px;
    width: 20px;
    height: 20px; 
    background-color: white;
    border-radius: 50%;
}

.tm-border-bottom {
    border-bottom: 1px solid white;
    padding-bottom: 48px;
}

.tm-border-top {
    border-top: 1px solid white;
    padding-top: 48px;
}





.tm-link-white {
    color: white;
}

.tm-link-white:hover,
.tm-link-white:focus {
    color: #99FF66;
}

.cd-hero-slider {
    padding: 10px 0;
}

.cd-hero-slider li { 
    list-style: none;
}

.content-pad {
    padding: 40px 30px;
}

.page-width-1 {
    max-width: 810px;
}

.page-width-2 {
    max-width: 912px;
}
.page-width-3 {
    max-width: 1800px;
}
.page-width-4 {
    max-width: 1500px;
}
.page-left {
    margin-left: 100px;
}

.page-right {
    margin-right: 100px;
    margin-left: auto;
}

.tm-bg-dark {
    background-color: rgba(0,0,0,0.3);
    border-radius: 10px;
}

.intro-left {
    margin-right: 20px;
    padding: 30px 40px;
    max-width: 505px;    
}

.intro-img-1 {
    margin-bottom: 20px;
}

.intro-circle-1 {
    left: -20px;
    top: -10px;
}

.intro-circle-2 {
    right: -20px;
    top: -10px;
    left: auto;
}

.intro-circle-3 {
    right: -20px;
    bottom: -10px;
    left: auto;
}

.intro-circle-4 {
    left: -20px;
    bottom: -10px;
}

.tm-intro-btn {
    margin-top: 25px;
}

.tm-footer {
    padding-top: 25px;
    padding-bottom: 25px;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

/* Gallery page */
.gallery-container {
    max-width: 1300px;
}

.slick-dots {
    bottom: -80px;
}

.gallery-slider figure {
	position: relative;
	float: left;
    overflow: hidden;
    margin: 0;
    max-width: 240px;
    margin-left: 10px;
    margin-right: 10px;
	height: auto;
	background: #3085a3;
	text-align: center;
	cursor: pointer;
}

.gallery-slider figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
}

.gallery-slider figure figcaption {
	padding: 1em;
	color: #fff;
	text-transform: uppercase;
	font-size: 1.25em;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.gallery-slider figure figcaption::before,
.gallery-slider figure figcaption::after {
	pointer-events: none;
}

.gallery-slider figure figcaption,
.gallery-slider figure figcaption > a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.gallery-slider figure figcaption > a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
	opacity: 0;
}

.gallery-slider figure h2 {
	word-spacing: -0.15em;
  font-weight: 300;
  font-size: 28px;
}

.gallery-slider figure h2 span {
	font-weight: 800;
}

.gallery-slider figure h2,
.gallery-slider figure p {
	margin: 0;
}

.gallery-slider figure p {
	letter-spacing: 1px;
	font-size: 68.5%;
}

.gallery-section {
  background-color: #99ccff;
}

.gallery-section .title {
  padding-right: 13px;
  margin-bottom: 80px;
}

/*---------------*/
/***** Julia *****/
/*---------------*/

figure.effect-julia {
	background: #2f3238;
}

figure.effect-julia img {
	-webkit-transition: opacity 1s, -webkit-transform 1s;
	transition: opacity 1s, transform 1s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

figure.effect-julia figcaption {
	display: flex;
  align-items: center;
}

figure.effect-julia h2 {
	position: relative;
	padding: 0.5em 0;
}

figure.effect-julia p {
	display: inline-block;
	margin: 0 0 0.25em;
	padding: 0.4em 1em;
	background: rgba(255,255,255,0.9);
	color: #2f3238;
	text-transform: none;
	font-weight: 500;
	font-size: 75%;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
	-webkit-transform: translate3d(-360px,0,0);
	transform: translate3d(-360px,0,0);
}

figure.effect-julia p:first-child {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

figure.effect-julia p:nth-of-type(2) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-julia p:nth-of-type(3) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-julia:hover p:first-child {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

figure.effect-julia:hover p:nth-of-type(2) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

figure.effect-julia:hover p:nth-of-type(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

figure.effect-julia:hover img {
	opacity: 0.4;
	-webkit-transform: scale3d(1.1,1.1,1);
	transform: scale3d(1.1,1.1,1);
}

figure.effect-julia:hover p {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.gallery-slider .slick-dots li.slick-active, 
.gallery-slider .slick-dots li:hover {
    background-color: #3CCDFF;
}

.gallery-slider .slick-dots li {
    background-color: #ffffff;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    margin: 0 10px;
    transition: all 0.3s ease;
}

/* About page */
.tm-about-container {
    border-top: 1px solid white;
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid white;
}

/* Contact page */
.tm-contact-left {
    padding-right: 55px;
}

.form-control {
    font-size: 1.2rem;
    padding: 15px 0;
}

#birinci {
  scroll-margin-top: 100px; /* header yüksekliği kadar */
}
#ikinci {
  scroll-margin-top: 100px; /* header yüksekliği kadar */
}


.form-control,
.form-control:focus {
    color: white;
    background-color: transparent;
}

.form-control:focus {
    border-bottom: 1px solid #99FF66;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

.form-control::-webkit-input-placeholder { color: white; }
.form-control:-moz-placeholder { color: white; }
.form-control::-moz-placeholder { color: white; }
.form-control:-ms-input-placeholder { color: white; }

.tm-mb-30 {
    margin-bottom: 30px;
}

.tm-mb-45 {
    margin-bottom: 45px;
}
.divs3{
    margin-left: auto; 
    margin-right: auto; 
      text-align: center;
      background-color: rgba(3, 0, 44, 0.651); 
      padding: 5px; 
      border-radius: 10px;
    margin-bottom: 5px;
    max-width: 250px;
}
.divs{
    margin-left: auto; 
    margin-right: auto; 
    max-width: 250px;
     text-align: center;
      background-color: rgba(131, 131, 131, 0.658); 
      padding: 5px; 
      border-radius: 10px;
    margin-bottom: 5px;
    margin-top: -10px;
}
.divs2{
    margin-left: auto; 
    margin-right: auto; 
     text-align: center;
      background-color: rgba(82, 82, 82, 0.959); 
      padding: 5px; 
      max-width: 550px;
      border-radius: 10px;
     
}
.tm-btn-pad-2 {
    padding: 10px 38px;
}


.gmap-canvas {
    overflow:hidden;
    background:none!important;
    border-radius: 10px;
    max-height:600px;
}

.map-outer,
.gmap-canvas {
  margin-top: 20px;
    width:100%;
}

.tm-footer-right {
    text-align: right;
}


@media (max-width: 834px) {

  .referans-listesi__tanimlama {
    font-size: 25px;
   }

    .intro-left {
        width: 65%;
    }
    
    .intro-right {
        width: 35%;
    }
}

@media (max-width: 767px) and (min-height: 600px){
  #birinci {
  scroll-margin-top: -200px; /* header yüksekliği kadar */
}
#ikinci {
  scroll-margin-top: -1200px; /* header yüksekliği kadar */
}
}
@media (max-width: 767px) {

    .tm-contact-left {
        padding-right: 15px;
        margin-bottom: 50px;
    }
    
    .tm-footer-right {
        text-align: left;
        margin-top: 10px;
    }
}

@media (max-width: 600px) {
    .intro-left,
    .intro-right {
        width: 100%;
    }

    .intro-left {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: none;
    }

    .intro-right {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
    }

    .intro-container {
        flex-direction: column;
    }

    .intro-img-1 {
        margin-right: 4%;
        margin-bottom: 0;
        width: 48%
    }

    .intro-img-2 {
        width: 48%;
    }
}


.navbar-toggler{
    border-color: #023236 !important;
    border-width: 5px;
    background-color: #ffffff5e;
}

  
.navbar{
    background-color: #007179;
    text-align: center;
   justify-content: center;
   align-items: center;
    height: 110px;
 
}
.nav-item{
    margin-left: 20px;
    margin-right: 20px;
    padding: 5px;
    border-radius: 10px;
    min-width: 200px;
    min-height: 50px;

}
.nav-item a{
    color: white !important;
     border-radius: 10px;
     box-shadow: rgb(255, 255, 255) 0px 0px 20px 2px;
     padding: 20px;
     font-weight: bolder;
    
}
.nav-item a:hover{
      border-radius: 10px;
      box-shadow:rgb(0, 0, 0) 0px 0px 20px 10px;
     
      transition: color .2s ease-in-out, box-shadow .2s ease-in-out;
}

.navbar-nav{
    margin: auto !important;
    padding: 0;
    
}

.selected a{
    background-color: #0000006e;
    color: #ffffff !important;
    border-radius: 10px;
}

.box {
    --border-angle: 0deg;
  
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 2px 4px hsla(0, 0%, 0%, 0.089);
    animation: border-angle-rotate 5s infinite linear;
    
    position: fixed;
  
    &.a {
      background: linear-gradient(white, white) padding-box,
        conic-gradient(
            from var(--border-angle),
            oklch(100% 100% 0deg),
            oklch(100% 100% 45deg),
            oklch(100% 100% 90deg),
            oklch(100% 100% 135deg),
            oklch(100% 100% 180deg),
            oklch(100% 100% 225deg),
            oklch(100% 100% 270deg),
            oklch(100% 100% 315deg),
            oklch(100% 100% 360deg)
          )
          border-box;
    }
  
    &.b {
      background: linear-gradient(rgba(0, 0, 0, 0.959), rgba(255, 255, 255, 0.014)) ,
        conic-gradient(
            from var(--border-angle),
            var(--bg) 15%,
          rgb(65, 65, 65)
          )
      
    }
  
    &.c {
      border-radius: 100%;
      background: radial-gradient(circle, var(--bg) 60%, transparent 60%);
  
      &:before,
      &:after {
        content: "";
        display: block;
        position: absolute;
        inset: 4px;
        border-radius: 100%;
        animation: border-angle-rotate 4s infinite linear;
        z-index: -1;
      }
  
      &:before {
        inset: 0;
        background: repeating-conic-gradient(
            from var(--border-angle),
            var(--bg),
            var(--bg) 30deg,
            oklch(100% 50% 190deg) calc(360deg / 6)
          )
          border-box;
      }
  
      &:after {
        background: repeating-conic-gradient(
            from calc(var(--border-angle) * -1),
            oklch(100% 40% 50deg),
            black 60deg
          )
          border-box;
      }
    }
  }
  
  @keyframes border-angle-rotate {
    from { --border-angle: 0deg; }
    to { --border-angle: 360deg; }
  }
  /** boilerplate **/
body {
    --bg: hsla(0, 0%, 0%, 0.719);
  }
  
  @property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
  }

  .img-logo{
        height: 100px; 
        width: 230px; 
        border-radius: 10px; 
      background-color: #202020;
      padding: 10px;
      transition: background-color 0.5s;
      }

 .img-logo:hover{
        height: 100px; 
        width: 230px; 
        border-radius: 15px; 
      background-color: #ffffff;
      padding: 10px;
      }
  @media (max-width: 1220px) {
      .iletisim-sayfa-container {
    width: 100%;
  margin: 70px auto;
    padding: 15px;
  }

    
    .img-logo{
      
        border-radius: 5px; 
        margin-top:-4px; 
    }
    .navbar-nav {
     
        padding-bottom: 20px;
      border-radius: 16px;
      background: #004c52;
    }

    .nav-item a{
      margin-top: 15px;
    }
    .nav-item a:hover{
      border-radius: 10px;
      box-shadow:rgb(0, 0, 0) 0px 0px 20px 10px;
      color: white !important;
      transition: color .2s ease-in-out, box-shadow .2s ease-in-out;
    }
    .gmap-canvas {
        overflow:hidden;
        background:none!important;
        border-radius: 10px;
        max-height:400px;
     }
    .selected a{
        background-color: #5a5a5ada;
        color: #ffffff !important;
        border-radius: 10px;
     }
  

  }

@media (max-width: 1382px) {

  .abc{
    max-width:900px; 
}
  }

@media (max-width: 975px) {
    .abc{
      max-width:500px; 
  }
    }


  @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');



.container{
    transform-style: preserve-3d;
      
}

.container .box{
    position: relative;
    width: 350px;
    height: 350px;
    margin: 20px;
    transform-style: preserve-3d;
    cursor: pointer;
 
}

.container .box .body{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: 0.9s ease;
}



.container .box .body .imgContainer{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.container .box .body .imgContainer img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container .box .body .content{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #011f2b;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform: rotateY(180deg);
}

.container .box:hover .body{
    transform: rotateY(180deg);
}

.container .box .body .content div{
    transform-style: preserve-3d;
    padding: 20px;
    background: linear-gradient(45deg, #4edcff,#fffea6);
    transform: translateZ(100px);
}

.container .box .body .content div h3{
    letter-spacing: 1px;
}

video {
    max-width: 100% !important;
    max-height: auto !important;
  }
  
  .uls {
            list-style-position: inside;
            padding: 0;
           text-align: center;
        }

        .uls li {
            position: relative;
            padding: 8px 0;
            font-size: 18px;
        }


   /* sosyal*/      
.social2{
    padding: 0;
    padding-bottom: 7px;
    padding-top: 7px;
    margin: 0;
  }

 .socialhv img {
  border-radius: 50px;
  border-style: dashed;
  border-radius: 50px;
  border-color: rgb(255, 255, 255);
  padding: 0px;
 }
 .socialhv img:hover{
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  transition: ease-in-out 1s;
 }

 .socialhv2 img {
  border-radius: 50px;
  border-style: dashed;
  border-radius: 50px;
  border-color: rgb(255, 255, 255);
  padding: 1px;
 }
 .socialhv2 img:hover{
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
  transition: ease-in-out 1s;
 }
 
   .footerfixed {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    opacity: 80%;
    background-color: #007179;
    color: white;
    text-align: center;
 }

 /* sosyal bitiş*/

   
.card-container {
    width: 100%;
      z-index: 0 !important;
    display: flex;
      
    flex-wrap: wrap;
    /* align-content: center; */
    /* text-align: center; */
    margin: auto;
      margin-bottom: 40px;
    gap: 30px;
    justify-content: center;
    /* margin: 20px; */
}

.card {
     width: 32%;
  border-radius: 15px;
  background-color: #fff;
  overflow: hidden;
  box-shadow: rgba(0, 235, 196, 0.658) 0px 5px 15px;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  cursor: pointer;
  box-shadow: rgba(85, 255, 156, 0.911) 0px 5px 15px;
 
}

.card-image {
  width: 100%;
  height: 600px;
  object-fit: cover;
  transition: filter 0.3s ease;
  position: relative;
  z-index: 1;
}

.card:hover .card-image {
  filter: blur(1.0px) brightness(1.15); /* Güçlü blur ve parlama */
}

/* Hafif ışık efekti görsel üzerine */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 160px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.1), transparent);
  z-index: 2;
  pointer-events: none;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.226);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 3;
}



.card-overlay a {
  color: #fff;
  font-size: 20px;
  letter-spacing: 3px;
  text-decoration: none;
  background-color: rgba(34, 34, 34, 0.849);
  padding: 20px 20px;
  border-radius: 8px;
  font-weight: bolder;
  transition: 
    background-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Hover animasyonu */
.card-overlay a:hover {
  background-color: white;
  color: #000000;
  box-shadow: rgba(207, 255, 227, 0.911) 0px 0px 20px 6px; /* Hafif parlama */
}




.about-section {
  max-width: 82%;
  margin: 50px auto 0;
  padding: 30px 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  background-color: #3535359f;
  text-align: center;
  justify-content: center;
}

.about-section h2 {
  font-size: 30px;
  color: #3982ff;
  margin-bottom: 15px;
}

.about-section p {
  font-size: 20px;
  color: #ffffff;
  line-height: 1.6;
}     
@media (max-width:850px) {
  
  .card {
    width: 90%;
  }
    .card-image {
    height: 400px;
  }
  .about-section {
    max-width: 90%;
  margin:auto;
}

} 
@media (min-width: 851px) and (max-width: 1500px) {
   
 
  .card {
    width: 45%;
  }
    .card-image {
    height: 500px;
  }
}

/* Scrollbar genişliği ve arka planı */
::-webkit-scrollbar {
  width: 1px;
}

/* Scrollbar tutamacı */
::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 6px;
}

/* Hover efekti */
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

/* Scrollbar renkleri */
.scrollable-element {
  scrollbar-color: #888 #f0f0f0;
  scrollbar-width: thin;
}

.modern-footer {
  background-color: #1c1e22;
  color: #e0e0e0;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 20px;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.4);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch; /* İçerikleri eşit yükseklikte hizala */
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
 
}

/* 🧩 İLETİŞİM KUTUSU */
.footer-contact {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* İçeriği dikeyde ortala */
  background: linear-gradient(135deg, #112233, #1a2a3a);
  padding: 25px;
  border-radius: 12px;
   box-shadow: 0 0 10px rgb(150, 150, 150);
  transition: transform 0.3s ease;
}
.iletisimsayfa h4 {
   font-family: Helvetica;
  text-align: center !important;
  border: 0 !important;
}

.iletisimsayfa li{
 text-align: center;
 display: block !important;
}


.footer-contact h4 {
  font-size: 24px;
  margin-bottom: 18px;
  color: #00eaff;
  border-left: 4px solid #00eaff;
  padding-left: 10px;
}

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

.footer-contact li {
  margin-bottom: 14px;
  font-size: 16px;
  color: #e0f7fa;
  display: flex;
  
  gap: 12px;
  position: relative;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-contact li:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #00eaff, 0 0 16px #00eaff;
}

.footer-contact i {
  color: #00eaff;
  font-size: 18px;
  min-width: 20px;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.footer-contact li:hover i {
  color: #ffffff;
  text-shadow: 0 0 8px #00eaff, 0 0 16px #00eaff;
}

.footer-iletisim {

  min-width: 280px;
  background: linear-gradient(40deg, #0028558e, #00406bb6);
   font-family: Courier, monospace;
  padding: 25px;
  text-align: center;
   box-shadow: 0 0 80px rgba(2, 162, 255, 0.301);
  transition: transform 0.3s ease;
}


.footer-iletisim h4 {
    margin: auto !important;
  font-size: 18px;
  color: #ffffff;
  line-height: 1.5 !important;
}


/* 🧭 HARİTA BÖLÜMÜ */
.footer-map {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;       /* iframe’i dikeyde ortala */
  justify-content: center;   /* iframe’i yatayda ortala */
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(150, 150, 150);
  border: none;
}
.map-iletisim {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;       /* iframe’i dikeyde ortala */
  justify-content: center;   /* iframe’i yatayda ortala */
}

.map-iletisim iframe {
  width: 100%;
  height: 400px;
  max-height: 100%;
  border-radius: 8px;
  box-shadow: 0 0 10px rgb(150, 150, 150);
  border: none;
}

.uls a{
  color: rgb(115, 250, 255) !important;
}
.uls a:hover{
  color: rgb(109, 111, 255) !important;
}


 .page-title {
    margin-top:110px ;
    margin-bottom: -90px;
   /* görsel dosyasını buraya ekle */
opacity: 1;
 box-shadow: rgba(255, 255, 255, 0.158) 0px 20px 80px -10px;
  text-align: center;
 
  color: #fff;
  min-width: 100%;
   border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  overflow: hidden; /* Radius dışına taşan görseli kırpar */
}


.title-overlay {
  min-width: 100%;
  background: rgba(137, 247, 255, 0.158); /* arka planı hafif karartarak kontrast sağlar */
  display: inline-block;
  padding: 50px 10px;

  backdrop-filter: blur(3px); /* mobilde şıklık + okunabilirlik */
   text-shadow: 0 0 3px #000000, 0 0 16px rgb(0, 0, 0), 0 0 24px rgb(0, 0, 0), 0 0 32px rgb(0, 0, 0);
}

.page-title h1 {
  font-size: 2.5rem;
  margin: 0;
}

.page-title p {
  font-size: 1.2rem;
  margin-top: 10px;
}
.page-title h4 a {
  margin: 0;
  color: white;
}
.page-title h4 a:hover {
   filter: drop-shadow(0 0 4px rgb(255, 255, 255));
}
.link-icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #00f;
  text-decoration: none;
}

.link-icon::after {
  content: '🔗';
  font-size: 0.9em;
  color: inherit;
  transition: filter 0.3s ease;
}

.link-icon:hover::after {
  filter: drop-shadow(0 0 4px rgb(255, 255, 255));
}

/* Sayfa kapsayıcısı */
.iletisim-sayfa-container {
  width: 90%;
  margin: 150px auto;
  padding: 30px;
 
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(0,0,0,0.3);
  color: #fff;
}

/* İç düzen */
.iletisim-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 30px;
  align-items: flex-start;
}

/* Harita */
.iletisim-map {
  flex: 1;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.iletisim-map iframe {
  width: 100%;
  height: 450px; /* Masaüstünde sabit yüksek */
  border-radius: 10px;
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* İletişim bilgileri */
.iletisim-info {
  flex: 1;
  min-width: 280px;
  align-self: center;
 text-align: center;
 justify-content: center;
  border-radius: 12px;
  background-color: rgba(26, 31, 31, 0.534);
  padding: 110px;
}

.iletisim-info h4 {
 margin-bottom: 30px;  
}

.iletisim-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
 justify-content: center;
}

.iletisim-info li {
   justify-content: center;
  margin-bottom: 14px;
  display: flex;
  gap: 12px;
  color: #e0f7fa;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.iletisim-info li:hover {
  color: #fff;
  text-shadow: 0 0 8px #000000;
}

.iletisim-info i {
   justify-content: center;
  color: #ffffff;
  min-width: 20px;
}


/* Başlık Bölümü */
.header1 {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 120px;
}

.header1 h1 {
  font-size: 2.5rem;
  color: #1184d6;
}

.header1 p {
  font-size: 1.1rem;
  color: #e7e7e7;
  margin-top: 10px;
}
.radno{
  width: 90%;
margin: auto;
margin-bottom: 30px;
}
/* Kart Konteyneri */
.my-partners-container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

/* GLOW EFEKTİLİ KART */
.my-partner-card {
  position: relative;
  border-radius: 25px;
  padding: 4px;
  background-color: #222222;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.2s ease;
}

.my-partner-card:hover {
  transform: translateY(-5px);
  box-shadow: inset white;
}

/* Glow efekti sadece kenarlarda görünür */
.my-partner-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
    background: conic-gradient(
    from 0deg,
    #ffffff 0deg 36deg,
    #00c3ff 36deg 72deg,
    #3de8ff 72deg 108deg,
    #ffffff 108deg 144deg,
    #ffffff 144deg 180deg,
    #ffffff 180deg 216deg,
    #00c3ff 216deg 252deg,
    #00c3ff 252deg 288deg,
    #ffffff 288deg 324deg,
    #ffffff 324deg 360deg
  );
  animation: rotateGlow 15s linear infinite;
  animation: rotateGlow 15s linear infinite;
  z-index: 0;
  filter: blur(15px);
  border-radius: 14px;
  will-change: transform;
}

/* İçerik görünür kalsın */
.my-partner-card .content {
  position: relative;
  z-index: 1;
  background-color: #292929;
  padding: 4px;
  border-radius: 25px;
  padding-bottom: 10px;
}

/* Görsel */
.my-partner-card img {
  width: 80%;
  height: 420px;
  object-fit: contain;
  margin-bottom: 10px;
  border-radius: 15px;
}



@keyframes rotateGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .my-partners-container {
    grid-template-columns: 1fr !important;
  }
  .my-partner-card img {
  height: 150px;
}
.radno{
  width:80%;
}
}
/* Responsive: 1200px altı tek sütun */
@media (min-width: 769px) and (max-width: 1200px) {
  .my-partners-container {
    grid-template-columns: 1fr !important;
  }
  .my-partner-card img {
  height: 250px;
}
.radno{
  width:70%;
}
}






/* 1200px altına düşerse alt alta diz */
@media (max-width: 1200px) {
   .referans-listesi{
    max-width: 90%;
  }



  .iletisim-wrapper {
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    
  }

  .iletisim-map iframe {
    height: 300px; /* Yükseklik biraz küçülsün */
  }

  .iletisim-info {
    align-self: stretch;
   
    padding: 40px;
  }
}
 @media (max-width: 1500px) {
      .iletisim-sayfa-container {
    width: 100%;
  margin: 70px auto;
    padding: 15px;
  }
 }
/* 768px ve altı için mobil optimizasyon */
@media (max-width: 768px) {
  .iletisim-sayfa-container {
    width: 100%;
    padding: 15px;
     margin: 70px auto;
  }

  .iletisim-info h4 {
    font-size: 20px;
  }

  .card-overlay a {
  font-size: 15px;
}


}

@media (max-width: 400px) {
  .iletisim-sayfa-container {
    width: 100%;
  margin: 70px auto;
    padding: 15px;
  }

  .iletisim-wrapper {
    padding: 0 10px;
    overflow-x: hidden; /* Yatay kaymayı engelle */
  }

  .iletisim-info {
    padding: 15px 10px;
  }

  .iletisim-info li {
    font-size: 14px;
    gap: 8px;
    word-wrap: break-word; /* Uzun metinleri sar */
  }

  .iletisim-info i {
    min-width: 18px;
    font-size: 16px;
  }

  .iletisim-info h4 {
    font-size: 18px;
  }

  .iletisim-map iframe {
    height: 250px;
  }
}


/* 📱 MOBİL GÖRÜNÜM */
@media (max-width: 1100px) {
  .footer-container {
    flex-direction: column;
  }


  .footer-map iframe {
    max-width: 100%;
    height: 200px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border: none;
    display: block;
  }
.map-iletisim iframe {
    max-width: 100%;
    height: 180px;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    border: none;
    display: block;
  }

  .footer-contact h4 {
    font-size: 20px;
  }
  .footer-iletisim h4 {
  font-size: 14px;
  color: #ffffff;
}

.title-overlay {
  padding: 30px 10px;
}

.page-title h1 {
  font-size: 1.5rem;
  margin: 0;
}


}  



 