/* Theme Colors Based On Logo */
:root {
  --dark-green: #0f3d2e;
  --leaf-green: #1fb151;
  --light-green: #6bd48f;
}

/* Top Bar */
.top-bar {
  background: var(--dark-green);
  color: #ffffff;
  padding: 4px 0;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

/* Main Header */
.main-header {
  /* background: white; */
  padding: 2px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 5px 25px rgba(0,0,0,0.2);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

/* Logo */
.logo img {
  height: 220px;

}

/* Navigation */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-menu ul li a {
  text-decoration: none;
  color:black;
  font-weight: 600;
  position: relative;
  transition: 0.3s;
}

/* Hover Underline Animation */
.nav-menu ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background: var(--leaf-green);
  bottom: -5px;
  left: 0;
  transition: 0.3s;
}

.nav-menu ul li a:hover::after,
.nav-menu ul li a.active::after {
  width: 100%;
}

.nav-menu ul li a:hover {
  color: var(--light-green);
}

/* Button */
.quote-btn {
  background: var(--leaf-green);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #6bd48f;
  color: #0f3d2e;
}

/* Main Section */
.plastic-banner {
  background: linear-gradient(to right, #f4fff6, #e6f9ec);
  padding: 80px 5%;
  position: relative;
  overflow: hidden;
}

/* Container */
.banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1300px;
  margin: auto;
  flex-wrap: wrap;
}

/* Left Side */
.banner-text {
  flex: 1;
}

.logo-text {
  font-size: 24px;
  font-weight: 600;
  color: #145c43;
}

.logo-text span {
  color: #1fb151;
}

.banner-text h1 {
  font-size: 52px;
  font-weight: 800;
  color: #1b3f2e;
  line-height: 1.2;
  margin: 20px 0;
}

.banner-text p {
  font-size: 20px;
  color: #2f5d46;
  margin-bottom: 30px;
}

/* Button */
.banner-btn {
  display: inline-block;
  background: #1fb151;
  color: #fff;
  padding: 14px 35px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background: #0f8c3c;
}

/* Right Image */
.banner-image {
  flex: 1;
  text-align: center;
}

.banner-image img {
  max-width: 100%;
  height: auto;
}

/* Bottom Curve */
.plastic-banner::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 100%;
  height: 150px;
  background: #1fb151;
  border-top-left-radius: 100% 100px;
  border-top-right-radius: 100% 100px;
}

/* Responsive */
@media(max-width: 992px){
  .banner-container {
    flex-direction: column;
    text-align: center;
  }

  .banner-text h1 {
    font-size: 38px;
  }

  .banner-image {
    margin-top: 40px;
  }
}








.hero-section{
    width:100%;
    height:100vh;
    background: url("plastic.png") center/cover no-repeat;
    display:flex;
    align-items:center;
    position:relative;
    padding-left:8%;   /* Left side se aage */
}

.hero-section::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);  /* halki dark overlay */
}

.banner-text{
    position:relative;
    z-index:2;
    color:white;
    max-width:600px;
    opacity:0.9;  /* text opacity kam */
}

.logo-text{
    font-size:20px;
    margin-bottom:10px;
}

.logo-text span{
    color:white;
}

.banner-text h1{
    font-size:55px;
    line-height:1.2;
    margin-bottom:20px;
}

.banner-text p{
    font-size:18px;
    margin-bottom:25px;
}

.banner-btn{
    display:inline-block;
    padding:12px 30px;
    background:#00c853;
    color:white;
    text-decoration:none;
    border-radius:5px;
    transition:0.3s;
}

.banner-btn:hover{
    background:#009624;
}

/* ✅ Mobile Responsive */
@media(max-width:768px){

    .hero-section{
        padding-left:5%;
        height:90vh;
    }

    .banner-text h1{
        font-size:32px;
    }

    .banner-text p{
        font-size:15px;
    }

    .banner-btn{
        padding:10px 20px;
        font-size:14px;
    }
}


/* ===== ABOUT SECTION ===== */

.about-section {
    padding: 80px 8%;
    background: #f8f9fa;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Image */
.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Content */
.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.about-content p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #218838;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-content h2 {
        font-size: 28px;
    }
}




/* ===== SIMPLE ABOUT SECTION ===== */

