/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

:root {
  --primary-color: #f47c20;
  --dark-bg: #000;
  --gray-bg: #50555a;
  --white: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar {
  background-color: var(--gray-bg);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
}

.top-bar a {
  color: var(--white);
  margin-right: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: var(--primary-color);
}

.btn {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--dark-bg);
}

/* Bootstrap btn-primary'yı tamamen override et */
.btn.btn-primary {
  background-color: var(--primary-color) !important;
  color: var(--white) !important;
  border: 1px solid var(--primary-color) !important;
  margin-left: 10px;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn.btn-primary:hover {
  background-color: var(--dark-bg) !important;
  color: var(--white) !important;
  border-color: var(--primary-color) !important;
}

/* Sticky Main Header */
.main-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: var(--dark-bg);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  padding: 4px 0;
  background-color: #1a1a1a;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.nav-bar {
  background-color: transparent;
  padding: 14px 0;
  transition: all 0.3s ease;
}

.logo img {
  height: 46px;
  width: auto;
  transition: all 0.3s ease;
}

.main-menu ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li a {
  color: var(--white);
  font-size: 15px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-menu ul li a:hover {
  color: var(--primary-color);
}

.has-dropdown {
  position: relative;
}

.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #111;
  min-width: 220px;
  flex-direction: column;
  z-index: 1000;
}

.has-dropdown .dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
}

.has-dropdown .dropdown li a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.menu-toggle {
  display: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
}

.lang-switch .btn.lang {
  background-color: var(--white);
  color: var(--dark-bg);
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 13px;
  transition: background 0.3s;
}

.lang-switch .btn.lang:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

@media (min-width: 769px) {
  .has-dropdown:hover .dropdown {
    display: flex;
  }
}

/* Scroll behavior */
body {
  scroll-behavior: smooth;
}












































.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  max-height: 768px;
  overflow: hidden;
  border-bottom: 4px solid transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.slider-container {
  display: flex;
  width: 300%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  height: 100%;
}
.slide {
  width: 100vw;
  height: 100%;
  flex-shrink: 0;
  position: relative;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.75);
  transition: transform 0.6s ease-in-out;
}
.slide.active img {
  transform: scale(1.05);
}
.slide-caption {
  position: absolute;
  top: 80%;
  right: -110%;
  transform: translateY(-50%);
  color: #000; /* Siyah yazı */
  background: #ffffff; /* Beyaz arka plan */
  padding: 20px 30px;
  border-radius: 20px 0px 0px 20px; /* Yuvarlak köşeler */
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2); /* Hafif gölge */
  max-width: 500px;
  opacity: 0;
  animation: slideInRight 1.2s forwards;
}

@keyframes slideInRight {
  to {
    right: 0;
    opacity: 1;
  }
}


.slide-caption h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.slide-caption p {
  font-size: 1rem;
  opacity: 0.9;
}

.slider-nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}
.slider-nav span {
  font-size: 16px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
}
.slider-nav span:hover {
  background-color: var(--primary-color);
  transform: scale(1.1);
}
.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, #ff914d, #d29316);
  animation: progressAnim 6s linear infinite;
  border-radius: 2px;
   animation-play-state: running;
}
@keyframes progressAnim {
  0% { width: 0; }
  100% { width: 100%; }
}





































.info-section {
  text-align: center;
  background-color: #fdfdfd;
  padding: 60px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.flag-icon {
  width: 64px;
  height: auto;
  margin-bottom: 15px;
}

.headline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.headline-wrapper h2 {
  font-family: 'Segoe UI', sans-serif;
  font-size: 32px;
  color: #333;
  font-weight: 400;
  margin: 0;
}

.headline-wrapper h2 strong {
  color: #f47c20;
  font-weight: 600;
}

.ozwin-description {
  font-size: 1.05rem;
  line-height: 2.1;
  margin-bottom: 15px;
  color: #555;
}
.line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background-color: #ccc;
}

.info-section p {
  max-width: 800px;
  margin: 10px auto;
  color: #555;
  font-size: 16px;
  line-height: 1.8;
}

