@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Space+Grotesk:wght@300..700&display=swap');
:root {
    --primary-color: #1ea44a;
    --secondary-color: #26a850;
    --accent-color: #dda02f;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --danger-color: #e53e3e;
    --light-color: #f7fafc;
    --dark-color: #1a202c;
    --text-light: #718096;
    --text-dark: #2d3748;
    --border-color: #e2e8f0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
   font-family: "Barlow", sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Custom Bootstrap Overrides */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 54, 93, 0.3);
}

.btn-accent {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #013630;
    border-color: #013630;
    color: white;
    transform: translateY(-2px);
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}
/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: #fff;
  transition: all 0.5s;
  z-index: 997;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header .header-container {
  background: #fff;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 20px;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: var(--accent-color);
  color: var(--primary-color);

}


@media (max-width: 1199.98px) {


  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
  }

  .header .logo {
    order: 1;
  }

  .header .cta-box {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }
.header .cta-box a
{color: var(--accent-color)!important;}
  .header .navmenu {
    order: 3;
  }
  .cta-box
  {background: none!important; box-shadow: none!important;}
  .cta-icon
  {color: var(--primary-color)!important;}
  .cta-text small {
  font-size: 14px;
  color: var(--primary-color)!important;
  text-transform: uppercase;
}
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 18px 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
    color: #333;
    font-family: "Space Grotesk", sans-serif;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199.98px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--primary-color);
    padding: 10px 20px;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);;
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/* Hero Section */
.hero-section {
    
    position: relative;
    overflow: hidden;
    padding-top: 190px;
    padding-bottom: 90px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/AdobeStock_381989404.jpg') center/cover;
   animation: zoomIn 10s ease-in-out infinite;
    z-index: 1;
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, transparent 0%, #1a202c 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-bottom: 60px;
}

.hero-buttons .btn {
    margin: 0.5rem;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.hero-stats {
    position: relative;
    z-index: 3;
}

.stat-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.7);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Service Areas */
.service-area-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-area-card:hover::before {
    transform: scaleX(1);
}

.service-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.area-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-area-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-type {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

.full-service .service-type {
    background-color: var(--success-color);
    color: white;
}

.extended-service .service-type {
    background-color: var(--warning-color);
    color: white;
}

/* Materials Section */
.materials-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid;
}

.materials-card.ferrous {
    border-top-color: var(--primary-color);
}

.materials-card.non-ferrous {
    border-top-color: var(--accent-color);
}

.materials-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.materials-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.materials-icon {
    font-size: 2.5rem;
    margin-right: 1rem;
    color: var(--primary-color);
}

.materials-card.non-ferrous .materials-icon {
    color: var(--accent-color);
}

.materials-list {
    space-y: 1rem;
}

.material-item {
    padding: 1rem;
    background: var(--light-color);
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.material-item:hover {
    background: #edf2f7;
    transform: translateX(5px);
}

.common-items-section {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(26,32,44,0.9)), url('../images/AdobeStock_353502449.jpg') center/cover;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.item-category {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.item-category:hover {
    transform: translateY(-5px);
}

.category-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.item-category h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.item-category ul {
    font-size: 0.9rem;
    color: var(--text-light);
}

.item-category ul li {
    margin-bottom: 0.5rem;
    color: #fff;
    text-align: left;
    list-style: square!important;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 101, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.service-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.service-features li:last-child {
    border-bottom: none;
}

/* Benefits Section */
.benefit-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.benefit-card ul li {
    text-align: left;
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

/* Process Steps */
.process-step {
    text-align: center;
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}



.step-icon {
    font-size: 2rem;
    color: #1a202c;
}

.process-step h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #333;
}

/* Contact Section */
.contact-card,
.contact-form-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    width: 40px;
    text-align: center;
}

.contact-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent-color);
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    border: 2px solid var(--border-color);
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(245, 101, 0, 0.25);
}

/* Footer */
footer {
    background: var(--dark-color) !important;
}

footer h5 {
    color: var(--accent-color);
}

