
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap');

*{
    margin: 0;
    padding: 0;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: white;
  background-image:url(images/arkaplan.png);
  background-size:auto;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: 100%;
  background-attachment: fixed;
}

.container{
    background-color: rgb(0 0 0 / 0%);
    height: 10vh;
    background-size: 100% 100%;
    width: 100%;
}

.container .navbar{
    width: 100% ;
    height: 120px ;
    background: #4CAF50;

}

.navbar .logo{
    display: inline-block;
    margin-left: 5%;
    margin-top: 2%;
    
}

.navbar .logo a{
    text-decoration: none;
    font-size: 3%;
    font-family: sans-serif;
    color: #f3f3f3;
}

.navbar .logo a img{
    margin-left: 5px;
    margin-top: 10px;
    margin: 0;
    height: 150px;
    width: 100%;
    
}



.navbar ul{
    float: right;
    margin-right: 20px;
    display: block;
}

.navbar ul li{
    list-style: none;
    display: inline-block;
    margin: 0 8px;
    line-height: 110px;
    
}


.navbar ul li a{
    color: white;
    text-decoration: none;
    font-size: 20px;
    padding: 6px 13px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    transition: .5s;
    margin: 2px;
    
  
}

.navbar ul li a.active,
.navbar ul li a:hover{
    background: white;
    color: black;
    border-radius: 4px;
}

/* banner*/

#banner {
  margin: 5rem 0;
  width: 90%;
  height: 50vh;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-left: 40px;

}
.banner-text {
  width: 40%;

}
.banner-text h1 {
  font-size: 5rem;
}
.banner-text p {
  font-size: 1.2rem;
  margin: 2rem 0;
  text-align:justify;
}
.banner-text button {
  border: none;
  border-radius: 1rem;
  background: none;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  color: white;
  background: rgb(185, 95, 11);
  cursor: pointer;
}

.banner-text button:hover {
  background: #4CAF50;
  color: black;
  border-radius: 1rem;
}
.img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  vertical-align: middle;
}
.banner-img {
  width: 50%;
  z-index: -2;
  border-image-slice: 1;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(to left, black, rgb(185, 98, 11));
}
.img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* banner end*/

/* about */
#about {
  margin: 5rem 0;
  height: 80vh;
  display: flex;
  align-items: center;
  margin-left: 40px;
  justify-content: space-between;
}
.about-text {
  width: 50%;
  margin-right: 5rem;
}
.about-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.about-text p {
  line-height: 160%;
  text-align: justify;
}
.about-text button {
  border: none;
  border-radius: 1rem;
  background: none;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  color: white;
  background: rgb(185, 95, 11);
  cursor: pointer;
}

.about-text button:hover {
  background: #4CAF50;
  color: black;
  border-radius: 1rem;
}
.about-img {
  width: 50%;
  z-index: -2;
  border-image-slice: 1;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(to left, black, rgb(185, 98, 11));

}
/* about end */

/* second */
#second {
  margin: 5rem 0;
  height: 80vh;
  display: flex;
  align-items: center;
  margin-left: 40px;
  justify-content: space-between;
}

.second-text {
  width: 50%;
  margin-right: 5rem;
}

.second-text h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.second-text p {
  line-height: 160%;
  text-align: justify;
}
.second-text button {
  border: none;
  border-radius: 1rem;
  background: none;
  padding: 0.5rem 1rem;
  font-size: 1.1rem;
  color: white;
  background: rgb(185, 95, 11);
  cursor: pointer;
}
.second-text button:hover {
  background: #4CAF50;
  color: black;
  border-radius: 1rem;
}
.second-img {
  width: 50%;
  z-index: -2;
  border-image-slice: 1;
  border-top: 2px solid;
  border-bottom: 2px solid;
  border-image-source: linear-gradient(to left, black, rgb(185, 98, 11));
}
/* second end */

/* video */

#vid {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 70vh;
  margin: 5rem 0;
}
#vid h3 {
  font-size: 4rem;
  color: white;
}
#vid h3 span {
  color: #4CAF50;
}
.card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4rem;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: honeydew;
  border-radius: 1rem;
  padding: 1.5rem;
  margin: 2rem;
  box-shadow: 1px 1px 1px -1px black;
  color: black;
  cursor: pointer;
  transition: 0.3s ease;
}



