/* ================================================================
   The Himalaya - Main Stylesheet
   Himalaya Composites & Precast Pvt. Ltd.
   Design: Premium B2B Industrial Corporate
   ================================================================ */

/* ---- CSS Variables ---- */
:root {
    --primary-dark:   #1d3467;
    --primary-bright: #00AFEF;
    --light-accent:   #91D8F7;
    --white:          #FFFFFF;
    --off-white:      #F4F8FC;
    --body-text:      #1e293b;
    --muted-text:     #607d99;
    --border:         #dce8f0;
    --success:        #22c55e;
    --error:          #ef4444;
    --shadow-sm:      0 2px 8px rgba(50,70,112,0.08);
    --shadow-md:      0 4px 20px rgba(50,70,112,0.12);
    --shadow-lg:      0 12px 40px rgba(50,70,112,0.18);
    --radius-sm:      4px;
    --radius-md:      8px;
    --radius-lg:      16px;
    --transition:     0.25s ease;
    --font-heading:   'Rubik', sans-serif;
    --font-body:      'Rubik', sans-serif;
}


/* ---- Global text overflow fix ----*/
* { overflow-wrap: break-word; word-wrap: break-word; min-width: 0; }
/* Containers must not clip text */
.container, .section, .footer-grid, .footer-col,
.cat-grid, .products-grid, .blog-grid, .projects-grid,
.about-teaser-grid, .vision-grid, .differentiators-grid,
.products-layout, .contact-layout, .blog-layout,
.perks-grid, .cert-grid, .why-grid, .stats-grid,
.testimonials-grid, .form-card, .info-panel {
    overflow: visible;
}
/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--body-text); background: var(--white); line-height: 1.7; font-size: 16px; font-weight: 400; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul, ol { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }
.bg-white{ background: var(--white) !important; }

/* ---- Card & Grid text overflow ---- */
.cat-card p, .product-card-body p, .blog-card-excerpt, .diff-card p,
.perk-card p, .cert-card p, .vision-card p, .testimonial-quote,
.about-desc, .why-desc, .hero-subheadline, .footer-desc,
.section-subtitle, .page-hero-sub, .privacy-content p,
.blog-content p, .position-card p {
    overflow-wrap: break-word;
    word-break: break-word;
}
/* Project card text — allow two lines */
.project-card-name {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: normal;
    line-height: 1.3;
}
.project-card-loc {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
/* Never let headings overflow their container */
h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
    word-break: break-word;
    max-width: 100%;
}

/* ---- Container ---- */
.container { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 24px; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.15; color: black; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.5rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1.5vw, 1.1rem); font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Section Spacing ---- */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.section-dark { background: var(--primary-dark); color: var(--white); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white) !important; }
.section-dark p { color: rgba(255,255,255,0.82); }
.section-dark.has-bg { position: relative; background-color: var(--primary-dark); background-size: cover; background-position: center; }
.section-dark.has-bg::before { content: ''; position: absolute; inset: 0; background: rgba(29, 52, 103, 1); z-index: 0; }
.section-dark.has-bg > .container { position: relative; z-index: 1; }
.section-light { background: var(--off-white); }

/* ---- Section Header ---- */
.section-header { margin-bottom: 48px; }
.section-header-flex { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.section-tag { display: inline-block; font-family: var(--font-heading); font-weight: 600; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-bright); background: rgba(0,175,239,0.1); padding: 4px 12px; border-radius: 2px; margin-bottom: 10px; }
.section-tag-light { color: var(--light-accent); background: rgba(145,216,247,0.15); }
.section-title { font-size: clamp(1.65rem, 3vw, 2.1rem); color: #111111; line-height: 1.2; }
.section-subtitle { color: var(--muted-text); font-size: clamp(0.95rem, 1.5vw, 1.05rem); max-width: 710px; margin-top: 10px; line-height: 1.65; }

/* ---- Buttons ---- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 700; font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase; padding: 12px 26px; border-radius: var(--radius-sm); border: 2px solid transparent; cursor: pointer; transition: all var(--transition); line-height: 1; }
.btn-primary { background: var(--primary-bright); color: var(--white); border-color: var(--primary-bright); }
.btn-primary:hover { background: #008fc4; border-color: #008fc4; color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-dark { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }
.btn-dark:hover { background: #253455; border-color: #253455; color: var(--white); }
.btn-outline { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }
.btn-outline:hover { background:  #253455; color: var(--white); border-color:  #253455;transform: translateY(-1px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); color: var(--white); border-color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary-dark); }
.btn-whatsapp { background: #25D366; color: var(--white); border-color: #25D366; }
.btn-whatsapp:hover { background: #1da851; color: var(--white); }
.btn-sm { padding: 9px 18px; font-size: 0.8rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }

/* ================================================================
   TOP BAR
   ================================================================ */
.topbar { background: var(--primary-dark); padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-link { color: rgba(255,255,255,1); font-size: 0.78rem; display: inline-flex; align-items: center; gap: 6px; transition: color var(--transition); }
.topbar-link:hover { color: var(--light-accent); }
.topbar-left { display: flex; align-items: center; gap: 20px; }
.topbar-right { display: flex; align-items: center; gap: 5px; }
.topbar-social-link { color: rgba(255,255,255,1); font-size: 0.85rem; display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; transition: all var(--transition); }
.topbar-social-link:hover { color: var(--primary-bright); }

/* ================================================================
   HEADER
   ================================================================ */
.site-header { background: var(--white); box-shadow: 0 2px 0 var(--border); position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: var(--shadow-md); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 85px; }
.site-logo img { height: auto; max-height: 80px; object-fit: contain; }

.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link { font-family: var(--font-heading); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--body-text); padding: 8px 12px; border-radius: var(--radius-sm); transition: all var(--transition); display: flex; align-items: center; gap: 4px; }
.nav-link:hover { color: var(--primary-bright); }
.nav-link.active { color: var(--primary-bright); font-weight: 700; }

/* Right-align nav group */
.main-nav { margin-left: auto; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown { display: none; position: absolute; top: calc(100% + 0px); left: 0; background: var(--white); min-width: 240px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 8px; z-index: 100; }
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a { display: block; padding: 9px 14px; font-family: var(--font-body); font-size: 0.9rem; color: var(--body-text); border-radius: var(--radius-sm); transition: all var(--transition); }
.dropdown li a:hover { background: var(--off-white); color: var(--primary-bright); }
.dropdown li a.active { background: rgba(0,175,239,0.08); color: var(--primary-bright); font-weight: 600;  padding-left: 11px; }

/* Sub-dropdown (nested product links under first 3 categories) */
.dropdown .has-sub { position: relative; }
.dropdown .sub-link-row { display: flex; align-items: center; }
.dropdown .sub-link-row > a { flex: 1; display: flex; align-items: center; justify-content: space-between; }
.dropdown .sub-link-row > a::after { content: '›'; font-size: 1.1rem; line-height: 1; margin-left: 6px; color: var(--muted-text); transition: color var(--transition); }
.dropdown .has-sub:hover .sub-link-row > a::after { color: var(--primary-bright); }
.sub-dropdown { display: none; position: absolute; left: 100%; top: -8px; background: var(--white); min-width: 230px; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); border: 1px solid var(--border); padding: 8px; z-index: 200; }
.dropdown .has-sub:hover .sub-dropdown { display: block; }
.sub-dropdown li a { display: block; padding: 9px 14px; font-family: var(--font-body); font-size: 0.875rem; color: var(--body-text); border-radius: var(--radius-sm); transition: all var(--transition); white-space: nowrap; }
.sub-dropdown li a:hover { background: var(--off-white); color: var(--primary-bright); }
.sub-dropdown li a.active { background: rgba(0,175,239,0.08); color: var(--primary-bright); font-weight: 600; }
/* Mobile sub-toggle button — hidden on desktop */
.mob-sub-btn { display: none; width: 34px; height: 34px; border-radius: var(--radius-sm); background: none; border: none; cursor: pointer; color: var(--muted-text); align-items: center; justify-content: center; transition: color var(--transition), background var(--transition); flex-shrink: 0; }
.mob-sub-btn svg { width: 14px; height: 14px; transition: transform 0.25s ease; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { display: block; width: 100%; height: 2px; background: var(--primary-dark); border-radius: 2px; transition: all 0.3s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ================================================================
   HERO SLIDER
   ================================================================ */
.hero { position: relative; height: 100vh; min-height: 580px; max-height: 860px; overflow: hidden; background: var(--primary-dark); }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-slide-bg::after { content: ''; position: absolute; inset: 0; 
    /* background: linear-gradient(135deg, rgba(50,70,112,0.88) 0%, rgba(50,70,112,0.6) 60%, rgba(0,0,0,0.3) 100%); */
    background-color: rgb(0 0 0 / 60%);
 }
/* .hero-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; } */
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; text-align: center; }
.hero-text { max-width: 1100px; margin: 0 auto; }
.hero-tag { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-heading); font-weight: 600; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--light-accent); margin-bottom: 18px; justify-content: center; }
/* .hero-tag::before { content: ''; width: 24px; height: 2px; background: var(--primary-bright); display: block; } */
.hero-headline { font-size: clamp(2rem, 5.5vw, 3rem); font-weight: 800; color: var(--white); line-height: 1.1; margin-bottom: 20px; overflow-wrap: break-word; }
.hero-headline span { color: var(--primary-bright); }
.hero-subheadline { font-size: clamp(0.95rem, 1.6vw, 1.1rem); color: rgba(255,255,255,0.82); max-width: 700px; margin: 0 auto 36px; font-weight: 400; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; justify-content: center; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; justify-content: center; }
.hero-stat-item { display: flex; flex-direction: column; }
.hero-stat-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.5rem, 2.5vw, 1.8rem); color: var(--primary-bright); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; font-weight: 500; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