.about-simple {
    padding: 80px 8%;
    background: #ffffff;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

/* Image */
.about-img {
    flex: 1;
    min-width: 300px;
}

.about-img img {
    /* width: 100%; */
    border-radius: 6px;
}

/* Content */
.about-text-area {
    flex: 1;
    min-width: 300px;
}

.about-heading {
    font-size: 34px;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

/* Underline Hover Effect */
.about-heading::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #28a745;
    left: 0;
    bottom: -5px;
    transition: 0.4s ease;
}

.about-heading:hover::after {
    width: 100%;
}

/* Paragraph */
.about-text-area p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

/* Tick List */
.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
}

.about-list i {
    color: #28a745;
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-heading {
        font-size: 26px;
    }
}
/* ===== FEATURES SECTION ===== */

.features-section {
    padding: 80px 8%;
    background: #f4f7f9;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 25px;
    flex-wrap: wrap;
}

/* Feature Box */
.feature-box {
    flex: 1;
    min-width: 250px;
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    transform: translateY(0);
}

/* Hover Animation */
.feature-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Icon */
.feature-icon {
    font-size: 40px;
    color: #28a745;
    margin-bottom: 20px;
    transition: 0.3s ease;
}

/* Icon Animation */
.feature-box:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
}

/* Heading */
.feature-box h3 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #222;
}

/* Paragraph */
.feature-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
    }
}
.features-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: nowrap;   /* IMPORTANT */
}

.feature-box {
    width: 25%;          /* 4 boxes = 25% each */
    background: #ffffff;
    padding: 25px 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

/* Hover Effect */
.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
    .features-container {
        flex-wrap: wrap;
    }

    .feature-box {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .feature-box {
        width: 100%;
    }
}



.products-section {
    padding: 90px 8%;
    background: #f8f9fa;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

/* Underline Animation */
.section-title::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    background: #28a745;
    left: 0;
    bottom: -8px;
    transition: 0.4s ease;
}

.section-title:hover::after {
    width: 100%;
}

/* Subtitle */
.section-subtitle {
    margin-top: 20px;
    font-size: 16px;
    color: #666;
    animation: fadeIn 1.2s ease;
}

/* Grid */
.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Bigger Boxes */
.product-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: 0.3s ease;
}

/* Image */
.product-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 20px;
}

/* Title */
.product-card h3 {
    font-size: 18px;
    font-weight: 600;
}

/* Hover Effect */
.product-card:hover {
    border-color: #28a745;
}

/* Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}



.all-products {
    padding: 100px 8%;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

/* Underline Animation */
.section-title::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 3px;
    background: #28a745;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
}

.section-subtitle {
    margin-top: 25px;
    font-size: 16px;
    color: #666;
}

/* Grid Layout */
.products-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card Style */
.product-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e5e5e5;
    transition: 0.3s ease;
}

.product-card:hover {
    border-color: #28a745;
}

.product-card img {
    width: 100%;
    height: 170px;
    object-fit: contain;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 16px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .products-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .products-container {
        grid-template-columns: 1fr;
    }
}


.main-footer {
    position: relative;
    padding: 90px 8% 20px;
    color: #fff;
    font-family: 'Poppins', sans-serif;

    /* Background Image */
    background: url("footer.jpg") no-repeat center center/cover;
}

/* Dark Overlay */
.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: "";
    width: 40px;
    height: 3px;
    background: #28a745;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.footer-box p {
    font-size: 14px;
    line-height: 24px;
    color: #ddd;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #28a745;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: #ddd;
}

.contact-item i {
    margin-right: 10px;
    color: #28a745;
}

.footer-bottom {
    position: relative;
    z-index: 2;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 14px;
    color: #ccc;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}
.about-banner {
    position: relative;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;

    /* Simple Background */
    background: url("plastic2.png") no-repeat center center/cover;
}

/* Dark Overlay */
.about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.banner-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

/* Heading Animation */
.animate-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
}

/* Underline */
.animate-title::after {
    content: "";
    width: 60px;
    height: 3px;
    background: #28a745;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -12px;
}

/* Paragraph Animation */
.animate-text {
    font-size: 18px;
    line-height: 28px;
    color: #ddd;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.4s ease forwards;
}

/* Smooth Fade Up */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-banner {
        height: 350px;
    }

    .animate-title {
        font-size: 34px;
    }

    .animate-text {
        font-size: 16px;
    }
}


.features-section {
    padding: 70px 6%;
    background: #f4f4f4;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-box {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 12px;
    transition: 0.4s ease;
    border: 2px solid transparent;
}

.feature-box i {
    font-size: 38px;
    color: #28a745;
    margin-bottom: 15px;
    transition: 0.3s;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 22px;
}

