@font-face {
  font-family: "livvic";
  src: url("../libs/font/livvic/Livvic-Black.ttf") format("ttf");
  font-weight: normal;
  font-style: normal;
}

/* Scrollbar genişliği */
::-webkit-scrollbar {
  width: 12px;
}

/* Arka plan */
::-webkit-scrollbar-track {
  background: #e8f7fa;
  border-radius: 10px;
}

/* Scrollbar tutacağı */
::-webkit-scrollbar-thumb {
  background: linear-gradient(
    180deg,
    #6ee3f1,
    #4DD0E1
  );
  border-radius: 10px;
  border: 2px solid #e8f7fa;
  transition: 0.3s;
}

/* Hover efekti */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #4DD0E1,
    #26c6da
  );
}

/* Aktif basılı durum */
::-webkit-scrollbar-thumb:active {
  background: #1fb6c9;
}

html, body{
    margin: 0;
    padding: 0;
}

body {
    background: url(../img/gggrain.svg);
    font-family: "livvic", sans-serif !important;
    box-sizing: border-box;
    overflow-x: hidden;
    height: 100%;
}

.preloader{
position:fixed;
inset:0;
background:#ff9b9b;
display:flex;
align-items:center;
justify-content:center;
z-index:9999;
}

.site-content{
opacity:0;
transform:translateY(20px);
transition:all .6s ease;
}

body.loaded .site-content{
opacity:1;
transform:none;
}

.logo{
  color:white;
  font-size:50px;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(77, 208, 225, 0.16), transparent 34%),
    linear-gradient(135deg, #06151a 0%, #102a43 52%, #071116 100%);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-preloader__inner {
  width: min(320px, calc(100vw - 48px));
  text-align: center;
}

.site-preloader__logo-wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(77, 208, 225, 0.42);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  animation: preloaderPulse 1300ms ease-in-out infinite;
}

.site-preloader__logo {
  width: 112px;
  height: auto;
  animation: preloaderLogo 1200ms ease-in-out infinite;
}

.site-preloader__bar {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.site-preloader__bar span {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #4DD0E1, #ffffff, #4DD0E1);
  animation: preloaderBar 1150ms ease-in-out infinite;
}

@keyframes preloaderLogo {
  0%, 100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.06);
  }
}

@keyframes preloaderPulse {
  0%, 100% {
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34), 0 0 0 0 rgba(77, 208, 225, 0.26);
  }

  50% {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42), 0 0 0 12px rgba(77, 208, 225, 0);
  }
}

@keyframes preloaderBar {
  0% {
    transform: translateX(-110%);
  }

  100% {
    transform: translateX(240%);
  }
}


:root {

  /* Ana marka rengi (su ve güven hissi) */
  --primary-color: rgb(0, 157, 255);

  --primary-hover: rgb(0, 105, 171);
  /* Hover / vurgu rengi */
  --primary-dark: hsl(212, 80%, 42%);

  /* Sabun ve temizlik hissi */
  --accent-color: #4ccfe1;

  /* Arka plan */
  --background-color: #F5F7FA;

  /* Kart / içerik arka planı */
  --surface-color: #FFFFFF;

  /* Makine / metal hissi */
  --metal-gray: #6C757D;

  /* Ana metin */
  --text-color: #1F2933;

  /* Açık metin */
  --text-light: #6B7280;

}

/* *** HEADER START *** */

.hero-header{
    background: url(../img/kapak-5.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    height: 100vh;
    position: relative;
    z-index: 2;
}


.hero-header::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #021b327a;
    z-index: 3;
    backdrop-filter: blur(0px);
    animation: blurEffect 2s ease forwards;
    animation-delay: 2s;
}

#mainNav{
    width:100%;
    left:0;
    right: 0;
    height: 100px;
}

.sidebar{
    position: fixed;
    top: 0;
    height: 100vh;
}


#logo-wrap{
    height: 80px;
    width: auto;
}

#logo{
    width: 100%;
    height: 100%;
}