.btndty {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 26px;
  background-color: #f47c20;
  color: #fff;
  border: none;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btndty:hover {
  background-color: #ff9b35;
  transform: scale(1.05);
}







.istatistikler {
  background-color: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}
.istatistik-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.istatistik-kutu {
  flex: 1 1 200px;
}
.istatistik-sayi {
  font-size: 3rem;
  font-weight: bold;
  color: #f47c20;
  transition: all 0.3s ease;
}
.istatistik-yazi {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #333;
}
















/* GENEL STİL */
.neden-ozwin {
  padding: 80px 20px;
  background-color: #f8f9fa;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.neden-ozwin .container {
  max-width: 1280px;
  margin: 0 auto;
}

/* BAŞLIK ALANI */
.headline-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}



.headline-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  text-align: center;
}

/* ÖZELLİK KUTULARI */
.feature-boxes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-box {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.feature-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.feature-box h3 {
  font-size: 20px;
  margin: 20px;
  color: #333;
}

.feature-box p {
  font-size: 15px;
  color: #666;
  margin: 0 20px 20px 20px;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .headline-wrapper h2 {
    font-size: 24px;
  }

  .feature-box img {
    height: 180px;
  }

  .feature-box h3 {
    font-size: 18px;
  }

  .feature-box p {
    font-size: 14px;
  }
}











.product-highlight {
  padding: 80px 20px;
  background: #fff;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.product-image {
  flex: 1 1 45%;
}

.product-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  object-fit: cover;
}

.product-content {
  flex: 1 1 45%;
}

.product-content h3 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 20px;
}

.product-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

.product-btn {
  display: inline-block;
  padding: 10px 22px;
  background: linear-gradient(90deg, var(--gray-bg), var(--dark-bg));
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.product-btn:hover {
  background: linear-gradient(90deg, var(--dark-bg), var(--gray-bg));
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .product-row {
    flex-direction: column;
    text-align: center;
  }

  .product-content h3 {
    font-size: 1.8rem;
  }

  .product-content p {
    font-size: 1rem;
  }
}






















/* Footer Genel Stil */
.ozwin-footer {
  background-color: #1e1e1e; /* koyu arka plan */
  color: #f0f0f0;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-logo {
  width: 180px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffffff;
  position: relative;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #FF6F00;
  margin-top: 8px;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  color: #ccc;
}

.footer-list li i {
  margin-right: 8px;
  color: #FF6F00;
}

.footer-list li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-list li a:hover {
  color: #ffffff;
}

/* Alt Bilgi ve Sosyal Medya */
.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #999;
  margin-bottom: 10px;
}

.social-icons a {
  color: #f0f0f0;
  margin: 0 10px;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #FF6F00;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-col h4::after {
    margin-left: auto;
    margin-right: auto;
  }
}











.taksit-bar {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to right, #1a1a1a, #2c2c2c);
  color: #fff;
  padding: 18px 20px;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.4);
  animation: slideUp 0.6s ease forwards;
  font-family: 'Segoe UI', sans-serif;
}

.taksit-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.taksit-icon {
  font-size: 28px;
  color: #ff9800;
}

.taksit-text p {
  margin: 0;
  font-size: 16px;
  color: #ffa726;
  font-weight: 700;
}

.taksit-text span {
  display: block;
  font-size: 13px;
  color: #cccccc;
}

.taksit-close {
  background-color: transparent;
  border: none;
  color: #ffb74d;
  font-size: 20px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.taksit-close:hover {
  transform: scale(1.2);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .taksit-container {
    flex-direction: column;
    align-items: flex-start;
  }
  .taksit-close {
    align-self: flex-end;
    margin-top: 10px;
  }
}

















.modern-testimonials {
  background-color: #f9f9f9;
  padding: 80px 20px;
  font-family: "Segoe UI", sans-serif;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
}

.section-line {
  width: 60px;
  height: 4px;
  background: #f47c20;
  margin: 20px auto 40px;
}

.testimonial-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 960px;
  margin: auto;
  position: relative;
}