/* Hover */
.feature-box:hover {
    transform: translateY(-8px);
    border-color: #28a745;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.feature-box:hover i {
    transform: scale(1.1);
}

/* ---------- Responsive ---------- */

/* Tablet */
@media (max-width: 992px) {
    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .features-container {
        grid-template-columns: 1fr;
    }

    .feature-box {
        padding: 25px 15px;
    }

    .feature-box h3 {
        font-size: 17px;
    }

    .feature-box p {
        font-size: 13px;
    }
}







.capabilities-section {
    padding: 100px 8%;
    background: #f7f7f7;
}

.capabilities-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Image */
.capabilities-image {
    flex: 1;
    animation: fadeLeft 1s ease forwards;
}

.capabilities-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* Right Content */
.capabilities-content {
    flex: 1;
    animation: fadeRight 1s ease forwards;
}

.capabilities-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #333;
}

.capabilities-content p {
    font-size: 16px;
    line-height: 28px;
    color: #666;
    margin-bottom: 15px;
}

/* Button */
.cap-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: #28a745;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    transition: 0.3s ease;
    font-weight: 500;
}

.cap-btn:hover {
    background: #1e7e34;
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Responsive */
@media (max-width: 992px) {
    .capabilities-container {
        flex-direction: column;
        text-align: center;
    }

    .capabilities-content h2 {
        font-size: 30px;
    }
}




.mission-section {
    background: #e9e9e9;
    padding: 100px 8%;
}

.mission-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Left Content */
.mission-content {
    flex: 1;
}

.mission-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.mission-content p {
    font-size: 16px;
    line-height: 28px;
    color: #555;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Button */
.mission-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: #5bb05b;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s ease;
}

.mission-btn:hover {
    background: #4a984a;
    transform: translateY(-3px);
}

/* Right Image */
.mission-image {
    flex: 1;
}

.mission-image img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 992px) {
    .mission-container {
        flex-direction: column;
        text-align: center;
    }

    .mission-content p {
        margin: auto;
    }
}




.product-banner {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
                url("plastic2.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8%;
}

.product-banner-content {
    color: #fff;
    max-width: 800px;
}

.product-title {
    font-size: 48px;
    margin-bottom: 20px;
    animation: fadeDown 1s ease forwards;
}

.product-text {
    font-size: 18px;
    line-height: 28px;
    animation: fadeUp 1.2s ease forwards;
}

/* Animations */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 32px;
    }
     
    .product-text {
        font-size: 16px;
    }
}










.garbage-range {
    background: #f4f4f4;
    padding: 80px 8%;
    text-align: center;
}

.range-title {
    font-size: 36px;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #333;
    position: relative;
}

.range-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #c8a100;
    display: block;
    margin: 15px auto 0;
}

/* Grid Layout */
.range-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* Each Item */
.range-item {
    transition: 0.4s ease;
}

.range-item img {
    width: 100%;
    max-width: 220px;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.range-item h4 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #b28b00;
}

/* Hover Effect */
.range-item:hover img {
    transform: scale(1.08);
}

.range-item:hover h4 {
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .range-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .range-container {
        grid-template-columns: 1fr;
    }
}


.range-title {
    font-size: 36px;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #333;
    position: relative;

    opacity: 0;
    transform: translateY(-40px);
    animation: titleFadeDown 1s ease forwards;
}

@keyframes titleFadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.shopping-range {
    background: #efefef;
    padding: 80px 8%;
    text-align: center;
}

.shopping-title {
    font-size: 38px;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #e53935;
    position: relative;
}

.shopping-title::after {
    content: "";
    width: 100px;
    height: 3px;
    background: #e53935;
    display: block;
    margin: 15px auto 0;
}

/* Grid Layout */
.shopping-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

/* Item Style */
.shopping-item {
    transition: 0.4s ease;
}

.shopping-item img {
    width: 100%;
    max-width: 220px;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.shopping-item h4 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #e53935;
}

/* Hover Effect */
.shopping-item:hover img {
    transform: scale(1.08);
}

.shopping-item:hover h4 {
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .shopping-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .shopping-container {
        grid-template-columns: 1fr;
    }
}


.sheets-range {
    background: #efefef;   /* same light grey background */
    padding: 80px 8%;
    text-align: center;
}

.sheets-title {
    font-size: 38px;
    margin-bottom: 60px;
    letter-spacing: 2px;
    color: #333;
    position: relative;
}

.sheets-title::after {
    content: "";
    width: 100px;
    height: 3px;
    background: #c8a100;   /* same golden line */
    display: block;
    margin: 15px auto 0;
}