#logo:hover{
    scale: 1.2;
    transition: .3s;
}

.header-container{
    display: flex;
    justify-content: space-between ;
}

.nav-link{
    font-size: 1rem !important;
    margin-right: 10px;
    border-radius: 12px;
}

.nav-link:hover{
    background-color: var(--primary-color);
    transition: .3s;
}

.faal{
    background-color: var(--primary-color);
    border-radius: 12px;
}

.call-wrap{
    display: flex;
    justify-content: center;
    align-self: center;
}

.call{
    padding: 8px 16px !important;
    border-radius: 8px;
    background-color: var(--primary-color);
    border: 1px solid #fff;
}

.call:hover{
    background-color: var(--primary-hover);
    transition: .3s;
}

/* *** HEADER END *** */

/* *** HEADER CONTENT START *** */

.scrolled{
    backdrop-filter: blur(8px);
    background-color: #0e373c6f;
    transition: .4s;
    will-change: backdrop-filter;
    border-bottom: 1px solid #fff;
}

.giris-wrapper{
    position: relative;
    height: 90vh;
    z-index: 1029;
}

.giris-wrapper .container{
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.giris-content{
    text-align: center;
    color: #fff;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

@keyframes blurEffect {
  from {
    backdrop-filter: blur(0px);
  }
  to {
    backdrop-filter: blur(2px);
  }
}

.giris-baslik{
    font-weight: 800;
    font-size: 75px;;
    text-shadow: 3px 3px var(--accent-color);
    -webkit-text-stroke: 1px var(--accent-color);
}

.giris-yazi{
    max-width: 700px;
    margin: 0 auto;
    font-size: 20px;
    font-weight: 700;
}

.giris-son-wrap{
    display: flex;
    justify-content: center;
}

.giris-son{
    width: 400px;
    display: flex;
    justify-content: space-around;
}

.giris-button{
    display: block;
    font-size: 22px;
    text-decoration: none;
    padding: 18px 36px;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #fff;
}

.urunler{
    backdrop-filter: blur(3px);
    background-color: rgba(77, 208, 225, 0.3);
}

.ara{
    backdrop-filter: blur(3px);
    background-color: rgba(235, 138, 64, 0.3);
}

.urunler:hover{
    transition: .4s !important;
    background-color: rgb(77, 208, 225);
}

.ara:hover{
    background-color: rgb(235, 138, 64);
    transition: .4s !important;
}


/* *** HEADER CONTENT END *** */

/* *** ABOUT START *** */


.about{
    padding: 80px 0;
    background-image: url(../img/bg-1.svg);
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 20px !important;
}

#about-content{
    align-items: flex-end;
    height: 500px;
}

.about-button{
    width: 200px;
    border-radius: 10px;
    border: 1px solid #fff;
    background-color: var(--primary-color);
    color: #fff;
}

.about-button:hover{
    background-color: var(--primary-hover);
    transition: .3s;
}

#hakkimizda-title{
    font-size: 65px;
    -webkit-text-stroke-color: #fff !important;
}

#hakkimizda-photo img{
    height: 500px !important;
    width: auto !important;
}

/* mobil */



/* *** ABOUT END *** */

/* *** PROJECT START *** */

.project{
    width: 100% !important;
}

#project-title{
    font-size: 80px;
}

.project-wrap{
    background: url(../img/project.svg);
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    
}
/* ortak */
.title{
    text-align: center;
    font-weight: 800 !important;
    color: transparent !important;
    -webkit-text-stroke: 2px var(--accent-color);
}

.project .card{
    width: 100% !important;
    border-radius: 23px;
    overflow: hidden;
}

.project .card-body{
    background-color: var(--accent-color);
}

.project .card img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project .card-img-top{
    overflow: hidden;
    border-bottom: 1px solid #fff;
}

.project .card img:hover{
    scale: 1.1;
    transition: .4s;
}

.card .btn{
    background-color: var(--primary-color);
    color: #fff;
}

.card .btn:hover{
    background-color: var(--primary-hover);
    transition: .3s;
}

