
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:"Geneva"}

.container{

    height: 100vh;
    width: 100%;
   
    
      
}







@keyframes fade{

    0%{
        opacity: 1;
    }

    33%{
        opacity: 0;

    }    

    67%{

        opacity: 0;

    }

    100%{

        opacity: 1;
    }
}

.container img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
animation: fade 15s ease-in-out infinite alternate;

}

img:nth-of-type(1){

    animation-delay: 3s;
}

img:nth-of-type(2){

    animation-delay: 6s;
}

img:nth-of-type(3){

    animation-delay: 9s;
}

img:nth-of-type(4){

    animation-delay: 12s;
}


@media (max-width: 768px) {

.container img {
width: 100%;
height: 100%;
object-fit: cover;
position: absolute;
top: 0;
left: 0;
animation: fade 15s ease-in-out infinite alternate;}



}


@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
  background-color: #D3D3D3;
}

.logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img{
  height: 100px;
}




/* Mobile styles */
@media (max-width: 768px) {
  #navbar {
    display: none; /* Hide navbar by default on small screens */
    flex-direction: column;
    position: absolute;
    top: 60px; /* Position it below the header */
    left: 0;
    width: 100%;
    background-color: #333;
    text-align: center;
    opacity: 0;
    transform: translateY(-100%); /* Hide off-screen */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
  }

  #navbar.active {
    display: flex;
    opacity: 1;
    transform: translateY(0); /* Slide it into view */
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .menu-toggle span {
    background-color: #fff;
    height: 4px;
    width: 30px;
    margin: 4px 0;
    transition: all 0.3s ease;
  }

  /* Animation for the hamburger icon when clicked */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 8px;
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -8px;
  }

}


.logo2 {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px;
  display: flex;
  width: 100px;
  height: 100px;
  z-index: 100; /* Ensure button is always on top */
  transition: background-color 0.3s ease;
}


/*ikinci
*/

body{

    width: 100%;
}

h1{

font-size: 50px;
line-height: 64px;
}


h2{
font-size: 20px;
line-height: 54px;
color: #222;
}


h4{
font-size: 20px;
color: #222;
}

h6{

font-weight: 700;
font-size: 12px;

}



.section-p1{

    padding: 40px 80px;
}


.section-m1 {

margin: 40px 0;

}


.logo{

   padding-top: 10px;
    max-width: 100px;
}


#header{

    display: flex;
    align-items: top;
    justify-content: space-between;
    padding: 2px 8px;
    background: linear-gradient(68deg, rgba(131,94,64,1) 35%, rgba(17,18,18,1) 25%, rgba(54,89,66,1) 60%);


}

#navbar{

    display: flex;
    align-items: center;
    justify-content: center;

}

#navbar li{

    padding-top: 10px;
    list-style: none;
    position: relative;
    padding-left: 25px;
   font-size: 20px;

}

#navbar li a{

    text-decoration:none;
 
    font-weight: 500;
    color:#fff;
    transition: 0.4 ease;
    
}

#navbar li a:hover,
#navbar li a.active{

    color: #38393a;

}

#navbar li a.active::after,
#navbar li a:hover::after
{

    content:"" ;
    width: 30%;
    height: 2px;
    background-color: #088178;
}
    

/* Hamburger button styles (for mobile) */
.hamburger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-left: 95%;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  /* Initially hide the navbar */
  #navbar {
    display: none; /* Hide navbar by default */
    position: absolute;
    top: 60px; /* Adjust this based on the header height */
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    flex-direction: column;
    padding: 10px 0;
    transition: transform 0.3s ease-in-out;
    transform: translateY(-100%); /* Slide up when hidden */
  }

  /* Show navbar when active */
  #navbar.active {
    display: flex;
    transform: translateY(0); /* Slide down when visible */
  }

  /* Show the hamburger icon */
  .hamburger {
    display: block;
  }

  /* Logo adjustment for mobile */
  .logo {
    max-width: 80px;
  }

  #header {
    position: relative;
  }

  #navbar li {
    width: 100%;
    padding: 10px 0;
    text-align: center;
  }
}



    

.icerik1{
height: 70% ;
background-color: white;
color: #555;
font-size: 24px;
padding:80px;
}

.icerik1 h1{

  font-size: 40px;
  color: black;
  font-weight: 100;
}

.wpcontent {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}



/* WhatsApp Button Style */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366; /* WhatsApp Green */
  padding: 5px;
  border-radius: 10%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  color: white;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000; /* Ensure button is always on top */
  transition: background-color 0.3s ease;
}

.whatsapp-button:hover {
  background-color: #128c7e; /* Darker green for hover effect */
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */

}

/* Icon styling */
.whatsapp-button i {
  margin: 0;

}



