@charset "UTF-8";

@font-face {
    font-family: 'livvic';
    src: url(../../library/font/livvic/Livvic-Black.ttf);
	font-display: swap;
}

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}


:root {
  --primary-color: #3e3f40;
  --secondary-color: #ff571a;
}


.taha{
    color: var(--secondary-color);
}

h1,h2,h3{
    font-family: 'livvic';
}

a{
    text-decoration: none !important;
}

.ara{
    display: block;
    width: 180px !important;
    padding:  8px;
    background-color: var(--secondary-color) !important;
    border: 2px solid #fff;
    border-top-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.ara:hover{
    background-color: rgb(255, 17, 0) !important;
    transition: .3s;
}

header, main, footer{
    overflow-x: hidden !important;
}


/* ***** header start ***** */
 
.navbar{
    margin: 0 auto;
    backdrop-filter: blur(5px);
    z-index: 55555;
    transition: .5s;
    background-color: rgba(61, 61, 61, 0.586);
}

 .navbar.scrolled {
    background-color: #212529 !important; /* Kaydırıldığında renk */
  }

#logo-wrap{
    height: 100px;
    width: auto;
}
#logo{
    width: 100%;
    height: 100%;
}

.dropdown-menu{
    background-color: var(--primary-color) !important;
}
.dropdown-item:hover{
    background-color: coral !important;
    transition: .3s;
}

.nav-item .faal::before{
    content: ' ';
    position: absolute;
    text-align: center;
    width: 100%;
    height: 3px;
    background-color: #fff;
    bottom: -1px;
    left: 0;
}

.nav-item{
    position: relative;
}

.nav-item::before{
    content: '';
    position: absolute;
    width: 0px;
    height: 3px;
    background-color: #fff;
    bottom: -1px;
    transition: .3s;
}

.nav-item:hover::before{
    width: 100%;
}

@media(max-width: 991px){
    #logo-wrap{
        height: 50px;
    }
    .navbar{
        backdrop-filter: blur(2px);
    }
    .sidebar{
        background-color: rgba(62, 63, 64, 0.473) !important;
        backdrop-filter: blur(20px);
        width: 78% !important;
        height: 100vh;
        border-left: 3px solid #fff !important;
    }
}

/* ***** header end ***** */

/* ***** carousel start ***** */

.carousel-item{
    height: 80dvh !important;
    position: relative;
}

.carousel-item img{
    height: 100%;
    width: 100%;
    object-fit: cover !important;
    object-position: top !important;
}

.carousel-content{
    background-color: rgba(255, 255, 255, 0.07);
    padding: 25px 0;
    width: 500px;
    backdrop-filter: blur(2px);
}

.sancak{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
} 

#yok{
    display:none !important;
}

.kapak-4{
    display: none !important;
}




@media(max-width: 991px){
    .carousel-item{
        height: 50vh !important;
    }
    #yok{
        display: flex !important;
    }
    .kapak-3{
        display: none !important;
    }
    .kapak-4{
        display: block !important;
    }
    .ara{
        width: 150px;
        padding: 6px;
    }
    .carousel-content{
        width: 250px;
    }
}

/* ***** carousel end ***** */

/* ***** urunler start ***** */

.urunler{
    width: 75%;
    margin: 0 auto;
    margin-top: -150px;
    background-image: url('../svg/brick-wall.svg');
}

.splide__slide{
    border-radius: 25px;
    border: 2px solid #fff;
    background-color: var(--primary-color);
    padding: 10px;
    overflow: hidden;
    height: 250px;
}

.splide__slide:hover{
    background-color: var(--secondary-color);
    transition: .4s;
}

.splide__slide a:hover  img{
    transform: scale(1.25) !important;
    transition: .4s;
}

.splide__slide a{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-decoration: none;
}

.splide__slide span{
    font-size: 20px;
    color: #fff;
    font-weight: 600;
}

.splide__slide img {
    width: 170px;
    height: 170px;
}

.splide__pagination {
  bottom: -30px;  /* alta kaydırabilirsin */
  gap: 8px;       /* noktalar arasındaki boşluk */
}

/* Noktaların kendisi */
.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: var(--secondary-color);   
  transition: background 0.3s, transform 0.3s;
}
.splide__pagination__page.is-active {
  background: rgb(255, 255, 255);
}