.splide__pagination {
  bottom: -30px !important;  /* alta kaydırabilirsin */
  gap: 8px !important;       /* noktalar arasındaki boşluk */
}

/* Noktaların kendisi */
.splide__pagination__page {
  width: 12px !important;
  height: 12px !important;
  background: var(--accent-color) !important;   
  transition: background 0.3s, transform 0.3s;
}
.splide__pagination__page.is-active {
  background: rgb(255, 255, 255);
}

/* Ortak stil */
.splide__arrow {
  background: rgb(77, 208, 225) !important;   /* arka plan rengi */
  border-radius: 50%;            /* yuvarlak buton */
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.3s;         /* ok rengi */
  font-size: 18px;
}

/* Üzerine gelince */
.splide__arrow:hover {
  background: var(--primary-hover);
}

/* Sol ok */
.splide__arrow--prev {
  left: 10px;   /* sol kenara uzaklık */
}

/* Sağ ok */
.splide__arrow--next {
  right: 10px;  /* sağ kenara uzaklık */
}


@media(max-width: 1025px){
    .splide__slide span{
        font-size: 12px;
    }
    .splide__arrow{
        width: 30px;
        height: 30px;
    }
    .splide__pagination{
        bottom: -20px;
    }
    .project-title{
        font-size: 50px;
    }
}

/* *** PROJECT END *** */

/* *** TONOZ START *** */

.tonoz-wrap{
    background: url(../img/tonoz.png);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
    height: 90vh;
}

.tonoz{
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0px);
}

.tonoz-inner{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tonoz.aos-animate{
    animation: blurAnim .5s forwards;
}

@keyframes blurAnim {
  from { backdrop-filter: blur(0); }
  to { backdrop-filter: blur(5px); }
}

#tonoz-title{
    font-size: 35px;
}

.tonoz-photo img{
    /* ekle */
    max-height: 430px;
    width: auto;
}

.tonoz-photo{
    display: flex;
    justify-content: center;
    align-items: center;
}

.tonoz-photo-inner{
    overflow: hidden;
    border-radius: 25px;
    border: 2px solid #fff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.tonoz-photo img:hover{
    scale: 1.1;
    transition: .4s;
}

@media (min-width: 768px) and (max-width: 1024px){
    
}

/* *** TONOZ END *** */

/* *** MAKİNA START *** */

.splide-2 img {
    border-radius: 12px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 3px solid #fff;
}

#makina-title::before{
    left: 0 !important;
}

/* *** MAKİNA END *** */

/* *** PARA KASASI START *** */


.splide-3{
    display: flex;
    justify-content: center;
    align-items: center;
}

#para-kasasi-photo img{
    height: 800px !important;
    width: auto !important;
}

#image-slider-3 .splide__pagination {
  bottom: 100px !important;  /* alta kaydırabilirsin */
  gap: 8px !important;       /* noktalar arasındaki boşluk */
}

#para-kasasi-title{
    font-size: 65px;
}

.list-dot::before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  border-radius: 50%;
  background: linear-gradient(135deg, #4DD0E1, #0097A7);
  margin-right: 10px;
}

/* *** PARA KASASI END *** */

/* *** SUPURGE START *** */

#supurge-title{
    font-size: 55px;
}

#supurge-photo img{
    height: 800px !important;
}

/* *** SUPURGE END *** */

/* *** OZEL MAKINA START *** */

#ozel-yikama-photo img{
    height: 500px !important;
}

#ozel-yikama-title{
    font-size: 50px;
}

/* *** OZEL MAKINA END *** */

/* *** YEDEK PARCA START *** */

.yedek-parca-splide img{
    object-fit: cover;
}

/* *** YEDEK PARCA END *** */

/* *** NEDEN START *** */

.neden{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
    padding: 35px 25px;
    border: 3px solid #fff;
    border-top-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(5px);

  --x: 50%;
  --y: 50%;

  border-radius: 16px;
    box-shadow: 0 0 15px rgba(77, 208, 225, 0.4);
}