.testimonial-card {
  background: #ffffff;
  border-left: 5px solid #f47c20;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  max-width: 720px;
  flex: 1;
  min-height: 250px;
  display: none;
  transition: 0.3s;
}

.testimonial-card.active {
  display: block;
}

.testimonial-content {
  position: relative;
  margin-bottom: 30px;
}

.quote {
  font-size: 44px;
  color: #f47c20;
  position: absolute;
  top: -10px;
  left: -10px;
}

.testimonial-content p {
  font-size: 17px;
  color: #333;
  margin-left: 30px;
  line-height: 1.6;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.author {
  font-size: 14px;
  color: #2c3e50;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.google-logo {
  width: 60px;
  height: auto;
}

.stars i {
  color: #f5b700;
  font-size: 16px;
}

.side-btn {
  background-color: #f47c20;
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

.side-btn:hover {
  background-color: #2c3e50;
}

/* Nokta Göstergeler */
.testimonial-dots {
  text-align: center;
  margin-top: 30px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  background-color: #ccc;
  transition: background-color 0.3s;
  cursor: pointer;
}

.dot.active {
  background-color: #f47c20;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonial-wrapper {
    flex-direction: column;
  }

  .side-btn {
    margin: 10px auto;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}


/* 
---------------------------------------------
Header Style
--------------------------------------------- 
*/


            ul.nav {
              border-radius: 0px 0px 25px 25px;
              flex-basis: 100%;
              margin-right: 0px;
              justify-content: right;
              -webkit-transition: all 0.3s ease 0s;
              -moz-transition: all 0.3s ease 0s;
              -o-transition: all 0.3s ease 0s;
              transition: all 0.3s ease 0s;
              position: relative;
              z-index: 999;
              display: flex;
              list-style: none;
            }

            ul.nav li.has-dropdown {
              position: relative;
            }

            ul.nav li.has-dropdown ul.dropdown {
              display: none;
              position: absolute;
              top: 100%;
              left: 0;
              background-color: #fff;
              box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
              list-style: none;
              padding: 0;
              margin: 0;
              border-radius: 0 0 8px 8px;
              min-width: 220px;
              z-index: 1000;
            }

            ul.nav li.has-dropdown.open ul.dropdown {
              display: block;
            }

            ul.nav li.has-dropdown ul.dropdown li a {
              display: block;
              padding: 10px 20px;
              color: #333;
              text-decoration: none;
              background-color: #fff;
              border-bottom: 1px solid #eee;
            }

            ul.nav li.has-dropdown ul.dropdown li a:hover {
              background-color: #f7f7f7;
              color: #f47c20;
            }
        

.background-header {
  background-color: #f47c20 !important;
  border-radius: 0px 0px 25px 25px;
  height: 80px!important;
  position: fixed!important;
  top: 0!important;
  left: 0;
  right: 0;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.15)!important;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area {
  position: absolute;
  background-color: transparent;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 100;
  -webkit-transition: all .5s ease 0s;
  -moz-transition: all .5s ease 0s;
  -o-transition: all .5s ease 0s;
  transition: all .5s ease 0s;
}

.header-area .main-nav {
  background: transparent;
  display: flex
}

.header-area .main-nav .logo {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  display: inline-block;
}

.header-area .main-nav .logo h1 {
  font-size: 36px;
  text-transform: uppercase;
  color: #ffffff;
  font-weight: 600;
  margin-right: 20px;
  padding-right: 20px;
  border-right: 1px solid rgba(250, 250, 250, 0.3);
}

.background-header .main-nav .logo,
.background-header .main-nav #search {
  margin-top: 18px;
}

.header-area .main-nav #search {
  position: relative;
}

.header-area .main-nav #search input {
  background-color: rgba(255, 255, 255, 0.10);
  height: 44px;
  width: 250px;
  border-radius: 23px;
  border: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 300;
  padding: 0px 20px 0px;
}

.header-area .main-nav #search input::placeholder {
  color: rgba(250, 250, 250, 0.75);
}

.header-area .main-nav #search i {
  position: absolute;
  color: #ffffff;
  right: 20px;
  top: 15px;
  font-size: 16px;
}

