:root {
  --primary-green: #1c4f86;
  --primary-green-dark: #1c4f86;
}

html, body {
    margin: 0;
    font-family: 'Light', sans-serif;
    overflow-x: hidden;
    width: 100%;
  }

  body {
    position: relative;
  }
  @font-face {
    font-family: 'Light';
    src: url('fonts/Montserrat-Light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: 'Bold';
    src: url('fonts/Montserrat-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: 'Medium';
    src: url('fonts/Montserrat-Medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
  }

  @font-face {
    font-family: "WpBaslik";
    src: url("fonts/HoneywellCond-Extrabold.otf") format("opentype");
  }

  @font-face {
    font-family: "WpMetin";
    src: url("fonts/HoneywellCond-Book.otf") format("opentype");
  } 

  .homepage {
    /*background: linear-gradient(135deg, #031e3c, #2565a9);*/
    /*background: linear-gradient(135deg, #183551, #357da8);*/ /*ikinci: 68a0dd*/
    /*background-image: url("assets/back2.jpg");*/

    /*background: linear-gradient(135deg, #24496e, #81a0c7); /*254b71*/

    /*background-image: url("assets/back3.jpg");
    background-size: cover; 
    background-position: center; /* Resmi ortalar */
    background-image: url("assets/homeback5.png");
    background-position: center;
    background-repeat: no-repeat; 
    background-size: 100% 100%;
    position: relative;
    overflow: hidden;
    height: 100vh;
    padding-top: 50px;

    animation: changeBackground 6s infinite alternate ease-in-out;
  }

  @keyframes changeBackground {
    0% { background-image: url("assets/homeback5.png"); }
    49% { background-image: url("assets/homeback5.png"); } /* %50 olmadan hemen önce değişecek */
    50% { background-image: url("assets/homeback4.png"); } /* Geçiş burada olacak */
    100% { background-image: url("assets/homeback4.png"); }
  }

  /* Mavi transparan katman */
  .homepage::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #1279c3c1; /* Mavi transparan katman:  background: #2095e866; 082a6a9b 2095e8b9 42a7efd3 resim de homeback1 ,,, 
    2095e8c1 ve homeback2.png*/
    z-index: 1;
  }

  /* İçeriklerin overlay'in üstünde kalmasını sağlar */
  .homepage > * {
    position: relative;
    z-index: 2;
  }

  .logo-img {
    height: 60px; /*40 normalde left de yok*/
    max-width: 100%;
    display: block;
    padding-left: 50px;
  }

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 9% 7px 9%; /*üst sağ alt sol*/
    color: white;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);

  }

  .container-fluid {
    padding-right: 0;
  }

  .navbar {
    background: transparent;
    padding: 10px 5%;
  }

  .navbar-nav {
    gap: 10px;
  }

  .navbar.scrolled {
    background: linear-gradient(135deg, #082b6a, #357da8);
  }

  .nav-link {
    transition: color 0.3s ease;
  }

  .nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
  }

  .navbar-toggler {
    border: none;
  }

  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba%28255,255,255,0.5%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  }

  #ozellikler, #genelbakis,  #sürümler, #lisanslar, #teknikozellik, #uyumluluk, #demo {
    padding-top: 115px; /* Menünün yüksekliği kadar boşluk ekleyin */
  }

  .intro-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: calc(100vh - 170px);
    padding: 0 10%;
    color: white;
    width: 100%;
  }
  .intro-container2 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    color: white;
    margin-top: -50px;
  }

  .intro-text {
    flex: 1;
    text-align: left;
    padding-right: 50px;
    max-width: 700px;
  }

  .intro-text h1 {
    font-size: 2.5rem; 
    font-family: 'Bold', sans-serif;
    margin: 0 0 40px 0;
    line-height: 1.3;
    animation: fadeIn 2s ease-in-out forwards;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .intro-text p {
    font-size: 1.5rem;
    margin: 0;
    line-height: 1.3;
    animation: fadeIn 2s ease-in-out 1s forwards;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
  }

  .img-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    max-width: 500px;
    animation: upDown 2s ease-in-out infinite;
  }

  @keyframes upDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
  }

  .img-container::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.309);
  }

  .img-container img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
  }

  img.teklynx-logo {
    position: absolute;
    bottom: -85px;
    left: 90px;
    width: 250px;
    height: auto;
    z-index: 1000;
    filter: brightness(0) invert(1);
  }

  /* Responsive Kısım */
  @media (max-width: 992px) {
    .intro-container {
      flex-direction: column;
      justify-content: center;
      text-align: center;
      padding: 30px 40px;
      min-height: auto;
    }

    .intro-text {
      padding-right: 0;
      margin-bottom: 40px;
    }

    .intro-text h1 {
      font-size: 2.2rem;
    }

    .intro-text p {
      font-size: 1.3rem;
    }

    .img-container {
      max-width: 350px;
      margin-top: 20px;
    }

    img.teklynx-logo {
      width: 200px;
      left: 40px;
      bottom: -60px;
    }
  }

  @media (max-width: 768px) {
    .homepage {
      padding-top: 80px;
      height: auto; /* Allow height to adjust to content on mobile */
    }

    .intro-container {
      padding: 20px;
    }

    .intro-text h1 {
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .intro-text p {
      font-size: 1.1rem;
    }
    
    .logo-img {
      padding-left: 20px;
      height: 50px;
    }
    
    .navbar-collapse {
        background-color: #082b6a;
        padding: 15px;
        border-radius: 5px;
    }
    img.teklynx-logo {
      display: none; /* Hide on very small screens */
    }
  }


  @media (max-width: 768px) {
    .homepage {
      padding-top: 120px;
      padding-bottom: 40px;
      height: auto; /* Allow height to adjust to content on mobile */
      background-size: cover;
      background-attachment: scroll;
    }

    .intro-container {
      padding: 20px;
    }

    .intro-text h1 {
      font-size: 1.6rem;
      margin-top: 20px;
      margin-bottom: 20px;
    }

    .intro-text p {
      font-size: 1.1rem;
    }
    
    .logo-img {
      padding-left: 20px;
      height: 65px;
    }
    
    .navbar-collapse {
        background-color: var(--primary-green-dark);
        padding: 15px;
        border-radius: 5px;
    }
    img.teklynx-logo {
      display: none; /* Hide on very small screens */
    }

    .ozellikler {
      margin: 40px 10px !important;
    }
    .ozellikler-metinsel1, .ozellikler-metinsel2 {
      padding: 20px 10px !important;
    }
    .surumler {
      margin: 40px 10px !important;
    }
    .surumler-metinsel {
      padding: 20px 10px !important;
    }

    .lisanslar {
      margin-left: 5px !important;
      margin-right: 5px !important;
    }
    .teknikozellik {
      margin-left: 5px !important;
      margin-right: 5px !important;
    }
  }

    


    







  
  /*-------------------*/
  #ozellikler{
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .ozellikler {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: white;
    margin: 40px 20px;
    gap: 30px;
  }
  /* Başlık Stili */
  #ozellikler .baslik {
    font-size: 2.8rem; /* 5.5vh'den değiştirildi */
    font-weight: 100;
    color: #1c4f86;
    text-align: center;
    margin-bottom: 30px;
  }

  .ozellikler-resim {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }

  .ozellikler-resim img {
    max-width: 500px;
    width: 100%;
    height: auto;
    display: block;
    padding: 10px;
  }

  .ozellikler-metinsel1, .ozellikler-metinsel2 {
    flex: 1;
    min-width: 300px;
    padding: 20px;
  }

  .ozellikler-metinsel1 ul, .ozellikler-metinsel2 ul {
    list-style: none;
    padding: 0;
  }
  .ozellikler-metinsel1 li, .ozellikler-metinsel2 li {
    font-size: 1.2rem; /* 2.6vh'den değiştirildi */
    color: #333;
    margin: 10px 0;
    padding-left: 40px;
    position: relative;
    display: flex;
    align-items: center; /* Dikey hizalama */
    padding-bottom: 5px;
    line-height: 1.5;
  }

  .ozellikler-metinsel1 li::before, .ozellikler-metinsel2 li::before {
    content: '';
    position: absolute;
    top: 10px; 
    left: 10px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid var(--primary-green); 
  }


  .ozellikler-metinsel1 ul li:has(img), .ozellikler-metinsel2 ul li:has(img) {
    padding-left: 10px;
  }
  
  .ozellikler-metinsel1 ul li:has(img)::before, .ozellikler-metinsel2 ul li:has(img)::before {
    display: none;
  }
    .video-container {
        position: relative;
        display: flex;
        justify-content: flex-start;
        padding-left: 10px;
        width: 200px; /* Sabit genişlik */
        height: auto;
    }

    #video-thumbnail {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    #video-thumbnail img {
        width: 100%;
        height: auto;
        border-radius: 5px;
        border: 1px solid #aaa9a9;
        object-fit: cover;
    }

    .video-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

    .video-overlay iframe {
        width: 80vw;
        height: 80vh;
        border: none;
    }
    
    @media (max-width: 992px) {
      .ozellikler {
        flex-direction: column;
        align-items: center;
      }
     
      .ozellikler-resim {
        order: 2;
        min-width: auto;
        width: 100%;
        max-width: 450px;
      }
  
      .ozellikler-metinsel1 {
        order: 1;
        min-width: auto;
        width: 100%;
        max-width: 500px;
      }
  
      .ozellikler-metinsel2 {
        order: 3;
        min-width: auto;
        width: 100%;
        max-width: 500px;
      }
      
      #ozellikler .baslik {
        font-size: 2.2rem;
      }
    }





  /* Genel Bakış Bölümü */
  .genelbakis {
      padding-top: 50px;
      padding-bottom: 100px;
      text-align: center; /* Başlığı ortalar */
  }

  /* Başlık Stili */
  .genelbakis .baslik {
      font-size: 2.8rem; /* 5.5vh'den değiştirildi */
      color: #1c4f86;
      font-family: 'Medium', sans-serif;
      text-align: center;
      margin-bottom: 30px;
  }

  /* Kart Stili */
  .card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 350px; /* Kartların minimum yüksekliğini belirle */
  }

  /* Hover Efekti */
  .card:hover {
      transform: translateY(-10px); /* Kart yukarı kalkar */
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Daha belirgin gölge */
  }

  /* Kart Resmi */
  .card img {
      width: 100%;
      height: 200px; /* Sabit yükseklik */
      object-fit: cover;
  }

      /* Kart İçeriği */
  .card .card-body {
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 200px;  /* Kart içeriği en az 200px yükseklikte olacak */
      text-align: left;
  }

  /* Başlık Stili */
  .card .card-title {
      font-size: 1.25rem;
      font-family: 'Medium', sans-serif;
      color: #333;
      margin-bottom: 15px;
  }

  /* Açıklama Metni */
  .card .card-text {
      font-size: 1rem;
      color: #666;
      flex-grow: 1;
      display: flex;
      align-items: flex-start; /* Metnin en üstten hizalanması */
  }





  /*sürümler stilleri*/
  #surumler{
    justify-content: center;
    align-items: center;
    padding-top: 120px;
  }
  .surumler {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background-color: white;
    margin: 40px 20px;
    gap: 30px;
  }
  /* Başlık Stili */
  #surumler .baslik {
    font-size: 2.8rem; /* 5.5vh'den değiştirildi */
    font-weight: 100;
    color: #1c4f86;
    text-align: center;
    margin-bottom: 30px;
  }

  .surumler-metinsel {
    flex: 1;
    min-width: 300px;
    padding: 20px 40px;
  }

  .surumler-metinsel ul {
    list-style: none;
    padding: 0;
  }
  .surumler-metinsel li {
    font-size: 1.1rem; /* 2.3vh'den değiştirildi */
    color: #333;
    margin: 10px 0;
    padding-left: 40px;
    position: relative;
    display: flex;
    align-items: center; /* Dikey hizalama */
    padding-bottom: 5px;
    line-height: 1.6;
  }

  .surumler-metinsel li::before {
    content: '';
    position: absolute;
    left: 10px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 10px solid #1c4f86; /* Ok rengi */
    top: 8px; 
  }

  .surumler-metinsel ul li:nth-child(4)::before,
  .surumler-metinsel li:last-child::before {
    content: none !important;
  }

  #surumler .notboldtext {
    font-family: 'Medium', sans-serif;
  }

  .surumpdf {
      list-style: none;
      padding: 10px 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
  }

  .surumpdf a {
      text-decoration: none;
      color: #1c4f86;
      font-weight: bold;
      display: flex;
      align-items: center;
      gap: 8px; /* PDF ikonu ile metin arasında boşluk bırak */
  }

  .surumpdf a:hover {
      color: #357da8; /* Hover rengi */
  }

  .surumpdf img {
      height: 35px;     
      width: 35px;   
  }

  .surumtablo a {
      text-decoration: underline;
      font-weight: bold;
      color: #000;
  }

  /* Modal arkaplan */
  .modal {
      display: none;
      position: fixed;
      z-index: 1000;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      justify-content: center;
      align-items: center;
  }

  /* Modal içeriği */
  .modal-content {
      background-color: white;
      padding: 20px;
      border-radius: 8px;
      width: 90%;
      max-width: 900px;
      text-align: center;
      position: relative;
  }

  /* Kapatma butonu (X) */
  .close {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 30px;
      cursor: pointer;
  }

  .modal-content img {
      width: 100%;
      height: auto;
      border-radius: 5px;
  }

  @media (max-width: 992px) {
    #surumler .baslik {
      font-size: 2.2rem;
    }
    .surumler-metinsel li {
      font-size: 1rem;
    }
  }


    /*lisanslar stilleri*/
    #lisanslar{
        justify-content: center;
        align-items: center;
        padding-top: 150px;
        padding-bottom: 65px;
    }
    .lisanslar {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        background-color: white;
        margin: 40px 20px;
        gap: 30px;
    }
    #lisanslar .baslik {
        font-size: 2.8rem; /* 5.5vh'den değiştirildi */
        font-weight: 100;
        color: #1c4f86;
        text-align: center;
        margin-bottom: 30px;
    }

     #lisanslar .not {
        font-size: 1rem; /* 1.9vh'den değiştirildi */
        font-weight: 100;
        color: #161617;
        text-align: center; 
        margin-bottom: 30px;
    }
    #lisanslar .notboldtext {
        font-family: 'Medium', sans-serif;
    }

    .lisanslar .container {
        width: 90%;
        margin: auto;
    }

    .icliste {
        padding-left: 20px;
        list-style: none;
    }

    .icliste li {
        position: relative;
        padding-left: 30px;
        font-size: 1rem;
    }

    .icliste li::before {
        content: "";
        position: absolute;
        top: 10px;
        left: 0;
        width: 7px;
        height: 7px;
        background-color: #1c4f86;
        border-radius: 50%;
    }

    .accordion {
        background-color: #ffffff;
        color: #333;
        cursor: pointer;
        padding: 1px;
        width: 100%;
        border: none;
        text-align: left;
        outline: none;
        font-size: 1.1rem; /* 18px'den değiştirildi */
        transition: 0.4s;
        border-bottom: 1px solid #ccc;
    }

    .accordion.active{
        border-bottom: none;
    }
    
    .panel {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
        opacity: 0;
        line-height: 1.6;
        visibility: hidden;
        padding-left: 15px;
        padding-top: 12px; 
    }

    .panel.show {
        max-height: 500px; /* İçeriğe göre yeterince büyük bir değer */
        opacity: 1;
        visibility: visible;
    }

    .container ul {
        padding-left: 20px;
        list-style: none;
    }

    .accordion ul{
      list-style: none;
      font-size: 1.2rem; /* 2.3vh'den değiştirildi */
      color: #333;
      margin: 10px 0;
      padding-left: 40px;
      position: relative;
      display: flex;
      align-items: center;
      padding-bottom: 5px;
    }

    .accordion li::before {
      content: "";
      position: absolute;
      left: 10px;
      width: 25px;
      height: 25px;
      background-image: url('assets/arrow_down.svg');
      background-size: contain;
      background-repeat: no-repeat;
      transition: transform 0.3s ease-in-out;
    }

    .accordion.active li::before {
        transform: rotate(180deg);
    }
    
    @media (max-width: 992px) {
        #lisanslar .baslik {
          font-size: 2.2rem;
        }
        .accordion ul {
          font-size: 1.1rem;
        }
        .icliste li {
          font-size: 0.9rem;
        }
    }


    /*teknik özellik stilleri*/
    #teknikozellik{
        justify-content: center;
        align-items: center;
        padding-top: 85px;
        padding-bottom: 45px;
    }

    .teknikozellik {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        background-color: white;
        margin: 10px 20px;
        gap: 30px;
    }

    #teknikozellik .baslik {
        font-size: 2.8rem; /* 5.5vh'den değiştirildi */
        font-weight: 100;
        color: #1c4f86;
        text-align: center;
    }

    #teknikozellik .altbaslik {
        font-size: 1.8rem; /* 3.5vh'den değiştirildi */
        font-weight: 100;
        color: #000000;
        text-align: center;
        margin-bottom: 30px;
    }

    #teknikozellik .not {
        font-size: 1rem; /* 1.9vh'den değiştirildi */
        font-weight: 100;
        color: #161617;
        text-align: center; 
        margin-bottom: 25px;
    }

    #teknikozellik .notboldtext {
        font-family: 'Medium', sans-serif;
    }

    .teknikozellik .container {
        width: 90%;
        margin: auto;
    }

    .icliste2 {
        padding-left: 20px;
        list-style: none;
        font-size: 1rem;
    }

    .icliste2 li{
        margin-bottom: 7px;
    }

    .icliste3 {
        padding-left: 20px;
        list-style: none;
        font-size: 1rem;
    }

    .icliste3 li {
        position: relative;
        padding-left: 25px;
        margin-bottom: 7px;
    }

    .icliste3 li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 10px;
        width: 7px;
        height: 7px;
        background-color: #1c4f86;
        border-radius: 50%;
    }
    
    @media (max-width: 992px) {
        #teknikozellik .baslik {
          font-size: 2.2rem;
        }
        #teknikozellik .altbaslik {
          font-size: 1.5rem;
        }
    }


    /*uyumluluk stilleri*/
    #uyumluluk {
        padding-top: 145px; 
        padding-bottom: 60px;
        width: 100%;
    }
    
    .uyumluluk {
        background: linear-gradient(135deg, #082b6a, #357da8);
        text-align: center;
        width: 100%;
        margin: 0 auto;
        padding: 70px 20px 60px 20px;
    }
    
    .uyumluluk .baslik {
        font-size: 2.5rem; /* 4.5vh'den değiştirildi */
        color: #ffffff;
        margin-bottom: 80px;
    }

    .uyumluluk .altmetinlink a {
        font-size: 1.1rem; /* 2vh'den değiştirildi */
        color: #ffffff;
        text-decoration: underline;
    }
    
    .uyumluluk .altmetinlink a:hover {
        color: #10a3ec;
    }
    
    .logo-container1, .logo-container2 {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 20px;
        flex-wrap: wrap; /* Logoların sığmadığında alt satıra geçmesini sağlar */
    }
    
    .logo-container2 {
        margin-bottom: 40px;
    }
    
    .logo {
        width: 200px;
        height: auto;
        filter: brightness(0) invert(1);
    }

    @media (max-width: 992px) {
        .uyumluluk .baslik {
            font-size: 2rem;
            margin-bottom: 40px;
        }
        .logo {
            width: 150px;
        }
    }

    @media (max-width: 768px) {
        .uyumluluk .baslik {
            font-size: 1.5rem;
        }
        .logo {
            width: 120px;
        }
    }

    /* Ana Kapsayıcı Ortalama */
    #demo {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        margin: 0;
        padding: 100px 15px;
        width: 100%;
        z-index: 2;
    }
    .demo{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        z-index: 2;
    }

    .form-wrapper {
        display: flex;
        background: white;
        padding: 35px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.377);
        width: 100%;
        max-width: 1200px; /* Formun çok genişlemesini önle */
    }

    .text-container {
        flex: 1;
        padding-right: 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .demo-logo {
        height: 70px;
        width: 145.26px;
        max-width: 100%;
        display: block;
    }

    .text-container h2 {
        font-size: 1.8rem; /* 3.2vh'den değiştirildi */
        color: #1d4795;
        font-family: 'Medium', sans-serif;
    }

    .text-container p {
        font-size: 1.1rem; /* 2.2vh'den değiştirildi */
        color: #666;
        line-height: 1.6;
    }

    #demo .notboldtext {
        font-family: 'Medium', sans-serif;
    }

    .form-container {
        flex: 1;
        color: white;
        padding: 20px;
        border-radius: 10px;
    }

    input, textarea, select {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid rgb(135, 134, 134);
        border-radius: 5px;
        color: #666;
        font-size: 1rem; /* 2.3vh'den değiştirildi */
    }

    .form-row {
        display: flex;
        gap: 10px;
    }

    label {
        font-size: 1rem; /* 2.3vh'den değiştirildi */
        display: block;
        margin-top: 10px;
        color: #666;
    }

    .formbutton {
      background: #1d4795;
      color: white;
      border: none;
      padding: 10px 15px;  /* Dikey, Yatay */
      width: 50%;
      cursor: pointer;
      border-radius: 5px;
      height: auto;        /* Otomatik yükseklik */
      font-size: 1rem;
      line-height: 1.2;
  }

    .formbutton:hover {
        background: #989797;
    }

    .form-row.recaptcha-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap; /* Küçük ekranlar için */
    }
    
    .g-recaptcha {
        margin-right: 10px;
        margin-bottom: 10px; /* Küçük ekranlar için boşluk */
    }

    @media (max-width: 992px) {
        .form-wrapper {
            flex-direction: column;
            padding: 20px;
        }
        .text-container {
            padding-right: 0;
            padding-bottom: 30px;
            text-align: center;
        }
        .demo-logo {
            margin: 0 auto;
        }
        .form-row {
            flex-direction: column;
            gap: 0;
        }
        .form-row.recaptcha-row {
            flex-direction: column;
        }
        .g-recaptcha {
            margin-right: 0;
        }
        .formbutton {
            width: 100%;
        }
    }

    /*footer stilleri*/
    #footer{
        padding-top: 100px;
        position: relative;
        z-index: 1; 
    }

    .footer {
        background: linear-gradient(to right, #082b6a, #357da8);
        color: white;
        text-align: left;
        padding: 40px 20px 30px 20px;
        width: 100%;
    }
    .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
        padding: 20px;
        gap: 40px;
    }
    
    .footer-section {
        flex: 1;
        min-width: 280px; /* Daha iyi sığdırma için ayarlandı */
    }
    
    .footer-section img{
        max-width: 150px;
        height: auto;
    }
    .footerbaslik, .footerbaslikcontact {
        font-size: 1.5rem; /* 3.5vh'den değiştirildi */
    }
    .footermetin{
        font-size: 1rem;
        margin: 5px 0;
    }

    .footer a{
        text-decoration: none;
        color: #ffffff;
    }

    .contact-info {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 10px;
        font-size: 1rem;
    }

    .contact-info i {
        font-size: 1.1rem;
    }
    .contact-info a:hover{
        color: #989797;
    }
    .social-icons {
        gap: 15px;
    }
    
    .social-icons a {
        color: white;
        margin: 0 10px;
        font-size: 24px;
        text-decoration: none;
        transition: 0.3s;
    }
    .social-icons a:hover {
        color: #989797;
    }

    .footer-links {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 1200px;
        margin: auto;
        padding: 20px;
        gap: 15px;
    }
    .footer-links a:hover {
        color: #989797;
    }
    
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }
        .footer-section, .contact-info, .footerbaslikcontact {
            padding-left: 0;
            justify-content: center;
            text-align: center;
        }
    }


