

*{
  margin:0px;
  padding:0px;
   font-family: "Michroma", sans-serif;
  
}




html, body {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
/* Header Bölümü */
.site-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width: 100%;
  height: 80px;
  background-color: black;
  gap:1px;
  flex-wrap:wrap;
}

.site-header>a{
  text-align: center;
   background-color: #f0c040;
  color: black;
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size:0.9rem;
  margin-left:20px;
  margin-right: 0px;
  width: 100px;
  height: 20px;
  padding-bottom: 10px;
   white-space: nowrap;
}

.logo{
  display: flex;
  align-items: center;
  gap: 6px; 
  margin-left: 10px;
  
 

}

.logo img{
    display:flex;
 
  max-height: 60px;
  background-repeat: no-repeat;
  background-size:cover ;
  background-position: center;
 margin: 0px;
 margin-left:0px;
 margin-right: 0px;
 padding-right:0px;
}

.mot{
  
  text-align: left;
  color:gray;
  font-family: "Michroma", sans-serif;
  font-size: x-small;
  white-space: nowrap;
}
.menu{
   display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  padding: 10px 40px;
  gap:10px;
  
}

.menu a{
  text-decoration: none;
  color:white;
  font-size: 10px;
}


.hover-underline {
  font-size: 2rem;
  color: #ffffff;
  position: relative;
  display: inline-block;
}

.hover-underline::after,
.hover-underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #c7c8c3, #f0c040);
  bottom: -5px;
  left: 0;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease-out;
}

.hover-underline::before {
  top: -5px;
  transform-origin: left;
}

.hover-underline:hover::after,
.hover-underline:hover::before {
  transform: scaleX(1);
}


.explosive-text {
    font-size: 3rem;
    color: #fff;
    letter-spacing: 0.1em;
    display: inline-block;
    position: relative;
    transition: transform 0.3s ease-out;
}

.explosive-text:hover {
    transform: scale(1.1);
}

.explosive-text:hover::before,
.explosive-text:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: burst 0.8s ease-out forwards;
}

.explosive-text:hover::before {
    background: radial-gradient(circle, rgba(255, 0, 150, 0.6), transparent);
    z-index: -1;
}

.explosive-text:hover::after {
    background: radial-gradient(circle, rgba(0, 200, 255, 0.6), transparent);
    z-index: -2;
}

/*Section 1  Bölümü  */

.main-1{
  
  width: 100%;
  padding:80px 20px 50px 20px;
  background-color: #e9e6e0;

    
}
.main1-con {
  
    margin:0px;
    margin-top:0px;
    margin-bottom:10px;
    color: gray;
   padding-top: 50px;
}

.main1-con h1{
  font-size: 16px;
  
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  
  width: 65%;
    padding: 10px 20px;
}
.main1-con h2{
  margin-top: 25px;
  font-size:36px;
  text-decoration: underline;
  padding: 10px 20px;
  
}

.main1-con p{
  margin-top: 25px;
  margin-bottom: 25px;
  font-size: 25px;
  padding: 10px 20px;
  
}

/* Main button */
.btn-alan{
  display: flex;
  gap:20px;
  padding: 10px 20px;
  
}
.btn-alan a{
  text-decoration: none;
  color:black;
  font-size: 20px;
  background-color: #f0c040;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  
}

.text{
  display:flex; 
  
  justify-content: center;
  
  flex-wrap:wrap;
  
  gap:30px; 
}

.text h3{
    font-size: 1rem;
    margin-top: 20px;
    padding: 10px 20px;
     text-align: center;
    cursor: pointer;
   
}
.text h3:hover {

}
/* Section 1 bölüm sonu */

/* Seciton 2 Bölüm başı*/
.main-2{
    text-align: center;
    padding: 60px 20px;
    background-color: #e9e6e0;;
    width: 100vw;
   
  
  
    
}
.main2-con{
    text-align: center;
    
    margin: auto;
    padding: 20px;
    

    border: 2px solid white;
    
    box-shadow: 0 0 10px white;
   
    border-radius: 10px;

}
.main2-con h1{
    margin-bottom: 10px;
   
   
}
.main2-con h2{
  margin-bottom: 15px;
}
/* Section 2 bölüm sonu */

/*Kartlar Bölümü Başı */

#cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  background-color: #e9e6e0;
  gap:100px;
}

#cards div {
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
#cards div:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

#cards div h3 {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #f0c040;
    
}

#cards div ul {
    list-style-type: disc;
    padding-left: 20px;
}
#cards div ul li {
    margin-bottom: 8px;
    font-size: 1.1rem;
    color: #555;
}
.list-item {
  text-decoration: none;   
  color: black;
  font-size: 0.2rem;
  margin: 5px 0;
  display: block;
      
}

/*Kartlar Bölümü Sonu */

/*Section 3  Bölümü Başı */


.main-3{
    width: 100vw;
    height: 80vh;
    background-color: #e9e6e0;
    color: black;
    display: flex;
    justify-content: center;
    
    
    font-size: 2rem;
}

.main3-con h1{
    margin-bottom: 20px;
  
    border: 2px solid white;
    box-shadow: 0 0 10px white;
    text-align: center;

}



.text2{
    display:flex; 
    flex-direction:row;
    justify-content:space-evenly;
    align-items:center;
    flex-wrap:wrap;
    padding-top:50px;
     gap:10px;
}

.text2 h3{
    font-size: 16px;
    margin-top: 20px;
    padding: 10px 20px;
    cursor: pointer;
    
    text-align: center;
}
.text2 p {
    font-size: 1.2rem;
    color: gray;
    padding: 10px 20px;
    text-align: center;
}
.text2 h3:hover{
  all:inherit;
}


