  :root {
        --brand-green: #0a2e1f;
        --brand-yellow: #ffcc00;
        --soft-gray: #f2f4f2;
    }

    body {
        font-family: 'Sora', sans-serif;
        background-color: #ffffff;
        color: var(--brand-green);
        overflow-x: hidden;
    }
        
    /* --- Luxury Navbar Polish --- */
    .navbar {
        /* padding: 25px 0; */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-bottom: 1px solid transparent;
    }

    .navbar.scrolled {
        /* padding: 15px 0; */
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .nav-link {
        font-weight: 600;
        color: var(--brand-green) !important;
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        position: relative;
        transition: 0.3s;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background: var(--brand-yellow);
        transition: 0.3s;
        transform: translateX(-50%);
    }

    .nav-link:hover::after { width: 70%; }

    .btn-contact {
        background: var(--brand-green);
        color: #fff;
        border-radius: 0;
        padding: 12px 35px;
        font-weight: 700;
        font-size: 0.8rem;
        letter-spacing: 1px;
        transition: 0.4s;
        border: none;
    }

    .btn-contact:hover {
        background: var(--brand-yellow);
        color: #000;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    /* --- Hero Layout Enhancements --- */
    .hero-container {
        min-height: 100vh;
        display: flex;
        align-items: center;
        padding-top: 80px;
        position: relative;
    }

    .hero-bg-accent {
        position: absolute;
        top: 0;
        right: 0;
        width: 42%;
        height: 100%;
        background: var(--soft-gray);
        z-index: -1;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .hero-h1 {
        font-size: clamp(3.5rem, 8vw, 6.5rem);
        font-weight: 800;
        line-height: 0.85;
        letter-spacing: -3px;
        margin-bottom: 35px;
    }

    .text-outline {
        -webkit-text-stroke: 1.5px var(--brand-green);
        color: transparent;
        opacity: 0.8;
    }

    /* Floating Watermark */
    .watermark {
        position: absolute;
        top: 20%;
        left: 0;
        font-size: 8vw;
        font-weight: 800;
        color: rgba(0,0,0,0.03);
        z-index: -1;
        user-select: none;
        white-space: nowrap;
    }

    .image-reveal-wrapper {
        position: relative;
        padding: 0;
        transition: 0.5s ease;
    }

    .main-hero-img {
        width: 100%;
        height: 680px;
        object-fit: cover;
        box-shadow: 40px 40px 0px var(--brand-yellow);
        filter: grayscale(10%) contrast(105%);
        transition: 0.5s ease;
    }

    .image-reveal-wrapper:hover .main-hero-img {
        filter: grayscale(0%);
        transform: translate(-10px, -10px);
        box-shadow: 50px 50px 0px var(--brand-green);
    }

    .experience-tag {
        position: absolute;
        bottom: -30px;
        left: -30px;
        background: var(--brand-green);
        color: white;
        padding: 40px;
        z-index: 10;
        box-shadow: 20px 20px 50px rgba(0,0,0,0.15);
    }

    .hero-p {
        font-size: 1.15rem;
        border-left: 5px solid var(--brand-yellow);
        padding-left: 30px;
        margin-bottom: 50px;
        max-width: 520px;
        font-weight: 400;
        color: #444;
    }

    /* --- Responsive Fixes --- */
    @media (max-width: 991px) {
          .navbar {
              background: rgba(255, 255, 255, 0.85) !important;
          }
        .hero-bg-accent { width: 100%; height: 50%; top: 50%; clip-path: none; }
        .hero-h1 { text-align: center; font-size: 4rem; }
        .main-hero-img { height: 450px; box-shadow: 20px 20px 0 var(--brand-yellow); }
        .hero-p { border-left: none; border-top: 4px solid var(--brand-yellow); padding: 20px 0 0 0; text-align: center; margin: 0 auto 40px; }
        .experience-tag { padding: 20px; left: 0; bottom: -20px; }
        /* .watermark { display: none; } */
    }



    /* --- Swiper Section Styles --- */
.products-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.section-header {
    margin-bottom: 60px;
}

.product-card {
    background: var(--soft-gray);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 20px;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    background: #fff;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    transform: translateY(-10px);
    border-color: var(--brand-yellow);
}

.product-img-wrapper {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 15px;
}

.product-img-wrapper img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.1);
}

.product-cat {
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-yellow);
    margin-bottom: 10px;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--brand-green);
}

