/* CSS Reset */
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: Arial, Helvetica, sans-serif;
 }
 
/* Temel Stiller */
.navbar {
     width: 100%;
     background-color: white;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 5vh 3vh;
     box-shadow: 0 2px 5px rgba(0,0,0,0.1);
 }
 
 .logo {
     width: 10%;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 
 .logo img {
     max-width: 100%;
     height: auto;
     transition: opacity 0.3s ease;
 }
 
 .logo:hover img {
     opacity: 0.8;
     cursor: pointer;
 }
 
 .nav-links {
     display: flex;
     align-items: center;
     justify-content: center;
     list-style: none;
     padding: 1vh 2vh;
     width: 60%;
 }
 
 .nav-links li {
     margin-left: 30px;
     padding: 0 2vh;
 }
 
 .nav-links a {
     text-decoration: none;
     color: black;
     font-weight: 500;
     font-size: 18px;
     padding-bottom: 5px; /* Çizgi için boşluk */
     position: relative;
     transition: all 0.3s ease;
 }
 
 .nav-links a:hover {
     color: black; 
     font-weight: 700;
 }
 
 .nav-links a:hover::after {
     content: '';
     position: absolute;
     width: 100%;
     height: 2px;
     background-color: #00b75b;
     bottom: -5px;
     left: 0;
 }
 
 .menu-icon {
     display: none;
     font-size: 24px;
     cursor: pointer;
 }
 
 /* Mobil Görünüm */
 @media (max-width: 992px) {
     .navbar{
          position: relative;
          z-index: 1000; /* Menüyü en üst katmana al */
          background: white; /* Arkaplan rengi önemli */
          width: 100%;
          border-bottom: 1px solid #cdcbcb;
      }
      .menu-icon {
          display: block;
          padding: 1vh ;
          font-size: 24px;
      }
      
      .nav-links {
          width: 100%;
          display: none;
          position: absolute;
          top:94px;
          left: 0;
          background: white;
          flex-direction: column;
          padding: 20px 0;
          box-shadow: 0 5px 10px rgba(0,0,0,0.1);
      }
      
      .nav-links.active {
          display: flex;
      }
      
      .nav-links li {
          margin: 8px ;
          text-align: left;
          padding: 0 3vh;
          width: 100%;
      }
     
     .logo {
         width: 30%;
         max-width: 150px;
         align-items: center;
         justify-content: center;
     }
 }


   /* Sabit buton css ilk */
.sabit-butonlar.left{
     position: fixed;
     left: 1px; 
     top: 84%; 
     transform: translateY(-50%); 
     background: transparent;
     display: flex;
     flex-direction: column;
     padding: 2px;
     border: 1px solid transparent;
     border-top-right-radius: 10px;
     border-bottom-right-radius: 15px;
     z-index: 2;
   
   }
   .sabit-butonlar.right{
        width: fit-content;
        position: fixed;  
        right: 1px; 
        top: 84%; 
        transform: translateY(-50%); 
        background: transparent;
        display: flex;
        flex-direction: column;
        padding: 2px;
        border: 1px solid transparent;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 15px; 
        z-index: 2;
   }
   .sabit-butonlar button {
     box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3); 
     margin: 10px 5px;
     padding: 2vh;
     background-color: #fff;
     cursor: pointer;
     border: none;
     border-radius: 100px;
   }
   .sabit-butonlar button i.fa-whatsapp{
     font-size: 30px;
     color: #4dc247;
   }
   .sabit-butonlar button i.fa-phone-volume{
     font-size:26px;
     color: #2ebd59;
     
     /*   #2ebd59 */
   }
   @media (max-width: 768px) {
     .sabit-butonlar {
         top: 95%; 
         transform: translateY(-50%); 
     }
     .sabit-butonlar button i.fa-phone-volume{
          font-size:19px;
          color: #2ebd59;

        }
        .sabit-butonlar button i.fa-whatsapp{
          font-size: 20px;
          color: #4dc247;
        }
        .sabit-butonlar button{
          margin: 0;
        
        }
        .sabit-butonlar.right{
        right: 0.5vh;
        bottom: 10vh ;
        }
        .sabit-butonlar.left{
          left: 0.5vh;
          bottom: 10vh ;
          }
   }  
   /* Sabit buton css son */


     /* giriş alan ilk */
 .giris-alan {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0;
     padding: 0;
 }
 
 .giris-alan .giris {
     position: relative; 
     width: 100%;
     align-items: center;
     justify-content: center;
     text-align: left; 
     margin: 0;
     padding: 0;
 }
 
 .giris img {
     width: 100%;
     align-items: center;
     max-height: 400px; /* ekranın tamamını kaplamasını engeller */
     object-fit: cover; /* oranı koruyarak taşıma yapar */
     display: block;
 }
 
 