/* Grid Layout */
.sheets-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.sheets-item img {
    width: 100%;
    max-width: 220px;
    margin-bottom: 20px;
    transition: 0.4s ease;
}

.sheets-item h4 {
    font-size: 14px;
    letter-spacing: 1px;
    color: #b28b00;  /* same golden text */
}

/* Hover */
.sheets-item:hover img {
    transform: scale(1.08);
}

.sheets-item:hover h4 {
    color: #000;
}

/* Responsive */
@media (max-width: 992px) {
    .sheets-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .sheets-container {
        grid-template-columns: 1fr;
    }
}



.services-banner {
    height: 70vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url("plastic2.png") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 8%;
}

.services-banner-content {
    color: #fff;
    max-width: 800px;
}

.services-banner h1 {
    font-size: 50px;
    margin-bottom: 20px;
    letter-spacing: 2px;
    animation: fadeDown 1s ease forwards;
}

.services-banner p {
    font-size: 18px;
    line-height: 28px;
    animation: fadeUp 1.2s ease forwards;
}

/* Animations */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .services-banner h1 {
        font-size: 32px;
    }

    .services-banner p {
        font-size: 16px;
    }
}



.center-image-section {
    background: #f3f3f3;   /* same light background */
    padding: 80px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.center-image-section img {
    max-width: 600px;
    width: 100%;
    height: auto;
}



.about-company {
    background: #f2f2f2;
    padding: 100px 8%;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Left Image Style */
.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    width: 100%;
    /* border: 4px solid #1e5fa8; */
}

/* Right Content */
.about-content {
    flex: 1;
    position: relative;
}

/* Experience Box */
.experience-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.experience-box span {
    font-size: 48px;
    font-weight: bold;
    color: #1e5fa8;
    border: 1cqmin solid #1e5fa8;
    padding: 10px 20px;
}

.experience-box p {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.about-content h2 {
    font-size: 32px;
    color: #1e5fa8;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 15px;
    color: #444;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background: #1e5fa8;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.about-btn:hover {
    background: #163f72;
}

/* Responsive */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column;
    }
}



.brand-area{
            text-align:center;
            padding:80px 20px;
        }

        /* Heading Style */
        .brand-title{
            font-size:48px;
            font-weight:700;
            position:relative;
            display:inline-block;
            cursor:pointer;
        }

        /* Animated Underline */
        .brand-title::after{
            content:"";
            position:absolute;
            left:0;
            bottom:-10px;
            width:0%;
            height:4px;
            background:#f4c400;
            transition:0.4s ease;
        }

        .brand-title:hover::after{
            width:100%;
        }

        /* Image Style */
        .brand-wrapper{
            margin-top:60px;
        }

       .brand-wrapper {
    text-align: center;   /* center me logo */
    padding: 20px 0;
}

.brand-wrapper img {
    width: 50%;      /* normal professional size */
    height: 50%;      /* ratio maintain karega */
    /* max-width: 100%; */
}

        .brand-wrapper img:hover{
            /* transform:scale(1.08); */
        }

        /* Contact Hero Banner */
.contact-hero-section {
    background: url('conct.avif') center/cover no-repeat;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-overlay {
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-content {
    text-align: center;
    color: #fff;
    padding: 20px;
}

.contact-hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

/* Underline Animation */
.contact-hero-title::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 4px;
    left: 0;
    bottom: -8px;
    background: #f4c400;
    transition: 0.4s ease;
}

.contact-hero-title:hover::after {
    width: 100%;
}

.contact-hero-subtitle {
    font-size: 18px;
    max-width: 600px;
    margin: auto;
}
  /* Section Spacing */
.section-space {
    padding: 100px 20px;
    background: #f4f6f9;
}

/* Container */
.custom-container {
    max-width: 1200px;
    margin: auto;
}

/* Row Layout */
.custom-row {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Box */
.contact-box {
    flex: 1 1 300px;
}

.contact-box-inner {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.contact-box-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

/* Icon */
.contact-box-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: #f4c400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #000;
    transition: 0.4s;
}

.contact-box-inner:hover .contact-box-icon {
    background: #000;
    color: #f4c400;
}

/* Title */
.contact-box-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Text */
.contact-box-text {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
}

.contact-box-text a {
    color: #666;
    text-decoration: none;
    transition: 0.3s;
}

.contact-box-text a:hover {
    color: #f4c400;
}

/* Map */
.location-map-wrapper {
    margin-top: 60px;
}

.location-map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: 0;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}
/* Icon Base Style */
.contact-box-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f4c400, #ff9900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;   /* icon color white */
    transition: all 0.4s ease;
}

