/* ----------------- HEADER STYLES ----------------- */
::-moz-selection {
    color: white;
    background: #229c0a70;
  }
  ::selection {
    color: white;
    background: #229c0a70;
  }


#banner-section h1 {
    font-weight: bold;
    line-height: normal;
    /* margin-top: 60px; */
    font-size: 42px;
    font-weight: 800;
    color: rgb(255, 255, 255);
    text-align: center;
    position: relative;
    text-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px;
}






  .footer-contact i{font-style:normal!important;}
  .header {
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 10px 0;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 1000;
      transition: all 0.3s ease;
      border-bottom: 1px solid rgba(0, 0, 0, 0);
      background-color: rgba(0, 0, 0, 0);
  }
  .header .container {
      /*margin-left: 250px;*/
      display: flex;
      justify-content: space-between;
      align-items: center;
  }
  .logo img {
      height: 60px;
  margin-right: 100px;
  }
  /* Header Item Hover Efekti */
  .header-item {
      display: flex;
      align-items: center;
      padding: 8px 8px;
      border-radius: 6px;
      position: relative;
      transition: all 0.3s ease;
  }
  .header-item:hover {
      background-color: rgba(43, 86, 76, 0.3);
  }
  .icon-container {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 30px;
      border-radius: 25%;
      background: rgba(34, 156, 10, 0.1);
      margin-right: 8px;
      transition: all 0.3s ease;
  }
  .icon-container svg {
      stroke: #229c0a;
      width: 16px;
      height: 16px;
  }
  .header-item:hover .icon-container {
      transform: scale(1.1);
  }
  .header-item:hover svg {
      stroke-width: 2.3;
  }
  .main-nav ul {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
  }
  .main-nav ul li a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.2px;
      transition: all 0.3s ease;
      position: relative;
      display: flex;
      align-items: center;
      gap: 4px;
      padding: 6px 6px;
      border-radius: 6px;
  }
  .main-nav ul li a:hover {
      color: var(--primary-color);
  }
  /* Dropdown item content styles */
  .dropdown-content {
      display: flex;
      flex-direction: column;
  }
  .dropdown-content span p{
      font-size: 1rem;
      line-height: 1;
  }
  /* Dropdown menu description styles */
  .menu-description {
      display: block;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      font-weight: 400;
      margin-top: 3px;
  }
  /* Dropdown Menu - Tüm menüler için ortalanmış hali */
  .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(10px);
      background-color: #000000;
      border-radius: 12px;
      padding: 15px !important;
      min-width: 450px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      z-index: 100;
      margin-top: 10px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      display: grid !important;
      flex-direction: column;
      grid-template-columns: repeat(2, 1fr);
  }
  .has-dropdown {
      position: relative;
  }
  .has-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateX(-50%) translateY(0);
  }
  /* Ekran kenarında taşmayı önlemek için gerektiğinde kaydırma */
  @media (min-width: 1080px) {
      .dropdown-menu {
          max-width: calc(100vw - 40px); /* Ekranın kenarlarından 20px boşluk bırak */
      }
  }
  .dropdown-menu li {
      margin: 10px;
      width: 100%;
  }
  .dropdown-menu li a {
      display: flex;
      align-items: flex-start;
      padding: 10px 20px;
      font-size: 14px;
      color: var(--gray-text);
      transition: all 0.3s ease;
  }
  .dropdown-menu li a:hover {
      background-color: rgba(43, 86, 76, 0.2);
      color: var(--primary-color);
  }
  /* Dropdown Menü İkon Stilleri */
  .dropdown-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      margin-right: 10px;
      border-radius: 4px;
      background-color: rgba(43, 86, 76, 0.2);
      transition: all 0.2s ease;
      float: left;
  }

  .dropdown-icon img{width:35px;}
  .dropdown-icon svg {
      stroke: var(--primary-color);
      transition: all 0.2s ease;
  }
  .dropdown-menu li a:hover .dropdown-icon {
      background-color: rgba(43, 86, 76, 0.4);
      transform: scale(1.1);
  }
  .dropdown-menu li a:hover .dropdown-icon svg {
      stroke-width: 2.2;
  }
  /* Demo butonu stilleri */
  .demo-button-container {
      margin-left: 15px;
  }
  .demo-button {
      display: flex;
      align-items: center;
      background: transparent;
      border: 1px solid #229c0a;
      color: #229c0a;
      padding: 8px 16px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 14px;
      transition: all 0.3s ease;
      font-family: 'CRC', sans-serif;
  }
  .demo-button:hover {
      background-color: #1a7f5a;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  .demo-button .icon-container {
      width: 24px;
      height: 24px;
      background-color: rgba(43, 86, 76, 255);
      border-radius: 25%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-right: 8px;
  }
  .demo-button .icon-container svg {
      width: 14px;
      height: 14px;
      color: white;
  }
  .demo-button span {
      letter-spacing: 0.5px;
  }
  /* Mobil görünüm için demo butonu stilleri */
  .mobile-lang-switch .demo-button {
      margin-top: 20px;
      justify-content: center;
  }
  /* Mobil Menü Stili */
  .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 30px;
      height: 22px;
      cursor: pointer;
      z-index: 1100;
      position: relative;
  }
  .mobile-menu-toggle span {
      display: block;
      height: 3px;
      width: 100%;
      background-color: var(--primary-color);
      border-radius: 3px;
      transition: all 0.3s ease;
  }
  .mobile-lang-switch {
      display: none;
      margin-top: 30px;
      text-align: center;
  }
  .mobile-menu-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.7);
      z-index: 1001;
      visibility: hidden;
      opacity: 0;
      transition: all 0.3s ease;
  }
  /* Mobil Dropdown İkon */
  .dropdown-toggle {
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
      width: 24px;
      height: 24px;
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
  }
  .dropdown-toggle i {
      font-size: 12px;
      color: var(--gray-text);
      transition: transform 0.3s ease;
  }
  .dropdown-active .dropdown-toggle i {
      transform: rotate(180deg);
  }
  /* Mobil Menü Açık Hali */
  body.mobile-menu-open {
      overflow: hidden;
  }
  body.mobile-menu-open .mobile-menu-overlay {
      visibility: visible;
      opacity: 1;
  }
  body.mobile-menu-open .main-nav {
      transform: translateX(0);
  }
  body.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
  }
  body.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
      opacity: 0;
  }
  body.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
  }
  /* Mobil Görünüm - Header */
  @media (max-width: 1079px) {
        .footer-logo{width:100%}
      .demo-button-container {
          display: none;
      }
      .main-nav ul li a{
          font-size: .8rem;
          font-weight: 600;
      }
      .header .container {
          margin-left: 0;
          display: flex;
          justify-content: space-between;
          align-items: center;
      }
      .mobile-menu-toggle {
          display: flex;
      }
      
      .main-nav {
          position: fixed;
          top: 0;
          right: 0;
          width: 280px;
          height: 100vh;
          background-color: var(--secondary-bg);
          z-index: 1050;
          padding: 80px 20px 30px;
          transform: translateX(100%);
          transition: transform 0.3s ease;
          overflow-y: auto;
          box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
      }
      
      .main-nav ul {
          flex-direction: column;
          width: 100%;
          gap: 15px;
      }
      
      .main-nav ul li {
          margin-left: 0;
          width: 100%;
      }
      
      .header-item {
          padding: 10px;
          border-radius: 6px;
          background-color: rgba(255, 255, 255, 0.05);
          width: 100%;
      }
      
      .mobile-lang-switch {
          display: block;
      }
      
      .dropdown-toggle {
          display: flex;
      }
      
      /* Mobil görünümde tüm dropdown stilleri sıfırlanıyor */
      .main-nav .dropdown-menu {
          position: static;
          width: 100%;
          min-width: auto;
          left: 0;
          right: auto;
          transform: none;
          box-shadow: none;
          background-color: rgba(43, 86, 76, 0.1);
          opacity: 0;
          visibility: hidden;
          height: 0;
          padding: 0 !important;
          overflow: hidden;
          margin-top: 0;
          transition: all 0.3s ease;
          display: block !important;
          grid-template-columns: 1fr;
      }
      
      .main-nav .dropdown-active .dropdown-menu {
          opacity: 1;
          visibility: visible;
          height: auto;
          padding: 5px 0 !important;
          margin-top: 5px;
          transform: none;
      }
      
      .main-nav .dropdown-menu li a {
          padding: 10px 15px 10px 45px;
      }
      
      /* Dropdown icons - Mobil */
      .dropdown-icon {
          width: 20px;
          height: 20px;
      }
      
      .dropdown-icon svg {
          width: 14px;
          height: 14px;
      }
      
      /* Mobil menü açıklama metinleri */
      .menu-description {
          font-size: 13px;
          margin-top: 2px;
          opacity: 0.7;
      }
  }
  /* ----------------- FOOTER STYLES ----------------- */
  .footer-main {
      background-color: #000000;
      color: #777;
      font-family: Arial, sans-serif;
      position: relative;
  }
  .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 15px;
  }
  .footer-contact-button {
      position: relative;
      top: -20px;
  }
  .footer-btn {
      display: inline-block;
      background-color: #229c0a;
      color: white;
      text-decoration: none;
      padding: 10px 20px;
      font-size: 16px;
      font-weight: 500;
      transition: background-color 0.3s;
  }
  .footer-btn:hover {
      background-color: #00a1f2;
  }
  .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 30px 0;
  }
  /* About Us ve Contact Us üstte olacak şekilde düzenleme */
  .footer-about {
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 30px;
      order: 1;
  }
  .footer-contact {
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 30px;
      order: 2;
  }
  .footer-navigation {
      display: flex;
      flex-wrap: wrap;
      flex: 0 0 100%;
      max-width: 100%;
      order: 3;
      margin-top: 20px;
      border-top: 1px solid #2a2f33;
      padding-top: 30px;
  }
  @media (min-width: 768px) {


















      .footer-about {
          flex: 0 0 60%;
          max-width: 60%;
      }
      
      .footer-contact {
          flex: 0 0 35%;
          max-width: 35%;
      }
  }
  .footer-title {
      color: white;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 15px;
  }
  .footer-text {
      color: #777;
      line-height: 1.6;
      margin-bottom: 20px;
      font-size: 1rem;
  }
  .footer-view-more {
      color: #ffffff;
      text-decoration: none;
      font-size: 14px;
      font-weight: 600;
      display: flex;
      align-items: center;
  }
  .footer-icon-arrow:after {
      content: "›";
      margin-left: 5px;
      font-size: 16px;
  }
  .footer-nav-column {
      flex: 0 0 50%;
      max-width: 50%;
      margin-bottom: 30px;
  }
  @media (min-width: 576px) {
      .footer-nav-column {
          flex: 0 0 25%;
          max-width: 25%;
      }
  }
  .footer-nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }
  .footer-nav-list li {
      margin-bottom: 10px;
  }
  .footer-nav-list a {
      color: #777;
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 700;
      transition: color 0.3s;
      display: flex;
      align-items: center;
  }
  .footer-nav-list a:hover {
      color: #229c0a;
  }
  .footer-icon {
      display: inline-block;
      width: 6px;
      height: 6px;
      margin-right: 10px;
      border-top: 2px solid #229c0a;
      border-right: 2px solid #229c0a;
      transform: rotate(45deg);
  }
  .footer-phone {
      color: white;
      font-size: 1.3rem;
      font-style: bold;
      font-weight: 800;
      margin-top: 0;
      margin-bottom: 10px;
  }
  .footer-contact-info {
      color: #777;
      font-size: 14px;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
  }
  .footer-icon-location, .footer-icon-email {
      color: #229c0a;
      margin-right: 10px;
  }
  .footer-social {
      display: flex;
      margin-top: 20px;
  }
  .footer-social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 37px;
      height: 40px;
      background-color: #333;
      color: white;
      border-radius: 50%;
      margin-right: 10px;
      text-decoration: none;
      transition: background-color 0.3s;
  }
  .footer-social-icon:hover {
      background-color: #229c0a;
  }
  /* Footer bottom bölümü için CSS */
  .footer-bottom {
      background-color: #000000;
      padding: 20px 0;
  }
  .footer-bottom .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
  }
  /* Sol bölüm: Copyright ve logo */
  .footer-copyright {
      display: flex;
      align-items: center;
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 15px;
  }
  /* Orta bölüm: İkinci logo */
  .footer-logo2 {
      display: flex;
      justify-content: center;
      flex: 0 0 100%;
      max-width: 100%;
      margin-bottom: 15px;
  }
  /* Sağ bölüm: Linkler */
  .footer-bottom-links {
      flex: 0 0 100%;
      max-width: 100%;
      text-align: center;
      margin-bottom: 15px;
  }
  /* Masaüstü düzeni için 3 sütunlu görünüm */
  @media (min-width: 768px) {
      .footer-copyright {
          flex: 0 0 33.333%;
          max-width: 33.333%;
          margin-bottom: 0;
      }
      
      .footer-logo2 {
          flex: 0 0 33.333%;
          max-width: 33.333%;
          margin-bottom: 0;
      }
      
      .footer-bottom-links {
          flex: 0 0 33.333%;
          max-width: 33.333%;
          text-align: right;
          margin-bottom: 0;
      }
  }
  /* Logo stilleri */
  .footer-logo {
      margin-right: 15px;
  }
  .footer-logo img  {
      max-height: 50px;
  }
  .footer-logo2 img{
      height: 40px;
  }
  .footer-copyright-text {
      color: #555;
      font-size: 12px;
      margin: 0;
  }
  .footer-bottom-links a {
      color: #555;
      text-decoration: none;
      font-size: 12px;
      margin-left: 15px;
      transition: color 0.3s;
  }
  .footer-bottom-links a:hover {
      color: #229c0a;
  }
  /* İkon Ekleme (Sosyal Medya İkonları için) */
  .footer-icon-facebook:before {
      content: "f";
  }
  .footer-icon-twitter:before {
      content: "t";
  }
  .footer-icon-linkedin:before {
      content: "in";
  }
  .footer-icon-location:before {
      content: "📍";
  }
  .footer-icon-email:before {
      content: "✉️";
  }





















  /*banner*/
  #banner-section{padding-top:50px; padding-bottom:50px;  background: linear-gradient(135deg, #000000 0%, #0ab7207a 50%, #000000 100%);
  background-size: 200% 200%; 
  animation: gradientShift 10s ease infinite; margin-top:50px;
}



@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


#banner-section {
  text-align: center; /* Ortalamak için */
  padding: 20px 0; /* Yukarı aşağı boşluk */
}

#banner-section h1 {
  font-weight: bold;
}

#banner-section .breadcrumb {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-flex; /* Yanyana yapmak için */
  gap: 15px; /* Aralık */
  font-size: 14px;
  color: #555;
}

#banner-section .breadcrumb li {
  display: inline;
}

#banner-section .breadcrumb li a {
  text-decoration: none;
  color: #229c0a; /* İstersen link rengi */
  font-weight: 500;
}

#banner-section .breadcrumb li.active {
  color: #999;
  font-weight: 600;
}

#banner-section .breadcrumb li:not(:last-child)::after {
  content: "›"; /* Aralarına ayraç ekler */
  margin-left: 15px;
  color: #999;
}