/* Ortak stil */
.splide__arrow {
  background: rgba(255, 255, 255, 0.5);   /* 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: rgba(255, 87, 26, 0.556);
}

/* 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: 991px){
    .urunler{
        margin-top: -50px;
    }
    .splide__slide{
        height: 140px;
    }
    .splide__slide img{
        width: 90px;
        height: 90px;
    }
    .splide__slide span{
        font-size: 12px;
    }
    .splide__arrow{
        width: 30px;
        height: 30px;
    }
    .splide__pagination{
        bottom: -20px;
    }
}

/* ***** urunler end ***** */

/* ***** hakkımızda start ***** */

.about{
    padding: 130px 0 !important;
    background-image: url('../svg/brick-wall.svg');
    color: #fff ;
}

.about-foto{
    display: flex;
    justify-content: center;
    align-items: center;
    object-fit: cover;
    padding: 15px;
}

.about-foto img{
    width: 90%;
    height: 90%;
    object-fit: cover;
}

.hakkimizda h3{
    font-family: sans-serif !important;
    content: '';
    position: absolute;
    font-weight: 800;
    font-size: 130px;
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary-color);            
    line-height: 0;
}

.hakkimizda span{
    font-family: sans-serif;
    position: relative;
    font-size: 60px;
    font-weight: 600;
    color: #fff;
    letter-spacing: -2px;
}

.span-wrap{
    position: relative;
    z-index: 2;
}

@media(max-width: 991px){
    .hakkimizda h3{
        font-size: 55px;
    }
    .hakkimizda span{
        font-size: 35px;
    }
    .about{
        padding: 90px 0 !important;
    }
}

/* ***** hakkımızda end ***** */

/* ***** info start ***** */

.info{
    background: url(../img/insaat.jpeg);
    height: 70vh;
    background-size: cover;
    position: relative;
    background-position: center;
}

.info::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    heighT: 100%;
    background-color: #212529e2;
    z-index: 1;
}

.info .container{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0 !important;
}

.info-inner{
    position: relative;
    z-index: 2;
    width: 70%;
    height: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.info h2{
    color: var(--secondary-color);
    font-size: 25px;
}

.row-span{
    color: #fff;
    font-size: 60px;    
    font-family: 'livvic';
    margin: 20px 0;
}

.info p{
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    text-align: center;
    border-bottom: 1px dashed #ccc;
}

@media(max-width: 991px){
    .info{
        height: 50vH;
    }
    .info-inner{
        width: 100%;
        height: 90%;
    }
    .info h2{
        font-size: 12px;
        padding: 0;
        margin: 0;
    }
    .row-span{
        font-size: 20px;
    }
    .info p{
        font-size: 14px;
    }
}

/* ***** info end ***** */


/* ***** counter start ***** */

.counter{
    background-image: url('../svg/brick-wall.svg');
}

.card-wrap{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    padding: 150px 0;
}

.counter .card{
    display: flex;
    align-items: center;
    border-radius: 15px !important;
    background-color: var(--primary-color) !important;
    border: 2px solid #fff !important;
}

.counter .card:hover{
    background-color: var(--secondary-color) !important;
    transition: .3s;
}

.card-body{
    text-align: center;
}

.card i{
    font-size: 120px;
    color: #fff;
}

.sayi{
    font-size: 50px;
    color: #fff;
}

.card h5{
    color: #fff;
}

@media(max-width:991px){
    .card{
        margin-bottom: 15px;
    }
}

/* ***** counter end ***** */

/* ***** footer start ***** */

footer a:hover{
    color: var(--secondary-color) !important;
    transition: .3s;
}

footer{
    overflow: hidden !important;
}

.logo-wrap{
    width: 100%;
    height: 150px;
}

.logo-wrap img{
    width: 100%;
    height: 100%;
}

/* ***** footer end ***** */

/* ************************* HAKKIMIZDA SAYFASI ************************* */

/* ***** breadcrumb start ***** */

.breadcrumb-wrap{
    background: url(../img/header.png);
    background-position: center;
    height: 200px;
}

.breadcrumb a{
    text-decoration: none !important;
    color: #fff;
}

.breadcrumb li{
    font-size: 24px;
}

.bread-content{
    height: 100px;
}

.breadcrumb li::after{
    content: '>';
}

.breadcrumb li:last-child::after{
    content: ' ';
}

.breadcrumb{
    width: 100%;
    height: 100%;
    display: flex;
    color: #fff;
    justify-content: center;
    align-items: center;
}

@media(max-width:991px){
    .breadcrumb li{
        font-size: 20px;
    }
    .breadcrumb-wrap{
        height: 120px;
    }
    .bread-content{
        height: 60px;
    }
}

/* ***** breadcrumb end ***** */

/* ***** faq start ***** */

.faq{
    background-image: url(../svg/brick-wall.svg);
    padding: 70px 0;
    overflow: hidden;
}

.accordion-item{
    margin-bottom: 20px !important;
}

.accordion-header button{
    font-size: 22px;
}

.accordion-body{
    font-size: 18px;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary-color) !important;
  color: white !important;
}