/* Hover Effect */
.contact-box-inner:hover .contact-box-icon {
    background: linear-gradient(135deg, #000000, #333333);
    color: rgb(71, 88, 71);   /* icon color change on hover */
    transform: scale(1.15) rotate(10deg);
}
/* Icon Base Style */
.contact-box-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #00b894, #009e7f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    transition: all 0.4s ease;
}

/* Hover Effect */
.contact-box-inner:hover .contact-box-icon {
    background: linear-gradient(135deg, #00695c, #004d40);
    color: #00ffcc;
    transform: scale(1.1);
}




*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Arial, sans-serif;
}

header{
  width:100%;
  background:white;
  padding:15px 8%;
}


/* Toggle Button */
.menu-toggle{
  display:none;
  font-size:28px;
  color:black;
  cursor:pointer;
  z-index:1001;
}

/* Mobile Style */
@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav-menu{
    position:fixed;
    top:0;
    right:-260px;   /* 👈 hidden outside screen */
    width:250px;    /* 👈 controlled width */
    height:100vh;
    background:#c2fc9b;
    padding-top:80px;
    transition:0.4s ease;
    box-shadow:-5px 0 15px rgba(0,0,0,0.2);
  }

  .nav-menu ul{
    flex-direction:column;
    padding:0;
    text-align:left;
  }

  .nav-menu ul li{
    margin:15px 0;
    padding-left:25px;
  }

  .nav-menu a{
    font-size:16px;
    color:white;
  }

  /* Show Menu */
  .nav-menu.show{
    right:0;
  }
}
.hide-btn{
  display:none;
}


@media(max-width:768px){

  .nav-menu{
    position:fixed;
    top:70px;          /* header ke neeche start hoga */
    right:-260px;
    width:240px;
    height:auto;       /* 👈 full height remove */
    background:#b1f373;
    padding:15px 0;    /* 👈 kam padding */
    border-radius:10px 0 0 10px;  /* professional rounded look */
    transition:0.4s ease;
    box-shadow:-5px 0 15px rgba(0,0,0,0.2);
  }

  .nav-menu ul li{
    margin:10px 0;     /* 👈 gap kam */
    padding-left:20px;
  }

  .nav-menu.show{
    right:0;
  }
}



.garbage-range{
    padding:60px 8%;
    text-align:center;
}

.range-title{
    font-size:32px;
    margin-bottom:40px;
}

.range-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:25px;
}

.range-item{
    border:1px solid #ddd;
    border-radius:10px;
    padding:20px;
    background:#fff;
    transition:0.3s;
}

.range-item:hover{
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.range-item img{
    width:100%;
    height:220px;          /* 👈 sab images equal height */
    object-fit:cover;      /* 👈 image stretch nahi hogi */
    border-radius:8px;
}

.range-item h4{
    margin-top:15px;
    font-size:18px;
}


.shopping-range{
    padding:60px 8%;
    text-align:center;
}

.shopping-title{
    font-size:32px;
    margin-bottom:40px;
}

.shopping-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:25px;
}

.shopping-item{
    border:1px solid #ddd;
    border-radius:10px;
    padding:20px;
    background:#fff;
    transition:0.3s;
}

