@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
section {
  overflow: hidden;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Inter", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", sans-serif;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: white;
  padding: 20px 0;
  background-color: rgba(255, 255, 255, 0.813) !important;
  transition: all 0.2s ease-in-out;
  box-shadow: none;
  /* Dark Blue with 40% opacity */
}
.navbar.scrolled {
  padding: 0 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease-in-out;
}
.navbar.scrolled img {
  width: 260px !important;
  transition: all 0.2s ease-in-out;
}
.navbar .dropdown-menu {
  background-color: rgba(255, 255, 255, 0.893);
}
.navbar .nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  /* Optional: removes slight jump on hover */
}
.navbar .navbar-brand img {
  width: 300px;
  transition: all 0.2s ease-in-out;
}
.navbar .active {
  color: #10683e;
}
.navbar .nav-link {
  font-size: 1.1em;
}

.about-hero {
  height: 320px;
}
.about-hero .overlay {
  background-color: rgba(0, 0, 0, 0.85) !important;
}
.about-hero h1 {
  font-size: 1.8em;
  text-transform: uppercase;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  display: none !important;
}

.carousel-item {
  height: 100vh;
  min-height: 400px;
  background-position: center;
  background-size: cover;
  position: relative;
  /* Custom Gradient Button */
  /* Hover Effect */
  /* Focus and Active States */
}
.carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.carousel-item .carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.045);
  /* Black color with 50% opacity */
  z-index: 1;
  /* Make sure the overlay is above the image but behind the text */
}
.carousel-item .carousel-caption {
  z-index: 2;
  /* Ensure the text is above the overlay */
}
.carousel-item .carousel-caption h1,
.carousel-item .carousel-caption p {
  color: #fff;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}
.carousel-item .btn-gradient {
  background: linear-gradient(90deg, #0f683e 0%, #137749 100%);
  color: #fff;
  border: none;
  transition: background 0.3s ease, transform 0.3s ease;
}
.carousel-item .btn-gradient:hover {
  background: linear-gradient(90deg, #0f683e 0%, #1aa363 100%);
  transform: translateY(-5px);
  /* Button lift effect */
  box-shadow: 0px 10px 20px rgba(38, 38, 38, 0.2);
}
.carousel-item .btn-gradient:focus,
.carousel-item .btn-gradient:active {
  outline: none;
  box-shadow: 0px 0px 10px rgba(38, 38, 38, 0.5);
}

.about h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  text-align: center;
  margin: 0 auto;
}
.about h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 60px;
  background-color: #10683e;
  border-radius: 2px;
}
.about .prime-col {
  color: #10683e;
}
.about .btn-gradient {
  background: linear-gradient(135deg, #10683e, #18a36f);
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(16, 104, 62, 0.3);
}
.about .btn-gradient:hover {
  background: linear-gradient(135deg, #0e5c37, #14935e);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(16, 104, 62, 0.4);
  transition: all 0.3s ease-in-out;
}

.section-underline {
  content: "";
  display: block;
  height: 2px;
  width: 80px;
  background-color: #10683e;
  margin: 8px auto 0;
  border-radius: 2px;
}

.services-section {
  background-image: url("/frontend/images/services/services.png");
  background-size: cover;
  background-position: center;
}
.services-section .service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2rem 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  /* Softer shadow */
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-align: left;
  /* Aligning text to the left */
}
.services-section .service-card h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #333;
  /* Dark text for headings */
}
.services-section .service-card p {
  font-size: 0.95rem;
  color: #666;
  /* Lighter text for description */
}
.services-section .service-card a.btn {
  display: inline-flex;
  align-items: center;
  color: #007bff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  margin-top: 1rem;
  transition: color 0.3s ease;
}
.services-section .service-card a.btn i {
  margin-left: 5px;
  font-size: 1.2rem;
  /* Adjust size for the icon */
}
.services-section .service-card a.btn:hover {
  color: #0056b3;
  /* Change color on hover */
}
.services-section .service-card figure {
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.services-section .service-card figure img {
  transition: transform 0.3s ease-in-out;
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
  /* Ensure images scale properly */
}
.services-section .service-card:hover img {
  transform: scale(1.05);
  /* Slight zoom on hover */
}
.services-section .service-card:hover {
  transform: translateY(-12px) scale(1.05);
  /* Elevation and scale effect */
  box-shadow: 0 15px 30px rgba(16, 104, 62, 0.25);
  /* Stronger shadow */
}

@keyframes zoomInFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.services-section .service-card {
  animation: zoomInFade 0.6s ease forwards;
  opacity: 0;
}

.contact-section {
  background: url("/frontend/images/contactsec.jpg") no-repeat center center/cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.contact-section .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.contact-section .container {
  z-index: 2;
  position: relative;
}
.contact-section .glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: 16px;
}
.contact-section .glass-card .form-control {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: none;
}
.contact-section .glass-card .form-control::placeholder {
  color: #eee;
}
.contact-section .glass-card .form-control:focus {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #42b883;
  color: #fff;
}
.contact-section .glass-card label {
  color: #ccc;
}
.contact-section .btn-gradient {
  background: linear-gradient(135deg, #10683e, #42b883);
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}
.contact-section .btn-gradient:hover {
  background: linear-gradient(135deg, #0f5c37, #3e9d6b);
  box-shadow: 0 8px 20px rgba(16, 104, 62, 0.3);
}
.contact-section a {
  transition: 0.3s;
}
.contact-section a:hover {
  color: #42b883;
}

#clients .client-logo {
  padding: 1rem;
  transition: all 0.3s ease;
}
#clients .client-logo img {
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease, transform 0.3s ease;
}
#clients .client-logo:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
#clients .swiper-wrapper {
  height: auto !important;
}

.grayscale-hover {
  transition: all 0.3s ease;
  max-height: 60px;
  object-fit: contain;
}

.grayscale-hover:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.recycle-img-box {
  padding: 1rem;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.recycled-item .icon-box {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.recycled-item .icon-box i {
  box-shadow: 0 5px 15px rgba(16, 104, 62, 0.2);
  color: #10683e;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  line-height: 20px;
}

.recycled-item:hover .icon-box {
  transform: scale(1.1);
}

#what-we-recycle {
  background-color: #2b2a29;
}
#what-we-recycle .recycle-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}
#what-we-recycle .recycle-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}
#what-we-recycle .recycle-card .icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.parallax {
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-section-page .text-primary {
  color: #10683e !important;
}
.contact-section-page button {
  background-image: linear-gradient(135deg, #10683e, #42b883) !important;
  border: 0;
}

#servicesall h2 {
  font-size: 2rem;
  color: #10683e;
}

/* Animated SVG wave */
.custom-shape-divider-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 0;
}

.custom-shape-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

/* Particles.js overlay */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

.footer-section {
  background: #0e1a13;
}
.footer-section a:hover {
  color: #42b883;
}
.footer-section i {
  transition: 0.3s;
}
.footer-section i:hover {
  color: #42b883;
  transform: scale(1.1);
}
.footer-section img {
  width: 300px;
}
.footer-section p {
  font-size: 1em;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  background-color: #25D366;
  padding: 10px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.certificate-card img {
  transition: transform 0.3s ease;
}

.certificate-card:hover img {
  transform: scale(1.05);
}

.section-title {
  font-weight: 700;
  margin-bottom: 20px;
}

.accordion-button {
  font-weight: 600;
  background-color: #e9ecef;
}

.accordion-button:not(.collapsed) {
  background-color: #0b3d91;
  color: #fff;
}

.list-group-item {
  border: none;
  background-color: #fff;
  border-left: 4px solid #0b3d91;
  margin-bottom: 10px;
}

@media (max-width: 767.98px) {
  section {
    overflow: hidden;
  }
  .navbar-brand img {
    width: 200px !important;
  }
  .about-hero {
    height: 100% !important;
    margin-top: 80px !important;
  }
  .about-hero h1 {
    font-size: 1em !important;
  }
  .about-hero p {
    font-size: 0.9em !important;
  }
  .lead {
    font-size: 1em !important;
  }
  .carousel-item {
    height: 50vh;
  }
}

/*# sourceMappingURL=main.css.map */