.header-area .main-nav ul.nav {
  border-radius: 0px 0px 25px 25px;
  flex-basis: 100%;
  margin-right: 0px;
  justify-content: right;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 999;
}

.header-area .main-nav .nav li:last-child {
  padding-right: 0px;
}

.header-area .main-nav .nav li {
  padding-left: 5px;
  padding-right: 5px;
  height: 40px;
  line-height: 40px;
}

.header-area .main-nav .nav li a {
  display: block;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 20px;
  font-weight: 300;
  font-size: 14px;
  height: 40px;
  line-height: 40px;
  text-transform: capitalize;
  color: #ffffff;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  border: transparent;
  letter-spacing: .25px;
}

.background-header .main-nav .nav {margin-top: 20px;}

.background-header .main-nav .nav li {
  height: 80px;
  line-height: 80px;
}

.header-area .main-nav .nav li:hover a {
  opacity: 0.8;
}
.header-area .main-nav .nav li a.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.10);
  opacity: 1;
}

.background-header .main-nav .nav li:hover a {
  opacity: 0.8;
}
.background-header .main-nav .nav li a.active {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.10);
  opacity: 1;
}

.header-area .main-nav .menu-trigger {
  cursor: pointer;
  position: absolute;
  top: 33px;
  width: 32px;
  height: 40px;
  text-indent: -9999em;
  z-index: 99;
  right: 20px;
  display: none;
}

.background-header .main-nav .menu-trigger {
  top: 20px;
}

.header-area .main-nav .menu-trigger span,
.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #ffffff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background-color: #ffffff;
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  width: 75%;
}

.header-area .main-nav .menu-trigger span:before,
.header-area .main-nav .menu-trigger span:after {
  content: "";
}

.header-area .main-nav .menu-trigger span {
  top: 16px;
}

.header-area .main-nav .menu-trigger span:before {
  -moz-transform-origin: 33% 100%;
  -ms-transform-origin: 33% 100%;
  -webkit-transform-origin: 33% 100%;
  transform-origin: 33% 100%;
  top: -10px;
  z-index: 10;
}

.header-area .main-nav .menu-trigger span:after {
  -moz-transform-origin: 33% 0;
  -ms-transform-origin: 33% 0;
  -webkit-transform-origin: 33% 0;
  transform-origin: 33% 0;
  top: 10px;
}

.header-area .main-nav .menu-trigger.active span,
.header-area .main-nav .menu-trigger.active span:before,
.header-area .main-nav .menu-trigger.active span:after {
  background-color: transparent;
  width: 100%;
}

.header-area .main-nav .menu-trigger.active span:before {
  -moz-transform: translateY(6px) translateX(1px) rotate(45deg);
  -ms-transform: translateY(6px) translateX(1px) rotate(45deg);
  -webkit-transform: translateY(6px) translateX(1px) rotate(45deg);
  transform: translateY(6px) translateX(1px) rotate(45deg);
  background-color: #ffffff;
}

.background-header .main-nav .menu-trigger.active span:before {
  background-color: #ffffff;
}

.header-area .main-nav .menu-trigger.active span:after {
  -moz-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -ms-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  -webkit-transform: translateY(-6px) translateX(1px) rotate(-45deg);
  transform: translateY(-6px) translateX(1px) rotate(-45deg);
  background-color: #ffffff;
}

.background-header .main-nav .menu-trigger.active span:after {
  background-color: #ffffff;
}

.header-area.header-sticky .nav li a.active {
  color: #ffffff;
}

.visible{
  display:inline !important;
}

@media (max-width: 1200px) {
  .header-area .main-nav .nav li {
    padding-left: 2px;
    padding-right: 2px;
  }
  .header-area .main-nav .nav li a {
    padding-left: 10px;
    padding-right: 10px;
  }

}