/* Slider arrow controls — left & right edges, vertically centered */
.hero-controls { position: absolute; top: 50%; transform: translateY(-50%); left: 0; right: 0; display: flex; justify-content: space-between; padding: 0 24px; z-index: 4; pointer-events: none; }
.hero-btn { width: 48px; height: 48px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.35); background: rgba(255,255,255,0.12); color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); font-size: 20px; pointer-events: all; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.hero-btn:hover { background: var(--primary-bright); border-color: var(--primary-bright); transform: scale(1.08); }
.hero-dots { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 4; }
.hero-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.3); cursor: pointer; transition: all var(--transition); }
.hero-dot.active { background: var(--primary-bright); width: 24px; border-radius: 4px; }

/* ================================================================
   BENEFITS BAR  (below hero, replaces hero-accent-bar)
   ================================================================ */
.benefits-bar { background: var(--white); border-bottom: 3px solid var(--primary-bright); box-shadow: var(--shadow-sm); }
.benefits-bar-inner { display: flex; align-items: stretch; flex-wrap: wrap; }
.benefit-item { display: flex; align-items: center; gap: 14px; padding: 20px 28px; flex: 1; border-right: 1px solid var(--border); min-width: 180px; transition: background var(--transition); }
.benefit-item:last-child { border-right: none; }
.benefit-item:hover { background: var(--off-white); }
.benefit-icon { font-size: 1.5rem; color: var(--primary-bright); flex-shrink: 0; width: 36px; text-align: center; }
.benefit-title { display: block; font-family: var(--font-heading); font-weight: 700; font-size: 0.83rem; color: #111; letter-spacing: 0.01em; line-height: 1.3; }
.benefit-sub { display: block; font-size: 0.73rem; color: var(--muted-text); margin-top: 2px; }

/* ================================================================
   ABOUT TEASER
   ================================================================ */
.about-teaser { background: var(--white); }
.about-teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.about-image-wrap img { width: 100%; height: 600px; object-fit: cover; }
.facility-img { border-radius: 16px; height: 450px; object-fit: cover; width: 100%; }
.about-image-badge { position: absolute; bottom: 28px; left: 28px; background: var(--primary-bright); color: var(--white); padding: 16px 20px; border-radius: var(--radius-md); text-align: center; box-shadow: var(--shadow-md); }
.about-badge-num { font-family: var(--font-heading); font-weight: 800; font-size: 2rem; line-height: 1; }
.about-badge-label { font-size: 0.78rem; font-weight: 500; opacity: 0.9; }
.about-text-wrap .section-title { margin-bottom: 16px; }
.about-desc { color: var(--muted-text); margin-bottom: 24px;text-align: justify; }
.about-checks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.check-item { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.check-icon { width: 22px; height: 22px; border-radius: 50%; background: rgba(0,175,239,0.1); color: var(--primary-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.about-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ================================================================
   PRODUCT CATEGORIES GRID
   ================================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.cat-card { background: var(--white); border: 2px solid var(--border); border-radius: var(--radius-md); padding: 28px 22px; transition: all var(--transition); cursor: pointer; display: flex; flex-direction: column; height: 100%; }
.cat-card:hover { border-color: var(--primary-bright); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.cat-card-icon { width: 48px; height: 48px; background: rgba(0,175,239,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--primary-bright); margin-bottom: 16px; transition: background var(--transition); }
.cat-card-icon svg { width: 24px; height: 24px; }
.cat-card:hover .cat-card-icon { background: var(--primary-bright); color: var(--white); }
.cat-card h4 { font-size: 1rem; margin-bottom: 8px; color: #111111; }
.cat-card p { font-size: 0.85rem; color: var(--muted-text); line-height: 1.6; margin-bottom: 14px; flex: 1 1 auto; }
.cat-link { font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary-bright); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); margin-top: auto; align-self: flex-start; }
.cat-link:hover { gap: 10px; color: var(--primary-bright); }
.cat-link svg { width: 14px; height: 14px; }

/* ================================================================
   PRODUCT CARDS
   ================================================================ */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.product-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: all var(--transition); display: flex; flex-direction: column; height: 100%; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-card-image { position: relative; overflow: hidden; height: 350px; background: var(--off-white); flex-shrink: 0; }
.product-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.product-card:hover .product-card-image img { transform: scale(1.06); }
.product-card-tag { position: absolute; top: 12px; left: 12px; background: var(--primary-dark); color: var(--white); font-family: var(--font-heading); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; }
.product-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1 1 auto; }
.product-card-body h4 { font-size: 1rem; margin-bottom: 8px; color: #111111; }
.product-card-body p { font-size: 0.875rem; color: var(--muted-text); line-height: 1.6; margin-bottom: 14px; flex: 1 1 auto; }
.product-card-actions { display: flex; gap: 10px; margin-top: auto; }
.product-card-actions .btn { flex: 1; justify-content: center; font-size: 0.78rem; padding: 9px 10px; white-space: nowrap; letter-spacing: 0.03em; }

/* ================================================================
   WHY CHOOSE US
   ================================================================ */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.why-item { padding: 40px 36px; border-bottom: 1px solid rgba(255,255,255,0.06); border-right: 1px solid rgba(255,255,255,0.06); }
.why-item:nth-child(even) { border-right: none; }
.why-item:nth-last-child(-n+2) { border-bottom: none; }
.why-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(2.5rem, 4vw, 3.2rem); color: var(--primary-bright); line-height: 1; margin-bottom: 12px; display: block; }
.why-title { font-size: clamp(1.1rem, 1.8vw, 1.25rem); color: var(--white); margin-bottom: 10px; font-weight: 700; }
.why-desc { color: rgba(255,255,255,0.7); font-size: 0.875rem; line-height: 1.7; }

/* ================================================================
   PROJECTS CARDS
   ================================================================ */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.project-card { position: relative; border-radius: var(--radius-md); overflow: hidden; height: 260px; cursor: pointer; }
.project-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.project-card:hover .project-card-bg { transform: scale(1.06); }
.project-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(50,70,112,0.92) 0%, rgba(50,70,112,0.3) 60%, transparent 100%); }
.project-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.project-card-cat { font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: white; margin-bottom: 6px; display: block; }
.project-card-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 4px; line-height: 1.2; }
.project-card-loc { font-size: 0.82rem; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 4px; }
.project-card-loc svg { width: 12px; height: 12px; }

/* ================================================================
   CERTIFICATIONS — Redesigned with icons
   ================================================================ */
