@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");
body {
  margin: 0;
  padding: 0;
}

.reset, div.services > div > div:nth-child(2) > h4, div.slide > h1 {
  margin: 0;
  padding: 0;
}

.positionReset, div.slide::before {
  position: absolute;
  left: 0;
  top: 0İ;
}

@keyframes sliderEffect {
  0% {
    background-size: 100% auto;
  }
  50% {
    background-size: 200% auto;
  }
  100% {
    background-size: 100% auto;
  }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 11px;
    background-color: darkred;
    
}

.menu-icon{
    font-size: 16px;
    color: white;
    background-color: darkred;
    cursor: pointer;
    display: none;
}

.menu{
    list-style: none;
    display: flex;
    gap: 20px;
}

li {
            a {
                text-decoration: none;
                color: white;
                font-size: 18px;
                padding: 10px;
            }
        }

@media screen and (max-width: 768px) {
        .navbar {
        flex-direction: column;
        align-items: flex-start;
         }
         .menu.active {
          display: flex;
         }

        .menu-icon {
            display: block; 
        }
        .menu {
            flex-direction: column; 
            display: none; 
        }
        li {
                text-align: left;
            }
        }

nav > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
  background-color: darkred;
}

nav > ul > li > a {
  display: block;
  color: white;
  padding: 1rem;
  text-decoration: none;
}
nav > ul > li > a:hover {
  background-color: #333;
  color: #fafafa;
}

div.slide {
  width: 100%;
  height: 100vh;
  background-color: #333;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  overflow: hidden;
  background-image: url("1.png");
  position: relative;
  animation: sliderEffect 160s linear infinite;
  overflow: hidden;
}
div.slide::before {
  content: "";
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}
div.slide > h1 {
  z-index: 1;
  color: white;
  font-size: 36px;
}

div.services {
  width: 80%;
  margin: 3rem auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-content: center;
  flex-wrap: wrap;
}
div.services > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  padding: 0.5rem;
  border: 1px solid #333;
  margin: 0.5rem;
  border-radius: 0.2rem;
}
div.services > div > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
}
div.services > div > div:nth-child(1) {
  color: #333;
  font-size: 36px;
}
div.services > div > div:nth-child(2) > h4 {
  margin: 0.5rem 0;
  font-size: 22px;
  color: #333;
}
div.services > div > div:nth-child(3) {
  text-align: justify;
  color: #333;
}/*# sourceMappingURL=main.css.map */

footer > div {
    margin: 0;
    padding: 0;
    background-color: red;
    color: white;
    display: center;
    text-align: center;
}
footer > div > a{
    color: #fafafa;
    font-weight: bold;
    font-size: 100%;
}
/* WhatsApp Butonu */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  font-size: 24px;
  padding: 12px 14px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-button:hover {
  transform: scale(1.1);
}

/* Mobil görünüm için özel stil */
@media (max-width: 768px) {
  .whatsapp-button {
    bottom: 15px;
    right: 15px;
    font-size: 20px;
    padding: 10px 12px;
  }
}