/*section 3  Bölümü sonu */
/* Section 4 bölüm başı*/
.main-4 {
 background-color: #e9e6e0;
 padding-top:20px;
 padding-bottom:20px;
  color: black;
}

.main4-con h1 {
 
  color: black;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;

  box-shadow: 0 0 10px rgba(0,0,0,0.3);
 
}

.main4-con2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items:center;
  gap: 30px;
}

.main4-con2 h3 {
  font-size: 1.2rem;
  margin: 0;
  text-align: center;
  color: black;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
  padding:10px 20px;
}



/* Her başlık ve paragraf çifti kutu gibi dursun */
.main4-con2 h3, .main4-con2 p {
  width: 300px;
}

/* Hover efekti */
@media (min-width: 769px) {
  .main4-con2 h3:hover,
  .main4-con2 p:hover {
    transform: scale(1.05);
    transition: all 0.3s ease;
    color: #f0c040;
  }
}
/*Acordion  Bölümü başı */

.ek-hizmetler {
  background-color: #e9e6e0;
  color: black;
  padding: 40px 20px;
}

.ek-hizmetler h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
  border-bottom: 2px solid #f0c040;
  display: inline-block;
}

.accordion-btn {
  width: 100%;
  padding: 15px;
  text-align: left;
  background: #f0c040;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  margin-top: 10px;
  transition: background 0.3s;
}

.accordion-btn:hover {
  background: #e0ae30;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #f9f9f9;
  padding: 0 15px;
}

.accordion-content p {
  margin: 10px 0;
  padding: 10px 0;
}
/*Acordion  Bölümü sonu */


/*Footer  Bölümü başı */


.site-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #111;
  color: white;
  padding: 30px 50px;
  flex-wrap: wrap;
}

.footer-left img {
  height: 100px;
  margin-right: 10px;
}

.footer-brand {
  font-size: 1.2rem;
  font-weight: bold;
    display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 14px;
}

.footer-center p,
.footer-right a {
  margin: 8px 0;
color: white;
  text-decoration: none;
}

.footer-right a {
  margin-right: 15px;
  font-size: 1.2rem;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  font-size: 28px;
  padding: 15px;
 border-top-left-radius:6px;
 border-top-right-radius:6px;
 border-bottom-left-radius:6px;
 border-bottom-right-radius:6px;
  z-index: 1000;
  text-align: center;
  box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/*Footer Bölümü Sonu */



/*Teklif.html  Bölümü Başı */

.form-section{
  background-color: #e9e6e0;
  
}

.form-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
 
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  max-width: 400px;
  margin: auto;
  color: black;
}
.form-container label{
  margin-bottom: 10px;
  font-weight: bold;
  
}
.form-container input{
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  color:black;
}
.form-container button{
  background-color: #f0c040;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
.form-container textarea{
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  color:white;
  resize: vertical;
}


select {
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: white;
  color:black;
  appearance: none;       
  -webkit-appearance: none;
  -moz-appearance: none;
  display:flex;
    
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  color:black;
}
/*Teklif.html  Bölümü Sonu */

/*iletisim.html bölümü bası */
.iletisim-section textarea{
  color:black;
}
.iletisim-section{
  background-color: #e9e6e0;

}
.iletisim-section h1{
  display:flex;
  justify-content:center;
  gap:20px;
  padding-top:50px;
  padding-bottom:50px;
 
}
.harita{
  padding-top:100px;
}

/* hakkımıda bölüm bası */

.about{
  
   max-width: 900px;
  margin: 80px auto;
  padding: 40px;
 
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  line-height: 1.7;
  background-color:#e9e6e0;
}
.about  h1{
  
  font-size: 2rem;
  text-align: center;
  color: black;
  margin-bottom: 25px;
 
  
}
.about p {
  margin-bottom: 18px;
  text-align: justify;
  font-size: 1rem;
  
  
}
/* hakkımızda böşüm sonu */

/*Response Bölümü Başı */

@media (max-width: 768px) {


  .main-2{
    margin-top:auto;
  }
  .site-header {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
  }
  .menu {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
  }
  .text{
    padding-top: 0px;
    gap:20px;
    margin:0px; 
    padding-bottom:0px;
    flex-direction: row;
    
  }
  .text h3{
    font-size: 1rem;
    padding: 5px 10px;
  }
  .text p{
    font-size: 1rem;
    padding: 5px 10px;
  }
  
  #cards {
    grid-template-columns: 1fr;
    padding: 10px;
    gap: 20px;
  }
  .explosive-text {
   margin-top:10px;
    font-size: 1.5rem;

  }
  .main-3{
    height: auto;
    padding: 50px 0;
  }
  .main3-con h1{
    font-size: 1.5rem;
    padding: 10px;
  }
  .main3-con p{
    font-size: 1rem;
    padding: 10px;

}  
.site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-left, .footer-center, .footer-right {
    margin: 10px 0;
  }
  .footer-right a {
    margin: 0 10px;
  }
  .footer-left img {
    display: inline;
  }
  
.about {
    margin: 40px 15px;
    padding: 25px;
  }


}
  


@media (min-width: 769px) {
  .text h3:hover {
    font-size: 1rem;
    color: gray;
    transition: transform 0.5a ease-out;
    transform: scale(1.2);
    border: 1px solid #f0c040;
    border-radius: 10px;
    padding: 10px 20px;
    box-shadow: 0 0 10px #f0c040;
    cursor: pointer;
  }
  .text2 h3:hover{
  
  font-size: 1rem;
  color: #f0c040;
  transition: transform 0.7s ease-out;
    transform: scale(1.2);
    border:1px solid #f0c040;
    border-radius: 10px;
}

}

/*Response  Bölümü Sonu */

