
body {
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.text-content {
  padding: 20px;
  margin: 20px;
}

#header-outer {
  background-color: #ffffff;
  padding: 0;
  border-bottom: 1px solid #ddd;
}

#header-secondary-outer {
  background-color: #056937;
  padding: 10px 0;
  color: #ffffff;
}

#header-secondary-outer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#header-secondary-outer .nectar-center-text {
  text-align: center;
}

#header-secondary-outer .mobilenumber {
  display: inline-block;
  margin-right: 20px;
}

header#top {
  position: relative;
  z-index: 1000;
}

header#top nav ul li ul.sub-menu {
  z-index: 1001;
}


header#top nav ul li {
  position: relative;
}

header#top nav ul li ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 10px;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  display: none;
}

header#top nav ul li:hover ul.sub-menu {
  display: block;
}

header#top nav ul li ul.sub-menu li {
  margin-bottom: 10px;
}

header#top nav ul li ul.sub-menu li a {
  color: #333;
  text-decoration: none;
}

header#top nav ul li ul.sub-menu li a:hover {
  color: #94c11f;
}


#header-secondary-outer .mobilenumber a {
  color: #ffffff;
  text-decoration: none;
}

#header-secondary-outer .mobilenumber a:hover {
  color: #95c11e;
}

#top {
  background-color: #ffffff;
  padding: 20px 0;
}

#top .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#top .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#top #logo {
  display: block;
  width: 100%;
  height: auto;
}

#top #logo img {
  width: 100%;
  height: auto;
  max-width: 247px;
}

#top nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: flex-end;
}

#top nav ul li {
  margin-right: 20px;
  position: relative;
}

#top nav ul li a {
  text-decoration: none;
  color: #056937;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

#top nav ul li a:hover {
  color: #95c11e;
}

#top nav ul li ul.sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ffffff;
  padding: 10px;
  border: 1px solid #ddd;
}

#top nav ul li:hover ul.sub-menu {
  display: block;
}

#top nav ul li ul.sub-menu li {
  margin-right: 0;
}

#top nav ul li ul.sub-menu li a {
  font-size: 14px;
  padding: 10px;
  display: block;
}


.request-quote {
  background-color: #F18E00; /* Yellow background */
  color: #FFFFFF !important; /* White text color */
  border: 1px solid #F18E00; /* Yellow border */
  padding: 10px 20px; /* Add some padding */
  border-radius: 5px; /* Rounded corners */
  transition: all 0.3s ease-in-out; /* Transition effect */

}

.request-quote:hover {
  transform: translateY(-5px); /* Move up on hover */
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
}
@media (max-width: 768px) {
  #top nav {
    display: none;
  }
  #top .nectar-mobile-only {
    display: block;
  }
}



.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content-wrap {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #ffffff;
}

.content-wrap h1 {
  font-size: 6vw;
  margin-bottom: 30px;
}

.button-wrap {
  margin-top: 30px;
}

.btn1 {
  background-color: #F18E00;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  margin: 0 15px;
  transition: background-color 0.2s ease;
}

.btn1:hover {
  background-color: #F18E00;
  color: #ffffff;
}
.btn {
  background-color: #95c11e;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  margin: 0 15px;
  transition: background-color 0.2s ease;
}

.btn:hover {
  background-color: #056937;
  color: #ffffff;
}


.section-two {
  padding: 60px 0;
  background-color: #f7f7f7;
}

.services-description {
  margin-bottom: 30px;
}

.services-description h2 {
  color: #006935;
  font-size: 24px;
  margin-bottom: 10px;
}