.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cert-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px 24px; text-align: center; transition: all var(--transition); position: relative; overflow: hidden; }
.cert-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--primary-bright); }
.cert-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: rgba(0,175,239,0.3); }
.cert-icon-wrap { width: 72px; height: 72px; border-radius: 50%; background: rgba(0,175,239,0.08); border: 2px solid rgba(0,175,239,0.18); color: var(--primary-bright); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 1.8rem; transition: all var(--transition); }
.cert-card:hover .cert-icon-wrap { background: var(--primary-bright); color: var(--white); border-color: var(--primary-bright); }
.cert-std-label { font-family: var(--font-heading); font-weight: 800; font-size: 0.78rem; color: var(--primary-dark); background: rgba(50,70,112,0.07); padding: 3px 12px; border-radius: 2px; display: inline-block; margin-bottom: 10px; letter-spacing: 0.07em; text-transform: uppercase; }
.cert-card h4 { font-size: 1rem; margin-bottom: 7px; color: #111; font-weight: 700; }
.cert-card p { font-size: 0.82rem; color: var(--muted-text); line-height: 1.65; margin: 0; }

/* ================================================================
   CLIENTS MARQUEE
   ================================================================ */
.clients-section { background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 32px 0; overflow: hidden; }
.clients-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.clients-track:hover { animation-play-state: paused; }
.client-item { font-family: var(--font-heading); font-weight: 700; font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted-text); padding: 0 40px; white-space: nowrap; transition: color var(--transition); display: flex; align-items: center; }
.client-item::after { content: ''; display: block; width: 5px; height: 5px; background: var(--primary-bright); border-radius: 50%; margin-left: 40px; }
.client-item:hover { color: var(--primary-dark); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 32px; }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.star { font-size: 16px; color: rgba(255,255,255,0.2); }
.star.filled { color: #f59e0b; }
.testimonial-quote { font-style: italic; color: rgba(255,255,255,0.85); line-height: 1.75; margin-bottom: 20px; font-size: clamp(0.875rem, 1.4vw, 0.95rem); }
.testimonial-quote::before { content: '\201C'; font-size: 2.5rem; font-family: Georgia, serif; color: var(--primary-bright); opacity: 0.4; line-height: 0; vertical-align: -0.5em; margin-right: 4px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--primary-bright); color: var(--white); font-family: var(--font-heading); font-weight: 700; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.testimonial-name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--white); line-height: 1.2; }
.testimonial-role { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-top: 2px; }

/* ================================================================
   BLOG CARDS
   ================================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--white); border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); transition: all var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.blog-cat-pill { font-family: var(--font-heading); font-weight: 600; font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(0,175,239,0.1); color: var(--primary-bright); padding: 3px 10px; border-radius: 2px; }
.blog-date { font-size: 0.8rem; color: var(--muted-text); }
.blog-card-title { font-size: clamp(0.95rem, 1.5vw, 1.05rem); line-height: 1.35; color: #111111; margin-bottom: 10px; font-weight: 700; }
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--primary-bright); }
.blog-card-excerpt { font-size: 0.875rem; color: var(--muted-text); line-height: 1.65; flex: 1; margin-bottom: 14px; }
.blog-read-link { font-family: var(--font-heading); font-weight: 700; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--primary-bright); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); margin-top: auto; }
.blog-read-link:hover { gap: 10px; color: var(--primary-bright); }

/* ================================================================
   CTA STRIP
   ================================================================ */
.cta-strip { background: var(--primary-bright); padding: 72px 0; position: relative; overflow: hidden; }
.cta-strip::before { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(45deg, rgba(255,255,255,0.03) 0, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 50%); background-size: 20px 20px; }
.cta-strip-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-strip-text h2 { color: var(--white); font-size: clamp(1.5rem, 2.8vw, 2.2rem); margin-bottom: 8px; }
.cta-strip-text p { color: rgba(255,255,255,0.85); font-size: clamp(0.9rem, 1.5vw, 1rem); margin: 0; }
.cta-strip-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ================================================================
   PAGE HERO BANNER
   ================================================================ */
.page-hero { background: var(--primary-dark); padding: 100px 0; position: relative; overflow: hidden; background-size: cover; background-position: center; background-repeat: no-repeat; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20,35,65,0.80) 0%, rgba(20,35,65,0.65) 100%); z-index: 1; }
.page-hero-inner { position: relative; z-index: 2; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.breadcrumb a { font-size: 0.8rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--light-accent); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); font-size: 0.75rem; }
.breadcrumb-current { font-size: 0.8rem; color: var(--light-accent); }
.page-hero h1 { color: var(--white); margin-bottom: 12px; font-size: clamp(2rem, 4.5vw, 3.2rem); }
.page-hero-sub { color: rgba(255,255,255,0.78); font-size: clamp(0.92rem, 1.5vw, 1.05rem); max-width: 1000px; line-height: 1.7; margin-top: 8px; }
.pd-hero-sub { max-width: 1000px; }

/* ================================================================
   STATS BAND — Unified redesign (about, projects pages)
   ================================================================ */
.stats-band { background: var(--primary-dark); padding: 56px 0; }
.stats-band.light { background: var(--off-white); }
.stats-band.has-bg {
    position: relative;
    background-color: var(--primary-dark);
    background-size: cover;
    background-position: center;

}
.stats-band.has-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(29, 52, 103, 1);
    z-index: 0;
}
.stats-band.has-bg .container { position: relative; z-index: 1; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.stat-item { text-align: center; padding: 32px 24px; position: relative; }
.stat-icon { font-size: 2rem; color: var(--primary-bright); display: block; margin-bottom: 15px; line-height: 1; }
.stat-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.8rem, 3.5vw, 2.8rem); color: var(--white); line-height: 1; display: block; }
.stats-band .stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; margin-top: 6px; display: block; }
.stats-band.light .stat-icon { color: var(--primary-dark); }
.stats-band.light .stat-num { color: var(--primary-dark); }
.stats-band.light .stat-label { color: var(--muted-text); }

/* ================================================================
   PRODUCTS PAGE
   ================================================================ */
.products-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; }
.sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; position: sticky; top: 90px; }
.sidebar-title { padding: 18px 20px; background: var(--primary-dark); color: var(--white); font-family: var(--font-heading); font-weight: 700; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }
.sidebar-nav a { display: flex; align-items: center; gap: 10px; padding: 12px 20px; font-size: 0.9rem; color: var(--body-text); border-bottom: 1px solid var(--border); transition: all var(--transition); }
.sidebar-nav a:hover, .sidebar-nav a.active { background: var(--off-white); color: var(--primary-bright); border-left: 3px solid var(--primary-bright); }
.sidebar-nav a svg { width: 16px; height: 16px; opacity: 0.6; }
.sidebar-nav a.active svg { opacity: 1; color: var(--primary-bright); }
.category-desc { background: var(--off-white); border-left: 4px solid var(--primary-bright); padding: 16px 20px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; margin-bottom: 28px; font-size: 0.92rem; color: var(--muted-text); }

/* ================================================================
   PRODUCT DETAIL
   ================================================================ */
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 48px 56px; align-items: start; }
.pd-image { grid-column: 1; grid-row: 1; }
.pd-info  { grid-column: 2; grid-row: 1 / 3; }
.pd-specs { grid-column: 1; grid-row: 2; }
.product-main-image { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.product-main-image img { width: 100%; height: 400px; object-fit: cover; }
/* Product Detail Carousel */
.pd-carousel { position: relative; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); background: var(--off-white); }
.pd-carousel-track { display: flex; transition: transform 0.35s ease; }
.pd-carousel-slide { min-width: 100%; flex-shrink: 0; }
.pd-carousel-slide img { width: 100%; height: 400px; object-fit: cover; display: block; }
.pd-car-btn { position: absolute; top: calc(50% - 35px); transform: translateY(-50%); background: rgba(255,255,255,0.88); border: none; width: 36px; height: 36px; border-radius: 50%; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; z-index: 2; transition: background 0.2s; box-shadow: 0 2px 8px rgba(0,0,0,0.15); }
.pd-car-btn:hover { background: var(--white); }
.pd-car-prev { left: 10px; }
.pd-car-next { right: 10px; }
.pd-thumbnails { display: flex; gap: 8px; padding: 10px; background: var(--off-white); border-top: 1px solid var(--border); }
.pd-thumb { flex: 1; border-radius: 6px; overflow: hidden; cursor: pointer; opacity: 0.5; border: 2px solid transparent; transition: opacity 0.2s, border-color 0.2s; }
.pd-thumb.active { opacity: 1; border-color: var(--primary-bright); }
.pd-thumb img { width: 100%; height: 68px; object-fit: cover; display: block; }
.pd-car-dots { display: flex; justify-content: center; gap: 6px; padding: 8px 0 4px; background: var(--off-white); }
.pd-car-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); border: none; cursor: pointer; padding: 0; transition: background 0.2s; }
.pd-car-dot.active { background: var(--primary-bright); }
.spec-table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.spec-table tr:nth-child(even) { background: var(--off-white); }
.spec-table td { padding: 11px 16px; font-size: 0.9rem; border-bottom: 1px solid var(--border); }
.spec-table td:first-child { font-weight: 600; color: #111111; width: 40%; }
.applications-pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }
.app-pill { background: rgba(0,175,239,0.1); color: var(--primary-dark); font-size: 0.82rem; font-weight: 500; padding: 5px 14px; border-radius: 20px; border: 1px solid rgba(0,175,239,0.2);text-transform:capitalize; }
.quick-contact-box { background: var(--off-white); border-radius: var(--radius-md); padding: 20px; margin-top: 20px; border: 1px solid var(--border); }
.quick-contact-box h4 { font-size: 0.95rem; margin-bottom: 12px; color: #111111; }
.qc-link { display: flex; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--body-text); }
.qc-link:last-child { border-bottom: none; padding-bottom: 0; }
.qc-link svg { width: 16px; height: 16px; color: var(--primary-bright); flex-shrink: 0; }

