@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
}

a{
    text-decoration: none;
    color: #ffff;
}

header {
    background-color: #3498db;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 10px; /* Header yüksekliği artırıldı */
}



header nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 200px;
    background-color: #fff;
    padding: 0 20px; /* Kenarlardan iç boşluk verildi */
}

/* Logo ve memnuniyet resimlerini yan yana hizalama */
header nav .logo,
header nav .memnuniyet {
    flex: 1;
    text-align: center;
}

header nav .logo img,
header nav .memnuniyet img {
    max-width: 100%; /* Görsellerin maksimum genişliği belirlendi */
    height: auto;
}

/*Content*/
.content-section {
   
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 15px;
}

.content-container {
    max-width: 1100px;
    padding: 20px;
    text-align: center;
    
}

.content-container h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #000;
}

.content-container hr {
    width: 500px;
    height: 3px;
    background-color: #72CFE8;
    border: none;
    margin: 10px auto;
}

.content-container p {
    font-size: 1.5rem;
    color: #333;
    line-height: 1.6;
}

/*2nd Section*/
.content-container .content{
    margin-top: 50px;
    padding: 0 50px;
}

.content-container .content h2 {
    font-size: 1.8rem;
}
.content-container .content p {
    margin-top: 15px;
    font-size: 1.3rem;
}

/*Whatsapp*/

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 50px;
    right: 10px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128C7E;
}

.whatsapp-float img {
    width: 70%;
    height: 70%;
    border-radius: 50%;
}

/*video */
.video {
    /* background-color: red; */
    text-align: center;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 4px;
    height: 700px;
}

.container-vd {
    max-width: 1400px;
    width: 100%; 
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.container-vd hr {
    width: 500px;
    height: 3px;
    background-color: #72CFE8;
    border: none;
    margin: 10px auto;
}

.container-vd video {
    border-radius: 10px;
    margin-top: 25px;
    width: 100%; 
    height: auto;
    max-height: 600px; 
    object-fit: cover; 
}
/*Comment Section*/
.comment-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  
  .slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 25px;
  }
  
  .slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    text-align: center;
    font-style: italic;
    color: #555;
    border-radius: 10px;
  }
  
  .slide p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .slide span {
    font-weight: bold;
    color: #333;
  }
  
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 13px;
  }
  
  .prev {
    left: -5px;
  }
  
  .next {
    right: -5px;
  }

footer {
    background-color: #2c3e50; /* Koyu mavi arka plan */
    color: #ecf0f1; /* Açık renk yazı */
    padding: 40px 20px;
    font-family: 'Arial', sans-serif;
    border-top: 4px solid #3498db; /* Üstte mavi çizgi */
}
.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

/* Her Bir Bölüm Stili */
.footer-section {
    margin: 20px;
    min-width: 200px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #3498db; /* Başlık rengi */
    border-bottom: 2px solid #3498db; /* Başlık altı çizgi */
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-section ul li a {
    color: #ecf0f1; /* Link rengi */
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db; /* Link hover rengi */
}

/* Footer Alt Kısmı */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #34495e; /* Üstte ince çizgi */
    font-size: 14px;
    color: #bdc3c7;
}

/*Sticky Banner*/
.sticky-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3498db; /* Mavi arka plan */
    color: #fff; /* Beyaz yazı rengi */
    text-align: center;
    padding: 10px 0;
    z-index: 1000; /* Diğer içeriklerin üzerinde olması için */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1); /* Hafif gölge */
  }
  
  .sticky-banner a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Telefon ikonu ile metin arası boşluk */
  }
  
  .sticky-banner a i {
    font-size: 20px;
  }
  
  .sticky-banner a:hover {
    opacity: 0.9; /* Hover efekti */
  }
/*Responsive*/
@media (max-width: 768px) {
    header nav {
        flex-direction: row;
        height: 120px;
        gap: 10px;
        
    }

    header nav .logo img,
    header nav .memnuniyet img {
        max-width: 100%;
    }

    /*Section*/
    .content-section{
        padding: 0px;
    }
    .content-container {
        max-width: 100%;
        padding: 10px;
        
    }

    .content-container h2 {
        font-size: 1.5rem;
    }

    .content-container p {
        font-size: 1rem;
    }
    .content-container hr{
        width: 250px;
    }

    .content-container .content{
        padding: 0 20px;
    }

    .content-container .content h2{
        font-size: 1.2rem;

    }
    .content-container .content p {
        font-size: 1rem;
    }

    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 50px;
        right: 2px;
    }

    .whatsapp-float img {
        width: 60%;
        height: 60%;
    }
    .container-vd hr {
        width: 250px;
    }
    .container-vd video{
        width: 90%;
      }
    
    /*Slider*/
    .slide {
        padding: 10px;
      }
      .slide p {
        font-size: 16px;
      }
      .prev, .next {
        padding: 8px;
        opacity: 0.5;
        font-size: 10px;
      }
    footer {
        font-size: 0.8rem;
    }
}