.achievements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.achievement {
  width: calc(33.33% - 20px);
  margin: 10px;
  text-align: center;
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.achievement h3 {
  font-size: 36px;
  color: #006935;
  margin-bottom: 10px;
}

.cta {
  margin-bottom: 30px;
}

.cta .btn {
  background-color: #95c11e;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 10px;
}

.cta .btn:hover {
  background-color: #056937;
}

.commitment {
  background-color: #94c11f;
  padding: 20px;
  border-radius: 10px;
  color: #ffffff;
}

.commitment h2 {
  font-size: 24px;
  margin-bottom: 10px;
}


.environmental-commitment {
  background-color: #94c11f;
  padding: 40px 0;
  color: #ffffff;
  text-align: center;
}

.commitment-description {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.commitment-description h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.commitment-description p {
  font-size: 18px;
}


.waste-management-services {
  padding: 40px 0;
}

.services-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.service {
  width: calc(25% - 20px);
  margin: 10px;
  background-color: #ffffff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.service h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service p {
  font-size: 16px;
  margin-bottom: 20px;
}

.service a {
  background-color: #95c11e;
  color: #ffffff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.service a:hover {
  background-color: #056937;
}
#fws_686bd45157dbe {
  padding: 40px 0;
}

.vc_col-sm-6 {
  padding: 20px;
}

.img-with-aniamtion-wrap {
  width: 100%;
  height: auto;
}

.img-with-aniamtion-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.nectar-cta {
  margin-top: 20px;
}

.our-aim-section {
  padding: 40px;
  background-color: #f7f7f7;
}

.our-aim-section h2 {
  color: #006935;
  font-size: 24px;
  margin-bottom: 20px;
}

.our-aim-section p {
  font-size: 18px;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-button {
  background-color: #94c11f;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #7f9c1a;
}

.cta-button:nth-child(2) {
  background-color: #f18e00;
}

.cta-button:nth-child(2):hover {
  background-color: #d67a00;
}

.icon {
  margin-right: 10px;
}

.blog-section {
  padding: 40px;
  background-color: #f9f9f9;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  color: #006935;
  font-size: 24px;
}

.cta-buttons {
  display: flex;
  gap: 10px;
}

.cta-button {
  background-color: #94c11f;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #7f9c1a;
}

.posts-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.post-item {
  width: calc(33.33% - 20px);
  background-color: #fff;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post-featured-img {
  margin-bottom: 20px;
}

.post-featured-img img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}

.post-content {
  padding: 20px;
}

.post-title {
  font-size: 18px;
  margin-bottom: 10px;
}

.post-excerpt {
  font-size: 16px;
  margin-bottom: 20px;
}

.post-meta {
  font-size: 14px;
  color: #666;
}

.post-author {
  margin-right: 10px;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.scrolling-text {
  font-size: 10vw;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  animation: scroll-text 10s linear infinite;
}

@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

.image-container {
  margin-top: -24vw;
  text-align: center;
}

.image-container img {
  width: 100%;
  height: auto;
  max-width: 1024px;
}

.footer-section {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  width: calc(25% - 20px);
  margin: 20px;
}

.footer-column h3, .footer-column h4 {
  color: #94c11f;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
}

.footer-column a:hover {
  color: #94c11f;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.social-links li {
  margin-right: 20px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
}

.hero-section {
  position: relative;
  height: 100vh; /* Adjust the height as needed */
  overflow: hidden;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content {
  position: relative;
  z-index: 1;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.image-container {
  max-width: 100%;
  height: auto;
}

.image-container img {
  max-width: 100%;
  height: auto;
}

/* mobile responsiveness */ 

@media (max-width: 768px) {
  /* Hide the main navigation on mobile */
  .col.span_9 nav {
    display: none;
  }

  /* Show the mobile sidebar toggle button */
  .mobile-sidebar-toggle {
    display: block;
  }
}

.mobile-sidebar-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100vh;
  background-color: #fff;
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 999;
}

.mobile-sidebar.show {
  right: 0;
}

.mobile-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-sidebar li {
  margin-bottom: 20px;
}

.mobile-sidebar a {
  text-decoration: none;
  color: #333;
}


.mobile-sidebar-toggle {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-sidebar-toggle {
    display: block;
  }
  nav {
    display: none;
  }
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100vh;
  background-color: #fff;
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 999;
}

.mobile-sidebar.show {
  right: 0;
}



.environmental-commitment {
  padding: 15px 0;
  text-align: center;
}

.commitment-description h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.commitment-description p {
  font-size: 14px;
  color: #666;
}

@media (min-width: 480px) {
  .environmental-commitment {
    padding: 20px 0;
  }
  .commitment-description h2 {
    font-size: 24px;
  }
  .commitment-description p {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .environmental-commitment {
    padding: 30px 0;
  }
  .commitment-description h2 {
    font-size: 28px;
  }
}

@media (min-width: 992px) {
  .environmental-commitment {
    padding: 40px 0;
  }
  .commitment-description h2 {
    font-size: 36px;
  }
}


.section-two {
  padding: 80px 0;
}

.services-description {
  margin-bottom: 40px;
}

.services-description h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.services-description p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.achievements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}

.achievement {
  width: calc(33.33% - 20px);
  margin-right: 20px;
  margin-bottom: 20px;
  text-align: center;
}

.achievement h3 {
  font-size: 36px;
  margin-bottom: 10px;
}

.achievement p {
  font-size: 18px;
  color: #666;
}

.cta {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.cta a {
  margin-right: 20px;
}

.commitment {
  background-color: #f7f7f7;
  padding: 40px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.commitment h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.commitment p {
  font-size: 18px;
  color: #666;
}

@media (max-width: 992px) {
  .services-description h2 {
    font-size: 28px;
  }
  .achievement h3 {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .section-two {
    padding: 40px 0;
  }
  .services-description {
    margin-bottom: 20px;
  }
  .achievements {
    flex-direction: column;
    align-items: center;
  }
  .achievement {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .cta {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta a {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .commitment {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .services-description h2 {
    font-size: 24px;
  }
  .achievement h3 {
    font-size: 24px;
  }
  .commitment h2 {
    font-size: 20px;
  }
}



.waste-management-services {
  padding: 80px 0;
  text-align: center;
}

.waste-management-services h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.services-carousel {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.service {
  width: calc(33.33% - 20px);
  margin: 20px;
  background-color: #f7f7f7;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

.service h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.service p {
  font-size: 18px;
  color: #666;
  margin-bottom: 20px;
}

.service a {
  text-decoration: none;
  color: #337ab7;
}

@media (max-width: 992px) {
  .service {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .waste-management-services {
    padding: 40px 0;
  }
  .service {
    width: 100%;
    margin: 10px 0;
  }
  .services-carousel {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .waste-management-services h2 {
    font-size: 28px;
  }
  .service h3 {
    font-size: 20px;
  }
  .service p {
    font-size: 16px;
  }
}


.blog-section {
  padding: 80px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
}

.cta-buttons {
  display: flex;
  justify-content: flex-end;
}

.cta-button {
  background-color: #337ab7;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-header h2 {
    margin-bottom: 20px;
  }
  .cta-buttons {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .blog-section {
    padding: 40px 0;
  }
  .section-header h2 {
    font-size: 28px;
  }
  .cta-button {
    padding: 8px 16px;
  }
}

@media (max-width: 320px) {
  .section-header h2 {
    font-size: 24px;
  }
  .cta-button {
    padding: 6px 12px;
  }
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}

.scrolling-text {
  font-size: 48px;
  margin-bottom: 20px;
}

.image-container {
  max-width: 500px;
  margin: 0 auto;
}

.image-container img {
  width: 100%;
  height: auto;
}

@media (max-width: 992px) {
  .scrolling-text {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
  }
  .scrolling-text {
    font-size: 28px;
  }
  .image-container {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 50vh;
  }
  .scrolling-text {
    font-size: 24px;
  }
  .image-container {
    max-width: 200px;
  }
}

@media (max-width: 320px) {
  .scrolling-text {
    font-size: 20px;
  }
}


.footer-section {
  background-color: #333;
  color: #fff;
  padding: 40px 0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.footer-column {
  width: calc(25% - 20px);
  margin: 20px;
}

.footer-column h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.footer-column h4 {
  font-size: 20px;
  margin-bottom: 20px;
}

.footer-column p {
  font-size: 16px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #fff;
  text-decoration: none;
}

.social-links {
  display: flex;
}

.social-links li {
  margin-right: 20px;
}

@media (max-width: 992px) {
  .footer-column {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
  }
  .footer-column {
    width: 100%;
    margin: 20px 0;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 20px 0;
  }
  .footer-column h3 {
    font-size: 20px;
  }
  .footer-column h4 {
    font-size: 18px;
  }
  .footer-column p {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
  .text-content {
    padding: 10px;
    margin: 10px;
  }
}

/* animation */

#header-secondary-outer {
  animation: fadeIn 1s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


.request-quote {
  animation: shake 0.5s infinite;
}

@keyframes shake {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-5px);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(-5px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.5s, transform 0.5s;
}

.section.animate {
  opacity: 1;
  transform: translateY(0);
}



.button-wrap a {
  animation: bounce 1s infinite ease-in-out !important;
}


@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

.btn1 {
  animation-delay: 0.2s;
}
.btn {
  animation-delay: 0.2s;
}



.service {
  animation: fadeInScale 1s;
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.testimonial {
  animation: slideInLeft 1s;
}

@keyframes slideInLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.cta-button {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}