/* Related Products — slider heading */
.rel-products-heading { font-size: 1.75rem; margin-bottom: 28px; color: #111111; display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.rel-products-count { font-size: 0.85rem; font-weight: 500; color: var(--muted-text); }
/* rel-slide-card — width set by JS, same as cat-product-card in slider */
.rel-slide-card { flex-shrink: 0; }

/* ================================================================
   PROJECTS PAGE
   ================================================================ */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 36px; }
.filter-btn { font-family: var(--font-heading); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 18px; border-radius: var(--radius-sm); border: 2px solid var(--border); background: var(--white); color: var(--body-text); cursor: pointer; transition: all var(--transition); }
.filter-btn:hover, .filter-btn.active { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

/* ================================================================
   PRODUCTS PAGE — Category Filter Bar (redesigned)
================================================================ */
.prod-filter-wrap {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    margin-bottom: 40px;
}
.prod-filter-label {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-text);
    margin-bottom: 14px;
    display: block;
}
.prod-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.prod-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 9px 18px;
    border-radius: 50px;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: #111111;
    cursor: pointer;
    text-decoration: none;
    transition: all var(--transition);
    box-shadow: var(--shadow-sm);
}
.prod-filter-btn svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity var(--transition);
}
.prod-filter-btn:hover {
    border-color: var(--primary-bright);
    color: var(--primary-bright);
    background: rgba(0,175,239,0.05);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,175,239,0.15);
}
.prod-filter-btn:hover svg { opacity: 1; }
.prod-filter-btn.active {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(29,52,103,0.25);
}
.prod-filter-btn.active svg { opacity: 1; color: var(--primary-bright); }
@media (max-width: 700px) {
    .prod-filter-wrap { padding: 16px; }
    .prod-filter-btn { font-size: 0.75rem; padding: 8px 14px; }
}
.prod-cat-heading {
    font-size: 1.5rem;
    color: #111111;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border);
}
.clients-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.client-pill { background: var(--off-white); border: 1px solid var(--border); color: var(--body-text); font-family: var(--font-heading); font-weight: 600; font-size: 0.82rem; padding: 6px 16px; border-radius: 20px; letter-spacing: 0.03em; }

/* ================================================================
   CLIENTS MARQUEE (Home Page)
   ================================================================ */
.clients-marquee-section { padding-bottom: 60px; }
.clients-marquee-outer {
    position: relative;
    overflow: hidden;
    padding: 12px 0;
}
/* Edge fade */
.clients-marquee-outer::before,
.clients-marquee-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 140px;
    z-index: 2;
    pointer-events: none;
}
.clients-marquee-outer::before { left: 0;  background: linear-gradient(to right, #F4F8FC 20%, transparent); }
.clients-marquee-outer::after  { right: 0; background: linear-gradient(to left,  #F4F8FC 20%, transparent); }
.clients-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: clients-marquee 50s linear infinite;
}
.clients-marquee-outer:hover .clients-marquee-track { animation-play-state: paused; }
@keyframes clients-marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.clients-marquee-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 20px;
    flex-shrink: 0;
    width: 180px;
    height: 130px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.clients-marquee-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); transform: translateY(-3px); }
.clients-marquee-card img {
    max-height: 125px;
    max-width: 148px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ================================================================
   TESTIMONIALS SLIDER (Home Page)
   ================================================================ */
.testi-section { background: var(--white); }
.testi-slider-wrap { position: relative; display: flex; align-items: center; gap: 12px; }
.testi-viewport { overflow: hidden; flex: 1; border-radius: var(--radius-lg); }
.testi-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.testi-card {
    flex: 0 0 100%;
    width: 100%;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 44px;
    position: relative;
    box-sizing: border-box;
}
.testi-open-quote {
    font-family: Georgia, serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--primary-bright);
    opacity: 0.18;
    position: absolute;
    top: 16px;
    left: 32px;
    pointer-events: none;
    font-weight: 700;
}
.testi-quote-text {
    font-size: clamp(0.9rem, 1.5vw, 1.02rem);
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    font-style: italic;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 24px; }
.testi-stars span { font-size: 1.05rem; color: #f59e0b; }
.testi-author-row { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--border); padding-top: 20px; }
.testi-avatar {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary-dark);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.testi-author-name { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--heading-text); line-height: 1.2; }
.testi-author-role { font-size: 0.82rem; color: var(--muted-text); margin-top: 3px;display:none; }
.testi-arrow {
    width: 46px; height: 46px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    color: var(--primary-dark);
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: all var(--transition);
    line-height: 1;
}
.testi-arrow:hover { background: var(--primary-dark); color: var(--white); border-color: var(--primary-dark); }
.testi-dots { display: flex; justify-content: center; gap: 8px; margin-top: 28px; }
.testi-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.testi-dot.active { background: var(--primary-dark); width: 24px; border-radius: 4px; }

.color-light{color: var(--white);}
/* ================================================================
   FORMS
   ================================================================ */
