/* =====================================================
   CLEANED & DE-DUPLICATED STYLESHEET
   (Merged from multiple repeated <style> blocks — the
   common header/nav/footer/breadcrumb/mega-menu rules
   were repeated 3-4 times identically and are now kept once.
   Page-specific sections that reused generic class names
   like .product-card / .about-title with DIFFERENT designs
   have been scoped with a parent selector so both designs
   still work without overwriting each other. See notes at
   the bottom of the file.)
   ===================================================== */

/* ===== 1. RESET & BASE ===== */
* { box-sizing: border-box !important; }
body, html {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    background-color: #f4f6f9;
}
.fa { font-family: 'FontAwesome' !important; }

/* ===== 2. TOPBAR STYLES ===== */
.topbar-area {
    background-color: #111827;
    color: #ffffff;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 2px solid #f36a26;
}
.topbar-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.topbar-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-left a { color: #e5e7eb; text-decoration: none; transition: 0.3s; }
.topbar-left a:hover { color: #f36a26; }
.topbar-left i { color: #f36a26; margin-right: 6px; }

.quote-btn {
    background: linear-gradient(135deg, #f36a26, #d94e0d);
    color: #ffffff !important;
    padding: 8px 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 13px;
    box-shadow: 0 4px 10px rgba(243, 106, 38, 0.3);
    transition: all 0.3s ease;
}
.quote-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(243, 106, 38, 0.4); }

/* ===== 3. HEADER MIDDLE & LOGO ===== */
.header-middle-area { padding: 18px 0; background: #ffffff; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.middle-wrapper { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 15px; }
.logo-text { font-size: 26px; font-weight: 800; color: #f36a26; text-decoration: none; text-transform: uppercase; letter-spacing: 1px; }
.logo img { max-width: 320px !important; width: 100%; height: auto; display: block; }
/* NOTE: one duplicate block used max-width: 450px for the logo — kept 320px as the standard; change here if you want the larger logo everywhere. */

.header-info-group { display: flex; gap: 25px; flex-wrap: wrap; }
.info-box { display: flex; align-items: center; gap: 12px; }
.info-icon {
    width: 42px !important; height: 42px !important;
    background-color: #fff0eb !important; color: #f36a26 !important;
    border-radius: 50% !important; display: flex !important;
    align-items: center !important; justify-content: center !important;
    font-size: 18px !important; box-shadow: 0 2px 6px rgba(243, 106, 38, 0.15);
}
.info-text { display: flex; flex-direction: column; }
.info-text .lbl { font-size: 11px; color: #6b7280; font-weight: 700; text-transform: uppercase; }
.info-text .val { font-size: 13px; color: #111827; font-weight: 700; }

/* ===== 4. NAVIGATION BAR & DROPDOWN ===== */
.main-navigation { background-color: #1f2937; position: relative; z-index: 999; }
.mobile-toggle-btn { display: none; background: #f36a26; color: #fff; border: none; padding: 12px 20px; font-size: 15px; font-weight: bold; width: 100%; text-align: left; cursor: pointer; }
.mobile-toggle-btn i { float: right; font-size: 18px; }

.nav-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.nav-menu > li { position: relative; }
.nav-menu > li > a { display: block; padding: 14px 22px; color: #ffffff; text-decoration: none; font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-menu > li:hover > a,
.nav-menu > li.active > a { background-color: #f36a26; color: #ffffff; }

/* Desktop Dropdown */
.dropdown-menu-custom {
    position: absolute; top: 100%; left: 0; width: 260px;
    background-color: #ffffff; box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    list-style: none; padding: 8px 0; margin: 0; display: none;
    border-top: 3px solid #f36a26; border-radius: 0 0 6px 6px; z-index: 1000;
}
.dropdown-menu-custom li a { display: block; padding: 10px 20px; color: #374151; font-size: 13px; font-weight: 600; text-decoration: none; transition: all 0.2s ease; border-bottom: 1px solid #f3f4f6; }
.dropdown-menu-custom li:last-child a { border-bottom: none; }
.dropdown-menu-custom li a:hover { background-color: #fff0eb; color: #f36a26; padding-left: 25px; }

@media screen and (min-width: 769px) {
    .nav-menu > li.has-dropdown:hover .dropdown-menu-custom { display: block !important; animation: fadeIn 0.3s ease; }
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.dropdown-icon { margin-left: 5px; }
.logo-text-hidden { display: none; }

/* Mega Menu */
.nav-menu > li.mega-menu-item { position: relative; }
.mega-menu-box {
    display: none; position: absolute; top: 100%; left: 0; width: 650px;
    background-color: #ffffff; box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
    padding: 20px; z-index: 9999; border-top: 3px solid #ff5722;
}
.mega-menu-item:hover .mega-menu-box { display: flex; justify-content: space-between; }
.mega-menu-column { width: 48%; }
.mega-menu-column ul { list-style: none; margin: 0; padding: 0; }
.mega-menu-column ul li { border-bottom: 1px solid #f0f0f0; }
.mega-menu-column ul li:last-child { border-bottom: none; }
.mega-menu-column ul li a { display: block; padding: 8px 0; color: #333333; font-size: 13px; text-decoration: none; transition: all 0.3s ease; }
.mega-menu-column ul li a:hover { color: #ff5722; padding-left: 5px; }

.title2 {
    font-family: 'Montserrat', sans-serif;
    color: #fff; font-size: 60px; line-height: 70px;
    text-transform: unset; letter-spacing: 1px;
    margin: 20px 0px; max-width: 925px; font-weight: 700;
}

/* ===== 5. BREADCRUMB STYLES ===== */
.breadcrumb-area { background: #e5e7eb; padding: 35px 0; border-bottom: 2px solid #d1d5db; }
.breadcrumb-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 15px; align-items: center; font-size: 20px; }
.breadcrumb-list li a { color: #f36a26; text-decoration: none; font-weight: 700; }
.breadcrumb-list li a:hover { text-decoration: underline; }
.breadcrumb-list li.separator { color: #6b7280; font-weight: 700; font-size: 18px; }
.breadcrumb-list li.active { color: #111827; font-weight: 800; }

/* ===== 6. PRODUCT DETAIL PAGE ===== */
.product-detail-section { padding: 40px 0; }
.pd-card { border: none; border-radius: 12px; padding: 30px; background: #ffffff; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); height: 100%; }
.pd-badge { background: #fff0eb; color: #f36a26; font-size: 12px; font-weight: 700; padding: 6px 14px; border-radius: 20px; display: inline-block; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px; }
.pd-title { font-size: 28px; font-weight: 800; color: #111827; margin-bottom: 12px; line-height: 1.2; }
.pd-desc { font-size: 15px; color: #4b5563; line-height: 1.7; margin-bottom: 25px; }
.pd-sub-heading { font-size: 18px; font-weight: 700; color: #111827; margin-top: 25px; margin-bottom: 15px; display: flex; align-items: center; gap: 8px; }
.pd-sub-heading::before { content: ''; width: 4px; height: 18px; background-color: #f36a26; border-radius: 2px; display: inline-block; }
.pd-feature-list { list-style: none; padding: 0; margin: 0 0 20px 0; }
.pd-feature-list li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: 14px; color: #374151; line-height: 1.6; }
.pd-feature-list li i { position: absolute; left: 0; top: 2px; color: #f36a26; font-size: 16px; }

.specs-table { width: 100%; border-collapse: collapse; margin-top: 15px; margin-bottom: 25px; background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid #e5e7eb; }
.specs-table th, .specs-table td { padding: 10px 15px; font-size: 13px; border-bottom: 1px solid #e5e7eb; }
.specs-table th { background-color: #f9fafb; color: #374151; font-weight: 700; width: 40%; text-align: left; }
.specs-table td { color: #1f2937; font-weight: 600; }

.layer-table { width: 100%; border-collapse: collapse; margin-top: 15px; margin-bottom: 20px; font-size: 13px; border: 1px solid #e5e7eb; }
.layer-table th { background-color: #1f2937; color: #ffffff; padding: 10px; text-align: center; }
.layer-table td { padding: 10px; text-align: center; border-bottom: 1px solid #e5e7eb; color: #374151; }

.comp-card { background: #f9fafb; border-left: 4px solid #f36a26; padding: 15px; border-radius: 0 8px 8px 0; margin-bottom: 12px; }
.comp-card h5 { margin: 0 0 6px 0; font-size: 15px; color: #111827; font-weight: 700; }
.comp-card p { margin: 0; font-size: 13px; color: #4b5563; line-height: 1.5; }

.cert-badge { display: inline-block; background: #10b981; color: white; font-weight: bold; font-size: 12px; padding: 4px 10px; border-radius: 4px; margin-right: 8px; margin-bottom: 8px; }

.img-container { overflow: hidden; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.06); background: #ffffff; padding: 15px; text-align: center; }
.img-container img { transition: transform 0.4s ease; max-width: 100%; height: auto; border-radius: 8px; }
.img-container:hover img { transform: scale(1.03); }

/* ===== 7. ABOUT US SECTION (homepage version) ===== */
.about-us-section { padding: 80px 0; background: linear-gradient(135deg, #fefefe 0%, #f4f6f8 100%); }
.about-header { margin-bottom: 50px; }
.about-eyebrow { color: #ff5722; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 13px; background-color: rgba(255, 87, 34, 0.1); padding: 8px 20px; border-radius: 30px; display: inline-block; }
.about-title { font-size: 34px; font-weight: 800; margin-top: 15px; color: #1a1a1a; letter-spacing: -0.5px; }
.about-divider { width: 80px; height: 4px; background: linear-gradient(to right, #ff5722, #ff8a65); margin: 18px auto 0; border-radius: 2px; }
.about-row { align-items: center; }
.about-content { margin-bottom: 30px; }
.about-subtitle { font-size: 24px; font-weight: 700; color: #222; margin-bottom: 18px; line-height: 1.4; }
.about-text { font-size: 15px; line-height: 1.8; color: #555; margin-bottom: 15px; }
.about-text-last { margin-bottom: 25px; }
.text-dark { color: #222; }
.text-brand { color: #ff5722; }
.about-highlights { list-style-type: none; padding-left: 0; margin-bottom: 25px; }
.about-highlights li { margin-bottom: 12px; font-size: 15px; color: #444; display: flex; align-items: flex-start; }
.about-highlights li i { color: #ff5722; font-size: 18px; margin-right: 12px; margin-top: 2px; }
.about-image-col { margin-bottom: 30px; }

.product-profile-card { position: relative; background-color: #ffffff; padding: 15px; border-radius: 16px; box-shadow: 0 15px 35px rgba(0,0,0,0.08); border: 1px solid #eaeaea; transition: transform 0.3s ease; }
.product-profile-img-wrap { position: relative; overflow: hidden; border-radius: 12px; }
.product-profile-img { width: 100%; height: 340px; object-fit: cover; border-radius: 12px; display: block; }
.product-profile-badge { position: absolute; top: 15px; left: 15px; background: linear-gradient(45deg, #ff5722, #ff7043); color: #fff; padding: 6px 16px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; box-shadow: 0 4px 10px rgba(255, 87, 34, 0.4); }
.product-profile-badge i { margin-right: 6px; }
.product-profile-body { padding: 20px 10px 10px 10px; text-align: center; }
.product-profile-title { font-size: 20px; font-weight: 700; color: #222; margin-bottom: 6px; }
.product-profile-desc { font-size: 13px; color: #666; margin-bottom: 18px; line-height: 1.5; }
.btn-explore-products { display: inline-block; background: linear-gradient(45deg, #ff5722, #ff7043); color: #ffffff; padding: 12px 28px; border-radius: 30px; font-weight: 600; font-size: 14px; text-decoration: none; box-shadow: 0 6px 18px rgba(255, 87, 34, 0.35); transition: all 0.3s ease; }
.btn-explore-products i { margin-left: 8px; }

.about-features-row { margin-top: 30px; }
.about-feature-col { margin-bottom: 25px; }
.feature-box { background-color: #ffffff; padding: 30px 25px; border-radius: 12px; box-shadow: 0 5px 20px rgba(0,0,0,0.04); border: 1px solid #eee; text-align: center; height: 100%; transition: all 0.3s ease; }
.feature-icon-wrap { width: 65px; height: 65px; background: rgba(255, 87, 34, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px auto; }
.feature-icon { font-size: 28px; color: #ff5722; }
.feature-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #222; }
.feature-desc { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

.feature-box:hover, .product-profile-card:hover { transform: translateY(-8px); box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important; }
.btn-explore-products:hover { background: linear-gradient(45deg, #e64a19, #ff5722) !important; box-shadow: 0 8px 22px rgba(255, 87, 34, 0.5) !important; }
.counter-card:hover { transform: translateY(-5px); background: rgba(255, 255, 255, 0.06) !important; border-color: rgba(255, 87, 34, 0.4) !important; }

/* ===== 8. COUNTER SECTION ===== */
.counter-section { padding: 60px 0; background: linear-gradient(135deg, #111111 0%, #1e1e24 100%); color: #ffffff; border-top: 3px solid #ff5722; }
.counter-col { margin-bottom: 25px; }
.counter-card { background: rgba(255, 255, 255, 0.03); padding: 25px 15px; border-radius: 12px; border: 1px solid rgba(255, 255, 255, 0.05); transition: all 0.3s ease; }
.counter-icon-wrap { width: 60px; height: 60px; background: rgba(255, 87, 34, 0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px auto; }
.counter-icon { font-size: 26px; color: #ff5722; }
.counter-section .counter { font-size: 42px; font-weight: 800; margin: 0; color: #ffffff; letter-spacing: 1px; }
.counter-label { font-size: 15px; margin-top: 8px; color: #aaaaaa; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; }

/* ===== 9. PRODUCTS SHOWCASE SECTION (homepage cards) ===== */
.products-showcase-section { padding: 70px 0; background-color: #ffffff; }
.products-header { margin-bottom: 50px; }
.products-eyebrow { color: #ff5722; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; background-color: rgba(255, 87, 34, 0.1); padding: 6px 16px; border-radius: 20px; }
.products-title { font-size: 36px; font-weight: 800; margin-top: 15px; color: #1a1a1a; }
.products-subtitle { color: #666; font-size: 16px; max-width: 700px; margin: 10px auto 0; }
.products-divider { width: 70px; height: 4px; background: linear-gradient(to right, #ff5722, #ff8a65); margin: 18px auto 0; border-radius: 2px; }

.product-cards-row { display: flex; flex-wrap: wrap; }
.product-card-col { margin-bottom: 30px; }
.product-card { background-color: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 20px rgba(0,0,0,0.06); border: 1px solid #eee; transition: all 0.3s ease; height: 100%; display: flex; flex-direction: column; }
.product-card-img-wrap { position: relative; overflow: hidden; background-color: #ffffff; height: 260px; text-align: center; padding: 15px; border-bottom: 1px solid #f0f0f0; }
.product-card-img-link { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.product-card-img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; margin: 0 auto; }
.product-card-body { padding: 25px; flex-grow: 1; display: flex; flex-direction: column; justify-content: space-between; }
.product-card-category { font-size: 12px; font-weight: 700; color: #ff5722; text-transform: uppercase; letter-spacing: 1px; }
.product-card-title { font-size: 18px; font-weight: 700; color: #222; margin-top: 5px; margin-bottom: 12px; }
.product-card-title a { color: #222; text-decoration: none; }
.product-card-desc { font-size: 14px; color: #666; line-height: 1.6; margin-bottom: 15px; }
.product-card-link { color: #ff5722; font-weight: 600; font-size: 14px; text-decoration: none; display: inline-flex; align-items: center; margin-top: 10px; }
.product-card-link i { margin-left: 6px; font-size: 12px; }

/* ===== 10. FOOTER STYLES ===== */
footer { background-color: #111827; color: #9ca3af; padding-top: 45px; font-size: 13px; }
.footer-widget h4 { color: #ffffff; font-size: 16px; font-weight: 700; margin-bottom: 20px; position: relative; padding-bottom: 8px; }
.footer-widget h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 3px; background-color: #f36a26; border-radius: 2px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links li a { color: #d1d5db; text-decoration: none; transition: 0.3s; display: inline-block; }
.footer-links li a:hover { color: #f36a26; transform: translateX(4px); }
.footer-links li a i { color: #f36a26; margin-right: 6px; }
.footer-bottom { background-color: #0b0f17; padding: 18px 0; margin-top: 35px; text-align: center; color: #6b7280; border-top: 1px solid #1f2937; }

.footer-col { margin-bottom: 25px; }
.footer-about-text { line-height: 1.7; color: #d1d5db; }
.footer-readmore-wrap { margin-top: 10px; }
.footer-readmore { color: #f36a26; text-decoration: none; font-weight: bold; }
.footer-contact-line { margin-bottom: 8px; color: #d1d5db; }
.footer-contact-line i { color: #f36a26; margin-right: 8px; }
.footer-copyright { margin: 0; font-size: 13px; }

/* ===== 11. SLIDER ARROWS ===== */
.intro-area-6 { position: relative; }
.intro-carousel .owl-nav button {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; background: rgba(0, 0, 0, 0.5) !important;
    color: #ffffff !important; font-size: 24px !important;
    border-radius: 50%; border: none; z-index: 999; transition: all 0.3s ease;
}
.intro-carousel .owl-nav button:hover { background: #ff5722 !important; }
.intro-carousel .owl-nav button.owl-prev { left: 20px; }
.intro-carousel .owl-nav button.owl-next { right: 20px; }

.slider-nav-btn button {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 50px; height: 50px; background: rgba(0, 0, 0, 0.5); color: #fff;
    border: none; font-size: 24px; border-radius: 50%; z-index: 99;
    cursor: pointer; transition: 0.3s;
}
.slider-nav-btn .custom-prev-btn { left: 20px; }
.slider-nav-btn .custom-next-btn { right: 20px; }
.slider-nav-btn button:hover { background: #ff5722; }

/* =====================================================
   PAGE-SPECIFIC VARIANTS
   These re-used the SAME class names (.about-title,
   .product-card) with a DIFFERENT visual design in a
   different <style> block. Rather than delete one design,
   they're scoped under a page wrapper class below so
   nothing gets silently overwritten. Add the matching
   wrapper class to that page's <body> or section, e.g.
   <section class="about-section"> ... <h2 class="about-title">
   ===================================================== */

/* ----- About page (alternate card layout) ----- */
.about-section { padding: 50px 0; }
.about-section .about-card { background: #ffffff; border-radius: 12px; padding: 35px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); margin-bottom: 30px; }
.about-section .about-card .about-title { font-size: 28px; font-weight: 800; color: #111827; margin-bottom: 20px; position: relative; }
.about-section .about-card .about-title::after { content: ''; display: block; width: 50px; height: 3px; background-color: #f36a26; margin-top: 8px; border-radius: 2px; }
.about-section .about-card .about-text { font-size: 15px; color: #4b5563; line-height: 1.8; margin-bottom: 18px; }

.highlight-box { background: #fff0eb; border-left: 5px solid #f36a26; padding: 25px; border-radius: 0 10px 10px 0; height: 100%; }
.highlight-box h3 { margin-top: 0; font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 15px; }
.highlight-box p { font-size: 14px; color: #374151; margin-bottom: 12px; }
.highlight-box p i { color: #f36a26; margin-right: 8px; }

.feature-card { background: #ffffff; border-radius: 10px; padding: 25px 20px; text-align: center; box-shadow: 0 4px 15px rgba(0,0,0,0.05); margin-bottom: 30px; border: 1px solid #e5e7eb; transition: transform 0.3s ease; height: calc(100% - 30px); }
.feature-card:hover { transform: translateY(-5px); }
.feature-card i { font-size: 38px; color: #f36a26; margin-bottom: 15px; }
.feature-card h3 { font-size: 18px; font-weight: 700; color: #111827; margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: #6b7280; margin: 0; line-height: 1.6; }

.product-grid-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; }
.product-grid-list li { width: 50%; margin-bottom: 12px; font-size: 14px; color: #374151; font-weight: 600; }
.product-grid-list li i { color: #f36a26; margin-right: 8px; }

.cta-banner { background: linear-gradient(135deg, #111827, #1f2937); border-top: 4px solid #f36a26; color: #ffffff; padding: 40px 0; text-align: center; border-radius: 12px; margin-top: 20px; margin-bottom: 40px; }
.cta-banner h2 { font-size: 26px; font-weight: 800; margin-bottom: 12px; }
.cta-banner p { font-size: 15px; color: #d1d5db; margin-bottom: 25px; }

/* ----- Products listing page (alternate card layout) ----- */
.products-section { padding: 50px 0; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header h2 { font-size: 32px; font-weight: 800; color: #111827; text-transform: uppercase; position: relative; display: inline-block; padding-bottom: 12px; }
.section-header h2::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 70px; height: 4px; background-color: #f36a26; border-radius: 2px; }

.products-section .product-card { background: #ffffff; border-radius: 12px; overflow: hidden; box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); margin-bottom: 30px; transition: all 0.3s ease; display: flex; flex-direction: column; height: calc(100% - 30px); border: 1px solid #e5e7eb; }
.products-section .product-card:hover { transform: translateY(-5px); box-shadow: 0 12px 25px rgba(243, 106, 38, 0.15); border-color: #f36a26; }
.product-img { position: relative; width: 100%; height: 240px; background-color: #f9fafb; display: flex; align-items: center; justify-content: center; overflow: hidden; border-bottom: 1px solid #f3f4f6; }
.product-img img { max-height: 200px; max-width: 90%; object-fit: contain; transition: transform 0.4s ease; }
.products-section .product-card:hover .product-img img { transform: scale(1.06); }
.product-details { padding: 20px; display: flex; flex-direction: column; flex-grow: 1; justify-content: space-between; }
.product-title { font-size: 16px; font-weight: 700; color: #111827; margin-bottom: 15px; line-height: 1.4; min-height: 45px; }
.product-actions { display: flex; gap: 10px; }
.btn-view { flex: 1; text-align: center; padding: 10px 12px; background: #1f2937; color: #ffffff; text-decoration: none; font-size: 13px; font-weight: 600; border-radius: 6px; transition: 0.3s; }
.btn-view:hover { background: #f36a26; color: #ffffff; }
.btn-enquire { flex: 1; text-align: center; padding: 10px 12px; background: #fff0eb; color: #f36a26; text-decoration: none; font-size: 13px; font-weight: 600; border-radius: 6px; border: 1px solid #f36a26; transition: 0.3s; }
.btn-enquire:hover { background: #f36a26; color: #ffffff; }

/* ----- Contact page ----- */
.contact-section { padding: 50px 0; }
.contact-info-card { background: #ffffff; border-radius: 12px; padding: 30px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); margin-bottom: 30px; height: calc(100% - 30px); }
.contact-title { font-size: 26px; font-weight: 800; color: #111827; margin-bottom: 20px; position: relative; }
.contact-title::after { content: ''; display: block; width: 40px; height: 3px; background-color: #f36a26; margin-top: 8px; border-radius: 2px; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 25px; }
.contact-detail-item .icon-box { width: 45px; height: 45px; background-color: #fff0eb; color: #f36a26; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.contact-detail-item .text-box h5 { margin: 0 0 5px 0; font-size: 15px; font-weight: 700; color: #111827; }
.contact-detail-item .text-box p { margin: 0; font-size: 14px; color: #4b5563; line-height: 1.6; }
.contact-detail-item .text-box a { color: #4b5563; text-decoration: none; transition: 0.2s; }
.contact-detail-item .text-box a:hover { color: #f36a26; }

.map-card-right { background: #ffffff; border-radius: 12px; padding: 20px; box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05); margin-bottom: 30px; height: calc(100% - 30px); display: flex; flex-direction: column; }
.map-card-right iframe { width: 100%; height: 100%; min-height: 380px; border: 0; border-radius: 8px; flex-grow: 1; }

/* ===== 12. RESPONSIVE QUERIES (merged, all breakpoints combined) ===== */
@media screen and (max-width: 768px) {
    .topbar-wrapper, .topbar-left { flex-direction: column; text-align: center; gap: 6px; }
    .middle-wrapper { flex-direction: column; text-align: center; }
    .header-info-group { flex-direction: column; align-items: center; gap: 12px; }
    .logo img { max-width: 300px !important; margin: 0 auto; }
    .logo-text { font-size: 22px; }

    .breadcrumb-area { padding: 20px 0; }
    .breadcrumb-list { font-size: 16px; justify-content: center; }

    .mobile-toggle-btn { display: block; }
    .nav-menu { display: none; flex-direction: column; width: 100%; }
    .nav-menu.show-menu { display: flex !important; }
    .nav-menu > li { width: 100%; text-align: left; }
    .nav-menu > li > a { padding: 12px 18px; border-bottom: 1px solid #374151; }

    .dropdown-menu-custom { position: relative; width: 100%; background-color: #111827; box-shadow: none; border-top: none; }
    .dropdown-menu-custom li a { color: #9ca3af; padding-left: 30px; border-bottom: 1px solid #1f2937; }
    .dropdown-menu-custom li a:hover { background-color: #f36a26; color: #ffffff; }
    .nav-menu > li.has-dropdown:hover .dropdown-menu-custom { display: block; }

    .pd-title { font-size: 22px; }
    .pd-card { padding: 20px; }

    .about-card { padding: 20px; }
    .product-grid-list li { width: 100%; }

    .product-title { min-height: auto; }

    .map-card-right, .contact-info-card { padding: 20px; }
    .map-card-right iframe { min-height: 300px; }
}