.header {
  width: 100%;
  padding: 15px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background:transparent;
  transition: background-color 0.3s ease-in-out, padding 0.3s ease-in-out;
  color: white;
}

body{
  background-color: white;
}

.header.scrolled {
  background: darkgreen;
  padding: 10px 0;
  color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
}

.header.scrolled h1{
  color: white;
}

.header.scrolled .navmenu ul li a{
  color: white;
}

.header.scrolled .navmenu ul li a:hover{
  color: #FFD700;
}



@font-face {
  font-family: 'CustomFont'; 
  src: url('assets/images/Barlow-Extra Bold.ttf') format('opentype');
  font-weight: normal;
  font-style: normal;
}


.logo {
  font-size: 16px;
  text-decoration: none;
  font-family: 'CustomFont', sans-serif;
  color: white; 
  letter-spacing: 1px; 
  transform: scaleY(0.9); 
}

.logo img {
  filter: drop-shadow(0px 0px 0px white);
}


.navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.navmenu ul li {
  margin: 0 15px;
}


.navmenu ul li a {
  text-decoration: none;
  color: white; 
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s ease-in-out;
}


.navmenu ul li a:hover {
  color: lightgreen;
}


.mobile-nav-toggle {
  font-size: 24px;
  cursor: pointer;
  color: white;
  display: none;
}


@media (max-width: 992px) { 
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%;
    height: 100%;
    background: darkgreen;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: right 0.4s ease-in-out;
  }

  .navmenu ul {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .navmenu ul li {
    margin: 20px 0;
  }

  .navmenu ul li a {
    font-size: 22px;
    color: white;
    text-decoration: none;
    font-weight: bold;
  }

  .mobile-nav-toggle {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    font-size: 30px;
  }

  
  .navmenu.active {
    right: 0;
  }
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/


#hero {
  width: 100%;
  background-color: rgb(244, 244, 244);
}


#carousel-container {
  width: 100%;
  height: 85vh;
  overflow: hidden;
}

#hero-carousel{
  width: 100vw;
  height: 100%;
  margin-left: -12px;
}

.carousel-item img {
  width: 100%;
  height: 100%; 
  object-fit: cover; 
}

@media (max-width: 768px) { 
  #carousel-container {
    width: 100%;
    height:30vh;
    overflow: hidden; 
  }

  #hero-carousel {
    margin-left: -12px; 
  }

  .carousel-item img, 
  .carousel-item video {
    width: 100%;
    height:30vh;
    object-fit: cover; 
  }


  .carousel-control-prev, 
  .carousel-control-next {
    width: 8%;
  }

  .carousel-control-prev-icon, 
  .carousel-control-next-icon {
    width: 30px;
    height: 30px;
  }
}


/*--------------------------------------------------------------
# Home About
--------------------------------------------------------------*/


#home-about {
 
  background-color: white;
}

.section-title {
  color: #2c3e50;
  text-transform: uppercase;
}

.section-description {
  line-height: 1.8;
}

.btn-success {
  transition: all 0.3s ease; 
}

.btn-success:hover {
  background-color: #28a745; 
  
}

@media (max-width: 768px) {
  #home-about {
      padding: 40px 15px; 
  }

  .section-title {
      font-size: 1.8rem; 
  }

  .section-description {
      font-size: 1rem;
  }

  .read-more-button {
      font-size: 0.9rem;
      padding: 10px 20px;
  }
}


/*--------------------------------------------------------------
# Home Products
--------------------------------------------------------------*/

#home-products {
  background-color: #f9f9f9;
  padding-top: 80px;
  padding-bottom: 80px;
  border: #ddd;
}

.card {
  border: none;
  overflow: hidden;
  border-radius: 0%;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: scale(1.01);
}