.neden::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at var(--x) var(--y),
    rgba(0, 255, 229, 0.619),
    transparent 95%
    
  );

  opacity: 0;
  transition: opacity 0.3s;
}

.neden:hover::before {
  opacity: 1;
}

.neden-header{
    display: flex;
    justify-content: center;
}

.neden-ikon{
    background-color: #4dd0e177;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 12px;
}

#neden-title{
    font-size: 85px;
}

/* *** NEDEN END *** */

/* *** FOOTER START */

.my-container{
    width: 95%;
    margin: 0 auto;
}

footer{
    background-color: #4dd0e17e;
    backdrop-filter: blur(4px);
    overflow: hidden !important;
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
    border-top: 2px solid var(--accent-color);
    border-left: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    position: relative;
  --x: 50%;
  --y: 50%;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

footer::after{
  content: "";
  position: absolute;

    filter: drop-shadow(0 0 5px var(--accent-color));
}

footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at var(--x) var(--y),
    rgba(0, 255, 229, 0.619),
    transparent 60%
    
  );

  opacity: 0;
  transition: opacity 0.3s;
}

footer:hover::before {
  opacity: 1;
    pointer-events: none;

}

.logo-wrap{
    width: 100%;
    height: 150px;
}

.logo-wrap img{
    width: 100%;
    height: 100%;
}

footer a:hover{
    background-color: transparent !important;
    color: #000 !important;
}

.faal-footer{
    color: #000 !important;
}

.taha:hover{
    color: coral !important;
    transition: .3s;
}

/* ******* GENEL KISIMLAR START ******* */

.content-block, .content-media{
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-block__title{
    font-size: 25px;
    font-weight: 800;
    position: relative;
    color: #fff;
}

.content-block__title::before{
    content: '';
    position: absolute;
    height: 3px;
    width: 340px;
    background-color: #ffffff;
    bottom: -12px;
    right: 0;
}

.content-block__text{
    font-size: 16px;
    font-weight: 600;
    text-align: justify;
    color: #ffffff;
    width: 80%;
}

section{
    height: 100vh;
}

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

/* ******* GENEL KISIMLAR END ******* */

/* tablet */

@media (min-width: 768px) and (max-width: 1025px){
    section{
        height: 55vh !important;
    }
    #ozel-yikama-title{
        font-size: 35px;
    }
    #supurge-title{
        font-size: 40px;
    }
    #para-kasasi-title{
        font-size: 45px;
    }
    .tonoz-photo img{
        width: 400px;
        height: auto;
    }
    #tonoz-title{
        font-size: 25px;
    }
}

/* mobil */

@media(max-width: 768px){
    /* genel kısımlar */
    .hizmetler{
        height: auto !important;
    }
    .content-media{
        margin-top: 50px;
    }
    /* hakkimizda */
    .about-wrap{
        padding: 50px 0;
        margin-bottom: 50px;
    }
    .about{
        padding: 50px 0;
        background: url('../img/bg-1-mobil.svg');
        background-size: cover;
    }
    .about-title{
        font-size: 25px;
    }
    .content-block,#about-content{
        height: 100%;
    }
    .content-block__title{
        font-size: 20px;
    }
    .content-block__title::before{
        width: 200px;
    }
    .content-block__text{
        width: 100%;
        margin: 15px 0 !important;
    }
    .about-button{
        width: 150px;
        font-size: 16px !important;
    }
    #hakkimizda-title{
        font-size: 40px;
    }
    #hakkimizda-photo img{
        height: 350px !important;
    }

    /* project */
    #project-title{
    font-size: 60px;
    }

    /* neden */
    #neden-title{
        font-size: 35px;
    }
    .neden{
        margin-bottom: 20px;
        padding: 20px 10px;
    }

    /* project */
    .project-wrap{
        height: 600px;
        padding: 50px 0;
    }

    /* tonoz */
    .tonoz-wrap{
        padding: 100px 0;
        height: 100vh;
    }
    #tonoz-title{
        font-size: 25px;
    }
    .tonoz-photo img{
        height: 250px;
    }
    .tonoz-photo{
        margin-top: 25px;
    }
    
    /* makina ve para kasasi*/
    #para-kasasi-title{
        font-size: 35px;
    }
    #para-kasasi-photo img{
        height: 600px !important;
    }
    .makina-wrap, .para-kasasi-wrap{
        padding: 75px 0;
    }

    /* supurge */
    #supurge-title{
        font-size: 35px;
    }
    #supurge-photo img{
        width: 100%;
        height: auto !important;
    }

    /* ozel-yikama */
    #ozel-yikama-title{
        font-size: 25px;
    }

    /* footer */
    footer{
        border-top-left-radius: 30px;
        border-top-right-radius: 30px;
    }
    .logo-wrap{
        height: 125px;
    }

    /* sidebar */
    .sidebar{
        background-color: #8bccd3e6;
        width: 70% !important;
        border-left: 3px solid #fff !important;
        padding: 20px !important;
    }
    .faal{
        background-color: transparent;
    }
}