@media (max-width: 768px) {
    
     .giris-alan .giris {
          position: static;
          text-align: center; 
      }
      
      .giris img {
          width: 100%;
          display: block;
      }
      
      
 }
 /* giriş alan son */

 /* Genel alan */
.detayli-bilgi {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0;
     margin: 0;
 }
 .detayli-bilgi .detayli-alan{
    width: 100%;
    margin: 0vh 0;
    padding: 0vh 0vh;
 }
 .detayli-alan h2 {
     text-align: left;

     font-size: 30px;
     margin-bottom: 30px;
    
 }
 
 /* Alt menü butonları */
 .alt-menu-container {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
     padding: 3vh 1vh;
 }
 
 .alt-menu {
     background-color: #e0e0e0;
     border: none;
     padding: 1vh 2vh;
     border-radius: 4px;
     font-size: 16px;
     cursor: pointer;
     transition: background-color 0.3s;
 }

 
 .alt-menu:hover {
     background-color: #249e49;
 }
 
 /* İçerik alanı */
 .icerik-alani {
    width: 100%;
    margin: 0 auto;
    padding: 0vh 0;
    align-items: center;
    justify-content: center;
 }
 

 .icerik {
     width: 100%;
     display: none;
     font-size: 16px;
     color: #333;

 }
 
 
 .icerik.active {
     display: block;
 }
 
 @media (max-width: 768px) {
     .detayli-bilgi .detayli-alan {
         width: 100%;
         padding: 2vh 0;
     }
 
     .alt-menu-container {
         flex-direction: column;
         align-items: center;
         gap: 15px;
         padding: 2vh 0;
     }
 
     .alt-menu {
         width: 80%;
         text-align: center;
         padding: 1.2vh 2vh;
         font-size: 16px;
     }
 
      
     .icerik-alani {
         width: 92%;
         margin: 0 auto;
         padding: 3vh 0;
     }
 
     .icerik {
         width: 100%;
         font-size: 15px;
         color: #333;
         line-height: 1.6;
     }
     
 }
 


