/* =====================
   FONTS
===================== */

/* @import url('https://fonts.googleapis.com/css2?family=Vast+Shadow&family=Open+Sans:wght@400;600;700&display=swap'); */

/* =====================
   FONTS
===================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* =====================
   CSS VARIABLES
===================== */
:root {
    --main-font: 'Inter', sans-serif;
    --dark-blue: #07122c;
    --green: #05524D;
    --light-green: #2A6B7F;
    --white: #ffffff;
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* =====================
   BASIC RESET
===================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--main-font); /* Yahan fix kar diya hai */
    font-size: 14px;
    background: white;
    color: #555;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.hero-section .owl-carousel {
    touch-action: pan-y !important;
}

.hero-section .owl-carousel .owl-stage {
    touch-action: pan-y !important;
}
/* =====================
   GLOBAL HEADINGS STYLING
===================== */

/* Sabhi Headings ka common base */
h1, h2, h3, .main-heading, .product-name-title, .section-title, .why-title {
    font-family: var(--main-font);
    color: #1a1d2e; /* Tera preferred dark color */
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* =====================
   SECTION TITLE (Refined)
===================== */
.section-title {
    font-family: var(--main-font); /* Inter font */
    font-size: 36px;               /* Wahi size jo h2/about-hero ka hai */
    font-weight: 800;              /* Extra Bold modern look */
    color: #1a1d2e;                /* Wahi dark premium color */
    text-align: center;            /* Center aligned */
    text-transform: uppercase;     /* Professional look */
    letter-spacing: 2px;           /* Thoda clean space (3px se thoda kam kiya taaki readable rahe) */
    margin-bottom: 55px;
    position: relative;
    line-height: 1.2;
}

/* Mobile par heading ko adjust karne ke liye */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;           /* Mobile responsive size */
        letter-spacing: 1px;
        margin-bottom: 35px;
    }
    
     .sticky-top {
        position: static !important;
        z-index: 0 !important;
    }
    
    .btn.rounded-pill {
        font-size: 17px !important;
        padding: 8px 20px !important;
    }
}

/* Specific h2 Styling (Jo tune manga tha) */
h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 18px;
}

/* Specific h1 Styling (Thoda bada h2 se) */
h1 {
    font-size: 42px;
    font-weight: 800;
}

/* Product Titles (Thode chhote aur clean) */
.product-name-title {
    font-size: 22px;
    font-weight: 700;
}

/* =====================
   MOBILE RESPONSIVE
===================== */
@media (max-width: 768px) {
    h2 {
        font-size: 28px; /* Mobile par screen se bahar nahi jayega */
        margin-bottom: 15px;
    }
    h1 {
        font-size: 32px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}


a,
a:hover,
a:focus,
a:active,
a:visited {
    text-decoration: none !important;
}
img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

/* =====================
   SCROLL REVEAL ANIMATIONS
===================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.75s var(--ease-out-expo), transform 0.75s var(--ease-out-expo);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* =====================
   PAGE LOADER
===================== */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--dark-blue);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 3px;
    animation: loaderPulse 1.4s ease-in-out infinite;
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--green), var(--light-green));
    border-radius: 2px;
    animation: loaderFill 1.2s var(--ease-out-expo) forwards;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 0.7; }
    50%       { opacity: 1; }
}

@keyframes loaderFill {
    from { width: 0%; }
    to   { width: 100%; }
}

/* =====================
   WHATSAPP FLOAT BUTTON
===================== */
.whatsapp-float {
    position: fixed;
    bottom: 56px;
    right: 19px;
    z-index: 9999;
    background: #25D366;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    animation: pulseGreen 2.5s infinite;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

@keyframes pulseGreen {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
    50%       { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.12); }
}





/* =====================
   CATEGORY CARD — BANNER STYLE
===================== */
.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    cursor: pointer;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

.category-card img {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out-expo);
}

.category-card:hover img {
    transform: scale(1.04);
}

/* Bottom-left button  */
.card-btn-overlay-left {
    position: absolute;
    bottom: 16px;
    left:410px;
    right: auto;
}

.card-btn-overlay-right {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: auto;
}

.see-product-btn {
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--main-font);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.2s ease;
    pointer-events: none;
}

.category-card:hover .see-product-btn {
    background: var(--green);
}