.shopping-item:hover{
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.shopping-item img{
    width:100%;
    height:220px;        /* Sab images equal */
    object-fit:cover;    /* Stretch nahi hongi */
    border-radius:8px;
}

.shopping-item h4{
    margin-top:15px;
    font-size:18px;
}



.sheets-range{
    padding:60px 8%;
    text-align:center;
}

.sheets-title{
    font-size:32px;
    margin-bottom:40px;
}

.sheets-container{
    display:grid;
    grid-template-columns:repeat(auto-fit, minmax(250px, 1fr));
    gap:25px;
}

.sheets-item{
    border:1px solid #ddd;
    border-radius:10px;
    padding:20px;
    background:#fff;
    transition:0.3s;
}

.sheets-item:hover{
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.sheets-item img{
    width:100%;
    height:220px;      /* Equal image size */
    object-fit:cover;  /* Stretch nahi hogi */
    border-radius:8px;
}

.sheets-item h4{
    margin-top:15px;
    font-size:18px;
}









/* .social-icons {
  position: fixed;       
  top: 50%;             
  right: 20px;          
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.social-icons a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
  cursor: pointer;
}

.social-icons a img:hover {
  transform: scale(1.2); 
} */



.social-icons-wrapper {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  z-index: 1000;
}

.social-icons-bg {
  background-color: #00000080; /* Dark semi-transparent background */
  padding: 15px 10px;
  border-radius: 15px;   /* Rounded corners */
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.social-icons-bg a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s;
}

.social-icons-bg a img:hover {
  transform: scale(1.2); /* Hover zoom effect */
}
















.products {
  padding: 50px 0;
}

.container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card Design */
.card {
  position: relative;
  width: 100%;
  height: 300px;   /* Same Height */
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.4s ease;
}

.overlay h3 {
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin-bottom: 15px;
  font-weight: bold;
}

/* Button */
.btn {
  padding: 10px 25px;
  background: white;
  color: black;
  text-decoration: none;
  border-radius: 30px;
  font-weight: bold;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
}

/* Hover Effect */
.card:hover img {
  transform: scale(1.1);
}

.card:hover .overlay {
  background: rgba(0,0,0,0.6); /* Light black hover */
}

.card:hover .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
  .container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .container {
    grid-template-columns: 1fr;
  }
}











.features {
  background: #e9e9e9;
  padding: 80px 0;
}

.container {
  width: 90%;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
  font-weight: bold;
  color: #333;
}






/* Section */
.why-choose{
  background:#ededed;
  padding:80px 0;
}

.wrapper{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* Heading */
.why-title{
  text-align:center;
  font-size:40px;
  margin-bottom:60px;
  font-weight:600;
  color:#333;
}

/* Row */
.why-row{
  display:flex;
  justify-content:space-between;
  gap:30px;
}

/* Card */
.why-card{
  flex:1;
  background:#fff;
  padding:35px;
  border:1px solid #ddd;
  border-radius:8px;
  transition:0.3s ease;
}

.why-card:hover{
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* Icon */
.why-icon{
  font-size:40px;
  color:#333;
  margin-bottom:20px;
}

/* Text */
.why-card h3{
  font-size:22px;
  margin-bottom:15px;
  color:#333;
  font-weight:600;
}

.why-card p{
  font-size:15px;
  line-height:1.8;
  color:#555;
}

/* Mobile Responsive */
@media(max-width:600px){

  .why-row{
    flex-direction:column;
  }

  .why-title{
    font-size:28px;
  }

  .why-card{
    text-align:center;
  }

  .why-icon{
    margin-bottom:15px;
  }
}



/* Banner Section */
.quote-banner{
  background: url('test1.png') center center/cover no-repeat;
  position: relative;
  padding: 120px 20px;
  text-align: center;
  color: #fff;
}

/* Dark Overlay */
.quote-banner::before{
  /* content: "";
  position: absolute;
  inset: 0; */
  /* background: rgba(0,0,0,0.55); */
}

.quote-content{
  position: relative;
  max-width: 900px;
  margin: auto;
}

.quote-content h2{
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
}

.quote-content p{
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Button */
.quote-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5cb85c;
  color: #fff;
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.quote-btn:hover{
  background: #4cae4c;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width:768px){

  .quote-banner{
    padding: 80px 20px;
  }

  .quote-content h2{
    font-size: 28px;
  }

  .quote-content p{
    font-size: 16px;
  }

  .quote-btn{
    padding: 12px 22px;
    font-size: 14px;
  }
}






/* whatsapp button */


.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(45deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    animation: pulse 1.8s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}




* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f4f4f4;
}

/* ===== SECTION ===== */
.brands-section {
  padding: 80px 5%;
  text-align: center;
}

/* ===== LOGOS ===== */
.brands-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 80px;
}

.brand-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  flex: 1;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.brand-card img {
  max-width: 100%;
  height: 100px;
  object-fit: contain;
}

.brand-card:hover {
  transform: translateY(-8px);
}

/* ===== STATS ===== */
.stats-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}
.stat-box {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.stat-box h2 {
  font-size: 48px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;   /* kam space */
}

.stat-box p {
  margin: 5px 0;        /* kam space */
  color: #444;
  font-size: 16px;
}

.stat-box i {
  font-size: 32px;
  color: #4CAF50;
  margin-top: 8px;      /* kam space */
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .brands-container,
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
}









.logo {
    padding: 0;
    margin: 0;
}

.logo img {
    max-width: 180px;   /* Desktop size */
    height: auto;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo {
        padding: 5px 0;
        margin: 0;
        text-align: center;   /* agar center chahain */
    }

    .logo img {
        max-width: 120px;   /* Mobile par chhota size */
    }
}