body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background-color: black;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    height: 5vh;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.3);
    z-index: 1000;
}

header .logo {
    font-size: 130%;
    font-weight: bold;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li {
    cursor: pointer;
    font-size: 100%;
    position: relative;
}

header .header-buttons {
    display: flex;
    gap: 10px;
}

header .header-buttons button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 100%;
}

header .header-buttons button:hover {
    opacity: 0.8;
}

.button-link {
    text-decoration: none;
    display: inline-block;
}

.header-buttons .button-link button {
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 100%;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
}

.header-buttons .button-link button:hover {
    opacity: 0.8;
}

.nav-link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.nav-link:hover {
    color: #c3c3c3;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 10;
    min-width: 200px;
  }
  
  .dropdown-menu li {
    padding: 10px 20px;
  }
  
  .dropdown-menu li a {
    text-decoration: none;
    color: black;
    font-size: 16px;
    display: block;
  }
  
  .dropdown-menu li a:hover {
    background-color: #f0f0f0;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block;
  }


.lang-dropdown {
    position: relative;
    display: inline-block;
  }
  
  .lang-btn {
    padding: 8px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .lang-menu {
    display: none;
    position: absolute;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0;
    margin-top: 5px;
    min-width: 80px;
    z-index: 1000;
    list-style: none;
  }
  
  .lang-menu.show {
    display: block;
  }
  
  .lang-menu li {
    padding: 10px;
    color: #333;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
  }
  
  .lang-menu li:hover {
    background: #f5f5f5;
  }

.achieve-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
    margin: 0;
    padding: 0;
}

.achieve-carousel {
    height: 100%;
    position: relative;
}

.achieve-carousel-inner {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.achieve-carousel-slide {
    flex: 0 0 100%;
    position: relative;
    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
}

.achieve-carousel-slide h1 {
    position: absolute;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.548);
    font-family: 'Faustina', serif;
    font-weight: 500;
}

.custom-heading {
    position: absolute;
    left: 10vh;
    text-align: left !important;
    width: 80%;
}

.custom-heading .line-1 {
    margin-top: 18vh;
    font-size: 9vh;
    margin-left: 1vw;
    display: block;
    margin-bottom: 2vh;
}

.custom-heading .line-2 {
    margin-left: 30vw;
    font-size: 9vh;
    display: block;
}

.slide1-text {
    position: absolute;
    margin-top: 70vh;
    width: 100%;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.slide1-text p{
    margin-left: 10vh;
    margin-right: 10vh;
    font-size: 3vh;
    text-align: left;
}

.slide1-text h3{
    left: 10vh;
    font-size: 5vh;
    text-align: center;
}

.achieve-carousel-slide:nth-child(2) h1 {
    position: absolute;
    top: 8%;
    font-size: 9.5vh;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.548);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.achieve-info-items-container {
    position: absolute;
    top: 35%;
    width: 100%;
}

.achieve-info-item {
    width: 40%;
    margin-bottom: 1%;
    padding: 1.5% 2%;
    background: rgba(0, 0, 0, 0.616);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.371);
}

.achieve-info-item p {
    margin-top: 0;
    font-size: 2.5vh;
    margin-bottom: 0;
}

.achieve-info-item:hover {
    transform: translateX(10px);
}

.achieve-info-item:nth-child(odd) {
    margin-left: 10%;
}

.achieve-info-item:nth-child(even) {
    margin-left: auto;
    margin-right: 10%;
}

.achieve-info-item:last-child {
    margin-bottom: 0;
}



.achieve-carousel-slide:nth-child(3) h1 {
    position: absolute;
    top: 5%;
    font-size: 9.5vh;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.548);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accordion-container {
    position: absolute;
    width: 70%;
    margin-top: 30vh;
    display: flex;
    flex-direction: column;
    gap: 2vh;
}

.accordion-item {
    background: rgba(0, 0, 0, 0.601);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.345);
    cursor: pointer;
    transition: all 0.5s ease;
    width: 100%;
}

.accordion-header {
    padding: 20px;
    position: relative;
}

.accordion-header::after {
    content: "▼";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    transition: transform 0.5s ease;
}

.accordion-item.active .accordion-header::after {
    content: "▲";
}

.accordion-header h3 {
    color: white;
    margin: 0;
    font-size: 110%;
    transition: color 0.3s ease;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.438);
    border-radius: 0 0 15px 15px;
}

.accordion-content p {
    color: white;
    margin: 0;
    padding: 0 40px 20px;
    font-size: 100%;
    line-height: 1.5;
}

.accordion-content a.inline-link {
    text-decoration: underline !important;
    color: inherit !important;
    cursor: pointer;
}

.accordion-item.active {
    background: rgb(0, 0, 0);
    box-shadow: 0 5px 22px rgba(255, 255, 255, 0.756);
}