/* *** BREADCRUMB START *** */

.header-2{
    background: url(../img/kapak-5.png);
    background-position: bottom;
    background-size: cover;
    background-attachment: fixed;
    height: 50vh;
    position: relative;
    z-index: 2;
}

.header-2::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #021b327a;
    z-index: 3;
    backdrop-filter: blur(3px);
}

.breadcrumb-item i{
    color: var(--accent-color);
}

ol{
    margin: 0 !important;
}

.breadcrumb-start{
    color: #ccc !important;
    text-decoration: none;
    font-weight: bold;
}

.breadcrumb-start:hover{
    color: #fff !important;
    transition: .3s;
}

.breadcrumb-item{
    color: #fff !important;
    font-weight: bold;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: ">";
  color: #fff !important;
}

.baslik-wrapper{
    position: relative;
    padding: 125px 0 50px;
    height: 50vh !important;
    z-index: 1029 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between;
}

.baslik-title h1{
    font-weight: 800;
    font-size: 60px;;
    text-shadow: 3px 3px var(--accent-color);
    -webkit-text-stroke: 1px var(--accent-color);
}

.baslik-content p{
    color: #dadada;
    font-weight: 600;
    font-size: 24px;
}

@media(max-width: 1025px){
    .baslik-wrapper{
        height: 30vh !important;
    }
    .header-2{
        height: 30vh !important;
    }
    .baslik-title h1{
        font-size: 24px;
    }
    .baslik-content p{
        font-size: 18px;
    }
}


/* *** BREADCRUMB END *** */

/* *** FAQ START *** */

#faq-title{
    font-size: 45px;
}

 .faq-list{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.faq-item {
  background: #4dd0e1a3;
  color: #fff;
  backdrop-filter: blur(2px);
  border-radius: 15px;
  padding: 20px;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255);
  width: 85%;
  margin-top: 15px;
}

.faq-item:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.faq-question {
    width: 100%;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.faq-question-text{
    width: 97%;
}

.faq-question-icon{
    width: 3%;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  opacity: 0;
} 

/* *** FAQ END *** */

/* *** HİZMETLER START *** */

#hizmetler-title{
    font-size: 65px;
}

.card {
    position: sticky;
    top: 125px;
    margin-bottom: 50px;
    max-height: 400px;
    border-radius: 20px !important;
    background: rgba(101, 173, 232, 0.05);
    backdrop-filter: blur(20px);
    border: 3px solid #4DD0E1;
}

.card.is-behind {
  background-color: red !important;
}

.card__inner {
  will-change: transform;
  border-radius: 14px;
  display: flex;
  overflow: hidden;
  transform-origin: center top;
}

.cards3 {
  width: 100%;
  display: grid;
  grid-template-rows: repeat(var(--cards-count), var(--card-height));
  padding: 80px 0;
}

.card__image-container {
  display: flex;
  width: 40%;
  flex-shrink: 0;
}

.card__image {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  aspect-ratio: 1;
  border-radius: 15px;
}

