:root {
    --primary-red: #ff4d4f;
    --primary-blue: #00b4d8;
    --text-dark: #333;
    --text-gray: #666;
    --bg-light: #f8f9fa;
    --border-color: #e5e5e5;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: #fff; color: var(--text-dark); overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1400px; margin: 0 auto; padding: 0 20px; }
.flex { display: flex; align-items: center; }
.justify-between { justify-content: space-between; }

/* --- 1. Top Bar (Scrolls away) --- */
.top-bar {
    background-color: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-gray);
}
.top-bar-links a { margin-left: 20px; }

/* --- STICKY WRAPPER --- */
.sticky-header-group {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    /* box-shadow: 0 4px 20px rgba(0,0,0,0.05); */
    transition: all 0.3s ease;
}

/* --- 2. Main Header --- */
.main-header { padding: 20px 0; border-bottom: 1px solid var(--border-color); }
.header-wrapper { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 15px;}

/* .logo { font-size: 1.5rem; font-weight: 800; color: var(--text-dark); display: flex; align-items: center; gap: 10px; }
.logo i { color: var(--primary-red); font-size: 1.8rem; }
.logo small { display: block; font-size: 0.7rem; color: #666; font-weight: 400; line-height: 1; } */
.logo img{width: 19vh;}
/* --- SEARCH BAR & RESULTS --- */
.search-container { 
    flex: 1; 
    max-width: 600px; 
    margin: 0 20px; 
    position: relative; 
}
.search-input { width: 100%; padding: 12px 40px 12px 15px; background-color: #f3f4f6; border: 1px solid transparent; border-radius: 4px; font-size: 0.95rem; }
.search-input:focus { outline: none; border-color: #ddd; background: #fff; border: 1px solid var(--primary-blue); }
.search-icon { position: absolute; right: 15px; top: 50%; transform: translateY(-50%); color: var(--text-gray); cursor: pointer; }

/* Real-time Results Dropdown */
.search-results-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #eee;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 15px;
    z-index: 1001;
    display: none;
}

.search-results-panel.active { display: block; }

.results-label { font-size: 0.8rem; color: #999; margin-bottom: 10px; font-weight: 600; text-transform: uppercase; }

/* Horizontal Scroll Container */
.results-scroll-container {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
    scrollbar-width: thin; 
    scrollbar-color: #ddd transparent;
}
.results-scroll-container::-webkit-scrollbar { height: 6px; }
.results-scroll-container::-webkit-scrollbar-thumb { background: #ccc; border-radius: 10px; }

/* Mini Product Card in Search */
.mini-card {
    min-width: 140px;
    max-width: 140px;
    border: 1px solid #f0f0f0;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    transition: 0.2s;
    cursor: pointer;
    background: #fff;
}
.mini-card:hover { border-color: var(--primary-blue); transform: translateY(-2px); }
.mini-card img { width: 80px; height: 80px; object-fit: contain; margin-bottom: 8px; }
.mini-card h4 { font-size: 0.85rem; color: #333; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mini-card p { font-size: 0.9rem; color: var(--primary-red); font-weight: 700; }

/* --- User Actions --- */
/* .user-actions { gap: 20px; display: flex; align-items: center; }
.user-profile { display: flex; align-items: center; gap: 10px; }
.avatar { width: 35px; height: 35px; background-color: #eee; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--text-gray); }
.user-info { font-size: 0.8rem; line-height: 1.2; }
.icon-btn { position: relative; font-size: 1.2rem; cursor: pointer; }
.badge { position: absolute; top: -8px; right: -8px; background: var(--primary-red); color: white; font-size: 0.7rem; padding: 2px 6px; border-radius: 50%; font-weight: bold; } */
/* --- User Actions Container --- */
.user-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
}

/* --- Location Widget Design --- */
.location-widget {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f9fa; /* Light gray background */
    padding: 8px 16px;
    border-radius: 50px; /* Pill shape */
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    cursor: default;
}

.location-widget:hover {
    border-color: #ccc;
    background-color: #f0f0f0;
}

/* The Pin Icon Circle */
.icon-circle {
    width: 32px;
    height: 32px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #dc3545; /* Red pin color */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* Text Container */
.location-details {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.location-details .label {
    font-size: 10px;
    text-transform: uppercase;
    color: #777;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.location-details .city-text {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    white-space: nowrap; /* Prevents text from breaking lines */
}

/* --- Responsive Design --- */

/* Tablet & Smaller Laptops (max-width: 992px) */
@media (max-width: 992px) {
    .location-widget {
        padding: 6px 12px;
    }
    .location-details .city-text {
        font-size: 13px;
    }
}

/* Mobile Devices (max-width: 600px) */
@media (max-width: 600px) {
    .location-widget {
        background: transparent; /* Remove pill background on mobile to save space */
        border: none;
        padding: 0;
    }

    .icon-circle {
        width: 28px;
        height: 28px;
        font-size: 14px;
        background: #f8f9fa; /* Keep circle bg */
    }

    .location-details .label {
        display: none; /* Hide 'Location' label on very small screens */
    }

    .location-details .city-text {
        font-size: 13px;
    }
}

/* --- 3. Navbar --- */
.navbar { padding: 15px 0; border-bottom: 1px solid var(--border-color); position: relative; z-index: 100;}
.nav-content { display: flex; align-items: center; justify-content: space-between;  }

.categories-wrapper { position: relative;  }
.categories-btn {
    background-color: #f9f9f9;
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    min-width: 240px;
    transition: 0.3s;
}
.categories-btn:hover { background-color: #eee; }
.contactbtn{
    padding: 10px;
    /* border-radius: 10px; */
    border: 1px solid black;
    font-weight: 600;
    background-color: #ec693a;
    color: white;
    cursor: pointer;

}
    /* Dropdown Menu */
.categories-dropdown {
    position: absolute; top: 100%; left: 0; width: 100%;
    background: white; box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 1px solid #eee; border-top: 3px solid var(--primary-red);
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: all 0.3s ease; padding: 10px 0;
    z-index: 101;
}
.categories-dropdown.show { opacity: 1; visibility: visible; transform: translateY(0); }
.categories-dropdown li a { display: flex; align-items: center; gap: 12px; padding: 10px 20px; color: #555; font-size: 0.9rem; transition: 0.2s; }
.categories-dropdown li a:hover { background-color: #f8f9fa; color: var(--primary-red); padding-left: 25px; }

.nav-links { display: flex; gap: 25px; font-weight: 500; font-size: 0.95rem; color: #444; }
.nav-links li:hover { color: var(--primary-red); cursor: pointer; }
.free-delivery { color: var(--text-gray); font-size: 0.9rem; display: flex; align-items: center; gap: 8px; }

/* --- 4. Hero Slider --- */
/* .hero-section { padding: 30px 0; background-color: var(--bg-light); }
.hero-slider-container {
    position: relative; background-color: #eef2f5; border-radius: 10px;
    overflow: hidden; min-height: 450px; display: flex; align-items: center;
}
.slide {
    display: flex; width: 100%; padding: 40px 60px; justify-content: space-between; align-items: center;
    opacity: 0; position: absolute; transition: opacity 0.5s ease-in-out; pointer-events: none; height: 100%;
}
.slide.active { opacity: 1; position: relative; pointer-events: auto; }
.slide-content { max-width: 50%; z-index: 2; }
.slide-image img { max-width: 100%; max-height: 350px; width: auto; animation: float 3s ease-in-out infinite; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.slide-title { font-size: 3.5rem; font-weight: 700; margin-bottom: 15px; }
.cta-btn { background: var(--primary-blue); color: white; padding: 12px 30px; border-radius: 30px; border: none; cursor: pointer; font-weight: 600;}
.slider-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 45px; height: 45px; border-radius: 50%; border:none; cursor: pointer; background: white; z-index: 10;}
.prev-btn { left: 20px; } .next-btn { right: 20px; } */
/* --- HERO SLIDER CONTAINER --- */
.hero-slider-section {
    width: 100%;
    height: 90vh; 
    min-height: 600px;
    position: relative;
    /* Agar variables define nahi hain, toh fallback color add kar diya hai */
    background-color: var(--secondary, #1e293b); 
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.hero-slider-section .myHeroSwiper { width: 100%; height: 100%; }

/* --- SLIDE STYLING --- */
.hero-slider-section .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider-section .slide-image {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slider-section .swiper-slide-active .slide-image {
    transform: scale(1);
}

/* --- PREMIUM OVERLAY --- */
.hero-slider-section .slide-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.7) 40%, rgba(15, 23, 42, 0.2) 100%);
    z-index: 2;
    backdrop-filter: blur(2px); 
}

/* --- TEXT CONTENT --- */
.hero-slider-section .slide-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-slider-section .slide-content {
    max-width: 800px;
    color: var(--text-light, #f8fafc);
}

.hero-slider-section .slide-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color:#ec5c26;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    position: relative;
    padding-left: 40px;
}

.hero-slider-section .slide-eyebrow::before {
    content: ''; position: absolute; left: 0; top: 50%;
    width: 30px; height: 3px; background: #ec5c26;
}

.hero-slider-section .slide-content h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 25px 0;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.3); 
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: #fff; /* Enforcing white so global theme doesn't override */
}

.hero-slider-section .hero-highlight {
    color:var(--primary);
    position: relative;
    display: inline-block;
}

.hero-slider-section .slide-content p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 300;
    line-height: 1.7;
    margin: 0 0 40px 0;
    max-width: 600px;
    color: #cbd5e1; 
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-left: 3px solid rgba(255,255,255,0.3);
    padding-left: 20px;
}

/* --- BUTTON STYLES (SCOPED) --- */
.hero-slider-section .slide-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-slider-section .hero-btn {
    padding: 16px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 4px; 
    text-decoration: none;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-sizing: border-box;
}

.hero-slider-section .hero-btn-primary {
    background: linear-gradient(135deg,#ec5c26, #c04518);
    color: #fff;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 92, 38, 0.4);
}

.hero-slider-section .hero-btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s; z-index: -1;
}

.hero-slider-section .hero-btn-primary:hover::after { left: 100%; }

.hero-slider-section .hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 92, 38, 0.6);
    color: #fff;
}

.hero-slider-section .hero-btn-glass {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px); 
}

.hero-slider-section .hero-btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-3px);
    color: #fff;
}

/* --- ANIMATION STAGGERS --- */
.hero-slider-section .swiper-slide-active .slide-eyebrow { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.hero-slider-section .swiper-slide-active .slide-content h2 { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.hero-slider-section .swiper-slide-active .slide-content p { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.hero-slider-section .swiper-slide-active .slide-buttons { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }

/* --- CUSTOM NAVIGATION & PAGINATION --- */
.hero-slider-section .swiper-button-next, 
.hero-slider-section .swiper-button-prev {
    color: #fff !important;
    background: rgba(255,255,255,0.05);
    width: 60px !important; height: 60px !important;
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    border-radius: 50%; /* Make them round, looks better usually */
}

.hero-slider-section .swiper-button-next:hover, 
.hero-slider-section .swiper-button-prev:hover {
    background: var(--primary, #ec5c26); border-color: var(--primary, #ec5c26);
}

.hero-slider-section .swiper-pagination-bullet {
    background: #fff !important; opacity: 0.4 !important;
    width: 20px !important; height: 4px !important;
    border-radius: 2px !important; margin: 0 5px !important;
    transition: all 0.4s ease !important;
}

.hero-slider-section .swiper-pagination-bullet-active {
    opacity: 1 !important; background: #ec5c26 !important;
    width: 40px !important;
}

/* =========================================
   MOBILE RESPONSIVENESS
========================================= */
@media (max-width: 992px) {
    .hero-slider-section .slide-image { animation: none; transform: scale(1); }
}

@media (max-width: 768px) {
    .hero-slider-section { height: 100vh; min-height: unset; }
    .hero-slider-section .slide-overlay {
        background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.6) 60%, rgba(15, 23, 42, 0.3) 100%);
    }
    .hero-slider-section .slide-content-wrapper { padding: 0 20px; text-align: center; }
    .hero-slider-section .slide-content { margin: 0 auto; }
    
    .hero-slider-section .slide-eyebrow { padding-left: 0; padding-bottom: 10px; }
    .hero-slider-section .slide-eyebrow::before {
        left: 50%; top: auto; bottom: 0; transform: translateX(-50%); width: 50px;
    }

    .hero-slider-section .slide-content p {
        border-left: none; padding-left: 0; 
        margin-bottom: 30px;
    }
    .hero-slider-section .slide-buttons { justify-content: center; flex-direction: column; gap: 15px; }
    .hero-slider-section .hero-btn { width: 100%; max-width: 320px; margin: 0 auto; padding: 14px 24px;}
    .hero-slider-section .swiper-button-next, 
    .hero-slider-section .swiper-button-prev { display: none; }
}

/* --- 5. Featured Products --- */
.products-section { padding: 50px 0; }
.section-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 30px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }

.product-card {
    border: 1px solid #eee; border-radius: 8px; padding: 15px; text-align: center; transition: 0.3s;
}
.product-card:hover { box-shadow: 0 10px 20px rgba(0,0,0,0.08); }
.product-card img { width: 100%; height: 150px; object-fit: contain; margin-bottom: 15px; }
.product-card h3 { font-size: 1rem; margin-bottom: 5px; color: #333; }
.product-card span { color: var(--primary-red); font-weight: bold; font-size: 1.1rem; }

/* --- Responsive --- */
@media (max-width: 992px) {
    /* .navbar{display: flex;} */
    .nav-links { display: none; }
    /* .categories-btn { min-width: auto; padding: 0 15px; } */
    .categories-btn  { min-width: 2.5rem; }
    .free-delivery{display: none;}
}
@media (max-width: 768px) {
    /* .top-bar { display: none; } */
    .search-container { order: 3; flex-basis: 100%; margin: 10px 0; max-width: 100%; }
    .categories-wrapper{width: 100%;}
    .categories-btn{width: 100%; justify-content: space-between;}
    .slide { flex-direction: column-reverse; text-align: center; padding: 20px; }
    .slide-image img { max-height: 200px; }
    .slide-title { font-size: 2rem; }
}

/* hero section  */


/* image slider start  */
/* --- CSS STYLES --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: sans-serif; }

        /* Slider Main Container - Desktop Default Height */
        .hero-slider-container {
            width: 100%;
            /* Adjust desktop height here */
            height: 70vh; 
            max-height: 700px;
            position: relative;
        }

        /* Swiper Elements */
        .swiper {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            position: relative;
            overflow: hidden;
            /* Center content if needed */
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* The actual image */
        .slide-image {
            display: block;
            width: 100%;
            height: 100%;
            /* IMPORTANT: Ensures image covers the area without stretching, regardless of height */
            object-fit: cover; 
            object-position: center;
        }

        /* Content Overlay */
        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            /* Dark gradient background for text readability */
            background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
            padding: 40px;
            color: #fff;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }

        .slide-overlay h2 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .slide-overlay p {
            font-size: 1.2rem;
            max-width: 700px;
            line-height: 1.5;
        }

        /* Customizing Swiper Controls (White dots/arrows) */
        .swiper-pagination-bullet { background: #fff; opacity: 0.5; }
        .swiper-pagination-bullet-active { opacity: 1; }
        .swiper-button-next, .swiper-button-prev { color: #fff; }

        /* --- MOBILE RESPONSIVENESS (Crucial Part) --- */
        @media (max-width: 768px) {
            
            /* THE REQUIREMENT: 25vh height on mobile */
            .hero-slider-container {
                height: 25vh;
                min-height: 200px; /* Safety net so it doesn't get too tiny on landscape phones */
            }

            /* Adjusting text content for the smaller space */
            .slide-overlay {
                padding: 15px 20px;
                background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
            }

            .slide-overlay h2 {
                font-size: 1.2rem; /* Smaller heading */
                margin-bottom: 5px;
            }

            .slide-overlay p {
                font-size: 0.9rem; /* Smaller text */
                line-height: 1.3;
                /* CSS trick to limit text to 2 lines on mobile so it fits in 25vh */
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                overflow: hidden;
            }

            /* Hide navigation arrows on small screens to save space */
            .swiper-button-next, .swiper-button-prev {
                display: none;
            }
        }




/* end image slider  */
/* Index Product Card start  */
/* --- PREMIUM CATALOG GRID --- */

    /* --- Variables --- */
:root {
    --primary-color: #0f172a;      /* Dark Blue/Slate */
    --accent-color: #2563eb;       /* Bright Blue */
    --whatsapp-color: #25D366;     /* Official WA Green */
    --text-dark: #334155;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --card-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* --- Section Layout --- */
.industrial-product-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- Section Header --- */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.header-line {
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    margin: 0 auto;
    border-radius: 2px;
}

/* --- Product Grid (Responsive Logic) --- */
.product-grid {
    display: grid;
    /* This creates automatic columns: 1 on mobile, 2 on tablet, 3 on desktop */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Product Card --- */
.pro-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pro-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

/* --- Image Box --- */
.pro-img-box {
    position: relative;
    height: 240px; /* Fixed height for consistency */
    overflow: hidden;
    background: #f1f5f9;
}

.pro-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills box without stretching */
    transition: transform 0.5s ease;
}

.pro-card:hover .pro-img-box img {
    transform: scale(1.05);
}

/* Badges */
.badge-warranty {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    z-index: 2;
}

.badge-warranty i { color: #f59e0b; margin-right: 4px; }

/* Quick View Overlay */
.img-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pro-card:hover .img-overlay {
    opacity: 1;
}

.quick-view-btn {
    background: #fff;
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.pro-card:hover .quick-view-btn {
    transform: translateY(0);
}

/* --- Content Area --- */
.pro-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Meta Data */
.pro-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.category {
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    font-weight: 700;
}

.rating { color: #f59e0b; }
.rating .count { color: var(--text-light); margin-left: 5px; }

/* Title */
.pro-title {
    margin: 0 0 15px;
    font-size: 1.25rem;
    line-height: 1.4;
}

.pro-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
    /* Limit title to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pro-title a:hover { color: var(--accent-color); }

/* Specs */
.specs-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    gap: 15px;
}

.specs-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    background: #f1f5f9;
    padding: 6px 10px;
    border-radius: 6px;
}

.specs-list li i { margin-right: 5px; color: var(--text-dark); }

.divider {
    height: 1px;
    background: #e2e8f0;
    margin-bottom: 20px;
    margin-top: auto; /* Pushes footer to bottom */
}

/* --- Footer --- */
.pro-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-box {
    display: flex;
    flex-direction: column;
}

.price-box .label {
    font-size: 0.75rem;
    color: var(--text-light);
}

.price-box .price-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* Whatsapp Button */
.btn-enquire {
    background-color: var(--whatsapp-color);
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.btn-enquire:hover {
    background-color: #1ebc57;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

/* --- Mobile Breakpoint --- */
@media (max-width: 600px) {
    .section-header h2 { font-size: 1.8rem; }
    .product-grid { grid-template-columns: 1fr; } /* Force single column on very small screens */
    .pro-footer { flex-direction: row; }
}

/* end */

/* about section start  */

    /* Section Layout */
    .about-section {
        padding: 80px 20px;
        background-color: #ffffff;
        font-family: 'Roboto', Arial, sans-serif;
    }
    
    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 50px;
    }

    /* Left Side: Images & Badge */
    .about-image-wrapper {
        flex: 1 1 45%;
        position: relative;
    }
    
    .image-box {
        position: relative;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
    
    .image-box img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s ease;
    }
    
    .image-box:hover img {
        transform: scale(1.05);
    }

    .experience-badge {
        position: absolute;
        bottom: -20px;
        right: -20px;
        background: #ec5c26; /* Brand Accent Color */
        color: white;
        padding: 25px;
        border-radius: 50%;
        width: 130px;
        height: 130px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        box-shadow: 0 10px 20px rgba(236, 92, 38, 0.3);
        border: 5px solid #fff;
    }
    
    .experience-badge .years {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1;
    }
    
    .experience-badge .text {
        font-size: 0.85rem;
        text-transform: uppercase;
        margin-top: 5px;
        font-weight: 500;
    }

    /* Right Side: Content & SEO */
    .about-content {
        flex: 1 1 50%;
    }
    
    .text-left {
        text-align: left;
    }
    
    .left-line {
        margin: 15px 0 25px 0; /* Align the orange line to the left */
    }

    .sub-heading {
        color: #ec5c26;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 10px;
    }

    .about-content h2 {
        font-size: 2.2rem;
        color: #202124;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .seo-lead {
        font-size: 1.1rem;
        color: #333;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    
    .seo-text {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
        margin-bottom: 30px;
    }

    /* Feature List */
    .about-features {
        list-style: none;
        padding: 0;
        margin: 0 0 30px 0;
    }
    
    .about-features li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 20px;
    }
    
    .feature-icon {
        background: rgba(236, 92, 38, 0.1);
        color: #ec5c26;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        margin-right: 15px;
        flex-shrink: 0;
    }
    
    .feature-text h4 {
        margin: 0 0 5px 0;
        color: #202124;
        font-size: 1.1rem;
    }
    
    .feature-text p {
        margin: 0;
        color: #666;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    /* Action Button */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background-color: #ec5c26;
        color: #fff;
        padding: 12px 28px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(236, 92, 38, 0.2);
    }
    
    .btn-primary:hover {
        background-color: #d14d1c;
        transform: translateY(-2px);
        color: #fff;
    }

    /* Mobile Responsiveness */
    @media (max-width: 991px) {
        .about-container {
            flex-direction: column;
        }
        .experience-badge {
            bottom: -15px;
            right: 10px;
            width: 100px;
            height: 100px;
        }
        .experience-badge .years {
            font-size: 1.5rem;
        }
        .experience-badge .text {
            font-size: 0.7rem;
        }
        .about-content h2 {
            font-size: 1.8rem;
        }
    }
/* review section start  */

    /* Utility & Headers */
    .text-center { text-align: center; }
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 2.2rem; margin-bottom: 10px; color: #333; }
    .header-line { width: 60px; height: 3px; background: #ec5c26; margin: 15px auto 0; }
    
    /* Buttons */
    .view-more-btn { display: flex; align-items: center; justify-content: center; margin: 2rem 15px 15px; text-transform: uppercase; }
    .view-btn { padding: 10px 20px; border: 1px solid #000; border-radius: 8px; color: #ec5c26; font-weight: 700; text-decoration: none; transition: 0.3s; }
    .view-btn:hover { background: #ec5c26; color: #fff; border-color: #ec5c26; }

    /* =========================================
       GOOGLE STYLE REVIEWS CSS
    ========================================== */
    .customer-reviews-section { padding: 60px 20px; background-color: #f8f9fa; font-family: 'Roboto', Arial, sans-serif; }
    
    /* Overall Rating Header */
    .google-rating-summary { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 10px; }
    .gr-score { font-size: 1.5rem; font-weight: 500; color: #202124; }
    .gr-summary-stars { color: #fbbc04; font-size: 1.2rem; }
    .gr-count { font-size: 1rem; color: #70757a; }

    /* The Swiper Container */
    .review-slider-container { max-width: 1200px; margin: 0 auto; padding: 20px 0 50px 0; }
    
    /* The Google Style Card */
    .google-review-card { 
        background: #ffffff; 
        padding: 24px; 
        border-radius: 8px; 
        border: 1px solid #ebebeb; /* Light grey border like Google Maps */
        box-shadow: 0 1px 3px rgba(0,0,0,0.05); /* Very subtle shadow */
        margin: 15px; 
        height: 100%; 
        display: flex; 
        flex-direction: column;
        text-align: left;
    }
    
    /* Card Header Layout */
    .gr-header { display: flex; align-items: center; margin-bottom: 14px; position: relative; }
    .gr-avatar { width: 40px; height: 40px; border-radius: 50%; margin-right: 12px; object-fit: cover; }
    .gr-user-info { display: flex; flex-direction: column; }
    .gr-name { font-weight: 500; font-size: 15px; color: #202124; margin-bottom: 2px; }
    .gr-date { font-size: 13px; color: #70757a; }
    
    /* Top Right Google Icon */
    .gr-google-icon { position: absolute; top: 0; right: 0; color: #4285F4; font-size: 18px; opacity: 0.8; }

    /* Stars and Text */
    .gr-stars { color: #fbbc04; font-size: 14px; margin-bottom: 12px; display: flex; gap: 2px; }
    .gr-text { font-size: 14px; line-height: 1.5; color: #3c4043; flex-grow: 1; }
    
    /* Swiper Overrides */
    .swiper-pagination-bullet-active { background: #1a73e8 !important; /* Google Blue */ }
    .review-pagination { bottom: 0 !important; }