/*wp buton*/
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 35px;
    right: 35px;
    background-color: #fff;
    border: 0.5px solid #bebebe;
    color: #25d366;
    border-radius: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    z-index: 100;
    cursor: pointer;
}

.popup {
    display: none;
    position: fixed;
    height: 200px;
    bottom: 100px;
    right: 45px;
    width: 300px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    z-index: 101;
}

.popup .x {
    display: flex;
    align-items: center;
    background-color: #085e54; 
    color: white;
    padding: 10px;
    z-index: 102; 
}

.popup .x img {
    width: 40px;
    height: 30px;
    border-radius: 50%;
    margin-right: 10px;
    padding-left: 10px;
}

.popup .x .name {
    font-family: 'Light', sans-serif;
}

.popup .x .profiledescription{
    font-family: 'Light', sans-serif;
    font-style: italic;
}

.popup .x .profiledetails {
    display: flex;
    flex-direction: column;
}

.popup .message-container {
    background-image: url(assets/wpduvar.jpeg);
    padding: 45px;
    color: #333;
    font-size: 14px;
    background-size: cover;
}

.popup .message-container .message {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    color: #000000;
    font-size: 16px;
    padding: 5px;
    border-radius: 10px;
    text-align: left; /* Mesajı sola yaslar */
    position: absolute; /* message sınıfını konumlandırır */
    top: 70px; /* yukarıdan 10px uzaklık */
    left: 10px; /* soldan 10px uzaklık */
    width: calc(100% - 60px); 
}

.popup .message-container button {
    position: absolute;
    bottom: 8px;
    left: 10px; /* Butonu sola yaslamak yerine biraz daha ortaya çekebiliriz */
    width: calc(100% - 20px); /* Butonun genişliğini kutunun kenarlarına dayanmaması için ayarlıyoruz */
    height: 25px;
    padding: 5px;
    background-color: #4fcd5d;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
    font-family: Arial, Helvetica, sans-serif;
    /*font-family: 'WpBaslik', sans-serif;*/
    display: flex;
    justify-content: center; /* İkon ve yazıyı ortalamak için */
    align-items: center; /* İkon ve yazıyı ortalamak için */
}


.popup .message-container button:hover {
    background-color: #399143;
}

.popup .message-container i{
    color: #fff;
    margin-right: 5px;
    font-weight: bold;
} 