.card__content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.card__title {
  padding: 0;
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  color: #ffffff;
}

.card__description {
  line-height: 1.4;
  font-size: 20px;
  color: #ffffff;
  margin-top: 25px;
}

.space {
  height: 90vh;
}

.space--small {
  height: 40vh;
}

.card__button{
    margin-top: 20px;
}

.card__button a{
    margin-top: 20px;
    text-decoration: none;
    color: #fff;
    background-color: var(--primary-color);
    padding: 8px 16px;
    font-size: 24px;
    border-radius: 8px;
    border: 1px solid #fff;
}

.card__button a:hover{
    background-color: var(--primary-hover);
    transition: .3s;
}

@media (max-width: 600px) {
  .card__inner {
    flex-direction: column;
  }

  .card__image-container {
    width: 100%;
  }

  .card__title {
    font-size: 32px;
  }

  .card__description {
    font-size: 16px;
  }

  .card__content {
    padding: 30px 20px;
  }
  #hizmetler-title{
    font-size: 50px;
  }
  .card{
    max-height: 100%;
  }
}

/* *** HİZMETLER END *** */

/* *** İLETİŞİM START *** */

.projects-page,
.project-detail{
  height: auto;
  min-height: 0;
  padding: 80px 0 120px;
  color: #fff;
}

.projects-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.project-item{
  border: 1px solid #4DD0E1;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(101, 173, 232, 0.05);
}

