* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}
body.no-scroll {
  overflow: hidden;
}

.left-info, .right-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  padding: 3px 20px;
  border-bottom: 1px solid #ddd;
  position: relative;
  z-index: 100;
}
.logo-img {
  height: 70px;
}

.menu {
  display: flex;
  gap: 20px;
  align-items: center;
}

.menu a {
  text-decoration: none;
  color: #333;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.menu a:hover,
.menu a.active {
  background-color: #eaeaea;
  border-radius: 4px;
}

.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

.language-selector {
  margin-right: 20px;
  position: relative;
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropbtn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropbtn img,
.dropdown-content img {
  width: 24px;
  height: 16px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  border: 1px solid #ddd;
  z-index: 1;
  top: 100%;
  left: 0;
}

.dropdown-content a {
  color: black;
  padding: 10px 12px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.button {
  background-color: #007bff;
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
}

.button:hover {
  background-color: #0056b3;
}

.content-section h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
  border-left: 5px solid #444; 
  padding-left: 10px;
}

.content-section h3 {
  font-size: 24px;
  margin-top: 40px;
  color: #222;
  border-left: 5px solid #444; 
  padding-left: 10px;
}

.content-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.content-section p {
  margin-bottom: 15px;
}

.footer {
  background-color: #222;
  color: white;
  padding: 10px;
  font-size: 24px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-container > div {
  flex: 1 1 200px; 
}

.footer h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.footer p,
.footer a {
  margin: 4px 0;
  line-height: 1.4;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding: 10px;
  font-size: 13px;
  border-top: 1px solid #444;
  color: #ccc;
}

@media (max-width: 768px) {
  .language-selector {
    width: 100%;
    padding: 10px 20px;
    margin: 10px 0;
    display: flex;
    justify-content: center;
  }
}
  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .language-selector {
    margin-top: 10px;
  }

.animated-underline {
  display: inline-block;
  position: relative;
  cursor: default;
}

.animated-underline::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background-color: #444; 
  transition: width 0.4s ease;
}

.animated-underline:hover::after {
  width: 100%;
}

.submit-btn {
  display: block;
  width: 100%;
  padding: 14px;
  font-size: 16px;
  background-color: #1e73be;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background-color: #155a99;
}

@media (max-width: 600px) {
  .contact-form {
    padding: 20px;
  }

  .contact-form h2 {
    font-size: 20px;
  }
}

.menu .dropdown {
  position: relative;
  display: inline-block;
}

.menu .dropbtn {
  background-color: transparent;
  border: none;
  color: #333;
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
}

.menu .dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  z-index: 1;
  top: 100%;
  left: 0;
  border-radius: 6px;
}

.menu .dropdown-content a {
  color: #333;
  padding: 10px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.3s ease;
}

.menu .dropdown-content a:hover {
  background-color: #f1f1f1;
}

@media (min-width: 769px) {
  .menu .dropdown:hover .dropdown-content {
    display: block;
  }
}

.top-bar-extras {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: auto;
}

@media (max-width: 768px) {
  .top-bar-extras {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 10px 20px;
  }

  .language-selector .dropbtn {
    width: 100%;
    justify-content: center;
  }
}



@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

.yorumlar-section {
  padding: 60px 20px;
  background-color: #f4f4f4;
  border-top: 1px solid #ddd;
}

.yorumlar-section h2 {
  text-align: center;
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
}

.yorumlar-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.yorum {
  background-color: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.yorum:hover {
  transform: translateY(-4px);
}

.yorum-ust {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.yildizlar {
  color: #ffc107;
  font-size: 18px;
}

.kullanici {
  color: #555;
  font-size: 14px;
  font-style: italic;
}

.yorum p {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}
.cevap {
  background-color: #f0f0f0;
  border-left: 4px solid #2b7de9;
  padding: 12px 16px;
  margin-top: 15px;
  border-radius: 8px;
}

.cevap-ust {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: bold;
  color: #2b7de9;
  margin-bottom: 6px;
}

.cevap p {
  font-size: 15px;
  color: #333;
  margin: 0;
}
.yorumlar-section {
  padding: 20px;
}

.yorum {
  border: 1px solid #ddd;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 8px;
  background-color: #f9f9f9;
}

.yorum-ust {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-weight: bold;
}

.cevap {
  margin-top: 10px;
  margin-left: 15px;
  padding-left: 10px;
  border-left: 3px solid #ccc;
  background-color: #f0f0f0;
}

.cevap-ust {
  font-size: 0.9em;
  color: #666;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .yorum-ust {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 768px) {

}

.menu {
  display: flex;
  gap: 20px;
  list-style: none;
}

.menu a {
  text-decoration: none;
  color: #333;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}


@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background: white;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.1);
    z-index: 999;
  }

  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  text-decoration: none;
  color: #333;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
  }
  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  .overlay.show {
    display: block;
  }

  body.no-scroll {
    overflow: hidden;
  }
}
.menu {
  z-index: 1001;
}

