@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
html {
      scroll-padding-top: 220px; /* Adjust for a fixed header so that each anchor link leads to start of the particular section */
    }
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
 
::selection {
  color: #000;
  background: #fff;
}


 /*Push content below fixed header 
main {
    padding: 80px 20px 20px;
}*/

/* Responsive adjustments 
@media (max-width: 600px) {
   /* .logo {
        font-size: 1rem;
    }
     .lang-switch img {
        width: 24px;
        height: 16px;
    }*/
 
nav {
  position: fixed;
  background: rgb(232, 244, 248);
  width: 100%;
  padding: 10px 0;
  z-index: 12;
      
}

nav .menu {
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.menu .logo a {
  text-decoration: none;
  color: #fff;
  font-size: 35px;
  font-weight: 600;
}
/* Language switch container */
 .menu .lang-switch {
 
 display: inline-flex;
 gap: 10px;
	
}

/* Flag images */
.lang-switch img {
   
   height: 20px;
	width: 28px;
    border: 1px solid #ccc;
    border-radius: 3px;
	
    cursor: pointer;
    transition: transform 0.2s ease;
}

.lang-switch img:hover {
    transform: scale(1.1);
}

.main-menu {
  display: inline-flex;
}
.main-menu li {
  list-style: none;
  margin-left: 7px;
}
.main-menu li:first-child {
  margin-left: 0px;
}
.main-menu li a {
  text-decoration: none;
  color: black;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.main-menu li a:hover {
  background: #fff;
  color: black;

}
.checkbtn {
  font-size: 22px;
  color: black;
  float: right;
  line-height: 80px;
  margin-right: 30px;
  cursor: pointer;
  display: none;
}

#check {
  display: none;
}

 .menu-toggle.close {
      display: none;
    }

@media (max-width: 1050px) {
  .menu .logo {
    padding-left: 30px;
  }

  .main-menu li a {
    font-size: 16px;
  }
}

/* Responsive media query code for small screen */
@media (max-width: 890px) {
  .checkbtn {
    display: block;
  }

  .menu .logo {
	  
    font-size: 22px;
  }
.menu .logo img {
	  
    width: 190px;
	height:93px;
  }
 
  
  .main-menu {
    position: absolute;
    width: 320px;
	flex-direction: column;
	gap: 2px;
    height: auto;
    background: rgb(232, 244, 248);
    top: 100px;
    left: -100%;
    text-align: center;
    transition: all .5s;
  }

  .main-menu li {
    display: block;
    margin: 15px 0;
    line-height: 10px;
  }

  .main-menu li a {
    font-size: 20px;
  }

  a:hover,
  a.active {
    background: none;
    color: #0082e6;
  }

  #check:checked~.main-menu {
    left: 0;
  }
  #check:checked~.checkbtn {
    display: none;
	}
	#check:checked~.menu-toggle.close {
      display: block;
    }
}

   .home-section {
  padding: 193px 0;
  background-color: #f9f9f9;
  
}
 @media (max-width: 890px){
 
.home-section {
  padding: 90px 0;
  background-color: #f9f9f9;
  
}
}
.home-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  
  margin: 0 auto;
  
}
  .banner {
      position: relative;
      width: 100%;
      height: 100vh; /* Adjust height as needed */
      overflow: hidden;
	  
    }

    /* Images */
    .banner img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      animation: slide 12s infinite;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }
.img::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}
    /* Image Order */
    .banner img:nth-child(1) {
      animation-delay: 0s;
    }
    .banner img:nth-child(2) {
      animation-delay: 4s;
    }
    .banner img:nth-child(3) {
      animation-delay: 8s;
    }

    /* Keyframes for Switching Images */
    @keyframes slide {
      0% {
        opacity: 0;
      }
      25% {
        opacity: 1;
      }
      50% {
        opacity: 0;
      }
      100% {
        opacity: 0;
      }
    }

    /*Responsive Design
    @media (max-width: 768px) {
      .banner {
        height: 200px; /* Adjust for smaller screens
      }
    }

    @media (max-width: 480px) {
      .banner {
        height: 150px; Adjust for very small screens 
      }
    }
  */ 
  
/*.img {
  background: url("Banner.png") no-repeat;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  
    }
banner.img::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}*/
.center {
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
 
  text-align: center;
  
}
.center .title {
  color: #fff;
  font-size: 55px;
  font-weight: 600;
}
.center .sub_title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
}
.center .social-icons {
      margin: 10px 0;
    }
  .center .social-icons a {
      text-decoration: none;
      color: #fff;
      margin: 0 10px;
      font-size: 24px;
      display: inline-block;
      transition: color 0.3s ease;
    }
  .center .social-icons a:hover {
      color: #1da1f2; /* Light blue for hover effect*/
    }
   .center .social-icons a i {
      vertical-align: middle;
    }
    @media (max-width: 600px) {
    .center .social-icons a {
        font-size: 20px;
        margin: 0 5px;
      }
    }
 

    @media (max-width: 890px) {
        .center .title {
  color: #fff;
  font-size: 27px;
  font-weight: 200;
}
.center .sub_title {
  color: #fff;
  font-size: 15px;
  font-weight: 200;
}
    }