.bulk-layout { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.05em; text-transform: uppercase; color: #374151; margin-bottom: 8px; }
.form-label .req { color: var(--error); }
.form-control { width: 100%; padding: 11px 15px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.9rem; color: var(--body-text); background: var(--white); transition: border-color var(--transition), box-shadow var(--transition); }
.form-control:focus { outline: none; border-color: var(--primary-bright); box-shadow: 0 0 0 3px rgba(0,175,239,0.12); }
.form-control::placeholder { color: #a0b4c4; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235A7A96' stroke-width='1.5' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; appearance: none; padding-right: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-error { color: var(--error); font-size: 0.82rem; margin-top: 6px; display: block; }
.alert { padding: 14px 18px; border-radius: var(--radius-sm); font-size: 0.92rem; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #166534; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #991b1b; }
.form-upload { border: 2px dashed var(--border); border-radius: var(--radius-sm); padding: 24px; text-align: center; transition: border-color var(--transition); cursor: pointer; background: var(--off-white); }
.form-upload:hover { border-color: var(--primary-bright); }
.form-upload input[type="file"] { display: none; }
.form-upload-label { font-size: 0.9rem; color: var(--muted-text); cursor: pointer; }
.form-upload-label span { color: var(--primary-bright); font-weight: 600; }

/* Info panel */
.info-panel { background: var(--primary-dark); border-radius: var(--radius-lg); padding: 40px; color: var(--white); height: 100%; }
.info-panel h3 { color: var(--white); margin-bottom: 24px; }
.info-list { display: flex; flex-direction: column; gap: 16px; }
.info-item { display: flex; align-items: flex-start; gap: 14px; }
.info-item-icon { width: 36px; height: 36px; background: rgba(255,255,255,0.08); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--light-accent); flex-shrink: 0; }
.info-item-icon svg { width: 18px; height: 18px; }
.info-item-label { font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color:var(--primary-bright); margin-bottom: 3px; }
.info-item-value { font-size: 0.95rem; color: rgba(255,255,255,0.9); line-height: 1.4; }
.info-item-value a { color:white; }
.divider-line { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 24px 0; }

/* ================================================================
   BLOG DETAIL
   ================================================================ */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.blog-detail-image { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 32px; }
.blog-detail-image img { width: 100%; height: 400px; object-fit: cover; }
.blog-content h2 { font-size: 1.6rem; color: #111111; margin: 32px 0 14px; }
.blog-content h3 { font-size: 1.3rem; color: #111111; margin: 24px 0 12px; }
.blog-content p { color: var(--body-text); line-height: 1.8; margin-bottom: 18px; }
.blog-content ul, .blog-content ol { margin: 16px 0 18px 20px; }
.blog-content li { margin-bottom: 8px; line-height: 1.7; color: var(--body-text); }
.blog-share { display: flex; align-items: center; gap: 12px; margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.blog-share-label { font-family: var(--font-heading); font-weight: 700; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-text); }
.share-btn { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-weight: 600; font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 8px 14px; border-radius: var(--radius-sm); transition: all var(--transition); }
.share-linkedin { background: #0A66C2; color: var(--white); }
.share-facebook { background: #1877F2; color: var(--white); }
.share-whatsapp { background: #25D366; color: var(--white); }

/* Sidebar */
.blog-sidebar .sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px; position: sticky; top: 90px; }
.widget-title { font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary-dark); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.recent-post-item { display: flex; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.recent-post-item:last-child { border-bottom: none; padding-bottom: 0; }
.recent-post-img { width: 56px; height: 56px; border-radius: var(--radius-sm); object-fit: cover; flex-shrink: 0; }
.recent-post-title { font-size: 0.85rem; font-weight: 600; color: var(--body-text); line-height: 1.35; display: block; margin-bottom: 4px; }
.recent-post-title:hover { color: var(--primary-bright); }
.recent-post-date { font-size: 0.78rem; color: var(--muted-text); }

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.contact-layout { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.map-embed { margin-top: 32px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { width: 100%; height: 400px; display: block; }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.vision-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vision-card { background: var(--white); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; border: 1px solid var(--border); transition: all var(--transition); }
.vision-card:hover { border-color: var(--primary-bright); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.vision-icon { width: 60px; height: 60px; border-radius: 50%; background: rgba(0,175,239,0.1); color: var(--primary-bright); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.vision-icon svg { width: 28px; height: 28px; }
.vision-card h3 { font-size: 1.15rem; margin-bottom: 10px; color: #111111; }
.vision-card p { font-size: 0.88rem; color: var(--muted-text); line-height: 1.65; margin: 0; }
.differentiators-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.diff-card { background: var(--off-white); border-radius: var(--radius-md); padding: 24px; border-left: 4px solid var(--primary-bright); }
.diff-card svg { width: 28px; height: 28px; color: var(--primary-bright); margin-bottom: 12px; }
.diff-card h4 { font-size: 1rem; margin-bottom: 6px; }
.diff-card p { font-size: 0.85rem; color: var(--muted-text); margin: 0; }

/* ================================================================
   CAREER PAGE
   ================================================================ */
.perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.perk-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 28px 20px; text-align: center; transition: all var(--transition); }
.perk-card:hover { box-shadow: var(--shadow-md); }
.perk-icon { width: 52px; height: 52px; border-radius: var(--radius-sm); background: rgba(0,175,239,0.1); color: var(--primary-bright); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.perk-icon svg { width: 24px; height: 24px; }
.perk-card h4 { font-size: 1rem; margin-bottom: 6px; }
.perk-card p { font-size: 0.84rem; color: var(--muted-text); margin: 0; }
.positions-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 48px; }
.position-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px 28px; display: flex; align-items: center; justify-content: space-between; gap: 20px; transition: all var(--transition); flex-wrap: wrap; }
.position-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary-bright); }
.position-title { font-family: var(--font-heading); font-weight: 700; font-size: 1.15rem; color: #111111; margin-bottom: 8px; }
.position-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.position-tag { font-family: var(--font-heading); font-weight: 600; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; background: var(--off-white); color: var(--muted-text); padding: 3px 10px; border-radius: 2px; }

/* ================================================================
   PRIVACY PAGE
   ================================================================ */
.privacy-content { max-width: 800px; }
.privacy-content h2 { font-size: 1.4rem; margin-top: 36px; margin-bottom: 12px; color: #111111; }
.privacy-content p, .privacy-content li { font-size: 0.95rem; color: var(--body-text); line-height: 1.8; }
.privacy-content ul { margin: 12px 0 16px 20px; }
.privacy-content li { margin-bottom: 6px; list-style: disc; }

/* ================================================================
   404 PAGE
   ================================================================ */
.error-page { min-height: 70vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px 24px; }
.error-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(6rem, 15vw, 12rem); color: var(--border); line-height: 1; margin-bottom: 0; }
.error-title { font-size: 2rem; color: #111111; margin-bottom: 12px; }
.error-desc { color: var(--muted-text); margin-bottom: 32px; }
.error-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ================================================================
   PAGINATION
   ================================================================ */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.pag-btn { font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem; padding: 9px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); color: var(--body-text); background: var(--white); transition: all var(--transition); }
.pag-btn:hover { border-color: var(--primary-bright); color: var(--primary-bright); }
.pag-btn.active { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================================================================
   WHATSAPP FLOAT
   ================================================================ */
.whatsapp-float { position: fixed; bottom: 28px; right: 15px; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4); z-index: 999; transition: all var(--transition); }
.whatsapp-float:hover { background: #1da851; color: var(--white); transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }


/* ================================================================
   SITE FOOTER
   ================================================================ */
.site-footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 70px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-col {}
.footer-brand {}
.footer-logo { display: inline-block; margin-bottom: 10px; }
.footer-logo img { max-width: 160px; height: auto;filter: brightness(0) invert(1); }
.footer-tagline { font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem; color: var(--white); margin-bottom: 10px; letter-spacing: 0.03em; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,1); line-height: 1.7; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.social-icon { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all var(--transition);background: var(--primary-bright); border-color: var(--primary-bright); color: var(--white);  }
.social-icon svg { width: 20px; height: 20px; }
.social-icon:hover { background: var(--primary-bright); border-color: var(--primary-bright); color: var(--white); }
.footer-heading { font-family: var(--font-heading); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.12em; text-transform: uppercase; color: white; margin-bottom: 25px; }
.footer-links { display: flex; flex-direction: column; gap: 5px; }
.footer-links li a { font-size: 0.875rem; color: rgba(255,255,255,1); transition: color var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.footer-links li a:hover { color: var(--primary-bright); }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,1); }
.footer-contact-list li svg { flex-shrink: 0; color: var(--primary-bright); margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,1); }
.footer-contact-list a:hover { color: var(--primary-bright); }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: center; ; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links a:hover { color: var(--primary-bright); }

/* ================================================================
   CAT PRODUCT CARDS — Home Product Range (image-based)
   ================================================================ */
.cat-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}
.cat-product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    cursor: pointer;
}
.cat-product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.cat-product-visual {
    position: relative;
    overflow: hidden;
    height: 285px;
    background: var(--off-white);
    flex-shrink: 0;
}
.cat-product-visual img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    transition: transform 0.4s ease;
    display: block;
}
.cat-product-card:hover .cat-product-visual img { transform: scale(1.06); }
.cat-product-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary-bright);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 2px;
    z-index: 2;
}
.cat-product-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.cat-product-body h4 { font-size: 1rem; margin-bottom: 8px; color: #111111; }
.cat-product-body p { font-size: 0.875rem; color: var(--muted-text); line-height: 1.6; margin-bottom: 14px; flex: 1 1 auto; }
.cat-product-actions { display: flex; gap: 10px; margin-top: auto; }
.cat-product-actions .btn { flex: 1; justify-content: center; font-size: 0.78rem; padding: 9px 10px; white-space: nowrap; letter-spacing: 0.03em; }

/* Responsive cat-product-grid */
@media (max-width: 1100px) { .cat-product-grid { grid-template-columns: repeat(3, 1fr); } }

/* ================================================================
   STATS BAND HOMEPAGE — Redesigned with icons & counter
   ================================================================ */
.stats-band-home {
    background: var(--primary-dark);
    padding: 0;
    border-bottom: 3px solid var(--primary-bright);
}
.stats-band-home .stats-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.stats-band-home .stat-item-home {
    text-align: center;
    padding: 36px 20px;
    border-right: 1px solid rgba(255,255,255,0.08);
    transition: background var(--transition);
    position: relative;
}
.stats-band-home .stat-item-home:last-child { border-right: none; }
.stats-band-home .stat-item-home:hover { background: rgba(0,175,239,0.06); }
.stats-band-home .stat-icon-home {
    font-size: 1.9rem;
    color: var(--primary-bright);
    display: block;
    margin-bottom: 10px;
    line-height: 1;
    opacity: 0.9;
}
.stats-band-home .stat-num-home {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    color: var(--white);
    line-height: 1;
    display: block;
    margin-bottom: 6px;
}
.stats-band-home .stat-label-home {
    font-size: 0.73rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    display: block;
}

/* ================================================================
   PRODUCTION STATS SECTION (Homepage — new section)
   ================================================================ */
.prod-stats-section { background: var(--primary-dark); border-top: 3px solid var(--primary-bright); padding: 0; }
.prod-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.prod-stat-item { text-align: center; padding: 40px 20px; border-right: 1px solid rgba(255,255,255,0.08); transition: background var(--transition); }
.prod-stat-item:last-child { border-right: none; }
.prod-stat-item:hover { background: rgba(0,175,239,0.06); }
.prod-stat-icon { font-size: 2rem; color: var(--primary-bright); display: block; margin-bottom: 20px; opacity: 1; }
.prod-stat-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.9rem, 3vw, 2.6rem); color: var(--white); display: block; line-height: 1; margin-bottom: 6px; }
.prod-stat-label { font-size: 0.73rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; color: rgba(255,255,255,0.55); display: block; }

/* ================================================================
   COMPANY TIMELINE / MILESTONES (About page)
   ================================================================ */
.milestone-section { padding: 72px 0; }
.milestone-wrap { position: relative; padding: 12px 0; }
.milestone-wrap::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, transparent, var(--primary-bright) 6%, var(--primary-bright) 94%, transparent); transform: translateX(-50%); }
.milestone-item { display: flex; align-items: flex-start; margin-bottom: 44px; position: relative; }
.milestone-item:last-child { margin-bottom: 0; }
.milestone-item.ml-left { flex-direction: row; }
.milestone-item.ml-right { flex-direction: row; }
.milestone-content { width: calc(50% - 54px); background: var(--white); border-radius: var(--radius-md); padding: 22px 24px; box-shadow: 0 2px 18px rgba(20,35,65,0.09); transition: background 0.4s ease, border-color 0.4s ease; }
.milestone-item.ml-left .milestone-content { border-left: 4px solid var(--primary-bright); }
.milestone-item.ml-right .milestone-content { border-left: 4px solid var(--primary-bright); }
.milestone-spacer { width: 108px; flex-shrink: 0; display: flex; justify-content: center; padding-top: 12px; }
.milestone-badge { width: 52px; height: 52px; border-radius: 50%; background: var(--primary-dark); color: var(--white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 700; font-size: 0.62rem; text-align: center; line-height: 1.25; flex-shrink: 0; border: 3px solid var(--primary-bright); padding: 4px; transition: background 0.4s ease, border-color 0.4s ease, transform 0.3s ease; }
.milestone-badge.active { background: var(--primary-bright) !important; border-color: var(--white) !important; transform: scale(1.14); }
.milestone-year { font-size: 1rem; font-weight: 800; color: var(--primary-bright); display: block; margin-bottom: 5px; font-family: var(--font-heading); transition: color 0.4s ease; }
.milestone-title { font-size: 0.95rem; font-weight: 700; color: var(--heading-text); margin-bottom: 6px; transition: color 0.4s ease; }
.milestone-desc { font-size: 0.82rem; color: var(--muted-text); line-height: 1.65; margin: 0; transition: color 0.4s ease; }
/* .milestone-today default same as other boxes — no special override */
.milestone-item-active .milestone-content { background: var(--primary-dark) !important; border-left-color: #00afef !important; }
.milestone-item-active .milestone-year { color: var(--primary-bright) !important; }
.milestone-item-active .milestone-title { color: var(--white) !important; }
.milestone-item-active .milestone-desc { color: rgba(255,255,255,0.7) !important; }

/* ================================================================
   FRP vs RCC vs CI/GI COMPARISON TABLE (FRP category page)
   ================================================================ */
.frp-comp-wrap { overflow-x: auto; border-radius: var(--radius-md); border: 1px solid var(--border); }
.frp-comp-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; min-width: 560px; }
.frp-comp-table th { padding: 14px 18px; font-weight: 700; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.07em; text-align: left; border-bottom: 2px solid var(--border); }
.frp-comp-table th.th-frp { background: var(--primary-dark); color: var(--white); text-align: center; }
.frp-comp-table th.th-param { color: black; width: 30%; }
.frp-comp-table th.th-other { color: black; text-align: center; }
.frp-comp-table tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.frp-comp-table tbody tr:last-child { border-bottom: none; }
.frp-comp-table tbody tr:hover { background: var(--off-white); }
.frp-comp-table td { padding: 11px 18px; vertical-align: middle; }
.frp-comp-table td.td-param { font-weight: 600; color: var(--heading-text); font-size: 0.83rem; }
.frp-comp-table td.td-frp { background: rgba(0,83,134,0.06); color: var(--primary-dark); font-weight: 700; text-align: center; border-left: 1px solid rgba(0,83,134,0.12); border-right: 1px solid rgba(0,83,134,0.12); }
.frp-comp-table td.td-other { text-align: center; color: var(--muted-text); }
.frp-v-high { color: #00afef; font-weight: 700; }
.frp-v-high::before { content: '✓ '; }
.frp-v-low { color: #607d99; }
.frp-v-nil { color: #00afef; font-weight: 700; }
.frp-v-mod { color:#607d99; }

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1100px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-layout { grid-template-columns: 1fr; }
    .blog-sidebar .sidebar-widget { position: static; }
}

@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .section { padding: 60px 0; }
    .about-teaser-grid { grid-template-columns: 1fr; }
    .about-image-wrap img { height: 320px; }
    .products-layout { grid-template-columns: 1fr; }
    .sidebar { position: static; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .vision-grid { grid-template-columns: 1fr; }
    .differentiators-grid { grid-template-columns: repeat(2, 1fr); }
    .perks-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-stat-item:nth-child(2) { border-right: none; }
    .prod-stat-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
    .prod-stat-item:nth-last-child(-n+2) { border-bottom: none; }
    /* Timeline mobile */
    .milestone-wrap::before { left: 26px; transform: none; }
    .milestone-item.ml-left, .milestone-item.ml-right { flex-direction: row; padding-left: 0; }
    .milestone-item.ml-left { flex-direction: row-reverse; }
    .milestone-item.ml-right > div:first-child, .milestone-item.ml-left > div:last-child { display: none; }
    .milestone-spacer { width: 64px; }
    .milestone-badge { width: 44px; height: 44px; font-size: 0.58rem; }
    .milestone-content { width: calc(100% - 64px); }
    .milestone-item.ml-left .milestone-content, .milestone-item.ml-right .milestone-content { border-right: none; border-left: 4px solid var(--primary-bright); }
    /* Clients marquee mobile */
    .clients-marquee-outer::before,
    .clients-marquee-outer::after { width: 60px; }
    .clients-marquee-card { width: 150px; height: 105px; padding: 16px 20px; border-radius: 10px; }
    .clients-marquee-card img { max-height: 100px; max-width: 118px; }
    /* Testimonials mobile */
    .testi-card { padding: 28px 22px; }
    .testi-open-quote { font-size: 4rem; left: 18px; }
    .testi-arrow { width: 38px; height: 38px; font-size: 1.4rem; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .topbar-right { display: flex; }
    .form-row { grid-template-columns: 1fr; }
    .benefits-bar-inner { flex-wrap: wrap; }
    .benefit-item { min-width: 160px; flex: 1 1 48%; }
}

/* ================================================================
   MOBILE NAV OVERLAY
   ================================================================ */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20,35,65,0.55);
    z-index: 998;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}
.nav-overlay.open { display: block; }

/* Mobile nav inner header bar */
.mob-nav-head {
    display: none;
}

/* Mobile Products row wrapper */
.nav-link-row { display: flex; align-items: stretch; width: 100%; }
.nav-link-row > .nav-link { flex: 1; }
.mob-drop-btn {
    display: none;
    background: none;
    border: none;
    border-left: 1px solid var(--border);
    cursor: pointer;
    padding: 0 16px;
    color: var(--muted-text);
    align-items: center;
    justify-content: center;
    transition: color var(--transition), background var(--transition);
    flex-shrink: 0;
}
.mob-drop-btn svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.has-dropdown.mob-open .mob-drop-btn svg { transform: rotate(180deg); color: var(--primary-bright); }

@media (max-width: 700px) {
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    /* ---- MOBILE NAV PANEL ---- */
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(85vw, 300px);
        background: var(--white);
        z-index: 1001;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 0;
        overflow-y: auto;
        box-shadow: none;
    }
    .main-nav.open { display: flex; box-shadow: -8px 0 40px rgba(20,35,65,0.25); }
    .main-nav { margin-left: 0; }

    /* Mobile nav head */
    .mob-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        background: var(--primary-dark);
        flex-shrink: 0;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .mob-nav-head-logo { max-width: 110px; height: auto; }
    .mob-nav-close {
        width: 34px; height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,0.14);
        border: none;
        color: var(--white);
        cursor: pointer;
        display: flex; align-items: center; justify-content: center;
        font-size: 20px;
        line-height: 1;
        flex-shrink: 0;
        transition: background var(--transition);
    }
    .mob-nav-close:hover { background: rgba(255,255,255,0.26); }

    /* ---- MOBILE NAV LIST — Clean, borderless ---- */
    .nav-list { flex-direction: column; width: 100%; gap: 0; padding: 10px 10px; flex: 1; }
    .nav-list > li { border-bottom: none; }
    .nav-link { width: 100%; padding: 12px 14px; font-size: 0.9rem; font-weight: 500; border-radius: 8px; border-bottom: none; justify-content: flex-start; color: var(--heading-text); }
    .nav-link:hover { color: var(--primary-bright); background: rgba(0,175,239,0.07); }
    .nav-link.active { background: rgba(0,175,239,0.1) !important; color: var(--primary-dark) !important; font-weight: 700; }
.hero-tag{font-size: 0.8rem;}
.hero { position: relative; height: 100vh; min-height: 500px; max-height: 600px; overflow: hidden; background: var(--primary-dark); }

    /* Products dropdown toggle button */
    .mob-drop-btn { display: flex; padding: 12px 12px; border-left: none; border-radius: 0 8px 8px 0; }
    .mob-drop-btn:hover { background: rgba(0,175,239,0.07); }

    /* Products link row */
    .nav-link-row { display: flex; align-items: stretch; border-radius: 8px; }
    .nav-link-row > .nav-link { flex: 1; }
    .nav-link-row > .nav-link svg { display: none; }

    /* Dropdown — clean accordion, no borders */
    .dropdown {
        display: none;
        position: static;
        top: auto; left: auto;
        box-shadow: none;
        border: none;
        border-radius: 8px;
        padding: 2px 0 6px 10px;
        background: none;
        min-width: 100%;
        width: 100%;
    }
    .has-dropdown:hover .dropdown { display: none; }
    .has-dropdown.mob-open .dropdown { display: block; }
    .dropdown li a { padding: 10px 14px 10px 24px; border-bottom: none; border-radius: 7px; font-size: 0.84rem; color: var(--body-text); }
    .dropdown li a:hover { background: rgba(0,175,239,0.07); color: var(--primary-bright); }
    .dropdown li a.active { color: var(--primary-bright); font-weight: 600; background: rgba(0,175,239,0.07); }
    .dropdown li:last-child a { border-bottom: none; }

    /* Sub-dropdown mobile accordion — clean */
    .mob-sub-btn { display: flex; padding: 10px 10px; border-left: none; border-radius: 0 7px 7px 0; }
    .mob-sub-btn:hover { background: rgba(0,175,239,0.07); }
    .dropdown .sub-link-row { display: flex; align-items: stretch; border-radius: 7px; }
    .dropdown .sub-link-row > a { flex: 1; padding: 10px 14px 10px 24px; border-bottom: none; }
    .dropdown .sub-link-row > a::after { display: none; }
    .dropdown .has-sub:hover .sub-dropdown { display: none; }
    .dropdown .has-sub.mob-sub-open .sub-dropdown { display: block; }
    .sub-dropdown { position: static; left: auto; top: auto; box-shadow: none; border: none; border-radius: 7px; padding: 2px 0 4px 10px; background: none; min-width: 100%; width: 100%; }
    .sub-dropdown li a { padding: 9px 14px 9px 30px; border-bottom: none; border-radius: 6px; font-size: 0.81rem; white-space: normal; color: var(--muted-text); }
    .sub-dropdown li a:hover { background: rgba(0,175,239,0.07); color: var(--primary-bright); }
    .sub-dropdown li:last-child a { border-bottom: none; }
    .has-sub.mob-sub-open .mob-sub-btn svg { transform: rotate(180deg); color: var(--primary-bright); }
    .dropdown li.has-sub { border-bottom: none; }
    .dropdown .sub-link-row > a { border-bottom: none; }

    .nav-toggle { display: flex; z-index: 1000; }

    /* Stats grids on mobile */
    .stats-band-home .stats-grid-home { grid-template-columns: repeat(1, 1fr); }
    .stats-band-home .stat-item-home { border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
    .stats-band-home .stat-item-home:nth-child(even) { border-right: none; }
    .stats-band-home .stat-item-home:nth-last-child(-n+2) { border-bottom: none; }

    .stats-grid { grid-template-columns: repeat(1, 1fr); }
    .facility-img { height: auto; }

    .cat-product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid, .projects-grid, .blog-grid { grid-template-columns: 1fr; }
    /* FIX: Topbar — center phone/email + social on mobile */
    .topbar-inner { flex-direction: column; align-items: center; gap: 8px; padding: 4px 0; }
    .topbar-left { justify-content: center; flex-wrap: wrap; gap: 14px; }
    .topbar-right { justify-content: center; }

    /* FIX: Hero slider arrows — move to bottom so they don't overlap text */
    .hero-controls { top: auto; bottom: 52px; transform: none; padding: 0 16px; }
    .hero-btn { width: 38px; height: 38px; font-size: 16px; }

    /* FIX: Hero CTA buttons — center text inside */
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { justify-content: center; min-width: 220px; }

    /* About image badge — smaller, bottom-left corner on mobile */
    .about-image-badge { bottom: 0px; left: 0px; padding: 10px 14px; border-radius: 8px; }
    .about-badge-num { font-size: 1.35rem; }
    .about-badge-label { font-size: 0.68rem; }

    /* FIX 1: Product Range image — contain on mobile so it doesn't stretch */
    .cat-product-visual { height: auto; }
    .cat-product-visual img { object-fit: contain; background: var(--off-white); }

    /* Related Products — image contain on mobile so it doesn't stretch */
    .product-card-image { height: 200px; }
    .product-card-image img { object-fit: cover; }

    /* Single product main image — auto height on mobile */
    .product-main-image img { height: auto; object-fit: contain; }
    .pd-carousel-slide img { height: 280px; max-height: 280px; width: 100%; object-fit: contain; display: block; }

    /* FIX 2: Certifications — 1 column on mobile */
    .cert-grid { grid-template-columns: 1fr; }

    /* FIX 3: About — diff-cards 1 column on mobile */
    .differentiators-grid { grid-template-columns: 1fr; }

    /* FIX 4: Product detail — reorder image → info → specs on mobile */
    .product-detail-grid { display: flex; flex-direction: column; gap: 28px; }
    .pd-image { order: 1; }
    .pd-info  { order: 2; }
    .pd-specs { order: 3; }

    /* FIX 5: Career — perk-cards 1 column on mobile */
    .perks-grid { grid-template-columns: 1fr; }

    /* FIX 6: Get Quote — stack form + info panel on mobile */
    .bulk-layout { grid-template-columns: 1fr !important; }
    .info-panel { order: 2; }
}
/* END mobile media query */

/* ================================================================
   PRODUCT RANGE SLIDER (home page - 3 at a time)
   Buttons hang outside the viewport edges
================================================================ */
.cat-slider-wrap {
    position: relative;
    margin: 0 22px; /* room for outside buttons */
}
.cat-slider-viewport { overflow: hidden; width: 100%; }
.cat-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
    will-change: transform;
}
.cat-slider-track .cat-product-card {
    flex-shrink: 0;
    /* width is set in px by JS */
}
.cat-slider-btn {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--primary-dark); color: var(--white);
    border: none; cursor: pointer; font-size: 0.88rem;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 3px 10px rgba(50,70,112,0.3);
}
.cat-slider-btn:not(:disabled):hover {
    background: var(--primary-bright);
    box-shadow: 0 4px 14px rgba(0,175,239,0.4);
}
.cat-slider-btn:disabled {
    background: #c8cdd8;
    color: #8a90a0;
    cursor: not-allowed;
    box-shadow: none;
}
/* Buttons hang just outside the left/right edges */
.cat-slider-prev { left: -18px; }
.cat-slider-next { right: -18px; }