@media(max-width:991px){
    .faq{
        padding: 20px 0;
    }

    .accordion-header button{
        font-size: 16px;
    }

    .accordion-body{
        font-size: 12px;
    }

}

/* ***** faq end ***** */

/* ************************* İLETİŞİM SAYFASI ************************* */

/* ***** iletişim start ***** */

.iletisim-2{
    padding: 35px 0;
    background: url(../svg/brick-wall.svg);
}

.iletisim-2 h1{
    text-align: center;
    font-size: 35px;
    color: #fff;
}

.kisi h2{
    font-size: 22px;
    letter-spacing: 3px;
}

.kisi a{
    color: #fff;
    font-size: 25px;
}

.kisi p{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    word-spacing: 5px;
}

.kisi{
    border: 1px solid #fff;
    color: #fff;
    width: 30%;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 40px;
    border-radius: 12px;
    background-color: var(--primary-color);
}

.kisi:hover{
    background-color: var(--secondary-color);
    transition: .3s;
}

.kisiler{
    margin-top: 35px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    overflow: hidden;
}

@media(max-width: 576px){
    .kisi{
        width: 75%;
        padding: 20px;
    }

    .kisiler{
        gap: 20px;
    }
}

.contact{
    margin-top: 90px;
}
.map2{
    display: none;
}
.map-wrap{
    display: flex;
    justify-content: center;
}

@media(max-width: 991px){
    .map1{
        display: none;
    }
    .map2{
        display: block;
    }
}
.iletisim-2 button{
    background-color: var(--primary-color);
    color: #fff;
    padding: 8px;
    width: 120px;
    border-color: #fff;
}

.iletisim-2 button:hover{
    background-color:  var(--secondary-color);
    transition: .3s;
} 

/* ***** iletişim end ***** */

/* ************************* HİZMETLER SAYFASI ************************* */

/* ***** hizmetler sayfası ***** */

.urun-basliklari a{
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    position: relative;
    bottom: -26px;
    border-radius: 5px;
}

.urun-basliklari h1{
    color: var(--secondary-color);
}

.urun-basliklari a:hover{
    background-color: var(--secondary-color);
    transition: .3s;
}

.card-img{
    background-color: var(--primary-color);
    overflow: hidden;
}

.card-img:hover{
    background-color: var(--secondary-color);
    transition: .3s;
}

.card-img:hover img{
    transform: scale(1.05);
    transition: .3s;
}

@media(max-width: 991px){
    .urun-basliklari a{
        bottom: -40px;
    }
}

/* ***** hizmetler sayfasi end */

/* ***** desen sayfaları start ***** */

.desenler .card-img{
    height: 450px;
}

.desenler .card-img:hover{
    background-color: var(--primary-color) !important;
}

.desenler img{
    height: 100%;
    object-fit: cover;
}

.desenler .card-body a{
    position: relative;
    background-color: var(--primary-color);
    padding: 12px 24px;
    text-decoration: none;
    color: #fff;
    border-radius: 5px;
    bottom: -30px;
}

.desenler .card-body a:hover{
    background-color: var(--secondary-color) !important;
    transition: .3s;
}

.card-img-inner{
    overflow: hidden !important;
}

@media(max-width:991px){
    .desenler .card-img{
        height: 250px;
    }
    .desenler .card-body a{
        bottom: -10px;
    } 
    .desenler .card-body{
        height: 110px;
    }
}

/* ***** desen sayfaları end ***** */

/* ***** galeri sayfaları start ***** */

.kart{
    height: 550px;
    background-color: var(--primary-color);
    padding: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.kart:hover{
    background-color: var(--secondary-color);
    transition: .3s;
}

.galeri-foto{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    border: 2px solid #fff;
}

@media(max-width: 991px){
    .kart{
        height: 300px;
        padding: 12px;
    }
}