* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html, body {
      font-family: "Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
	   font-style: normal;
      scroll-behavior: smooth;
      background-color: white;
	  background-image:url("images/background.png");
	  background-repeat:no-repeat;
	  background-size: cover;
    }
	



    header {
      position: fixed;
      top: 0;
      width: 100%;
      background: #fff;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      z-index: 1000;
    }
    .nav-container {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      padding: 1rem;
      max-width: 1000px;
      margin: 0 auto;
    }
    .logo-icon {
      height: 40px;
      margin-right: 0.5rem;
    }
    .menu-toggle {
      display: none;
      font-size: 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
    }
    nav {
      display: flex;
      align-items: center;
    }
    nav a {
      margin: 1rem;
      text-decoration: none;
      color: #333;
      font-weight: bold;
    }
    .nav-links {
      display: flex;
      flex-direction: row;
    }
    section {
      padding: 100px 20px 60px;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }
    #home .logo {
      max-width: 350px;
      width: 100%;
      height: auto;
      margin-bottom: 20px;
    }
    #home p {
      
      font-size: 1.4vw;
      max-width: 90%;
      text-align: left;
      
    }
    #contact iframe {
      width: 100%;
      height: 400px;
      border: none;
      margin-bottom: 20px;
    }
    .address-container {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: flex-start;
      padding-left: 25%;
    }
	.address-placeholder {
	  font-size: 1rem;
	  margin: 10px 0;
	  color: #555;
	  text-align: left;
	  width: 100%;
	  display: flex;
	  align-items: center;
	}

	.address-icon {
	  width: 20px;
	  height: 20px;
	  margin-right: 10px;
	}
    .close-btn {
      display: none;
    }
    @media (max-width: 600px) {
      .menu-toggle {
        display: block;
      }
      .nav-links {
        position: fixed;
        top: 0;
        left: -250px;
        height: 100%;
        width: 250px;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
      }
      .nav-links.active {
        left: 0;
      }
      .close-btn {
        display: block;
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 1.5rem;
        background: none;
        border: none;
        cursor: pointer;
        color: #333;
      }
      nav a {
        padding-top: 5px;
        width: 100%;
        padding-left:10px;
        margin: 0;
      }
      #home p {
        font-size: 8vw;
		
		   text-align: center;
      }
      .address-container {
        padding-left: 0;
        align-items: center;
      }
      .address-placeholder {
        width: 100%;
        margin-left: 0;
        text-align: center;
      }
    }
.contact{
	background-color:#f9fafa;
}
	
#quick-links {
  background-color: #000;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left:20px;
  margin-right:20px;
   min-height: 25vh;
}

.quick-links-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
}

.quick-links-nav a {
  text-decoration: none;
  color: #fff;
  margin-bottom: 15px;
  transition: color 0.3s;
}

.quick-links-nav a:hover {
  color: #ccc; /* Optional: Change color on hover */
}





.carousel {
  position: relative;
  width: 100%;
  max-width: 1200px; /* Limit very large screens */
  margin: 0 auto;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 40vh; /* Images take 70% of viewport height */
  object-fit: cover; /* Very important to fill without distortion */
}

.caption {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  max-width: 80%;
  text-align: left;
}

.caption h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.caption p {
  font-size: 1.2rem;
}
.caption ul {
	font-size: 2.2rem;

	
    list-style-type:none;

}
.caption ul li {
list-style:none;
}

.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #c22025;

}

@media (max-width: 768px) {
	.caption ul {
	font-size: 1.8rem;
	}
  .slide img {
    height: 50vh; /* Smaller on tablets/mobiles */
  }
  .caption {
    bottom: 15px;
    left: 15px;
    padding: 10px;
  }
  .caption h2 {
    font-size: 1.5rem;
  }
  .caption p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .caption h2 {
    font-size: 1.2rem;
  }
}
#home {
  padding: 100px 20px 60px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.home-content {
  display: flex;
  align-items: stretch; /* Force both items (logo and text) to same height */
  gap: 40px;
  max-width: 1200px;
  width: 100%;
}

.logo-wrapper {
  flex: 0 0 auto;
}

.logo {
  height: 100%; /* Important: let it fill the container */
  width: auto;
  max-height: 300px; /* Optional: limit large logos */
}

.text-wrapper {
  flex: 1; /* Take the remaining space */
  background: #f9f9f9; /* Optional: light background to visualize */
  display: flex;
  justify-content: center;
  align-items: center;
}
.text-wrapper-bottom {
	background: none;
}

.text-wrapper-bottom p{
	font-size:1vw;
}
.text-wrapper p {
  font-size: 1.8vw;
  line-height: 1.5;
  text-align: left;
  padding: 20px;
}
.partners {
	max-width:100px
}
@media (max-width: 768px) {
  .home-content {
    flex-direction: column;
    align-items: center;
  }
  .logo {
    height: auto;
    max-width: 200px !important;
  }
  .text-wrapper p {
    font-size: 3.5vw;
    text-align: center;
  }
}