/* ================================================================
   SCROLL TO TOP BUTTON
================================================================ */
.scroll-top-btn {
    position: fixed;
    bottom: 96px; right: 20px;
    width: 46px; height: 46px;
    border-radius: 50%;
    background: #00afef; color: var(--white);
    border: none; cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 14px rgba(50,70,112,0.35);
    z-index: 999;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.2s;
}
.scroll-top-btn.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top-btn:hover { background: var(--primary-bright); }

/* ================================================================
   FOOTER CHEVRON ICONS
================================================================ */
.footer-links li a i.fa-chevron-right {
    font-size: 0.6rem; margin-right: 7px;
    color: var(--primary-bright);
    vertical-align: middle; position: relative; top: -1px;
}

/* ================================================================
   RESPONSIVE - SLIDER
================================================================ */
@media (max-width: 600px) {
    .cat-slider-wrap { margin: 0 18px; }
    .cat-slider-btn { width: 30px; height: 30px; font-size: 0.78rem; }
    .cat-slider-prev { left: -15px; }
    .cat-slider-next { right: -15px; }
    .scroll-top-btn { bottom: 88px; right: 18px; width: 42px; height: 42px; }
}
/* END slider responsive */

/* ================================================================
   MANUFACTURING PROCESS (about page)
================================================================ */
.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-top: 48px;
}
.process-step {
    flex: 1;
    min-width: 130px;
    max-width: 220px;
    text-align: center;
    padding: 0 8px;
}
.process-step-num {
    width: 56px; height: 56px; border-radius: 50%;
    background: var(--primary-bright); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 1.25rem; font-weight: 700;
    margin: 0 auto 14px;
    box-shadow: 0 4px 14px rgba(0,175,239,0.35);
}
.process-step-title {
    font-family: var(--font-heading);
    font-weight: 700; font-size: 0.92rem;
    color: black; margin-bottom: 6px;
}
.process-step-desc {
    font-size: 0.8rem; color: var(--muted-text); line-height: 1.5;
}
.process-arrow {
    display: flex; align-items: center;
    padding-top: 28px; color: var(--primary-bright);
    font-size: 1.5rem; flex-shrink: 0; align-self: flex-start;
}