.overlay {
  z-index: 999;
}
@media (max-width: 768px) {
  .language-selector .dropdown-content {
    display: none;
    position: static;
    border: none;
    box-shadow: none;
    background: #fff;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1002;
  }

  .language-selector.active .dropdown-content {
    display: block;
  }
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icons a img {
  transition: transform 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
}

.logo {
  justify-self: start;
}

.menu-toggle {
  display: none;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .menu {
    display: none;
    flex-direction: column;
    gap: 10px;
  }

  .menu.show {
    display: flex;
  }
}

.desktop-only {
  display: flex;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  padding: 15px;
  border-top: 1px solid #ccc;
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    height: 3px;
    background: #333;
    width: 25px;
    border-radius: 2px;
  }

  .mobile-menu.show {
    display: flex;
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #25D366;
  color: white;
  padding: 10px 15px;
  border-radius: 40px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  text-decoration: none;
  font-family: sans-serif;
  font-size: 16px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.05);
}

.whatsapp-float img {
  width: 30px;
  height: 30px;
}

.whatsapp-text {
  font-weight: bold;
}
.login-link {
  display: inline-flex;
  align-items: center;
  color: #626a73;
  text-decoration: none;
  font-weight: 500;
  gap: 6px;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #ffffff;
}
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer p,
.footer a {
  font-size: 14px;
  color: #ddd;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-icon {
  width: 18px;
  vertical-align: middle;
  margin-right: 8px;
  filter: brightness(0.9);
}

.footer-column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  height: 100%;
}
.footer .social-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
}
.footer .social-icons img {
  width: 24px;
  height: 24px;
}
.footer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1.4;
}
.phone-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff; 
  transition: width 0.3s ease;
}

.phone-link:hover::after {
  width: 100%;
}
.email-link {
  position: relative;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.email-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #ffffff; 
  transition: width 0.3s ease;
}

.email-link:hover::after {
  width: 100%;
}
.contact-info a {
  color: #007BFF;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
.menu a {
  cursor: pointer;
}
@media (max-width: 768px) {
  .menu { flex-direction: column; }
  
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.gallery[data-aos] {
  opacity: 1;
  transform: translateY(0);
}

.gallery a {
  display: block;
  overflow: hidden;
  border-radius: 10px;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery a:hover img {
  transform: scale(1.05);
}

.content-section h1,
.content-section h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  border-left: 5px solid #000000;
  padding-left: 10px;
}

.content-section p, .content-section li {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 15px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .content-section h1 {
    font-size: 1.6rem;
  }

  .content-section h3 {
    font-size: 1.3rem;
  }

  .content-section p,
  .content-section li {
    font-size: 15px;
  }
}

.video-thumbnail {
  position: relative;
  display: inline-block;
  overflow: hidden;
  cursor: pointer;
}

.video-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
}


.video-thumbnail .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.3s ease;
}

.video-thumbnail .play-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}


.video-thumbnail:hover img {
  transform: scale(1.05);
}

.video-thumbnail:hover .play-button {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.hero {
  position: relative;
  width: 100%;
  height: 70vh; 
  background: url('images/backround.png') center/cover fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.4);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  max-width: 90%;
  padding: 0 1rem;
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.5rem; 
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1rem; 
  margin-bottom: 1rem; 
}

.btn-hero {
  display: inline-block;
  padding: 0.6rem 1.2rem; 
  border: 2px solid #fff;
  border-radius: 4px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}

.btn-hero:hover {
  background: #fff;
  color: #333;
}

body {
  font-family: Arial, sans-serif;
}

form {
  width: 300px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 5px;
}

.info-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.info-block {
  margin-bottom: 40px;
}

.info-block h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2c3e50;
}

.info-block p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.benefits-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 15px;
}

.benefits-list li {
  background-color: #fff;
  padding: 10px 15px;
  border-left: 4px solid #1e1e1f;
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.carousel-section {
  width: 100%;
  max-width: 800px; 
  margin: 2rem auto;
  padding: 1rem;
  box-sizing: border-box;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 16 / 9; 
}

.swiper-slide img,
.swiper-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}