/* =====================
   MOBILE RESPONSIVE
===================== */

@media (max-width: 576px) {
    .category-card img {
        height: 180px;
    }
    .see-product-btn {
        font-size: 12px;
        padding: 9px 16px;
    }
    .manufacturing-section h2 {
        margin-top: 15px;
    }
    .card-btn-overlay-right {
        bottom: 12px;
        left: 12px;
    }
    .card-btn-overlay-left {
        bottom: 12px;
        left: auto !important;  /* Fixed pixel value hatao */
        right: 12px !important; /* Right se position karo */
    }
}
/*@media (max-width: 576px) {*/
/*    .category-card img {*/
/*        height: 180px;*/
/*    }*/

/*    .see-product-btn {*/
/*        font-size: 12px;*/
/*        padding: 9px 16px;*/
/*    }*/
/*.manufacturing-section h2{*/
/*    margin-top:15px;*/
/*}*/

 /*.card-btn-overlay-left,*/
 /*   .card-btn-overlay-right {*/
 /*       bottom: 12px;*/
 /*       left: 12px;*/
 /*   }*/
/*  .card-btn-overlay-right {*/
/*        bottom: 12px;*/
/*        left: 12px;*/
/*    }*/
    
/*      .card-btn-overlay-left*/
/*     {*/
/*        bottom: 12px;*/
/*        left: 240px;*/
/*    }*/
/*}*/






/* =====================
   STICKY CALL BUTTONS
===================== */
.sticky-calls {
    position: fixed;
    bottom: 30px;
    left: 0;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.call-pill {
    background: var(--dark-blue);
    color: white;
    padding: 9px 18px 9px 12px;
    border-radius: 0 25px 25px 0;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 2px 4px 14px rgba(0, 0, 0, 0.18);
    transition: padding-left 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.call-pill:hover {
    padding-left: 18px;
    background: #0d1e40;
    color: white;
    box-shadow: 2px 4px 22px rgba(0, 0, 0, 0.28);
}

.call-pill .c-icon {
    width: 26px;
    height: 26px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* =====================
   SHARED / GLOBAL
===================== */
section {
    padding: 80px 0;
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
   
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dark-blue);
    text-align: center;
    margin-bottom: 55px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--green);
    border-radius: 2px;
    margin: 14px auto 0;
    transition: width 0.5s var(--ease-out-expo);
}

.section-title.visible::after {
    width: 100px;
}

/* Shared Buttons */
.btn-read-more,
.btn-product {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 13px 38px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
}

.btn-read-more { padding: 20px 44px; border-radius: 10px; }

.btn-read-more::after,
.btn-product::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.35s var(--ease-out-expo);
}

.btn-read-more:hover,
.btn-product:hover {
    background: #002d26;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 77, 64, 0.35);
    color: white;
}

.btn-read-more:hover::after,
.btn-product:hover::after {
    transform: translateX(100%);
}

/* =====================
   HERO SECTION
===================== */
.hero-section {
    padding: 0;
    overflow: hidden;
}

.hero-inner {
    width: 100%;
    height: 474px;
}

.hero-section .item {
    position: relative;
}

.hero-section .item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.hero-section .owl-item img {
    animation: heroFadeIn 0.8s var(--ease-out-expo);
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: scale(1.04); }
    to   { opacity: 1; transform: scale(1); }
}

/* =====================
   MANUFACTURING SECTION
===================== */
.manufacturing-section {
    background: white;
    padding: 60px 0;
}

.manufacturing-container {
    background: white;
    border-radius: 28px;
    /*padding: 55px;*/
    padding: 30px 64px;
    border: 1px solid #cccccc;
    transition: box-shadow 0.4s ease;
}

.manufacturing-container:hover {
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
}

.factory-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    min-height: 170px;
}

.factory-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.factory-card:hover img {
    transform: scale(1.06);
}

