/* 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: 50px ;
  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: 520px;

}

/* 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: 19px;
    color: #ddd;
}

.contact-item i {
    margin-right: 10px;
    color: #28a745;
} */


.contact-item {
    display: flex;
    align-items: flex-start; /* center ki jagah top align */
    margin-bottom: 15px;
    font-size: 15px;
    color: white;
}

.contact-item i {
    margin-right: 12px;
    width: 45px;
    height: 45px;
    background: #f2f2f2; /* circle background */
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.contact-item span {
    line-height: 1.5;
}

/* 
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    width: 45px;
    height: 45px;
    background: #f2f2f2;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 18px;
}

.contact-item span {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
} */

@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("banner42.jpg") 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("regula.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("banner41.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('conct31') 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 */
    }
}



.hero-slider {
    width: 95%;
    height: 90vh;
    margin: 40px auto;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.slides {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    color:white ;
    /* background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2)); */
}

.overlay {
    position: absolute;
    top: 50%;
    /* left: 8%; */
    transform: translateY(-50%);
    color: #fff;
    max-width: 10200px;
    /* z-index: 2; */
    
}

.overlay h4 {
    font-size: 22px;
    letter-spacing: 2px;
    color: white;
}

.overlay h1 {
    font-size: 65px;
    margin: 15px 0;
    color: white;
}

.overlay p {
    font-size: 20px;
    margin-bottom: 25px;
}

.btn {
    padding: 12px 30px;
    border: 2px solid #fff;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .overlay h1 {
        font-size: 35px;
    }
}







.pharma-services {
  padding: 80px 2%; /* side padding kam */
  background: #f7f7f7;
  text-align: center;
}

.pharma-section-title {
  font-size: 42px;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.pharma-services-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* gap kam kiya */
}

.pharma-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  width: 350px; /* card width badi */
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
  padding-bottom: 30px;
}

.pharma-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}