/* Optional: Adding space between content and button */
.wpcontent {
  margin-bottom: 80px; /* Ensure there's enough space for the button */
}


.markalar{

 background: linear-gradient(68deg, rgba(131,94,64,1) 35%, rgba(17,18,18,1) 25%, rgba(56,57,58,1) 60%);

 }
/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

/* Container for images with class 'aksesuarlar' */
.aksesuarlar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 500px;
  max-width: 100%;
  overflow: hidden;
  gap: 10px; /* Space between images */
}

.aksesuarlar img {
  width: 33.33%; /* Each image takes up 1/3 of the container */
  height: auto;
  object-fit: cover; /* Ensures images fill the space without distortion */
  transition: transform 0.3s ease, opacity 0.3s ease; /* Smooth zoom effect */
}

/* Zoom effect on hover */
.aksesuarlar img:hover {
  transform: scale(1.1); /* Zoom in effect */
  opacity: 0.9; /* Optional: Slight opacity change */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .aksesuarlar {
    flex-direction: column; /* Stack images vertically on smaller screens */
    height: auto;
  }

  .aksesuarlar img {
    width: 100%; /* Make images take up full width of the container */
    margin-bottom: 10px; /* Optional: Add space between images */
    height: auto;
  }
}




.image-row {
      display: flex;           /* Use Flexbox to display items in a row */
      justify-content: space-between; /* Space out images evenly */
      gap: 10px;               /* Space between images */
      flex-wrap: wrap;         /* Allow images to wrap to the next line if needed */
      margin: 20px;
      }

    /* Individual image container */
    .image-container {
      width: 18%;             /* Set a percentage to allow 5 images in one row */
      height: 200px;          /* Fixed height */
      overflow: hidden;       /* Hide the overflow when zooming */
      border: 2px solid #ccc; /* Border around the images */
      border-radius: 8px;
      position: relative;
  
    }

    /* Image styling */
    .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;     /* Ensure the image covers the container without distortion */
      transition: transform 0.5s ease; /* Smooth zoom transition */
    }

    /* Zoom effect on hover */
    .image-container:hover img {
      transform: scale(1.4); /* Zoom in by 20% */
    }

.zoom {
    position: relative;
    width: 100%;
    height: 600px; /* Full viewport height */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;

}

.abutus {
  display: flex;
  justify-content: space-between; /* Space between content and photo */
  flex-wrap: wrap; /* Allow wrapping on small screens */
  align-items: center; /* Vertically center the content and photo */
  
}

.aboutuscontent {
  flex: 1; /* Take available space */
  margin-right: 20px; /* Add space between content and photo */
  max-width: 50%; /* Content will take 60% of the width on larger screens */
}

.aboutuscontent h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.aboutuscontent p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: #555;
}

.aboutusphoto {
  flex: 1; /* Take available space */
 width: 50%; /* Photo will take 40% of the width on larger screens */

  text-align: center; /* Center the image */
}

.aboutusphoto img {
  width: 100%; /* Make sure the image is responsive */
  height: 100%;
  border-radius: 1px;
  object-fit: cover; /* Ensure the image covers its container without stretching */
  
}

/* Responsive Design for small screens */
@media (max-width: 768px) {
  


  .abutus {
    flex-direction: column; /* Stack content and photo on top of each other */
    align-items: center;
     
  }

  .aboutuscontent p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}


  .aboutuscontent {
    max-width: 100%; /* Content takes full width */
    margin-right: 0; /* Remove margin on small screens */


  }

  .aboutusphoto {
    max-width: 100%; /* Photo takes full width */
    margin-top: 20px; /* Add margin on top of photo */

  }

  .aboutusphoto img {
    max-width: 90%; /* Image is smaller on mobile */
    margin: 0 auto; /* Center the image */

  }
}



.abutus2 {
  display: flex;
  justify-content: space-between; /* Space between photo and content */
  flex-wrap: wrap; /* Allow wrapping on small screens */
  align-items: center; /* Vertically center the photo and content */
 
}

.aboutuscontent2 {
  flex: 1; /* Take available space */
  margin-left: 10px; /* Space between content and photo */
  max-width: 48%; /* Content will take 60% of the width on larger screens */
}

.aboutuscontent2 h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.aboutuscontent2 p {
  font-size: 1 rem;
  line-height: 1.6;
  color: #555;
}

.aboutusphoto2 {
  flex: 1; /* Take available space */
  max-width: 48%; /* Photo will take 40% of the width on larger screens */
  text-align: center; /* Center the image */
}

.aboutusphoto2 img {
  width: 100%;
  max-width: 100%; /* Make sure the image is responsive */
  height: auto;
  border-radius: 8px;
  object-fit: cover; /* Ensure the image covers its container without stretching */
}