/* ================================================================
   QUALITY ASSURANCE (about page)
================================================================ */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.qa-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 24px;
    border: 1px solid var(--border);
    display: flex; gap: 18px; align-items: flex-start;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition);
}
.qa-card:hover { box-shadow: var(--shadow-md); }
.qa-card-icon {
    width: 48px; height: 48px; flex-shrink: 0;
    border-radius: 12px;
    background: rgba(0,175,239,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-bright);
}
.qa-card-icon svg { width: 24px; height: 24px; }
.qa-card h4 { font-size: 1rem; color: black; margin-bottom: 6px; }
.qa-card p { font-size: 0.85rem; color: var(--muted-text); line-height: 1.55; margin: 0; }

/* ================================================================
   EN 124 LOAD CLASSES (about page)
================================================================ */
.load-class-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 40px;
}
.load-class-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 22px 12px 18px;
    text-align: center;
    transition: all var(--transition);
    cursor: default;
}
.load-class-card:hover {
    border-color: var(--primary-bright);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.load-class-card.featured { border-color: var(--primary-bright); background: rgba(0,175,239,0.04); }
.load-class-badge {
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--primary-dark); color: #fff;
    font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
    margin-bottom: 10px;
}
.load-class-card.featured .load-class-badge { background: var(--primary-bright); }
.load-class-ton { font-size: 1rem; font-weight: 700; color: black; margin-bottom: 6px; }
.load-class-app { font-size: 0.75rem; color: var(--muted-text); line-height: 1.45; }