.pharma-card img {
  width: 100%;
  height: 220px; /* image height badi */
  object-fit: cover;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.pharma-card h3 {
  margin: 25px 0 12px 0;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.pharma-card h3 i {
  color: #4cafef;
}

.pharma-card p {
  padding: 0 15px 20px 15px;
  font-size: 15px;
  color: #555;
}

.pharma-btn {
  display: inline-block;
  padding: 14px 35px;
  background: linear-gradient(90deg, #4cafef, #00796b);
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  margin-top: 12px;
}

.pharma-btn:hover {
  background: linear-gradient(90deg, #00796b, #4cafef);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* Responsive */
@media (max-width: 992px){
  .pharma-services-wrapper {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px){
  .pharma-card {
    width: 95%; /* mobile full width */
    margin-bottom: 30px;
  }
  .pharma-services {
    padding: 60px 2%; /* mobile padding kam */
  }
}




.pharma-features {
  padding: 80px 2%;
  background: #f7f7f7;
  text-align: center;
}

.pharma-title {
  font-size: 40px;
  margin-bottom: 50px;
  color: #1a1a1a;
}

.pharma-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.pharma-card {
  background: #fff;
  border-radius: 20px;
  width: 320px;
  padding: 40px 20px 30px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.pharma-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.pharma-icon {
  background: linear-gradient(135deg, #4cafef, #00796b);
  color: #fff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  font-size: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.pharma-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #333;
}

.pharma-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px){
  .pharma-row {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 768px){
  .pharma-card {
    width: 95%;
    margin-bottom: 30px;
  }
}





.pharma-quote-banner {
  background: url('pharmacy.html\ 2.webp') no-repeat center center/cover;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 40px 2%;
  position: relative;
  overflow: hidden;
  color: #fff;
  
}

.pharma-quote-overlay {
  /* background: rgba(76, 77, 76, 0.65);  */
  padding: 60px 20px;
  border-radius: 15px;
}




.pharma-quote-banner {
  background: url('pharmacy%202.webp') no-repeat center center/cover;
  padding: 80px 20px;
  border-radius: 15px;
  margin: 40px 2%;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.pharma-quote-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5); /* black overlay with 50% opacity */
  z-index: 1;
  border-radius: 15px;
}

.pharma-quote-banner .pharma-quote-content {
  position: relative;
  z-index: 2; /* ensures content is above overlay */
  text-align: center;
}

.pharma-quote-content {
  text-align: center;
}

.pharma-quote-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: 700;
  color: white;
}

.pharma-quote-content p {
  font-size: 16px;
  max-width: 650px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  color: white;
}

.pharma-quote-btn {
  display: inline-block;
  padding: 14px 35px;
  background: #fff;
  color: #00796b;
  font-weight: 600;
  font-size: 16px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.pharma-quote-btn span {
  margin-left: 8px;
  font-size: 18px;
}

.pharma-quote-btn:hover {
  background: #e0f2f1;
  transform: translateY(-3px);
}













.container {
            display: flex;
            gap: 20px;
            text-align: center;
        }

        .card {
            width: 180px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .icon-circle {
            width: 100px;
            height: 100px;
            background-color: #2e74b5; /* Blue Color */
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 8px rgba(0,0,0,0.2);
            margin-bottom: 15px;
        }

        /* Icon styling (Using placeholder text for icons) */
        .icon-circle span {
            color: white;
            font-size: 40px;
            font-weight: bold;
        }

        .card h3 {
            font-size: 16px;
            color: #333;
            margin: 0;
            text-transform: capitalize;
            line-height: 1.2;
        }





        .mv-section{
  padding:80px 6%;
  background:#f5f8fc;
}

.mv-box{
  display:flex;
  align-items:center;
  gap:40px;
  margin-bottom:60px;
}

.mv-box.reverse{
  flex-direction:row-reverse;
}

.mv-image img{
  width:100%;
  max-width:500px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.mv-content{
  background:#fff;
  padding:40px;
  border-radius:15px;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.mv-icon{
  width:70px;
  height:70px;
  background:#0d6efd;
  color:#fff;
  font-size:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  margin-bottom:15px;
}

.mv-content h2{
  font-size:28px;
  margin-bottom:10px;
}

.mv-content p{
  font-size:16px;
  color:#555;
  line-height:1.7;
}

/* Responsive */
@media(max-width:900px){
  .mv-box{
    flex-direction:column;
  }

  .mv-box.reverse{
    flex-direction:column;
  }
}



.mission-image img{
  width:100%;
  height:300px;   /* height choti ho jayegi */
  object-fit:cover;
  border-radius:10px;
}


.capabilities-image img{
  width:100%;
  height:400px;   /* image height choti ho jayegi */
  object-fit:cover;
  border-radius:10px;
}



/* TOP BAR */
.mt-top-bar{
  background:#0d6efd;
  color:#fff;
  font-size:14px;
  padding:6px 0;
}
.mt-container{
  max-width:1200px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 15px;
  flex-wrap:wrap;
}
.mt-contact{
  margin:2px 0;
}

/* HEADER */
.mt-header{
  background:#fff;
  box-shadow:0 4px 15px rgba(0,0,0,0.05);
  position:sticky;
  top:0;
  z-index:999;
}
.mt-header-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 15px;
  flex-wrap:wrap;
}

/* Logo */
/* .mt-logo img{
  max-height:40px;
} */


.mt-logo img {
  width: 180px;
  height: auto;
  max-height: 80px;
}

@media (max-width: 768px){
  .mt-logo img {
    width: 140px;
  }
}

/* Navigation */
.mt-nav-menu ul{
  display:flex;
  list-style:none;
  margin:0;
  padding:0;
  gap:25px;
}
.mt-nav-menu ul li a{
  text-decoration:none;
  color:#333;
  font-weight:500;
  transition:0.3s;
}
.mt-nav-menu ul li a:hover{
  color:#0d6efd;
}

/* Button */
.mt-header-btn .mt-quote-btn{
  background:#0d6efd;
  color:#fff;
  padding:10px 20px;
  border-radius:6px;
  text-decoration:none;
  transition:0.3s;
}
.mt-header-btn .mt-quote-btn:hover{
  background:#0056b3;
}

/* Mobile Menu Toggle */
.mt-menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* Responsive */
@media(max-width:768px){
  .mt-nav-menu{
    display:none;
    width:100%;
  }
  .mt-nav-menu ul{
    flex-direction:column;
    gap:15px;
    background:#fff;
    padding:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    border-radius:8px;
  }
  .mt-nav-menu.show{
    display:block;
  }
  .mt-menu-toggle{
    display:block;
  }
  .mt-header-btn{
    width:100%;
    margin-top:10px;
    text-align:center;
  }
}
@media(max-width:768px){

  /* Hide Get a Quote button on mobile */
  .mt-header-btn{
    display:none;
  }

  /* Menu toggle aligned right */
  .mt-menu-toggle{
    display:block;
    margin-left:auto; /* push to right */
  }

  /* Nav menu on mobile */
  .mt-nav-menu{
    display:none;
    width:100%;
    margin-top:10px;
  }
  .mt-nav-menu.show{
    display:block;
  }
  .mt-nav-menu ul{
    flex-direction:column;
    gap:15px;
    background:#fff;
    padding:15px;
    border-radius:8px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
  }

  /* Nav + button wrapper flex fix */
  .mt-nav-btn-wrapper{
    flex-direction:row; /* menu toggle + nav stacked */
    align-items:center;
    width:100%;
  }
}


/* Top Bar */
.mt-top-bar{
  background: linear-gradient(90deg, #6ebb21 0%, #9ad953 100%);
  color:#000; /* text black */
  font-size:14px;
  padding:6px 0;
}

/* Mobile Menu Background */
@media(max-width:768px){
  .mt-nav-menu ul{
    background:#b8e986; /* same light green when menu open */
  }
  .mt-nav-menu ul li a{
    color:#000; /* text black on light green */
  }
  .mt-nav-menu ul li a:hover{
    color:#0d6efd; /* optional hover color */
  }
}


/* Desktop Navbar */
.mt-nav-menu ul li a {
    text-decoration: none;
    color: #333; /* neutral dark color instead of blue */
    font-weight: 500;
    font-size: 18px; /* slightly bigger font */
    position: relative; /* for bottom line */
    padding-bottom: 5px;
    transition: color 0.3s;
}

/* Bottom line hover effect */
.mt-nav-menu ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #b8e986; /* green line */
    transition: width 0.3s;
}

.mt-nav-menu ul li a:hover::after {
    width: 100%;
}

/* Optional: hover text color change */
.mt-nav-menu ul li a:hover {
    color: #000; /* text color can slightly darken */
}


.nm-core-section {
  padding: 90px 20px;
  background: #f4f9ff;
}

.nm-core-container {
  max-width: 1200px;
  margin: auto;
}

.nm-core-header {
  text-align: center;
  margin-bottom: 60px;
}

.nm-core-header h2 {
  font-size: 38px;
  color: #0c2d57;
  margin-bottom: 15px;
  font-weight: 700;
}

.nm-core-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: auto;
}

.nm-core-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.nm-core-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.nm-core-card:hover {
  transform: translateY(-10px);
}

.nm-core-icon {
  font-size: 42px;
  margin-bottom: 18px;
}

.nm-core-card h3 {
  font-size: 18px;
  color: #0c2d57;
}



.nm-geo-section {
  padding: 100px 20px;
  background:url('map2.png') center/cover no-repeat;
}

.nm-geo-container {
  max-width: 1200px;
  margin: auto;
}

.nm-geo-header {
  text-align: center;
  margin-bottom: 60px;
}

.nm-geo-header h2 {
  font-size: 38px;
  color: #0c2d57;
  margin-bottom: 15px;
  font-weight: 700;
}

.nm-geo-header p {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: auto;
}

.nm-geo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.nm-geo-card {
  background: #ffffff;
  padding: 40px 25px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
}

.nm-geo-card:hover {
  transform: translateY(-10px);
}

.nm-geo-icon {
  font-size: 45px;
  margin-bottom: 18px;
}

.nm-geo-card h3 {
  font-size: 18px;
  color: #0c2d57;
}




.nm-comp-section {
  padding: 100px 20px;
  background: #f4f9ff;
}

.nm-comp-container {
  max-width: 1200px;
  margin: auto;
}

.nm-comp-header {
  text-align: center;
  margin-bottom: 60px;
}

.nm-comp-header h2 {
  font-size: 38px;
  color: #0c2d57;
  margin-bottom: 15px;
  font-weight: 700;
}

.nm-comp-header p {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: auto;
}

.nm-comp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.nm-comp-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.nm-comp-card:hover {
  transform: translateY(-8px);
}

.nm-comp-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.nm-comp-card h3 {
  font-size: 20px;
  color: #0c2d57;
  margin-bottom: 15px;
}

.nm-comp-desc {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.nm-comp-card ul {
  list-style: none;
  padding: 0;
}

.nm-comp-card ul li {
  font-size: 14px;
  color: #444;
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.nm-comp-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #1e73be;
  font-size: 14px;
}




.nm-std-section {
  padding: 100px 20px;
  background: #f4f7fb;
}

.nm-std-container {
  max-width: 1200px;
  margin: auto;
}

.nm-std-header {
  text-align: center;
  margin-bottom: 60px;
}

.nm-std-header h2 {
  font-size: 40px;
  font-weight: 700;
  color: #0c2d57;
  margin-bottom: 15px;
}

.nm-std-header p {
  font-size: 16px;
  color: #555;
  max-width: 750px;
  margin: auto;
}

.nm-std-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 30px;
}

.nm-std-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.nm-std-card:hover {
  transform: translateY(-8px);
}

.nm-std-icon {
  font-size: 38px;
  margin-bottom: 15px;
}

.nm-std-card h3 {
  font-size: 20px;
  color: #0c2d57;
  margin-bottom: 10px;
}

.nm-std-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.nm-std-card ul {
  padding-left: 18px;
}

.nm-std-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  color: #444;
}



.nm-quality-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #2d5bd1, #1e3fa8);
  color: #ffffff;
  text-align: center;
}

.nm-quality-container {
  max-width: 1200px;
  margin: auto;
}

.nm-quality-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.nm-quality-header p {
  font-size: 18px;
  max-width: 800px;
  margin: auto;
  opacity: 0.9;
}

.nm-quality-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.nm-quality-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 20px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  transition: 0.3s ease;
}

.nm-quality-card:hover {
  transform: translateY(-8px);
}

.nm-quality-card h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 10px;
}

.nm-quality-card span {
  font-size: 16px;
  opacity: 0.9;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.slide.active {
  opacity: 1;
  position: relative;
}

.overlay {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px;
  text-align: center;
  color: #fff;
  max-width: 1400px;
  border-radius: 10px;
}

.overlay h4 {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.overlay h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.overlay p {
  font-size: 18px;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  background: #1e73be;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s ease;
}

.btn:hover {
  background: #155a96;
}

/* ========================= */
/* 📱 Tablet Responsive */
/* ========================= */

@media (max-width: 992px) {
  .overlay h1 {
    font-size: 36px;
  }

  .overlay p {
    font-size: 16px;
  }
}

/* ========================= */
/* 📱 Mobile Responsive */
/* ========================= */

@media (max-width: 768px) {

  .hero-slider {
    height: 80vh;
  }

  .overlay {
    padding: 25px;
    width: 120%;
  }

  .overlay h4 {
    font-size: 14px;
  }

  .overlay h1 {
    font-size: 26px;
  }

  .overlay p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {

  .overlay h1 {
    font-size: 22px;
  }

  .overlay p {
    font-size: 13px;
  }

}
@media (max-width: 768px) {

  .hero-slider {
    height: 80vh;
  }

  .overlay {
    padding: 25px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .overlay h4 {
    font-size: 14px;
  }

  .overlay h1 {
    font-size: 26px;
  }

  .overlay p {
    font-size: 14px;
  }

  .btn {
    padding: 10px 20px;
    font-size: 14px;
  }
}