@media (max-width: 767px) {
  .background-header .main-nav .nav,
  .header-area .main-nav .nav {
    background-color: #fff;
  }
  .background-header .main-nav .nav li a,
  .header-area .main-nav .nav li a {
    line-height: 50px;
    height: 50px;
    font-weight: 400;
    color: #000;
    background-color: #fff;
     border-radius: 0px 0px 25px 25px;
  }
  .background-header .main-nav .nav li,
  .header-area .main-nav .nav li {
    border-top: 1px solid #ddd;
    background-color: #fff;
    height: 50px;
    border-radius: 0px 0px 25px 25px;
  }
  .background-header .main-nav .nav li:last-child,
  .header-area .main-nav .nav li:last-child {
    border-radius: 0px 0px 25px 25px;
  }
  .header-area .main-nav .nav {
    height: auto;
    flex-basis: 100%;
  }
  .header-area .main-nav .logo {
    position: absolute;
    left: 30px;
    top: 0px;
  }
  .background-header .main-nav .logo {
    top: 0px;
  }
  .background-header .main-nav .border-button {
    top: 0px !important;
  }
  .header-area .main-nav .border-button {
    position: absolute;
    top: 15px;
    right: 70px;
  }
  .header-area.header-sticky .nav li a:hover,
  .header-area.header-sticky .nav li a.active {
    color: #f47c20!important;
    opacity: 1;
  }
  .header-area.header-sticky .nav li.search-icon a {
    width: 100%;
  }
  .header-area {
    background-color: transparent;
    padding: 0px 15px;
    height: 80px;
    box-shadow: none;
    text-align: center;
  }
  .header-area .container {
    padding: 0px;
  }
  .header-area .logo {
    margin-left: 0px;
    margin-top: 30px;
  }
  .header-area .menu-trigger {
    display: block !important;
  }
  .header-area .main-nav {
    overflow: hidden;
  }
  .header-area .main-nav .nav {
    float: none;
    width: 100%;
    display: none;
    -webkit-transition: all 0s ease 0s;
    -moz-transition: all 0s ease 0s;
    -o-transition: all 0s ease 0s;
    transition: all 0s ease 0s;
    margin-left: 0px;
  }
  .header-area .main-nav .nav li:first-child {
    border-top: 1px solid #eee;
  }
  .header-area.header-sticky .nav {
    margin-top: 100px !important;
  }
  .background-header.header-sticky .nav {
    margin-top: 80px !important;
  }
  .header-area .main-nav .nav li {
    width: 100%;
    background: #ffffff;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  
}

/* Mobil Popup sadece mobilde görünür */
.mobile-popup {
  display: none; /* Başta kapalı */
}

@media (max-width: 767px) {
  .mobile-popup {
    display: flex; /* Sadece mobilde açılabilmesi için flex olarak ayarlanır */
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
  }

  .mobile-popup.active {
    visibility: visible;
    opacity: 1;
  }

  .popup-inner {
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 320px;
    padding: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    position: relative;
    animation: popupFade 0.3s ease;
  }

  .popup-close {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  .popup-menu {
    list-style: none;
    padding: 0;
    margin-top: 30px;
  }

  .popup-menu li {
    margin-bottom: 12px;
    text-align: center;
  }

  .popup-menu li a {
    text-decoration: none;
    font-size: 16px;
    color: #333;
    display: block;
    padding: 10px;
    background-color: #f7f7f7;
    border-radius: 8px;
  }

  .popup-menu li a:hover {
    background-color: #f47c20;
    color: white;
  }

  @keyframes popupFade {
    from {opacity: 0; transform: scale(0.9);}
    to {opacity: 1; transform: scale(1);}
  }
}

/* Masaüstünde asla görünmesin */
@media (min-width: 768px) {
  .mobile-popup {
    display: none !important;
  }
}


@media (max-width: 991.98px) {
  .container-visible-mobile {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .container-visible-mobile .logo img {
    height: 50px;
    max-width: 80px;
  }

  .search-input {
     display: none;
  }


  .main-nav .menu-trigger {
    position: relative;
    z-index: 11;
  }
 .top-bar {
    display: none;
  }
  .main-nav .nav {
    display: none; /* Menü toggle ile açılır olmalı */
  }

  .js-preloader{
    display: none;
  }

   

  .header-area .logo img {
    max-height: 40px; /* logoya göre ayarla */
  }
}