.accordion-item.active .accordion-header h3 {
    color: #dadada;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}


.achieve-carousel-nav {
    position: absolute;
    top: 45%;
    width: 80px;
    height: 15vh;
    background: rgba(255, 255, 255, 0.084);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 40px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.achieve-carousel-nav:hover {
    background: rgba(255, 255, 255, 0.308);
}

.achieve-carousel-prev {
    left: 0;
}

.achieve-carousel-next {
    right: 0;
}


.container {
    width: 80%;
    margin: 0 auto;
    margin-top: 10vh;
}

.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    gap: 80px;
}

.section:nth-child(odd) {
    grid-template-areas: 
        "text image";
}
.section:nth-child(even) {
    grid-template-areas: 
        "image text";
}

.text-content {
    grid-area: text;
    padding: 20px;

}

.text-content h2 {
    font-size: 37px;
    color: #007a3e;
}

.text-content p {
    margin-top: 10px;
    font-size: 22px;
    color: #555;
    font-family: 'Roboto', sans-serif;
}

.image-content {
    grid-area: image;
    position: relative;
    height: 400px;
    background-color: #f5f5f5;
    overflow: hidden;
    border-radius: 15px;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.products {
    display: flex;
    justify-content: center;
    gap: 2vw;
    padding: 2vw;
    flex-wrap: wrap;
}

.product {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.575);
    width: 27vw;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.product img {
    width: 100%;
    height: 40vh;
    object-fit: contain;
    border-radius: 10px;
    margin-bottom: 5%;
}

.product h2 {
    font-size: 3.5vh;
    margin: 0 0 15px 0;
    color: #333;
}

.product p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin: 0 0 auto 0;
    padding: 0 2%;
}

.product a {
    margin-top: auto;
    width: 100%;
    padding: 20px 0 0 0;
}

.product button {
    padding: 2% 5%;
    background-color: black;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 1rem;
    transition: background 0.3s ease;
    white-space: nowrap;
    display: inline-block;
    width: auto;
    margin-top: auto;
}

.product button:hover {
    background: #646464;
}

.carousel-container {
    width: 100%;
    padding: 3vh 0;
    box-sizing: border-box;
    position: relative;
    background-color: #e7e7e7;
    padding-bottom: 3vh;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-wrapper {
    width: 100%;
    max-width: 40%;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 75vh;
    overflow: hidden;
}
  
  .carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    transform: translateX(0);
    width: 300%;
  }
  
  .carousel-item {
    flex: 0 0 100%;
    box-sizing: border-box;
    text-align: center;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
  }
  
  .carousel-item img {
    width: 100%;
    height: 40vh;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
 }
 
 .carousel-content {
   margin: 20px 0;
   padding: 0 20px;
 }
 
 .carousel-content h3 {
   font-size: 24px;
   font-weight: bold;
   color: #333;
 }
 
 .carousel-content p {
   font-size: 16px;
   color: #545454;
   margin: 10px 0;
   max-width: 100%;
   overflow-wrap: break-word;
   word-wrap: break-word;
   padding: 0 15px;
 }
 
 .read-more-btn {
   display: inline-block;
   padding: 10px 20px;
   background-color: #12b626;
   color: white;
   text-decoration: none;
   border-radius: 5px;
   font-weight: bold;
   transition: background-color 0.3s;
   font-size: 22px;
 }
 
 .read-more-btn:hover {
   background-color: #138d13;
 }
 
 .carousel-arrow {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 50px;
   height: 50px;
   background-color: #12b626;
   color: white;
   border: none;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   z-index: 10;
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   transition: transform 0.3s, background-color 0.3s;
   font-size: 2vh;
 }
 
 .carousel-arrow.left-arrow {
   left: 10px;
 }
 
 .carousel-arrow.right-arrow {
   right: 10px;
 }
 
 .carousel-arrow:hover {
    background: linear-gradient(135deg, #2ab049, #32a852);
  }
 
 .carousel-indicators {
   display: flex;
   justify-content: center;
   margin-top: 20px;
 }
 
 .indicator {
   width: 12px;
   height: 12px;
   margin: 0 5px;
   background-color: #ddd;
   border-radius: 50%;
   cursor: pointer;
   transition: background-color 0.3s;
 }
 
 .indicator.active {
   background-color: #32a852;
 }
  

footer {
    background-color: #222;
    color: white;
    padding: 40px 20px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

}
footer .footer-section {
    flex: 1;
    margin: 10px;
}
footer h3 {
    margin-bottom: 20px;
}
footer ul {
    list-style: none;
    padding: 0;
}
footer ul li {
    margin: 10px 0;
}
footer ul li a {
    color: white;
    text-decoration: none;
}
footer p, footer ul li {
    color: white;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 200px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}


@media screen and (max-width: 1400px) {
    .carousel-wrapper {
        max-width: 50%;
    }
}

@media screen and (max-width: 1200px) {
    .carousel-wrapper {
        max-width: 60%;
    }
}

@media screen and (max-width: 992px) {
    .carousel-wrapper {
        max-width: 70%;
    }
}

@media screen and (max-width: 768px) {
    .carousel-wrapper {
        max-width: 80%;
    }
}

@media screen and (max-width: 576px) {
    .carousel-wrapper {
        max-width: 90%;
    }
}

@media screen and (max-width: 400px) {
    .carousel-wrapper {
        max-width: 100%;
    }
}