/* ================================================================
   TECHNICAL STRENGTH / MATERIALS (about page)
================================================================ */
.tech-strength-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.tech-item {
    border-radius: var(--radius-md);
    padding: 28px 22px;
    border-left: 4px solid var(--primary-bright);
    background: var(--off-white);
    transition: box-shadow var(--transition);
}
.tech-item:hover { box-shadow: var(--shadow-md); }
.tech-item-icon {
    width: 46px; height: 46px; border-radius: 50%;
    background: rgba(0,175,239,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px; color: var(--primary-bright);
}
.tech-item-icon svg { width: 22px; height: 22px; }
.tech-item h4 { font-size: 0.98rem; color: black; margin-bottom: 6px; }
.tech-item p { font-size: 0.83rem; color: var(--muted-text); line-height: 1.55; margin: 0; }

/* ================================================================
   FACTORY & DISPATCH STATS (about page)
================================================================ */
.dispatch-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
.dispatch-item { text-align: center; }
.dispatch-num {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 700; color: var(--primary-bright); line-height: 1;
}
.dispatch-label {
    font-size: 0.95rem; color: rgba(255,255,255,0.85);
    margin-top: 8px; font-weight: 600;
}
.dispatch-sub {
    font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-top: 4px;
}

/* ================================================================
   FEATURED CLIENTS (projects page)
================================================================ */
.featured-clients-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 36px;
}
.featured-client-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.featured-client-card:hover {
    border-color: var(--primary-bright);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.featured-client-initial {
    width: 48px; height: 48px; border-radius: 12px;
    background: var(--primary-dark); color: #fff;
    font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
}
.featured-client-name { font-size: 0.82rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 3px; }
.featured-client-type { font-size: 0.72rem; color: var(--muted-text); }

/* ================================================================
   RESPONSIVE – NEW SECTIONS
================================================================ */
@media (max-width: 1024px) {
    .load-class-grid { grid-template-columns: repeat(3, 1fr); }
    .featured-clients-grid { grid-template-columns: repeat(3, 1fr); }
}
/* ===================== LOAD CLASSES SECTION (Homepage) ===================== */
.load-class-header { text-align: center; margin-bottom: 40px; }
.load-class-subtitle { color: rgba(255,255,255,0.75); margin: 16px auto 0; max-width: 680px; line-height: 1.75; display: block; }
.load-class-img-wrap { text-align: center; }
.load-class-img { max-width: 100%; border-radius: 12px; box-shadow: 0 8px 40px rgba(0,0,0,0.45); background:white;padding:40px}

@media (max-width: 1440px) {
    .page-hero { padding: 80px 0; }
}
@media (max-width: 900px) {
    .tech-strength-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { min-width: 110px; }
    .process-arrow { display: none; }
}
@media (max-width: 700px) {
    .load-class-grid { grid-template-columns: repeat(2, 1fr); }
    .tech-strength-grid { grid-template-columns: 1fr; }
    .qa-grid { grid-template-columns: 1fr; }
    .dispatch-grid { grid-template-columns: 1fr; gap: 20px; }
    .featured-clients-grid { grid-template-columns: repeat(2, 1fr); }
    .process-step { min-width: 45%; max-width: 50%; }
}

/* ===================== STATS BAND HEADING ===================== */
.stats-band-header { text-align: center; margin-bottom: 36px; padding-top: 4px; }
.stats-band-title { color: var(--white); font-size: 1.75rem; font-weight: 700; margin-top: 10px; line-height: 1.25; }

/* ===================== INDUSTRIES WE SERVE ===================== */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition);
    gap: 14px;
}
.industry-item:hover {
    border-color: var(--primary-bright);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.industry-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-bright));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.industry-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.35;
}
@media (max-width: 900px) {
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .industry-item { padding: 20px 14px; }
}


/* ===================== FAQ SECTION ===================== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-sm); }
.faq-question {
    width: 100%;
    background: var(--white);
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 20px 24px;
    text-align: left;
    font-size: 0.97rem;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: background 0.25s, color 0.25s;
    line-height: 1.4;
    font-family: var(--font-heading);
}
.faq-question:hover { background: var(--off-white); }
.faq-item.open .faq-question {
    background: var(--primary-dark);
    color: var(--white);
}
.faq-icon {
    font-size: 1.4rem;
    font-weight: 300;
    flex-shrink: 0;
    line-height: 1;
    transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: var(--white);
}
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
    padding: 18px 24px 22px;
    color: var(--muted-text);
    line-height: 1.78;
    font-size: 0.93rem;
    border-top: 1px solid var(--border);
}
@media (max-width: 600px) {
    .faq-question { padding: 16px 18px; font-size: 0.93rem; }
    .faq-answer-inner { padding: 14px 18px 18px; }
}
