* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BANNER BAŞLANGIÇ */

#banner {
  height: 100vh;
  position: relative;
}

#banner .banner-bg {
  width: 100%;
  height: 100%;
  background-color: antiquewhite;
  background-image: url("images/bileycienver.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  filter: blur(20px);
}

#banner .banner-img {
  position: absolute;
  width: 60%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 15px;
  box-shadow: 0 0 10px black;
}

#banner .banner-img img {
  width: 100%;
  border-radius: 15px;
}

#banner .banner-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/* BANNER BİTİŞ */

/* NAVBAR BAŞLANGIÇ */

#navbar {
  width: 90%;
  top: 10px;
  border-radius: 40px;
}
#navbar button {
  padding: 10px 15px;
  border-color: white;
  color: white;
  transition: all 0.3s;
}

#navbar button:hover {
  background-color: white;
  color: black;
}

#navbar #navbarNavAltMarkup .nav-link {
  color: white;
  transition: all 0.3s;
  position: relative;
  margin-left: 10px;
}

#navbar #navbarNavAltMarkup .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease; /* Animasyon */
}

#navbar #navbarNavAltMarkup .nav-link:hover::after {
  width: 100%;
}

/* NAVBAR BİTİŞ */



/* HİZMETLERİMİZ BAŞLANGIÇ */
#hizmetlerimiz{
    position: relative;
}
#hizmetlerimiz .col-lg-6{
  position: relative;
  top:50px;
}
#hizmetlerimiz .services ul{
    list-style: none;
}

#hizmetlerimiz .services ul li{
    margin-bottom: 10px;
    border-bottom: 1px solid grey;
}

#hizmetlerimiz .services ul li:nth-last-child(1){
    margin-bottom: 10px;
    border: none;
}


#hizmetlerimiz .services-images img{
    width: 100%;
}


/* HİZMETLERİMİZ BİTİŞ */


/* YOUTUBE VİDEO BAŞLANGIÇ */
#youtube-video{
    position: relative;
    top: 70px;
}

#youtube-video iframe{
    width: 100%;
    height: 450px;
    border-radius: 30px;
    box-shadow: 0 0 20px grey;
}

/* YOUTUBE VİDEO BİTİŞ */

/* ÜRÜNLER BAŞLANGIÇ */
#urunler .carousel-inner{
  height: 450px;
}
/* ÜRÜNLER BİTİŞ */




/* FORM BAŞLANGIÇ */
#form{
  background-image: url("images/form-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  padding: 0;
}

#form .form-filter{
  background-color: rgba(0, 0, 0, 0.342);
}

#form .form-group{
  background-color: black;
  padding: 50px 25px;
  border-radius: 25px;
}

#form .form-group h2{
  text-align: center;
  color: #fff;
  margin-bottom: 20px;
}

#form .form-group input , #form .form-group textarea{
  width: 100%;
  display: inline-block;
  margin-bottom: 25px;
  padding: 5px 15px;
  border-radius: 15px;
}

#form .form-group textarea{
  height: 120px;
}

#form .form-group .form-button{
  background-color: #fff;
  color: black;
  width: 35%;
  display: inline-block;
  margin: 0 auto;
  transition: all 0.5s;
}

#form .form-group .form-button:hover{
  background-color: rgb(255, 166, 0);
}

/* FORM BİTİŞ */

/* İLETİŞİM BAŞLANGIÇ */
#iletisim {
  background-color: black;
  color:#fff
}

#iletisim .contact-border{
  border-right: 2px solid #fff;
}

#iletisim .social .content-link{
  width: 55px;
  height: 55px;
  text-align: center;
  margin:0 25px;
  font-size: 35px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.5s;
}

#iletisim .social .content-link a{
  color:black;
}

#iletisim .social .content-link:hover{
  background-color: rgb(255, 166, 0);
}


/* İLETİŞİM BİTİŞ */


/* FOOTER BAŞLANGIÇ */
footer{
  background-color: rgb(255, 166, 0);
  font-weight: 500;
  color: black;
}
footer a{
  color: black;
  font-size: 1.1rem;
  text-decoration: none;
}
/* FOOTER BİTİŞ */







/* RESPONSİVE UYGULAMALARI */
@media only screen and (max-width: 970px) {
    #banner .banner-img {
      width: 75%;
    }

    #navbar #navbarNavAltMarkup .nav-link::after{
        width: 0;
    }
    #navbar #navbarNavAltMarkup .nav-link:hover::after{
        width: 40%;
    }
  }
  
@media only screen and (max-width: 720px) {
  #banner .banner-img {
    width: 90%;
  }

  #navbar #navbarNavAltMarkup .nav-link::after{
      width: 0;
  }
  #navbar #navbarNavAltMarkup .nav-link:hover::after{
      width: 40%;
  }

}

@media only screen and (max-width: 767px) {

  #iletisim .contact-border{
    border-right: none;
    border-bottom: 2px solid #fff;
    margin-bottom: 50px;
  }

}
  