@media (max-width: 890px) and (orientation: landscape){
	.center {
  top: 92%;
  }
}	
	
.about-section {
  padding: 50px 20px;
  margin-top: -11em;
  background-color: #f9f9f9;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 300px;
  padding: 20px;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  text-align: justify;
}

.about-image {
  flex: 1 1 300px;
  padding: 20px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}
.image-description {
  margin-top: 8px; /* Adds space between the image and the description */
  font-size: 1.5rem; /* Adjusts font size for readability */
  font-weight: bold;
  color: #333; /* Sets a subtle text color */
}
/* Responsive Design */
 @media (max-width: 890px){
.about-section {
 
  margin-top: -6em;
 }

}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    padding: 10px;
  }
}
  .services-section {
	   
      padding: 50px 20px;
      background-color: #f9f9f9;
      text-align: center;
	height: 100%;
	
    }

    .services-section h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: #333;
    }
   .services-section p {
      font-size: 1.2rem;
      color: #666;
      line-height: 1.6;
    }
    .services-container {
	  max-width: 1200px;
      margin: 0 auto; 
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .service-box {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .service-box:hover {
      transform: translateY(-10px);
    }

    .service-box img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .service-box h3 {
      font-size: 1.5rem;
      margin: 15px 0;
      color: #555;
    }

    .service-box p {
      font-size: 1rem;
      color: #666;
      line-height: 1.6;
    }

    @media (max-width: 768px) {
      .services-section h2 {
        font-size: 2rem;
      }
      .services-section p {
        font-size: 1rem;
      }
      .service-box h3 {
        font-size: 1.3rem;
      }

      .service-box p {
        font-size: 0.9rem;
      }
    }
.team-section {
     
      padding: 50px 20px;
      background-color: #f9f9f9;
	  height: 100%;
	  text-align: center;
    }

    .team-section h2 {
      font-size: 2rem;
      margin-bottom: 20px;
    }

    .team-container {
	  max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }

    .team-member {
      flex: 1 1 calc(33.333% - 40px); /* Adjust for spacing */
      max-width: 300px;
      text-align: center;
    }

    .team-member img {
      width: 100%;
      height: auto;
     /* border-radius: 50%;*/
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .team-member h3 {
      margin: 10px 0 5px;
      font-size: 1.2rem;
    }

    .team-member p {
      font-size: 0.9rem;
      color: #555;
    }

    @media (max-width: 768px) {
      .team-member {
        flex: 1 1 100%;
      }
    }
	.contact-section {
      padding: 20px;
      background-color: #f9f9f9;
      text-align: center;
	height: 100%;
    }
	.contact-container {
      max-width: 1200px;
	  margin: 0 auto;
      padding: 20px;
      background-color: #f9f9f9;
      /*border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
	   }
    .contact-container h2 {
      margin-bottom: 20px;
      font-size: 2rem;
      color: #333;
      text-align: center;
    }
	.contact-container p {
       font-size: 1rem;
      line-height: 1.6;
      color: #555;
      text-align: justify;
    }
    .contact-form {
      max-width: 1200px;
      margin: 0 auto;
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .contact-form input, .contact-form textarea, .contact-form button {
      width: 100%;
      margin-bottom: 15px;
      padding: 10px;
      border: 1px solid #ccc;
      border-radius: 5px;
      font-size: 16px;
    }
    .contact-form button {
      background-color: #007BFF;
      color: #fff;
      border: none;
      cursor: pointer;
    }
    .contact-form button:hover {
      background-color: #0056b3;
    }
    @media (max-width: 600px) {
      .contact-form {
        padding: 15px;
      }
    }
	 .Imprint-section {
		  padding: 50px 20px;
      background-color: #f9f9f9;
      text-align: center;
	height: 100%;
      
	  
    }
.Imprint-container {
      max-width: 1200px;
	  margin: 0 auto;
      padding: 20px;
      background-color: #f9f9f9;
      /*border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);*/
	   }
   .Imprint-container h1 {
      font-size: 2rem;
      color: #333;
      text-align: center;
    }
	.Imprint-container h2 {
      font-size: 1.5rem;
      color: #333;
      text-align: left;
    }

   .Imprint-container p {
      font-size: 1rem;
      line-height: 1.6;
      color: #555;
      text-align: justify;
    }

    @media (max-width: 768px) {
    .Imprint-container  h1 {
        font-size: 1.5rem;
      }
.Imprint-container  h2 {
        font-size: 1.2rem;
      }
    .Imprint-container  p {
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
   .Imprint-container   h1 {
        font-size: 1.2rem;
      }
.Imprint-container  h2 {
        font-size: 1rem;
      }
    .Imprint-container  p {
        font-size: 0.8rem;
      }
    }
	
	footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 20px 10px;
    }

    footer .contact {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
 
    footer a {
      color: rgb(232, 244, 248);/*#4caf50;*/
      text-decoration: none;
      font-size: 16px;
	  
    }

    footer a:hover {
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (min-width: 600px) {
      footer .contact {
        flex-direction: row;
        justify-content: center;
      }

      footer a {
        margin: 0 15px;
      }
    }