/* Responsive Design for small screens */
@media (max-width: 768px) {
  .abutus2 {
    flex-direction: column; /* Stack content and photo on top of each other */
    align-items: center;
    font-size: 1rem;
  }

  .aboutuscontent2 {
    max-width: 100%; /* Content takes full width */
    margin-left: 0; /* Remove margin on small screens */
    font-size: 1rem;
  }

  .aboutusphoto2 {
    max-width: 100%; /* Photo takes full width */
    margin-top: 20px; /* Add margin on top of photo */
    font-size: 1rem;
  }

  .aboutusphoto2 img {
    max-width: 80%; /* Image is smaller on mobile */
    margin: 0 auto; /* Center the image */
    font-size: 1rem;
  }

.icerik1{

  font-size: 1rem;
  padding: 20px;
}

 .image-container {
      width: 18%;             /* Set a percentage to allow 5 images in one row */
      height: 120px;          /* Fixed height */
      overflow: hidden;       /* Hide the overflow when zooming */
      border: 2px solid #ccc; /* Border around the images */
      border-radius: 8px;
      position: relative;
  
    }

.image-row {
      display: flex;           /* Use Flexbox to display items in a row */
      justify-content: space-between; /* Space out images evenly */
      gap: 3px;               /* Space between images */
      flex-wrap: wrap;         /* Allow images to wrap to the next line if needed */
      margin: 8px;
      }



}


#parallax-image {
   position: absolute;
    top: 40%;
    left: 70%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 70%;
    object-fit: cover;
    transition: transform 1.5s ease-out
  }

.split-screen {
  width: 100%;
  display: flex;
  height: 50; /* Full viewport height */
  flex-wrap: wrap; /* Allow content to wrap on smaller screens */
}

.split-screen a{

  text-decoration: none;
}

.left, .right {
  flex: 1; /* Take equal width */
  padding: 4%;
  height: 100%; /* Full height */
}

.left {
  background-color: #835e40;
  color: #38393a;
  width: 50%;
}

.right {
  background-color:#365942;
  color: #38393a;
  width: 50%;
}

.left h1{

color:#38393a;
}

.right h1 {

color: #38393a;
}

.right button{

  background-color: #38393a;
   color: #365942;
}

.right button a {

   color: #365942;
}


.left button a {

   color: #835e40;
}

.left button{

  background-color: #38393a;
  color: #835e40;
}



.split-screen h1 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: bold;
}

.split-screen p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.split-screen button {
  padding: 12px 12px;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.split-screen button:hover {
  background-color: #555b5f;
}


.parallax-container {
  position: relative;
  height:600px; /* Full viewport height */
  background-image: url('img/10.jpg'); /* Parallax image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* The key to the parallax effect */
  color: #38393a;
  display: flex;
  justify-content: center;
  align-items: center;
}

.parallax-container h1{

  font-size: 20px;
}

/* Content inside the parallax */
.parallax-content {
  text-align: center;
  z-index: 2; /* Make sure the content is above the image */
}

/* Styling for other content sections */
.content {
  padding: 0px;
  
  text-align: center;
}

/* Reset default margin/padding */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.contact-container {
  background-color: #fff;
  padding: 20px;
  max-width: 700px;
  width: 90%;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-left: auto;
  margin-right: auto;
}



.form-group {
  margin-bottom: 15px;
}

label {
  display: block;
  font-size: 1rem;
  color: #555;
}

input[type="text"],
input[type="number"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  color: #333;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  width: 100%;
  padding: 12px;
  background-color: #007BFF;
  color: #fff;
  font-size: 1.2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #0056b3;
}

.confirmation-message {
  display: none;
  text-align: center;
  margin-top: 20px;
}

.confirmation-message h3 {
  color: #28a745;
}

.confirmation-message p {
  color: #555;
}


/* Modern Footer Styles */
.modern-footer {
 background: rgb(165,104,42);
 background: linear-gradient(68deg, rgba(131,94,64,1) 35%, rgba(17,18,18,1) 25%, rgba(54,89,66,1) 60%);
  color: #fff;
  padding: 60px 20px;
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-section {
  flex: 1;
  min-width: 250px;
  text-align: left;
}

.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ecf0f1;
}

.footer-section p {
  font-size: 1rem;
  line-height: 1.6;
  color: #ecf0f1;
  margin-bottom: 20px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin: 10px 0;
}

.footer-section ul li a {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #3498db;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  font-size: 1.5rem;
}

.social-icon {
  color: #ecf0f1;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #3498db;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #bdc3c7;
  border-top: 1px solid #bdc3c7;
  padding-top: 20px;
}

.footer-bottom p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
  }

  .footer-section {
    text-align: center;
    margin-bottom: 30px;
  }

  .social-icons {
    justify-content: center;
  }
}