.project-item__cover{
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.project-item__cover img,
.project-detail__intro img,
.project-detail__gallery img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-item__body{
  padding: 18px;
}

.project-item__body h2{
  font-size: 24px;
  margin-bottom: 12px;
}

.project-item__link,
.blog-card__link{
  display: inline-block;
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  background-color: #4DD0E1;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.project-detail__intro{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 50px;
}

.project-detail__title{
  font-size: 48px;
  margin-bottom: 20px;
}

.project-detail__intro p{
  font-size: 19px;
  line-height: 1.7;
}

.project-detail__work{
  border: 1px solid #4DD0E1;
  border-radius: 10px;
  padding: 24px;
  background: rgba(101, 173, 232, 0.05);
}

.project-detail__work h3{
  font-size: 28px;
  margin-bottom: 14px;
}

.project-detail__work p{
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.project-detail__intro img{
  height: 300px;
  min-height: 0;
  border-radius: 10px;
  border: 1px solid #4DD0E1;
}

.project-detail__gallery{
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-auto-rows: 240px;
  gap: 16px;
}

.project-detail__gallery figure{
  position: relative;
  margin: 0;
  border: 1px solid #4DD0E1;
  border-radius: 10px;
  overflow: hidden;
}

.project-detail__gallery figure:first-child{
  grid-row: span 2;
}

.project-detail__gallery figcaption{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 12px;
  color: #fff;
  background: rgba(0,0,0,.55);
}

@media (max-width: 900px){
  .projects-grid,
  .project-detail__intro{
    grid-template-columns: 1fr;
  }

  .project-detail__gallery{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px){
  .project-detail__intro img{
    height: 240px;
  }

  .project-detail__gallery{
    grid-template-columns: 1fr;
  }

  .project-detail__gallery figure:first-child{
    grid-row: span 1;
  }
}

.neden-biz{
    padding: 150px 0;
}

.iletisim-layer{
    height: 650px;
}

.form-box, .social-box{
    background-color: var(--accent-color);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #fff;
}

.form-box{
    height: 100%;
}

.form-box span{
    font-size: 14px;
}

.form-title{
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

input,textarea{
    width: 100%;
    padding: 12px;
    margin-bottom: 1rem;
    border-radius: 8px;
    background: #E6F7FB; /* çok açık mavi */
    border: 1px solid #BFEAF3;
    color: #03343D;
}

textarea{
    height: 150px;
}

.form-box button{
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding: 6px 0;
}

.harita-social{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.harita-box{
    height: 70%;
}

.harita{
    width: 100% !important;
    height: 100% !important;
    border-radius: 15px !important;
}

.social-box{
    width: 100%;
    height: 25%;
}

.social-inner{
    display: flex;
    justify-content: flex-start;
}

.social{
    background-color: var(--primary-color);
    border-radius: 12px;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 12px;
}

.social:hover{
    background-color: var(--primary-hover);
    transition: .3s;
}

.social i{
    color: #fff;
    font-size: 18px;
}

#whatsapp{
    font-size: 22px;
}

.social-box h4{
    color: #fff;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 20px;
}

@media(max-width: 1025px){
    .form-layer{
        height: 750px;
        margin-bottom: 25px;
    }
}

/* *** İLETİŞİM END *** */

/* *** HIZMET DETAY START *** */

/* giriş kısmı */

.servis-detay{
    padding: 90px 60px 120px;
    color: #fff;
}

.servis-detay-giris{
    border: 1px solid var(--accent-color);
    border-radius: 20px;
    margin-bottom: 100px;
    position: relative;
    overflow: hidden;
    padding: 1rem;
}

.servis-detay-giris::after{
    content: "";
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  
  width: 120%;
  height: 600px;

  background: radial-gradient(
    ellipse at center bottom,
    rgba(77, 208, 225, 0.45) 0%,
    rgba(77, 208, 225, 0.25) 30%,
    rgba(77, 208, 225, 0.1) 55%,
    transparent 75%
  );

  filter: blur(80px);
  pointer-events: none;
}

.servis-detay-giris-bolumler{
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servis-detay__baslik{
    font-size: 30px;
    font-weight: 800;
    text-shadow: 2px 2px #fff;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.5;
    text-align: center;
}

.servis-detay__slogan{
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 22px;
}

.servis-detay__buton{
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
  color: #fff;
  background-color: var(--primary-color);
  padding: 10px 18px;
  font-size: 22px;
  font-weight: 700;
  border-radius: 8px;
  border: 1px solid #fff;
}

.servis-detay__buton:hover{
  color: #fff;
  background-color: var(--primary-hover);
  transition: .3s;
}

.servis-detay__ana-gorsel{
  max-height: 500px;
  overflow: hidden;
}

.servis-detay__ana-gorsel img{
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* ozellik ve adım kısmı */

.servis-detay__ozellikler{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 55px;
}

.servis-detay__adimlar-baslik{
    text-align: center;
    font-weight: 700;

}

.servis-detay__adim,
.servis-detay__ozellik{
  position: relative;
}

.servis-detay__adim-inner,
.servis-detay__ozellik-inner{
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border-left: 3px solid #4DD0E1;
    border-top: 3px solid #4DD0E1;
    background: rgba(101, 173, 232, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.servis-detay__ozellik-inner{
    height: 225px;
}

.servis-detay__adim-inner{
    height: 175px;
}

.servis-detay__adim-inner::after,
.servis-detay__ozellik-inner::after{
    content: "";
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(
        circle,
        rgba(77, 208, 225, 0.5) 0%,
        rgba(77, 208, 225, 0.2) 40%,
        transparent 70%
    );
    filter: blur(40px);
}

.servis-detay__ortak{
  color: #fff;
  position: absolute;
  background-color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.servis-detay__ozellik-i{
  width: 70px;
  height: 70px;
  top: -20px;
  left: -20px;
  padding: 16px;
  z-index: 1;
  font-size: 35px;
}

.servis-detay__ozellik h3,
.servis-detay__adim h3{
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 12px;
  text-align: center;
}

.servis-detay__ozellik p,
.servis-detay__adim p{
  font-size: 17px;
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

.servis-detay__adimlar-baslik{
  font-size: 44px;
  margin-bottom: 30px;
}

.servis-detay__adim-listesi{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.servis-detay__adim-span{
  top: -22px;
  left: -22px;
  padding: 12px;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 34px;
  font-weight: 900;
  z-index: 1;
}


/* banner kısmı */

.servis-banner{
    height: 60vh;
}

.servis-banner__foto{
    background-image: var(--servis-banner__foto);
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
    border-top: 2px solid var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
}

.servis-banner__foto::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #b7b7b73b;
}

.servis_banner__icerik{
    position: relative;
    z-index: 1;
    width: 40%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 16px;
}

.servis-banner__baslik,
.servis-banner__yazi{
    color: #fff;
    font-weight: 600;
    text-align: center;
}

.servis-banner__baslik{
    font-size: 30px;
}

.servis-banner__yazi{
    font-size: 22px;
}

.servis-banner__baslik span,
.servis-banner__yazi span{
    color: var(--accent-color);
    font-weight: 800;
}

.banner-detay__ozellikler{
    width: 80%;
    display: flex;
    justify-content: space-around;
}

.banner-detay__ozellik{
    text-align: center;
    padding-right: 12px;
}

.banner-detay__ozellik i{
    font-size: 36px;
    color: var(--accent-color);
}

.banner-detay__ozellik h5{
    line-height: 1.5;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
}

/* banner-end */

/* media */

@media(max-width: 992px){
    .servis-detay{
        padding: 75px 45px 105px;
    }
    .servis-detay__ozellikler{
        gap: 8px;
    }
    .servis-detay__ozellik-i{
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    .servis-detay__ozellik h3{
        font-size: 16px;
    }
    .servis-detay__ozellik p{
        font-size: 14px;
    }
    .servis-banner__baslik{
        font-size: 24px;
    }
    .servis-banner__yazi{
        font-size: 18px;
    }
    .banner-detay__ozellik i{
        font-size: 32px;
    }
    .servis-detay__adimlar-baslik{
        font-size: 36px;
    }
    .servis-detay__adim-listesi{
        grid-template-columns: repeat(2, minmax(0, 1fr));;
    }
}

@media (max-width: 768px) {
    .servis-detay{
        padding: 60px 30px 90px;
    }
 }

@media (max-width: 576px) {
    .servis-detay{
        padding: 40px 20px 60px;
    }
    .servis-detay__ozellikler{
        grid-template-columns: repeat(1, minmax(0, 1fr));
        gap: 36px;
    }
    .servis-detay__ozellik-i{
        width: 76px;
        height: 76px;
        font-size: 40px;
    }
    .servis-detay__ozellik-inner{
        height: 175px;
    }
    .servis-detay__ozellik h3{
        font-size: 22px;
    }
    .servis-detay__ozellik p{
        font-size: 16px;
    }
    .servis_banner__icerik{
        width: 100%;
    }
    .servis-banner__foto::before{
        background-color: #5d5d5db8;
    }
    .servis-detay__adim-listesi {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
    .servis-detay__adim-span {
    top: -20px;
    left: -20px;
    padding: 12px;
    width: 60px;
    height: 60px;
    font-size: 38px;
}
 }



.form-alert {
  border-radius: 6px;
  margin: 0 12px 16px;
  padding: 12px 14px;
  font-weight: 700;
}

.form-alert--success {
  background: #d3f9d8;
  color: #0b7285;
}

.form-alert--error {
  background: #ffe3e3;
  color: #8a041a;
}

.blog-page,
.blog-detail {
  padding: 80px 0 120px;
  color: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.blog-card {
  border: 1px solid #4DD0E1;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(101, 173, 232, 0.05);
}

.blog-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__image img,
.blog-detail__cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  padding: 20px;
}

.blog-card time,
.blog-detail time {
  display: block;
  color: #4DD0E1;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-card h2 {
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 12px;
}

.blog-card p {
  line-height: 1.7;
}

.blog-detail__header {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.blog-detail__header h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.blog-detail__header p {
  font-size: 20px;
  line-height: 1.7;
}

.blog-detail__cover {
  max-height: 460px;
  border: 1px solid #4DD0E1;
  border-radius: 10px;
  margin-bottom: 36px;
}

.blog-detail__content {
  max-width: 860px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.85;
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .blog-detail__header h1 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

.contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* *** HIZMET DETAY END *** */