.manufacturing-text h2 {
    font-size: 1.75rem;
  
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.manufacturing-text p {
    color: #555;
    /*margin-bottom: 28px;*/
    margin-bottom: 0px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* =====================
   CATEGORIES SECTION
===================== */
.categories-section {
    background: white;
    /*padding: 70px 0;*/
}

.category-card {
    border-radius: 20px;
    overflow: hidden;
    display: block;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.category-card:hover {
    transform: translateY(-9px);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.13);
}

.category-card img {
    transition: transform 0.5s var(--ease-out-expo);
}

.category-card:hover img {
    transform: scale(1.04);
}

/* =====================
   STATS SECTION
===================== */
.stats-section {
    background: white;
    padding: 60px 0;
}

.stat-card {
    background: white;
    text-align: center;
   
    border: 1px solid #cccccc;
    padding: 42px 20px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--green), var(--light-green));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.45s var(--ease-out-expo);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.09);
    border-color: var(--light-green);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-size: 2.9rem;
    font-weight: 800;
    color: #1b4f72;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.stat-card:hover .stat-number {
    color: var(--green);
}

.stat-text {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

/* =====================
   TAGLINE SECTION
===================== */
.tagline-section {
    background: #e0f2f1;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.tagline-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(0, 77, 64, 0.04);
    top: -200px;
    right: -150px;
    pointer-events: none;
}

.tagline-title {
    font-size: 2.2rem;
    
    color: var(--dark-blue);
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.tagline-content {
    /*max-width: 900px;*/
    margin: 0 auto;
}

.tagline-content p {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
}

.tagline-content strong {
    color: black;
    font-weight: 700;
}


.manufacturing-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b1c39;
    line-height: 1.3;
    margin-bottom: 15px;
}

.manufacturing-text p {
    font-size: 15px;
    line-height: 1.5;
    color: #555;
}

.read-more {
    color: #007bff;
    font-weight: 600;
    margin-left: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: #0056b3;
    text-decoration: underline;
}



/* =====================
   PRODUCT SHOWREEL
===================== */
.product-showreel {
    background: #fcfcfc;
    padding: 80px 0;
}

.product-row {
    display: flex;
    align-items: stretch;
    gap: 28px;
    margin-bottom: 48px;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-info-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 40px;
    border: 1px solid #cccccc;
    transition: box-shadow 0.4s ease, transform 0.4s var(--ease-out-expo);
}

.product-info-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.label-tag {
    font-size: 0.78rem;
    font-weight: 700;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.45rem;
  
    color: var(--dark-blue);
    margin-bottom: 18px;
}

.product-desc {
    color: #555;
    margin-bottom: 28px;
    font-size: 0.96rem;
    line-height: 1.75;
}

.product-img-holder {
    /*flex: 1;*/
    background: #f1f3f5;
    border-radius: 20px;
    min-height: unset;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: box-shadow 0.4s ease;
}

.product-img-holder:hover {
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.11);
}

.product-img-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-expo);
}

.product-row:hover .product-img-holder img {
    transform: scale(1.06);
}

/* =====================
   TOP SELLING PRODUCTS
===================== */
.top-selling-section {
    background: #F1F1F1;
    padding: 80px 0;
}

.product-item-card {
    background: white;
    border-radius: 29px;
    padding: 28px 20px;
    border: 1px solid #cccccc;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease, border-color 0.3s ease;
}

.product-item-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.10);
    border-color: #d0d0d0;
}

.product-img-box {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    overflow: hidden;
}

.product-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.5s var(--ease-out-expo);
}

.product-item-card:hover .product-img-box img {
    transform: scale(1.07);
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 6px;
    min-height: 3rem;
}

.product-variant {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 14px;
}

.price-box {
    margin-bottom: 18px;
}

.current-price {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--green);
    margin-right: 8px;
}

.old-price {
    font-size: 0.95rem;
    color: #bbb;
    text-decoration: line-through;
}

.btn-add-cart {
    background: var(--green);
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    font-size: 0.95rem;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-add-cart:hover {
    background: #002d26;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 77, 64, 0.3);
}

/* =====================
   TRUSTED BY SECTION
===================== */
.trusted-section {
    background: white;
    padding: 60px 0;
    text-align: center;
}

.trusted-title {
    font-size: 1.85rem;
   
    color: black;
    margin-bottom: 40px;
}

.cert-slider .cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-slider .cert-item img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
    padding: 10px;
    margin: 0 auto;
    transition: filter 0.3s ease, transform 0.35s var(--ease-out-expo);
}

.cert-slider .cert-item img:hover {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transform: translateY(-5px);
}

/* =====================
   OUR CLIENT SECTION
===================== */
.client-strip-section {
    background: #f9f9f9;
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid #eee;
}

