/* CSS Reset */
* {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: Arial, Helvetica, sans-serif;
 }
 
/* Temel Stiller */
/* 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;
     display: block; 
 }
 
 .giris::before {
     content: "";
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: linear-gradient(to right, rgb(208, 207, 207) 10%, transparent 100%);
     z-index: 1;
     pointer-events: none; /* tıklanabilir alanları etkilemesin */
 }
 
 .giris h1,
 .giris p {
     position: absolute;
     z-index: 2;
     left: 2%; 
     color: #000000; 
    
 }
 
 .giris h1 {
     top: 30%; 
     font-size:28px; 
     margin: 0;
 }
 

 .giris p {
     top: 45%; 
     width: 30%; 
     margin: 0;
 }
@media (max-width: 768px) {
    
     .giris-alan .giris {
          position: static;
          text-align: center; 
      }
      
      .giris img {
          width: 100%;
          display: block;
      }
      .giris::before {
          content: none; /* Mobilde overlay devre dışı */
        }
      
      
      .giris h1,
      .giris p {
          position: static;
          color: #000;
          width: 100%;
          margin: 2vh 0;
          padding: 0 5vw; 
          text-align: left;
      }
      
      .giris h1 {
          font-size: 25px;
          padding-top: 3vh;
          padding-bottom: 1vh;
      }
      
      .giris p {
          font-size: 16px;
          padding-top: 1vh;
          padding-bottom: 3vh;
      }
      
 }
 /* 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: 96%;
    margin: 5vh 0;
    padding: 3vh 1vh;
 }
 .detayli-alan h2 {
     text-align: center;
     font-size: 30px;
     margin-bottom: 30px;
     color: #000;
 }
 
 /* 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: 4vh 0;
   
 }
 

 .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 */
 /* 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 */