.card img {
  height: 300px;
  object-fit: cover;
  border-radius: 0%;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.card-text {
  font-size: 1rem;
  color: #666;
}


.card-body {
  transition: background-color 0.3s ease-in-out;
  text-align: center;
}

.card:hover .default-text {
  display: none;
}

.card .see-more-link{
  display: none;
}

.card:hover .see-more-link {
  display: inline-block;
  font-size: 1.1rem;
  font-weight: bold;
  color: #666;
  text-decoration: underline;
}



.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.btn {
  border-radius: 30px;
}

@media (max-width: 768px) { 
  .card {
    margin: 40px;
  }

}

/*--------------------------------------------------------------
# Home Gallery Section
--------------------------------------------------------------*/

.home-gallery {
  padding: 50px 0;
  background-color: white;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #333;
}

.swiper {
  width: 100%;
  height: auto;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  width: 100%;
  max-width: 300px;
  height: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.swiper-slide img:hover {
  transform: scale(1.05);
}


/*--------------------------------------------------------------
# Home Catalogue Section
--------------------------------------------------------------*/

.catalogue-download {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #333;
}

.section-description {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.catalogue-cards {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.catalogue-card {
  width: 400px;
  height:400px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalogue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.catalogue-image {
  width: 100%;
  height:70%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.catalogue-title {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 15px;
}

.btn-download {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #28a745;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-download:hover {
  background-color: #218838;
}

.btn-download i {
  margin-right: 8px;
}



/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/


.about-header {
  height: 350px;
  width: 100%;
  
  display: flex;
  flex-direction: column;

  position: relative;
  background: url("assets/images/about_header_image.jpg") no-repeat center center/cover; 
  height: 350; 
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

 
.header-content {
  position: relative;
  z-index: 2;
}

.about-header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-header .motto {
  font-size: 1.2rem;
  font-style: italic;
  margin: 0;
  opacity: 0.8;
}


.breadcrumb {
  margin-top: 30px;
  font-size: 1.1rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.breadcrumb-link {
  color: #f0f0f0; 
  transition: color 0.3s ease;
}

.breadcrumb-link:hover {
  color: white; 
}

.breadcrumb-separator {
  margin: 0 5px;
  color: #ccc; 
}

.breadcrumb-current {
  color: #ddd;
}


.about-section {
  padding: 50px 20px;
  background-color: white; 
  color: #333;
}

.about-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.about-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #228b22; 
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}


@media (max-width: 768px) {
  .about-header h1 {
    font-size: 2.5rem;
  }

  .about-header .motto {
    font-size: 1rem;
  }

  .about-section h2 {
    font-size: 1.8rem;
  }

  .about-section p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/

.p-card {
  border: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background-color: white;
}


.p-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.p-card-img-top {
  height: 200px;
  object-fit: cover;
}

.p-card-title {
  font-size: 18px;
  font-weight: bold;
}

.p-card-text {
  font-size: 14px;
  color: #555;
}

.p-btn-primary {
  background-color: #28a745;
  border-color: #28a745;
  margin-bottom: 20px;
}

.p-btn-primary:hover {
  background-color: #218838;
  border-color: #1e7e34;
}



.card-link .card {
  transition: transform 0.2s ease-in-out;
}

.card-link:hover .card {
  transform: scale(1.02); 
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/

.list-group-item {
  cursor: pointer;
  transition: background-color 0.3s;
}

.list-group-item:hover {
  background-color: #f8f9fa;
}

.list-group-item.active {
  background-color: #28a745;
  color: white;
  font-weight: bold;
}

.img-thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Lightbox Images Section
--------------------------------------------------------------*/


#lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1050;
}

#lightbox-content {
  position: relative;
  border-radius: 0%;
  margin-left: 20px;
}

#lightbox-image {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  border-radius: 0%;
  margin-left: 20px;
}

#lightbox-close {
  position: absolute;
  top: -30px;
  right: -30px;
  color: white;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
}

#lightbox-prev,
#lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.8);
  border: none;
  padding: 10px 15px;
  font-size: 1.5rem;
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

#lightbox-prev {
  left: -50px;
}

#lightbox-next {
  right: -50px;
}



/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-section {
  padding: 50px 0;
}
.contact-info {
 
  background: rgb(146, 195, 146);
  padding: 30px;
  border-radius: 10px;
}
.form-control, .btn-form{
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/





.gallery-section{
  border: solid 2px black;

}


 .image-gallery {
  padding: 30px; 
  display: flex;
  justify-content: center;
}



.image img {
  width: 100%;
  height: auto;
  display: block;
}

.image {
  aspect-ratio: 1; 
  overflow: hidden;
}


@media (max-width: 768px) {
  .gallery-container {
      grid-template-columns: repeat(2, 1fr); 
  }
}

@media (max-width: 480px) {
  .gallery-container {
      grid-template-columns: 1fr; 
  }
}


.video-gallery2 {
    padding: 30px;
    display: flex;
    justify-content: center;
    gap: 20px; 
}

.video-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; 
}

.video video {
    width: auto; 
    height: 400px; 
}

@media (max-width: 768px) {
    .video-container {
        flex-direction: column; 
        align-items: center;
    }

    .video video {
        width: 100%;
        max-width: 90%; 
    }
}


/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/


.footer{
  background-color: darkgreen;
  color: white;
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: rgb(35, 129, 35);
  padding: 50px 0;
  color: white;
}

.footer h4 {
  font-size: 24px;
}

.footer .newsletter-form {
  position: relative;
  border-radius: 50px;
  background-color: rgb(52, 135, 52);
  border: 2px solid rgb(135, 166, 135);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  width: 90%;
  max-width: 500px; 
  padding: 5px;
  height: 45px;
  transition: border-color 0.3s ease-in-out;
}

.footer .newsletter-form:focus-within {
  border-color: lightgreen;
}

.footer .newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  padding: 10px 15px;
  background-color: white;
  color: black;
  font-size: 16px;
  border-radius: 50px;
  outline: none;
  height: 30px;
}

.footer .newsletter-form input[type="submit"] {
  border: none;
  font-size: 14px;
  padding-bottom: 5px;
  background: lightgreen;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out;
  border-radius: 50px;
  height: 30px;
}

.footer .newsletter-form input[type="submit"]:hover {
  background: rgba(144, 238, 144, 0.8);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer .newsletter-form {
    width: 90%;
  }

  .footer .newsletter-form input[type="email"] {
    font-size: 14px;
    padding: 8px 12px;
  }

  .footer .newsletter-form input[type="submit"] {
    font-size: 14px;
    padding: 8px 16px;
  }
}



.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid white;
  font-size: 16px;
  color: white;
  margin-right: 10px;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  color: lightgreen;
  border-color: lightgreen;
}

.footer h4 {
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
  text-decoration: none;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: lightgreen;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  text-decoration: none;
  display: inline-block;
  color: white;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: lightgreen;
}

.footer .footer-about a {
  font-weight: 600;
  text-decoration: none;
  color: white;
  font-size: 24px;
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid lightgreen;
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

.footer .phone a:hover{
  color: lightgreen;
}

.footer .email a:hover{
  color: lightgreen;
}


.whatsapp-float {
  position: fixed;
  bottom: 20px; 
  right: 20px; 
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  text-decoration: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.whatsapp-float i {
  font-size: 30px;
}