.client-title {
    font-size: 1.9rem;
   
    color: black;
    margin-bottom: 36px;
}

.client-logo-carousel .logo-item img {
    width: auto;
    max-height: 80px;
    margin: 0 auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.35s var(--ease-out-expo);
}

.client-logo-carousel .logo-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* =====================
   FAQ SECTION
===================== */
.faq-section {
    background: #f0f0f0;
    padding: 80px 0;
}

.faq-main-title {
    font-size: 2.1rem;
    font-weight: 400;
    text-align: center;
    color: black;
    margin-bottom: 55px;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    overflow: hidden;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 700;
    color: black;
    padding: 24px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: color 0.25s ease;
}

.faq-question:hover {
    color: var(--green);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--green);
    flex-shrink: 0;
    transition: transform 0.35s var(--ease-out-expo);
}

.faq-item.open .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.5s var(--ease-out-expo), padding 0.4s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding-bottom: 22px;
}

/* =====================
   OWL CAROUSEL SMOOTH
===================== */
.cert-slider .cert-item,
.cert-slider .owl-item .cert-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.owl-item {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* =====================
   FOOTER
===================== */
.site-footer {
    background: var(--dark-blue);
    color: #737373;
    padding: 55px 0 0;
    font-size: 14px;
}

.footer-inner {
    width: 92%;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h6 {
    color: white;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 22px;
    padding-bottom: 10px;
    border-bottom: 1px solid #1e2a44;
}

.footer-links {
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    font-size: 0.88rem;
    color: #cccccc;
}

.footer-links li img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    border-radius: 4px;
}

.footer-links li a {
    color: #cccccc;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.footer-links li a:hover {
    color: #76d7c4;
    padding-left: 4px;
}

.footer-links li i {
    font-size: 16px;
    width: 22px;
    text-align: center;
    color: #76d7c4;
    transition: transform 0.3s ease;
}

.footer-links li:hover i { transform: scale(1.2); }
.footer-links li i.fa-facebook   { color: #1877f2; }
.footer-links li i.fa-instagram  { color: #e1306c; }
.footer-links li i.fa-youtube    { color: #ff0000; }
.footer-links li i.fa-x-twitter  { color: #ffffff; }
.footer-links li i.fa-threads    { color: #cccccc; }
.footer-links li i.fa-google     { color: #ea4335; }
.footer-links li i.fa-amazon     { color: #ff9900; }
.footer-links li i.fa-whatsapp   { color: #25d366; }

.contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    flex-wrap: wrap;
}

.wa-badge {
    background: #25D366;
    color: white;
    padding: 5px 11px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
}

.contact-num {
    color: #cccccc;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-num i {
    color: #aaaaaa;
    font-size: 12px;
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-bottom: 10px;
    color: #bbbbbb;
    font-size: 0.85rem;
}

.contact-info-row i {
    color: #888888;
    margin-top: 3px;
    font-size: 13px;
    width: 16px;
}

.footer-form input,
.footer-form select {
    width: 100%;
    background: transparent;
    border: 1px solid #1e2e50;
    border-radius: 5px;
    padding: 10px 13px;
    color: #cccccc;
    font-size: 13px;
    margin-bottom: 10px;
    outline: none;
    font-family: 'Open Sans', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer-form input:focus,
.footer-form select:focus {
    border-color: #2A6B7F;
    box-shadow: 0 0 0 3px rgba(42, 107, 127, 0.15);
}

.footer-form input::placeholder {
    color: #555555;
}

.footer-form select option {
    background: #07122c;
    color: #cccccc;
}

.phone-row {
    display: flex;
    gap: 8px;
}

.phone-row select {
    width: 115px;
    flex: 0 0 115px;
}

.phone-row input {
    flex: 1;
}

.btn-submit {
    width: 100%;
    background: #007bff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    font-family: 'Open Sans', sans-serif;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 123, 255, 0.35);
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 992px) {
    .manufacturing-container {
        flex-direction: column;
        padding: 35px;
    }

    .factory-card {
        width: 100%;
        min-height: 170px;
    }

    .product-row,
    .product-row.reverse {
        flex-direction: column;
    }

    .product-img-holder {
        width: 100%;
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .tagline-title {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .faq-question {
        font-size: 1rem;
    }

    .product-info-card {
        padding: 30px;
    }
}



@media (max-width: 576px) {
    /*.sticky-calls {*/
    /*    display: none;*/
    /*}*/
    
    .factory-card img {
  
    height: 180px;
    
}

    .client-logo-carousel .logo-item img {
        max-height: 55px;
    }
}

/* Why Choose Us wrapper - no border */
.why-choose-wrapper {
    border: none;
    border-radius: 0;
    overflow: hidden;
}

/* Block divider bhi hatao agar nahi chahiye */
.why-block {
    text-align: start;
    padding: 25px 0px;
    border-bottom: none; /* divider bhi off */
    transition: background 0.3s ease;
}

/* =====================
   TRUSTED BY SECTION
   White background, slider light blue
===================== */
.trusted-section {
    background: white; /* section background white */
    padding: 50px 0;
    text-align: center;
}

.trusted-title {
    font-size: 1.85rem;
    color: #333;
    margin-bottom: 35px;
}

/* Slider strip - light blue background */
.trusted-section .owl-carousel {
    background: #dff0f7; /* light blue strip */
    padding: 20px 0;
}

/* Vertical divider lines */
.cert-slider .cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #b0d4e3;
    padding: 10px 20px;
}

.cert-slider .cert-item img {
    max-height: 90px;
    width: auto;
    object-fit: contain;
    margin: 0 auto;
}

/* Remove underline from Read More button */
.btn-read-more {
    text-decoration: none;
}

@media (max-width: 768px) {

    /* =====================
       HERO BANNER (FULL IMAGE VISIBLE)
    ===================== */
    .hero-section {
        background: #000; /* avoids white gap */
    }

    .hero-inner {
        height: auto;
    }

    .hero-section .item img {
        width: 100%;
        height: auto;
        object-fit: contain; /* show full image */
    }

    /* =====================
       GLOBAL TEXT
    ===================== */
    body {
        font-size: 13px;
        line-height: 1.5;
    }

    /* =====================
       HEADINGS
    ===================== */
    h2 {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .section-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
        margin-bottom: 25px;
    }

    .tagline-title {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }

    .trusted-title,
    .client-title,
    .faq-main-title {
        font-size: 1.4rem;
    }

    /* =====================
       MANUFACTURING SECTION
    ===================== */
    .manufacturing-container {
        padding: 25px;
    }

    .manufacturing-text h2 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }

    .manufacturing-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* =====================
       PRODUCT SECTION
    ===================== */
    .product-row,
    .product-row.reverse {
        flex-direction: column;
        gap: 20px;
    }

    .product-info-card {
        padding: 22px;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-desc {
        font-size: 0.9rem;
    }

    .product-img-holder {
        width: 100%;
        min-height: 220px;
    }

    /* =====================
       BUTTONS
    ===================== */
    .btn-read-more {
        padding: 14px 28px;
        font-size: 0.85rem;
    }

    .btn-product {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    /* =====================
       SECTIONS SPACING
    ===================== */
    section {
        padding: 50px 0;
    }

    /* =====================
       FAQ
    ===================== */
    .faq-question {
        font-size: 1rem;
    }
    .stat-number {
         font-size: 1.9rem;
     }

}


/*pfd button banner css start*/


.item {
    position: relative;
}

.pdf-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 99;
 background: var(--green);
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.pdf-btn:hover {
    background: #002d26;
    color: #fff;
}

@media (max-width: 768px) {
    /* Table ko card style mai convert karo */
    .cart-table thead {
        display: none; /* Header hide karo */
    }

    .cart-table tbody tr {
        display: block;
        border: 1px solid #e8edf2 !important;
        border-radius: 16px;
        margin-bottom: 16px;
        padding: 16px;
    }

    .cart-table tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px dashed #f0f3f7 !important;
    }

    .cart-table tbody td:last-child {
        border-bottom: none !important;
    }

    /* Data label show karo */
    .cart-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        font-size: 0.78rem;
        color: #999;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    /* Product cell fix */
    .cart-table tbody td:first-child {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-table tbody td:first-child::before {
        display: none;
    }

    .product-cell {
        width: 100%;
    }

    .product-thumb {
        width: 60px;
        height: 60px;
    }

    /* Summary card sticky hatao mobile pe */
    .summary-card {
        position: static !important;
    }
}