.product-spec {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 5px;
}

/* Swiper Navigation Customization */
.swiper-button-next, .swiper-button-prev {
    background: var(--brand-green);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-pagination-bullet-active {
    background: var(--brand-yellow) !important;
}

@media (max-width: 576px) {
    .products-section { padding: 60px 0; }
    .product-card { padding: 15px; }
    .product-title { font-size: 0.95rem; }
}


/* --- Why Choose Us Styles --- */
.features-section {
    padding: 100px 0;
    background-color: var(--soft-gray);
    position: relative;
    overflow: hidden;
}

.feature-card {
    background: #ffffff;
    padding: 50px 40px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    z-index: 1;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--brand-green);
    transition: all 0.5s ease;
    z-index: -1;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
}

.feature-card:hover .feature-icon, 
.feature-card:hover .feature-title, 
.feature-card:hover .feature-text {
    color: #ffffff !important;
}

.feature-icon {
    font-size: 3rem;
    color: var(--brand-yellow);
    margin-bottom: 30px;
    transition: 0.3s;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--brand-green);
}

.feature-text {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Subtle background text for filling space */
.bg-text-large {
    position: absolute;
    font-size: 15vw;
    font-weight: 900;
    color: rgba(0,0,0,0.02);
    top: 0;
    left: 2%;
    z-index: 0;
    pointer-events: none;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .features-section { padding: 60px 0; }
    .feature-card { padding: 30px 20px; text-align: center; }
}


/* --- Glassmorphism Testimonial Styles --- */
/* --- Glassmorphism Testimonial Styles --- */
.testimonials-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Swiper wrapper ko full height pe stretch karne ke liye */
.testimonialSwiper {
    padding: 20px 0 50px !important;
}

.testimonialSwiper .swiper-wrapper {
    display: flex;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 46, 31, 0.1);
    padding: 40px;
    border-radius: 20px;
    
    /* Perfect Alignment Logic */
    display: flex;
    flex-direction: column;
    height: 100%; 
    
    transition: 0.4s;
}

.testimonial-card:hover {
    border-color: var(--brand-yellow);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.quote-circle {
    width: 50px;
    height: 50px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    flex-size: 0 0 auto; /* Circle size fix */
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 30px;
    font-style: italic;
    flex-grow: 1; /* Ye text area ko stretch karega taaki user-box hamesha bottom mein rahe */
}

.user-box {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: auto; /* Push to bottom */
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--brand-green);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

/* Pagination Dots */
.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--brand-green) !important;
}


/* --- Premium Gallery Styles --- */
.gallery-section {
    padding: 100px 0;
    background:  var(--soft-gray);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
    cursor: pointer;
    border: 1px solid rgba(0,0,0,0.05);
}

.gallery-img-wrapper {
    position: relative;
    aspect-ratio: 4/3; /* Isse sare images ek barabar height ki dikhengi */
    overflow: hidden;
}