.card-text {
  font-size: 1.2rem;
}
.card:hover {
  transform: scale(1.1);
}
.icon {
  font-size: 3rem;
  margin: 2rem;
  color:#4CAF50
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 135%;
  z-index: -999;
  background: black;
}
.video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}
/* video end */
@media screen and (max-width:700Px){
  #vid h3 {
    font-size: 2rem;
    color: white;
  }
  
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 50px 30px;
  
}
.product {
  background-color:#4CAF50;
  border: 2px solid #ddd;
  padding: 15px;
  text-align: center;
  box-shadow: 0 10px 10px rgba(20, 159, 53, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease; 
  user-select: none;
}
.product img {
  max-width: 100%;
  height: auto;
  user-select: none;
}
.product-info {
  margin-top: 15px;
}
.product-info h2 {
  margin: 0 0 10px;
  font-size: 1.2em;
 
}
.product-info p {
  margin: 0 0 10px;
  color: red;
}

.product:hover {
  transform: scale(1.15); /* Üzerine gelindiğinde büyüme efekti */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Hoverda gölge efekti */
  
}

.box{
  max-width: 600px;
  margin: 20px;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  float: left;
  border: #333;

}

.content {
    margin-bottom: 20px;
}
.content h2 {
    border-bottom: 2px solid #4CAF50;
    padding-bottom: 5px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 20px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}


.contact-form {
    display: flex;
    text-align: justify;
    flex-direction: column;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.contact-form label {
    margin-bottom: 5px;
    color: #333;
}
.contact-form input, .contact-form textarea {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    width: 100%;
    box-sizing: border-box;
}
.contact-form textarea {
    resize: vertical;
    height: 100px;
}
.contact-form button {
    padding: 6px 10px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    width: 100px;
    float: right;
    margin-left: 480px;
    cursor: pointer;
    font-size: 1em;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.contact-form button:hover {
    background-color: #45a049;
}

.dropbtn {
    background-color: #4CAF50;
    color: white;
    padding: 6px 13px;
    font-size: 20px;
    border: none;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    border-radius: 3px;
}
  
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    z-index: 1;
    border-radius: 2px;
  }
  
  .dropdown-content a {
    color: black;
    padding: 6px 13px;
    text-decoration: none;
    display: block;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  }
  
  .dropdown-content a:hover {background-color: #4CAF50;}
  
  .dropdown:hover .dropdown-content {display: block;}
  
  .dropdown:hover .dropbtn {
    background-color: white;
    color: black;
    border-radius: 4px;
}
#myBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: white; /* Set a background color */
  color: black; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#myBtn:hover {
  background-color: #4CAF50; /* Add a dark-grey background on hover */
  color:white;
}


.center {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    
   
  }
  table, h3 {
    color: black;
  }
  
  table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    font-style: bold;
  }

  
.contact-info-container {
  background-color: honeydew;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  text-align: center;
  float: right;
  margin: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-info-container:hover {
  transform: scale(1.05); /* Üzerine gelindiğinde büyüme efekti */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2); /* Hoverda gölge efekti */
}
.contact-info-container h1 {
  margin-bottom: 20px;
  color: #333;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  
}

.contact-info h2 {
  margin-bottom: 10px;
  color: #333;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.contact-info p {
  margin: 5px 0;
  color: #555;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.contact-info a {
  color: #007BFF;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.containel {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: 110vh;
  margin-top: 90px;
  text-align:justify;
  border: ridge;
  border-color: #333;
  border-radius: 10Px;
}
.comtent {
  margin-bottom: 20px;
  
  
}

.comtent h2, h3 {
  border-bottom: 2px solid #4CAF50;
  padding-bottom: 5px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.comtent p {
  color: black;
  margin-bottom: 15px;
  line-height: 1.6;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

* {
  box-sizing: border-box;
}

.sidenav {
  width: 135px;
  position: fixed;
  z-index: 1;
  top: 200px;
  left: 10px;
  background: #4CAF50;
  overflow-x: hidden;
  padding: 8px 0;
  border-radius: 4%;
}

.sidenav a {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 25px;
  color: white;
  display: block;
}

.sidenav a:hover {
  color: #064579;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

.row {
  margin: 10px -16px;
}

/* Add padding BETWEEN each column */
.row,
.row > .column {
  padding: 0px;
  
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width: 33.33%;
  display: none; /* Hide all elements by default */
  
}

/* Clear floats after rows */ 
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Content */
.content {
  background-color: #b4efb7;
  padding: 10px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  text-align: center;
  border: ridge;
    border-bottom-color: black;
    border-top-color: black;
    border-right-color: black;
    border-left: black;
    border-radius: 5%;
    
}

.content p{
  font-size: 17px;
}
/* The "show" class is added to the filtered elements */
.show {
  display: block;
}

/* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 12px 20px;
  background-color: white;
  cursor: pointer;
  border-radius: 5px;
  font-size: 15px;
  
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; 
}

.btn:hover {
  background-color: #4caf50;
  color: white;
}

.btn.active {
  background-color: #4CAF50;
  color: white;
}

footer {
    text-align: center;
    padding: 1px ;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #333;
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

footer a {
  color: #4CAF50;
}


@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