/* cihaz-alan son */
 .cihaz-detay {
     width: 100%;
     align-items: center;
     justify-content: center;
     margin: 3vh 0;
     padding: 1vh;
     font-family: 'Segoe UI', sans-serif;
 }
 
 .cihaz-detay h2 {
     width: 94%;
     align-items: center;
     justify-content: center;
     font-size: 28px;
     padding: 2vh 1vh 2vh 5vh;
     margin: 3vh auto ;
     color: #000;
     background: #e2e1e1;
 }
 .cihaz-detay i{
     color: #249e49;
 }
 
 .cihaz-detay  .cihaz-bilgi {
     width: 96%;
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-around;
     margin: 3vh 2vh;
     padding: 1vh 3vh;
 }
 
 .cihaz {
     display: flex;

     min-height: 180px;
     flex: 1 1 45%;
     text-decoration: none;
     border-radius: 10px;
     overflow: hidden;
     transition: background-color 0.3s ease;
     align-items: center;
     padding: 1vh 2vh;
     margin: 0 1vh;
 }
 .cihaz:hover .cihaz-yazi h3,
 .cihaz:hover .cihaz-yazi p {
     color: #249e49;
     transition: color 0.3s ease;
 }
 
 .cihaz img {
     width: 100px;
     height: auto;
     object-fit: contain;
     margin-right: 20px;
     transition: transform 0.3s ease;
 }
 
 .cihaz:hover img {
     transform: scale(1.05);
 }
 
 .cihaz-yazi h3 {
     font-size: 20px;
     margin: 0 0 10px;
     color: #000;
 } 
 
 
 .cihaz-yazi p {
     font-size: 16px;
     color: #444;
     margin: 0;
 } 
 
 
 /* Responsive için */
 @media (max-width: 768px) {
     .cihaz-detay {
         width: 100%;
         align-items: center;
         justify-content: center;
         text-align: center;
         margin: 0;
         padding:0.5vh 0;
     }
     .cihaz-detay h2 {
         width: 98%;
         align-items: center;
         justify-content: center;
         font-size: 20px;
         padding:2vh  0.5vh;
         margin: 2vh auto ;
         color: #000;
         background: #e2e1e1;
         
     }
     .cihaz-detay i {
          display: none;
      }
     .cihaz-detay .cihaz-bilgi {
          width: 98%;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         margin: 2vh 0.5vh;
         padding: 0;
     }
 
     .cihaz-bilgi .cihaz {
         flex: 1 1 100%;
         align-items: center;
         justify-content: center;
     }
 
     .cihaz img {
          width: 80%;
          align-items: center;
          margin: 0;
          padding: 1vh 0;
         margin-bottom: 10px;
     }
 
     .cihaz {
          width: 96%;
         flex-direction: column;
         text-align: center;
         margin: 2vh 0;
     }
 }
 /* cihaz-alan son */

 /* mamografi-alan ilk */
 .mamografi-alan {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 2vh 0 3vh 0;
     padding: 3vh 2vh;
     background: linear-gradient(to right, #e5e4e4, #e5e4e4);
     font-family: Arial, sans-serif;
   }
   .ozel-alan{
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 2vh 0 3vh 0;
     padding: 3vh 2vh;
     background: linear-gradient(to right, #FFFFFF, #FFFFFF);
     font-family: Arial, sans-serif;
   }
   

   .mamografi-alan .mamografi {
     width: 98%;
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 1vh 3vh;
     margin: 1vh 1vh;

   }
   
   .mamografi-detay {
     flex: 1 1 500px;
   }
   
   .mamografi-detay h2 {
     font-size: 30px;
     color: #000;
     margin-bottom: 20px;
   }
   
   .mamografi-detay p {
     font-size: 1rem;
     color: #333;
     line-height: 1.6;
     margin-bottom: 30px;
   }
   
   .btn {
     background-color: #00965e;
     color: white;
     text-decoration: none;
     padding:  1.5vh 2vh;
     border-radius: 5px;
     font-weight: bold;
     transition: background-color 0.3s ease;
   }
   
   .btn:hover {
     background-color: #007a4c;
   }
   
   .mamografi-video {
     flex: 1 1 500px;
     display: flex;
     justify-content: center;
     align-items: center;
   }
   .mamografi-video img{
     width: 90%;
     margin: 1vh 3vh 1vh 0;
     align-items: center;
     justify-content: center;
   }
   .video-wrapper {
     position: relative;
     padding-bottom: 56.25%; /* 16:9 oranı */
     height: 0;
     width: 100%;
     max-width: 100%;
   }
   
   .video-wrapper iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
   }
 
   /* Mobil uyumluluk */
@media (max-width: 768px) {
    .mamografi-alan{
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0;
     padding: 0;
    }
    .mamografi-alan .mamografi{
     width: 96%;
     display: flex;
     flex-direction: column;
     align-items: center;
     margin: 0;
     padding: 1vh 1vh ;
    }
    .mamografi .mamografi-detay{
     width: 100%;
     align-items: center;
     justify-content: center;
     margin-bottom: 0;
     padding: 3vh 1vh ;
     text-align: center;
     flex: 0;
   
    }

    .mamografi-detay h2 {
     font-size: 1.5rem;
     text-align: center;
     margin-bottom: 10px;
 }
 
 .mamografi-detay p {
     font-size: 0.9rem;
     text-align: center;
     margin-bottom: 15px;
 }
 .btn {
     display: block;
     width: fit-content;
     margin: 0 auto 1vh;
     padding: 1.5vh 2vh;
     font-size: 0.9rem;
 }
    .mamografi .mamografi-video{
     width: 100%;
     align-items: center;
     justify-content: center;
     padding: 3vh 1vh ;
     text-align: center;
     flex: 0;
     margin: 2vh 0;
     padding: 2vh 0.5vh;
    }
 }
 /* mamografi-alan son */

 /* mamografi bilgi ilk */
 .mamografi-bilgi {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0;
     margin: 2vh 0;
     font-family: Arial, sans-serif;
 }
 
 .mamografi-bilgi .mg-detay {
     width: 98%;
     flex-direction: column;
     align-items: center;
     justify-content: space-around;
     padding: 2vh 1vh ;
     margin: 1vh 0;
 }
 .mamografi .mamografi-gorsel{
     
 }
 .mg-detay h2{
     font-size: 24px;
     color: #333;
     text-align: left;
     margin: 2vh 3vh ;
 }
 
 .ozellik-container {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-around;
     margin: 3vh 0;
 }
 
 .feature-item {
     width: 50%;
     display: flex;
     justify-content: space-around;
     background-color: white;
     margin: 0 1vh ;
 }

 .feature-item .feature-content{
     width: 70%;
     padding: 2vh 0;
 }
 .feature-item h3 {
  margin: 1vh 1vh;
 }
 
 .feature-item p {
     font-size: 1rem;
     color: #555;
     line-height: 1.6;
    margin: 0 1vh ;
 }
 
 .feature-item img {
     width: 30%;
     align-items: center;
     justify-content: center;
     box-shadow: 0 2px 8px rgba(0,0,0,0.1);
 }
 
 /* Responsive Tasarım  bunu kontrol et*/
 @media (max-width: 768px) {
     .mamografi-bilgi {
         width: 100%;
         display: flex;
         align-items: center;
         justify-content: center;
         padding: 2vh 0;
         margin: 0;
     }
     .mamografi-bilgi .mg-detay {
         width: 98%;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         padding: 2vh 1vh ;
         margin: 0;
     }
     .mg-detay h2 {
         font-size: 1.5rem;
         color: #333;
         text-align: center;
         margin: 2vh 0 ;
     }
     .ozellik-container {
         width: 100%;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         padding: 1vh 0;
      
     }
     .feature-item {
         width: 96%;
         display: flex;
         flex-direction: column;
         align-items: center;
         justify-content: center;
         background-color: white;
         margin-bottom: 2vh ;
     } 
     .feature-item h3 {
         margin: 1vh 0 3vh 0;
         text-align: center;
     }
     .feature-item img {
          width: 80%;
          align-items: center;
          justify-content: center;
          margin: 1vh 0 3vh 0;
          box-shadow: 0 2px 8px rgba(0,0,0,0.1);
      }
      
     
 }
   /* mamografi bilgi son */


   /* call to action son */
 .call-action {
     width: 100%;
     background-color: #2C2C2C;
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 0;
     padding: 0;
  }
  
  .call-action .action {
     width: 90%;
     text-align: center;
     color: #fff;
     margin: 1vh 0;
     padding: 3vh 4vh ;
  }
  
  .action h2 {
     text-align: center;
     font-size: 30px;
     margin: 1vh 0 2vh 0;
  }
  
  .action p {
     font-size: 18px;
     margin-bottom: 30px;
     line-height: 1.6;
     text-align: center;
  }
  .action .button-alan{
     display: flex;
     width: 100;
     align-items: center;
     justify-content: center;
   
  }
  .action a {
     width: 20%;
     display: inline-block;
     padding: 12px 30px;
     background-color: #00965e;
     color: #000;
     margin: 0 5vh ;
     text-decoration: none;
     font-weight: bold;
     border-radius: 6px;
     transition: background-color 0.3s ease;
  }
  
  .action a:hover {
     background-color: #249e49;
     color: #fff;
  } 

  @media (max-width: 768px) {
     .call-action{
          width: 100%;
          align-items: center;
          justify-content: center;
          margin: 0;
          padding: 0;
     }
     .call-action .action {
          width: 90%;
          text-align: center;
          color: #fff;
          margin: 1vh 0;
          padding: 3vh 2vh ;
     }
     .action .button-alan{
          flex-direction: column;
     }
     .action a{
          width: 50%;
          display: block;
          padding: 12px 20px;
          background-color: #00965e;
          color: #000;
          margin: 0 0 2vh 0;
          text-decoration: none;

     }
     .action h2{
          font-size: 23px;
          margin: 1vh 0 2vh 0;
     }
     .action p{
          
          font-size: 16px;
         padding: 1vh 2vh;
     }
  }
  /* call to action son */



  .tracking-container {
   width: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   margin: 3vh 0 0 0;
   padding: 0;
   }
   
   .tracking-container .feature{
     width: 96%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     margin: 3vh 2vh ;
     padding: 3vh 0;
   }
   
   .feature h3 {
     width: 90%;
     font-size: 30px;
     margin: 1vh 0 3vh 0;
     color: #000;
     text-align: left;
     align-items: flex-start;
   }
   
   .feature p {
     width: 90%;
     font-size: 18px;
     color: #000;
     line-height: 1.6;
     margin: 1vh 0 3vh 0;
     text-align: left;
     align-items: flex-start;
   }
   
   .tracking-items {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-between;
     margin: 0 1vh ;
     padding: 0 1vh ;
   }
   
   .tracking-box {
     flex: 1 1 calc(25% - 30px);
     text-align: center;
     min-width: 250px;
     margin: 1vh  1vh ;
      padding: 2vh 1vh;
   }
   
   .tracking-img {
     width: 100%;
     height: auto;
     max-height: 180px;
     object-fit: contain;
     margin-bottom: 15px;
   }
   
   .tracking-box .tracking-text {
     font-size: 14px;
     color: #000;
     line-height: 1.4;
     text-align: center;
   }
   .tracking-box h4{
     font-size: 20px;
     margin: 1vh 0 3vh 0;
   }
   
   /* Mobil görünüm */
   @media (max-width: 768px) {
     .tracking-items {
       flex-direction: column;
       gap: 20px;
     }
   
     .tracking-box {
       flex: 1 1 100%;
       min-width: auto;
     }
   
     .tracking-img {
       max-height: 200px;
     }
   }
   

   /* footer alan ilk */

 .footer-alan{
     width: 100%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     margin: 0;
     padding: 0;
     background:#DCDCDC;
 }
 .footer-alan .footer{
     width: 96%;
     display: flex;
     align-items: flex-start;
     justify-content: space-around;
     margin: 3vh 0;
     padding: 1vh 0;
 }
 .footer .logo-alan{
     width: 30%;
     align-items: center;
     justify-content: center;
     text-align: center;
     margin: 2vh 0;
     padding: 2vh 0;
 }
 .logo-alan a{
     text-decoration: none;
 }

 .footer .hizli-linkler{
     width: 30%;
     color: #000;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     margin: 2vh 0;
     padding: 2vh 0;
 }
 .footer .harita{
     width: 30%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 2vh 0;
     padding: 2vh 0; 
 }
 .logo-alan img{
     width: 30%;
     align-items: center;
     justify-content: center;
     margin: 0 0 2vh 0;
 }
 .logo-alan .sosyal-alan {
     display: flex;
     justify-content: center;
     align-items: center;
     margin: 1vh 3vh;
     padding: 2vh 0;
   }
   
   .sosyal-alan .social-icon {
     width: 40px;
     height: 40px;
     border: 1px solid #000;
     border-radius: 50%; /* yuvarlak görünüm için */
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     color: #000;
     font-size: 18px;
     margin: 0 1vh;
     transition: color 0.3s ease, border-color 0.3s ease;
   }
   
   .sosyal-alan .social-icon:hover {
     color: inherit;
   }
   
   .sosyal-alan .social-icon[aria-label="YouTube"]:hover {
     color: #FF0000;
     border: 1px solid #FF0000;
   }
   
   .sosyal-alan .social-icon[aria-label="Instagram"]:hover {
     color: #E1306C;
     border: 1px solid #E1306C;
   }
   
   .sosyal-alan .social-icon[aria-label="Facebook"]:hover {
     color: #1877F2;
     border: 1px solid #1877F2;
   }
   
   .sosyal-alan .social-icon[aria-label="Twitter"]:hover {
     color: #515151;
     border: 1px solid #515151;
   }
   
 /* iframe (harita) için özel stil */
.harita iframe {
     width: 90%;
     height: 200px;
     border: none;
     border-radius: 8px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
     margin: 0vh 2vh 1vh 2vh;
 }
 

 
 .hizli-linkler a {
     width: 70%;
     color: #000;
     text-decoration: none;
     margin: 1.5vh;
     padding: 0.5vh 1vh;
     transition: color 0.3s ease;
     border: 1px solid #000;
     border-radius: 10px;
     font-size: 20px;
     text-align: center;
 }
 
 .hizli-linkler a:hover {
     color: #7b7a79;
     border: 1px solid #7b7a79;
     box-shadow: 0 4px 12px rgba(123, 122, 121, 0.4);
}
 

 
 /* Responsive görünüm */
 @media screen and (max-width: 768px) {
     .footer-alan{
          width: 100%;
          align-items: center;
          justify-content: center;
          margin: 0;
          padding: 0;

     }
     .footer-alan .footer {
          width: 96%;
         flex-direction: column;
         align-items: center;
     }
 
     .footer .logo-alan{
         width: 90%;
         margin: 1vh 0;
     }
 
     .logo-alan img {
         width: 50%;
         margin: 0;
         padding: 0;
     }
     .footer .sosyal-alan {
          width: 86%;
          align-items: center;
          justify-content: center;
     }
     .footer .hizli-linkler{
          margin: 0;
          width: 90%;

     }
     .hizli-linkler a{
          width: 80%;
          align-items: center;
          text-align: center;
          font-size: 20px;
     }
     .footer .harita{
          width: 96%;
     }
 }
 /* footer-alan son */