.gallery-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 46, 31, 0.85); /* Brand Green Glass */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.5s;
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.view-btn {
    width: 60px;
    height: 60px;
    background: var(--brand-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
    font-size: 1.5rem;
    transform: translateY(30px);
    transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.gallery-item:hover .view-btn {
    transform: translateY(0);
}

.project-name {
    color: #fff;
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0;
    transition: 0.5s;
}

.gallery-item:hover .project-name {
    opacity: 1;
}
/* --- Gallery Slider Navigation --- */
.custom-nav-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 1px solid rgba(10, 46, 31, 0.1);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.custom-nav-btn:hover {
    background: var(--brand-yellow);
    color: var(--brand-green);
    border-color: var(--brand-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 204, 0, 0.2);
}

.gallerySwiper {
    padding-bottom: 20px !important;
}

/* Dots color fix for mobile */
.gallery-pagination .swiper-pagination-bullet-active {
    background: var(--brand-yellow) !important;
}


/* --- Premium FAQ Styles --- */
.faq-section {
    padding: 100px 0;
    /* background-color: var(--soft-gray); */
}

.accordion-item {
    background: var(--soft-gray)!important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(10, 46, 31, 0.1) !important;
    border-radius: 15px !important;
    margin-bottom: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-item:hover {
    border-color: var(--brand-yellow) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.accordion-button {
    font-weight: 700;
    color: var(--brand-green) !important;
    padding: 25px;
    font-size: 1.1rem;
    background: transparent !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--brand-green) !important;
    background: transparent !important;
}

/* Custom Icon Logic */
.accordion-button::after {
    background-image: none !important;
    content: '\2b'; /* Plus icon */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--brand-yellow);
    transition: 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.accordion-button:not(.collapsed)::after {
    content: '\f068'; /* Minus icon */
    transform: rotate(180deg);
}

.accordion-body {
    padding: 0 25px 25px 25px;
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
}

.faq-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}


/* --- Premium Footer Styles --- */
footer {
    background: var(--brand-green);
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Background Watermark in Footer */
.footer-watermark {
    position: absolute;
    bottom: -10%;
    right: 0%;
    font-size: 12vw;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    display: block;
    text-decoration: none;
}

.footer-logo span {
    color: var(--brand-yellow);
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--brand-yellow);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--brand-yellow);
    padding-left: 8px;
}

.contact-info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-yellow);
    flex-shrink: 0;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 200px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

.social-circle {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
    margin-right: 10px;
}

.social-circle:hover {
    background: var(--brand-yellow);
    color: var(--brand-green);
    transform: translateY(-3px);
}

.nav-logo {
    height: 70px; /* Apne logo ke hisaab se height adjust kar lo */
    width: auto;  /* Aspect ratio maintain rahega */
    object-fit: cover;
    transition: 0.3s ease;
}

/* Jab page scroll ho aur navbar choti ho jaye (agar tumne wo effect dala hai) */
.navbar-scrolled .nav-logo {
    height: 40px;
}

/* Mobile responsive alignment */
@media (max-width: 768px) {
    .nav-logo {
        height: 40px; /* Mobile par thoda chota logo */
    }
}


/* About page  */
/* --- Universal Breadcrumb Styles --- */
/* --- Simple & Professional Breadcrumb --- */
.page-header {
    padding: 120px 0 60px; /* Navbar ke liye top padding */
    background: linear-gradient(rgba(10, 46, 31, 0.1), rgba(10, 46, 31, 0.9)), 
                url('https://i.pinimg.com/1200x/ac/6b/2e/ac6b2eae18542d93b97b21874a4af1fe.jpg') no-repeat center center;
    background-size: cover;
    background-position: center;
    text-align: left; /* Luxury left-aligned look */
    position: relative;
}

.breadcrumb-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    font-size: 0.9rem;
}

.breadcrumb-nav a {
    color: var(--brand-yellow);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-nav span {
    color: rgba(255, 255, 255, 0.5);
}

/* Navbar visibility fix - Simple Overlay */
.navbar-spacer {
    height: 90px; /* Navbar ki height ke barabar */
    background: var(--brand-green); /* Page load par dark background */
}

@media (max-width: 768px) {
    .page-header { padding: 100px 0 40px; }
    .breadcrumb-title { font-size: 2.5rem; }
}
/* --- Enhanced About Page Section --- */
.about-page-content {
    padding: 120px 0;
    background: #ffffff;
    overflow: hidden;
}

/* Image Wrapper with Floating Animation */
.about-image-stack {
    position: relative;
    padding: 20px;
}

.main-about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 0; /* Sharp corporate look */
    filter: contrast(1.1);
    box-shadow: 30px 30px 0 var(--brand-green);
}

.floating-badge {
    position: absolute;
    top: 50px;
    right: -20px;
    background: var(--brand-yellow);
    padding: 25px;
    font-weight: 800;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    animation: floatVertical 3s ease-in-out infinite;
}

@keyframes floatVertical {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* List Style for Trust points */
.trust-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--brand-green);
}

.trust-item i {
    color: var(--brand-yellow);
}

/* Redefined Stats */
.stat-box-modern {
    background: var(--soft-gray);
    padding: 40px 20px;
    border-bottom: 4px solid var(--brand-green);
    transition: 0.4s;
    height: 100%;
}