footer a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-color);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-align: center!important;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.back-to-top.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 80px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .stat-card {
        margin-bottom: 1rem;
    }
    
    .materials-header {
        flex-direction: column;
        text-align: center;
    }
    
    .materials-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .contact-card,
    .contact-form-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .service-card,
    .benefit-card,
    .materials-card {
        padding: 1.5rem;
    }
    
    .common-items-section {
        padding: 2rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Utility Classes */
.text-shadow {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.box-shadow {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}
.logo-top
{background: #fff; width: auto; height: auto; padding: 10px 20px;
    position: absolute;
    top: 0;
    left: 15px;
    z-index: 999;
    box-shadow: 0 8px 6px -6px rgba(0,0,0,.4);
}
.logo-top img
{height: 120px; object-fit: contain;}
.card {
      position: relative;
      overflow: hidden;
      border-radius: 10px;
      background-color: #000;
      color: #fff;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      opacity: 0.7;
    }

    .date-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background-color: white;
      color: black;
      text-align: center;
      border-radius: 5px;
      overflow: hidden;
      font-weight: bold;
    }

    .date-badge div:first-child {
      background-color: #007bff;
      color: white;
      padding: 5px 10px;
      font-size: 1.2rem;
    }

    .date-badge div:last-child {
      background-color: white;
      color: black;
      padding: 3px 10px;
      font-size: 0.9rem;
    }

    .card-content {
      position: absolute;
      bottom: 0;
      padding: 1rem;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
      width: 100%;
    }

    .meta {
      display: flex;
      gap: 1rem;
      align-items: center;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .meta i {
      color: #00aaff;
      margin-right: 5px;
    }

    .title {
      font-size: 1.6rem;
      font-weight: 600;
      line-height: 1.4;
      margin-bottom: 0.5rem;
    }

    .category {
      font-size: 0.9rem;
      color: #ccc;
      font-size: 17px;
    }

    .external-link {
      position: absolute;
      bottom: 15px;
      right: 15px;
      font-size: 1.2rem;
      color: white;
    }
 .env-benefits-section {
      background: url('../images/vecteezy_green-recycling-symbol-made-of-grass-on-fresh-meadow-background_53633711.jpg') no-repeat center center/cover;
      color: white;
      padding: 80px 0;
      position: relative;
    }

    .env-benefits-overlay {
      background: rgba(0, 0, 0, 0.6);
      padding: 60px 30px;
    }

    .env-benefits-title {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    .env-benefits-list li {
      font-size: 1.2rem;
      margin-bottom: 15px;
      position: relative;
      padding-left: 30px;
    }

    .env-benefits-list li::before {
      content: "🌱";
      position: absolute;
      left: 0;
      top: 0;
    }

    @media (max-width: 576px) {
      .env-benefits-title {
        font-size: 2rem;
      }

      .env-benefits-list li {
        font-size: 1rem;
      }
    }
    .navbar.scrolled
    {background: #fff}
    .navbar.scrolled .navbar-brand img{
    height: 70px!important;
}
  .cta-box {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:#1a202c;
    position: relative;

  }
.cta-box::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #1a202c;
}
  .cta-icon {
    font-size: 2rem;
    color: #fff;
    margin-right: 10px;
     animation: ring 1.2s infinite;
    transform-origin: center;
  }
@keyframes ring {
    0%   { transform: rotate(0); }
    15%  { transform: rotate(15deg); }
    30%  { transform: rotate(-10deg); }
    45%  { transform: rotate(15deg); }
    60%  { transform: rotate(-5deg); }
    75%  { transform: rotate(5deg); }
    100% { transform: rotate(0); }
  }
  .cta-text {
    text-align: right;
  }

  .cta-text small {
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
  }

  .cta-text strong {
    font-size: 25px;
    color: #000;
    display: block;
    margin-top: 0px;
  }
  .highlights
  {
    display: flex;
    align-items: center;
  }
  .highlights .icon
  {
    width: 80px;
    height: 80px;
    line-height: 80px;
    text-align: center;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 2rem;
    margin-right: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  }
  .step-box {
      background-color: #fff;
      color: white;
      padding: 30px 20px;
      border-radius: 15px;
      position: relative;
      flex: 1;
      text-align: center;
      margin: 10px 10px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
.step-box h5
{color: #1a202c; font-weight: 600}
.step-box p
{color: #333}
    .step-number {
      position: absolute;
      top: 0px;
      left: 0px;
      background-color: #1a202c;
      padding: 5px 10px;
      font-size: 14px;
      border-top-left-radius: 15px;
    }

    .step-arrow {
      font-size: 30px;
      color: #1a202c;
      margin: 0 10px;
      align-self: center;
    }

    @media (max-width: 768px) {
      .step-flow {
        flex-direction: column;
      }

      .step-arrow {
        transform: rotate(90deg);
        margin: 10px 0;
      }

      .step-box {
        margin: 10px 0;
      }
    }
    .env-section {
      background: url('../images/vecteezy_green-recycling-symbol-made-of-grass-on-fresh-meadow-background_53633711.jpg') no-repeat center center/cover;
      position: relative;
      padding: 80px 0;
      color: #fff;
    }

    .env-overlay {
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(8px);
      padding: 40px;
      border-radius: 20px;
    }

    .env-title {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .env-subtitle {
      font-size: 18px;
      margin-bottom: 30px;
      color: #ccc;
    }

    .env-list {
      list-style: none;
      padding-left: 0;
    }

    .env-list li {
      font-size: 18px;
      margin-bottom: 18px;
      display: flex;
      align-items: start;
      gap: 12px;
    }

    .env-list i {
      font-size: 22px;
      color: #84e184;
      margin-top: 3px;
    }

    @media (max-width: 768px) {
      .env-overlay {
        padding: 25px;
      }
      .env-title {
        font-size: 28px;
      }
    }
     /* Wave Top Shape */
.footer-wave {
  position: relative;
  top: -1px;
}

.footer-wave svg {
  display: block;
  width: 100%;
  height: 100px;
}

/* Footer Content */
.wave-footer {
  background: #fff;
  color: #222;
}

.footer-content {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding-bottom: 40px;
}

.footer-column {
  flex: 1 1 220px;
}

.footer-column h4 {
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--accent-color);
}

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

.footer-column ul li {
  margin-bottom: 10px;
  color: #eaeaea;
}
.footer-column ul li .bi
{color: var(--accent-color); margin-right: 10px}
.footer-column ul li a {
  text-decoration: none;
  color: #eaeaea;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--accent-color);
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 20px;
  color: #222;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #007f4e;
}

/* Bottom Line */
.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #fff;
  border-top: 1px solid #343e52;
  padding-bottom: 30px;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 8px;
  text-decoration: none;
  color: #444;
}

.footer-links a:hover {
  color: #007f4e;
}
.social-icons a
{color: var(--accent-color)!important; font-size: 2rem}
/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
  }

  .social-icons {
    justify-content: center;
  }
}
    h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.1;
  color: inherit;
}
.breadcrumb-section {
  background: linear-gradient(to right, rgba(0,0,0,0.9), rgba(0,0,0,0.2)), 
              url('../images/AdobeStock_381989404.jpg') center/cover no-repeat;
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  position: relative;
  padding-top: 300px;
  padding-bottom: 150px;
}

.breadcrumb-content {
  max-width: 1200px;
  margin: 0 auto;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.breadcrumb-nav {
  font-size: 1rem;
  color: #eee;
}

.breadcrumb-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-nav a:hover {
  color: #ffd700;
}
.items-section {
  background: #f7f9fc;
  padding: 60px 20px;
}

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

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.items-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.items-section .item-category {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.items-section .item-category:hover {
  transform: translateY(-5px);
}

.items-section .item-category h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #1e3a5f;
}

.items-section .item-category ul {
  list-style: disc inside;
  padding-left: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}
.items-section .item-category ul li {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
  margin-left: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
  .breadcrumb-nav {
    font-size: 0.95rem;
  }
}
  @media (max-width: 543.98px) {
      .cta-box
      {display: none!important;}
      .highlights
  {
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }
  .highlights .icon
  {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    background: var(--accent-color);
    color: #fff;
    font-size: 1.4rem;
    margin-right: 0px;
  }
  .px-5
  {padding: 0px!important}
    }