.stat-box-modern:hover {
    background: var(--brand-green);
    transform: translateY(-10px);
}

.stat-box-modern:hover .stat-number, 
.stat-box-modern:hover .stat-label {
    color: #fff !important;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-green);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

/* Partner Logo Style */
.partner-tag {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #f8f9fa;
    padding: 10px 25px;
    border-radius: 50px;
    margin-bottom: 25px;
    border: 1px solid #eee;
}

@media (max-width: 991px) {
    .main-about-img { height: 400px; box-shadow: 15px 15px 0 var(--brand-green); }
    .floating-badge { right: 10px; padding: 15px; }
}


/* --- Mission & Vision Section --- */
.mv-section {
    padding: 100px 0;
    background: #fcfcfc;
    position: relative;
}

.mv-card {
    background: #fff;
    padding: 50px 40px;
    border: 1px solid #eee;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--brand-yellow);
    transform: scaleX(0);
    transition: 0.5s;
    transform-origin: left;
}

.mv-card:hover::before {
    transform: scaleX(1);
}

.mv-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(10, 46, 31, 0.1);
    border-color: transparent;
}

.mv-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--soft-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    transition: 0.5s;
}

.mv-card:hover .mv-icon-circle {
    background: var(--brand-green);
}

.mv-card:hover .mv-icon-circle i {
    color: var(--brand-yellow);
    transform: rotateY(360deg);
}

.mv-icon-circle i {
    font-size: 2rem;
    color: var(--brand-green);
    transition: 0.8s;
}

.mv-title {
    font-weight: 800;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.mv-text {
    color: #666;
    line-height: 1.8;
}

/* Background watermark for premium feel */
.mv-watermark {
    position: absolute;
    right: -5%;
    bottom: -5%;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    pointer-events: none;
    user-select: none;
}


/* --- Catalogue Section --- */
.catalogue-section {
    padding: 100px 0;
    background: #fff;
}

.catalogue-swiper {
    padding: 20px 0 60px !important;
}

.product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.4s;
}

.product-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: 0.5s;
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 46, 31, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-card:hover img {
    transform: scale(1.1);
}

.view-btn {
    width: 50px;
    height: 50px;
    background: var(--brand-yellow);
    color: var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: translateY(20px);
    transition: 0.4s;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

/* Custom Navigation Buttons */
.cat-nav {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
}

.cat-prev, .cat-next {
    width: 45px;
    height: 45px;
    border: 1px solid var(--brand-green);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.cat-prev:hover, .cat-next:hover {
    background: var(--brand-green);
    color: #fff;
}

/* product page  */
/* --- Global Theme Integration --- */
.product-section-bg { background: #f8f9fa; padding: 60px 0; }

/* --- Sidebar Filter (Left Side) --- */
.filter-sidebar-wrapper {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    position: sticky;
    top: 100px;
}

.filter-title-main {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-green);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--brand-yellow);
    display: inline-block;
}

.category-list { list-style: none; padding: 0; }
.category-item {
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    color: #555;
    transition: 0.3s;
}
.category-item:hover, .category-item.active {
    color: var(--brand-yellow);
    padding-left: 5px;
}

/* --- Professional Product Card (B2B Style) --- */
.b2b-product-card {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 20px;
    padding: 20px;
    transition: 0.3s;
}

.b2b-product-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--brand-yellow);
}

.product-img-box {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-bottom: 15px;
}

.product-img-box img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.p-title-b2b {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--brand-green);
    min-height: 50px;
}

.p-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: #333;
    margin: 10px 0;
}

.p-specs {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.spec-label { font-weight: 700; color: #444; }

.btn-get-price {
    background: var(--brand-green);
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 0.85rem;
    width: 100%;
    transition: 0.3s;
}

.btn-get-price:hover {
    background: var(--brand-yellow);
    color: #000;
}

/* --- Mobile Fix: 2 Per Row --- */
@media (max-width: 768px) {

    .mobile-filter-nav {
        display: flex;
        overflow-x: auto;
        gap: 10px;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .col-6-mobile { width: 50% !important; padding: 5px; }
    .p-title-b2b { font-size: 0.85rem; min-height: 40px; }
    .p-price { font-size: 1rem; }
    .p-specs { font-size: 0.7rem; }
}