/* ============================================================
   Vishwakarma Engineering - Inner Pages Premium Styles
   Matches the homepage design language (blue #006CB5 / green #5BB242)
   Loaded after style.css on every page
   ============================================================ */

/* ===== PAGE BANNER (premium hero strip) ===== */
.page-banner {
    position: relative;
    background: linear-gradient(135deg, #001a30 0%, #003D6B 50%, #002a4a 100%);
    padding: 90px 0 70px;
    overflow: hidden;
    color: #fff;
}
.page-banner::before {
    content: '';
    position: absolute;
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(91,178,66,0.18) 0%, transparent 70%);
    top: -120px; right: -80px; border-radius: 50%;
    animation: pulseGlow 6s ease-in-out infinite;
}
.page-banner::after {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,108,181,0.35) 0%, transparent 70%);
    bottom: -100px; left: -60px; border-radius: 50%;
    animation: pulseGlow 8s ease-in-out infinite reverse;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner-content { max-width: 720px; }
.page-banner-content h1 {
    font-size: 44px; font-weight: 900; letter-spacing: -0.5px;
    margin-bottom: 10px; line-height: 1.15;
    text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.page-banner-content > p {
    font-size: 16px; color: rgba(255,255,255,0.75);
    max-width: 560px; line-height: 1.7; margin-bottom: 20px;
}
.page-banner .breadcrumb {
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 10px 18px; border-radius: 50px;
    margin: 0; font-size: 13px;
    width: fit-content;
    backdrop-filter: blur(8px);
}
.page-banner .breadcrumb .breadcrumb-item { color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; }
.page-banner .breadcrumb .breadcrumb-item a { color: var(--green); font-weight: 600; }
.page-banner .breadcrumb .breadcrumb-item a:hover { color: #fff; }
.page-banner .breadcrumb .breadcrumb-item.active { color: #fff; font-weight: 600; }
.page-banner .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
    color: rgba(255,255,255,0.35); padding: 0;
}

/* ===== SECTION HEADERS (pill + title) ===== */
.section-tag {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    background: var(--primary-light); padding: 5px 16px; border-radius: 50px;
    margin-bottom: 12px;
}
.section-tag i { font-size: 10px; }
.section-header h2 {
    font-size: 34px; font-weight: 900; color: var(--text-heading);
    margin-bottom: 12px; letter-spacing: -0.5px; line-height: 1.2;
}
.section-header p { color: var(--text-muted); font-size: 15px; max-width: 540px; margin: 0 auto; }
.section-alt { background: var(--bg-alt); }
.section-muted { background: var(--bg-soft); }

/* ===== GENERIC CARDS ===== */
.card-item {
    background: #fff; border-radius: var(--radius-md);
    padding: 26px; border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm); transition: var(--transition);
    height: 100%;
}
.card-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-icon {
    width: 64px; height: 64px; background: var(--primary-light);
    color: var(--primary); border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 16px; transition: var(--transition);
}
.card-item:hover .card-icon { background: var(--primary); color: #fff; border-radius: 50%; transform: rotate(-8deg) scale(1.08); }
.card-item h3 { font-size: 17px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.card-item p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 0; }

/* ===== BUTTONS ===== */
.btn-outline {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--primary); color: var(--primary);
    padding: 11px 26px; border-radius: 50px; font-weight: 600; font-size: 13px;
    transition: var(--transition);
}
.btn-outline:hover { background: var(--primary); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,108,181,0.25); }
.btn-outline-dark {
    display: inline-flex; align-items: center; gap: 8px;
    border: 1.5px solid var(--text-heading); color: var(--text-heading);
    padding: 11px 26px; border-radius: 50px; font-weight: 600; font-size: 13px;
    transition: var(--transition);
}
.btn-outline-dark:hover { background: var(--text-heading); color: #fff; transform: translateY(-2px); }
.btn-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--primary);
    padding: 13px 30px; border-radius: 50px; font-weight: 700; font-size: 13px;
    transition: var(--transition);
}
.btn-cta:hover { background: var(--green); color: #fff; transform: translateY(-3px); box-shadow: 0 12px 35px rgba(91,178,66,0.3); }
.btn-submit {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: #fff;
    padding: 13px 32px; border-radius: 50px; font-weight: 700; font-size: 14px;
    transition: var(--transition); border: none; cursor: pointer;
}
.btn-submit:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,108,181,0.3); color: #fff; }
.btn-whatsapp {
    display: inline-flex; align-items: center; gap: 8px;
    background: #25d366; color: #fff;
    padding: 11px 26px; border-radius: 50px; font-weight: 600; font-size: 13px;
    transition: var(--transition);
}
.btn-whatsapp:hover { background: #1eb958; color: #fff; transform: translateY(-2px); }
.btn-download {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--green); color: #fff;
    padding: 11px 26px; border-radius: 50px; font-weight: 600; font-size: 13px;
    transition: var(--transition);
}
.btn-download:hover { background: var(--green-dark); color: #fff; transform: translateY(-2px); }
.btn-sm { padding: 6px 16px; font-size: 12px; }
.btn-primary-solid { padding: 12px 28px; font-size: 13px; }

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #003D6B 0%, #006CB5 100%);
    padding: 60px 0; position: relative; overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(91,178,66,0.15) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { color: #fff; font-size: 30px; font-weight: 900; margin-bottom: 8px; }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 0; }

/* ===== PRODUCTS PAGE ===== */
.products-filter-section { background: #fff; padding: 30px 0; border-bottom: 1px solid var(--border); }
.products-filter { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--bg-soft); color: var(--text-body);
    padding: 10px 22px; border-radius: 50px;
    font-size: 13px; font-weight: 600; border: 1px solid var(--border);
    transition: var(--transition);
}
.filter-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }
.filter-btn.active {
    background: var(--primary); color: #fff; border-color: var(--primary);
    box-shadow: 0 8px 22px rgba(0,108,181,0.25);
}
.products-pagination { margin-top: 40px; }
.products-pagination .page-link {
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    border-radius: 10px !important; border: 1px solid var(--border);
    color: var(--text-body); font-weight: 600; font-size: 13px; margin: 0 4px;
}
.products-pagination .page-link:hover { background: var(--primary-light); color: var(--primary); border-color: var(--primary); }
.products-pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); color: #fff; }

/* Product cards (inner pages) */
.product-card {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%;
    display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-image { height: 220px; overflow: hidden; position: relative; background: var(--bg-alt); flex-shrink: 0; }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-badge {
    position: absolute; top: 12px; left: 12px; z-index: 2;
    background: var(--green); color: #fff; padding: 3px 12px;
    border-radius: 50px; font-size: 10px; font-weight: 700; text-transform: uppercase;
}
.product-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.product-category {
    font-size: 10px; color: var(--primary); font-weight: 700;
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 5px; display: inline-block;
}
.product-body h3 { font-size: 17px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.product-body p { color: var(--text-muted); font-size: 13px; line-height: 1.7; margin-bottom: 14px; flex: 1; }
.product-body .btn-outline { align-self: flex-start; margin-top: auto; }

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 70px 0; background: var(--bg-soft); }
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.product-main-image {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.04);
}
.product-main-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-thumbnails { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.thumb-item {
    width: 84px; height: 70px; border-radius: 10px; overflow: hidden;
    cursor: pointer; border: 2px solid transparent; transition: var(--transition);
}
.thumb-item img { width: 100%; height: 100%; object-fit: cover; }
.thumb-item:hover, .thumb-item.active { border-color: var(--primary); transform: translateY(-3px); }
.product-label {
    display: inline-flex; align-items: center;
    background: var(--primary-light); color: var(--primary);
    font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    padding: 5px 14px; border-radius: 50px; margin-bottom: 14px;
}
.product-name { font-size: 32px; font-weight: 900; color: var(--text-heading); margin-bottom: 14px; line-height: 1.2; }
.product-desc { color: var(--text-body); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.product-full-desc { color: var(--text-body); font-size: 15px; line-height: 1.9; margin-top: 8px; }
.product-full-desc h1, .product-full-desc h2, .product-full-desc h3, .product-full-desc h4 { margin-top: 16px; color: var(--text-heading); }
.product-full-desc ul, .product-full-desc ol { padding-left: 22px; margin-bottom: 12px; }
.product-full-desc img { border-radius: 10px; margin: 12px 0; }
.product-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 26px; }

/* Features */
.features-section { padding: 70px 0; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.feature-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-soft); border: 1px solid var(--border);
    padding: 13px 18px; border-radius: 12px;
    font-size: 14px; font-weight: 500; color: var(--text-body);
    transition: var(--transition);
}
.feature-item i { color: var(--green); font-size: 16px; flex-shrink: 0; }
.feature-item:hover { border-color: var(--primary); background: var(--primary-light); transform: translateX(4px); }

/* Specs table */
.specs-section { padding: 70px 0; background: var(--bg-alt); }
.specs-table-wrap { background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid rgba(0,0,0,0.04); }
.specs-table { width: 100%; border-collapse: collapse; }
.specs-table tr { border-bottom: 1px solid var(--border); }
.specs-table tr:last-child { border-bottom: none; }
.specs-table tr:hover td { background: rgba(0,108,181,0.02); }
.spec-label {
    width: 40%; padding: 14px 24px;
    font-weight: 700; color: var(--text-heading); font-size: 14px;
    background: var(--bg-soft);
}
.spec-value { padding: 14px 24px; color: var(--text-body); font-size: 14px; }
.tech-details { margin-top: 24px; color: var(--text-body); line-height: 1.9; font-size: 15px; }

/* ===== SERVICES PAGE ===== */
.service-card {
    background: #fff; border-radius: var(--radius-md); padding: 34px 28px;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%; position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--primary-gradient); transform: scaleX(0); transform-origin: left;
    transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon {
    width: 62px; height: 62px; background: var(--primary-light); color: var(--primary);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 26px; margin-bottom: 18px; transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--primary); color: #fff; border-radius: 50%; transform: rotate(-8deg) scale(1.08); }
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--primary); font-weight: 600; font-size: 13px;
}
.service-link:hover { color: var(--green); gap: 10px; }

/* ===== INDUSTRIES PAGE ===== */
.industry-list-item {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%;
}
.industry-list-item:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.industry-list-image { height: 200px; overflow: hidden; position: relative; }
.industry-list-image::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0,61,107,0.5) 0%, transparent 60%);
}
.industry-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.industry-list-item:hover .industry-list-image img { transform: scale(1.08); }
.industry-list-body { padding: 24px; }
.industry-list-body h3 { font-size: 18px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.industry-list-body p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 14px; }

/* ===== BLOG PAGES ===== */
.blog-list-item {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); margin-bottom: 30px;
    display: flex;
}
.blog-list-item:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-list-image { width: 340px; min-height: 240px; flex-shrink: 0; overflow: hidden; }
.blog-list-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-list-item:hover .blog-list-image img { transform: scale(1.06); }
.blog-list-body { padding: 30px; }
.blog-list-meta { display: flex; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.blog-list-meta span { display: inline-flex; align-items: center; gap: 5px; }
.blog-list-meta i { color: var(--primary); }
.blog-list-body h3 { font-size: 20px; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; line-height: 1.4; }
.blog-list-body h3 a { color: var(--text-heading); }
.blog-list-body h3 a:hover { color: var(--primary); }
.blog-list-body p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 16px; }

.sidebar-widget {
    background: #fff; border-radius: var(--radius-md);
    padding: 26px; border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-sm); margin-bottom: 24px;
}
.sidebar-widget h3 {
    font-size: 16px; font-weight: 700; color: var(--text-heading);
    margin-bottom: 16px; padding-bottom: 10px; position: relative;
}
.sidebar-widget h3::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 26px; height: 2px; background: var(--green); border-radius: 2px;
}
.sidebar-widget ul { list-style: none; padding: 0; margin: 0; }
.sidebar-widget ul li { margin-bottom: 4px; }
.sidebar-widget ul li a {
    display: block; padding: 8px 12px; border-radius: 8px;
    color: var(--text-body); font-size: 14px; transition: var(--transition);
}
.sidebar-widget ul li a:hover { background: var(--primary-light); color: var(--primary); padding-left: 16px; }

/* ===== CONTACT PAGE ===== */
.contact-info-card {
    background: #fff; border-radius: var(--radius-md);
    padding: 30px; border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
}
.contact-item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-item:last-child { margin-bottom: 0; }
.contact-icon {
    width: 48px; height: 48px; background: var(--primary-light); color: var(--primary);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0; transition: var(--transition);
}
.contact-item:hover .contact-icon { background: var(--primary); color: #fff; }
.contact-item h4 { font-size: 14px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 14px; line-height: 1.6; margin-bottom: 0; }
.contact-form-wrap {
    background: #fff; border-radius: var(--radius-md);
    padding: 36px; border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 600; font-size: 13px; color: var(--text-heading); margin-bottom: 7px; }
.form-group .required { color: #e74c3c; }
.form-control {
    width: 100%; padding: 13px 16px;
    border: 1px solid var(--border); border-radius: 10px;
    font-size: 14px; font-family: inherit; color: var(--text-body);
    transition: var(--transition); background: var(--bg-soft);
}
.form-control:focus {
    border-color: var(--primary); outline: none;
    box-shadow: 0 0 0 3px rgba(0,108,181,0.12); background: #fff;
}
textarea.form-control { resize: vertical; min-height: 120px; }

/* ===== GALLERY ===== */
.gallery-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    height: 240px; cursor: pointer; display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,108,181,0.85), rgba(0,80,138,0.85));
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); backdrop-filter: blur(4px);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* ===== BROCHURES ===== */
.brochure-card {
    background: #fff; border-radius: var(--radius-md); padding: 34px 28px;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%; text-align: center;
    display: flex; flex-direction: column; align-items: center;
}
.brochure-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.brochure-icon {
    width: 70px; height: 70px; background: var(--primary-light); color: var(--primary);
    border-radius: 18px; display: flex; align-items: center; justify-content: center;
    font-size: 30px; margin-bottom: 16px; transition: var(--transition);
}
.brochure-card:hover .brochure-icon { background: #e74c3c; color: #fff; border-radius: 50%; transform: rotate(-8deg) scale(1.08); }
.brochure-card h3 { font-size: 17px; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.brochure-card p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 14px; flex: 1; }
.brochure-category {
    display: inline-block; background: var(--bg-soft); border: 1px solid var(--border);
    color: var(--text-muted); font-size: 11px; font-weight: 600;
    padding: 3px 12px; border-radius: 50px; margin-bottom: 10px;
}
.download-count { font-size: 12px; color: var(--text-muted); margin-top: 12px; }
.download-count i { color: var(--primary); }

/* ===== MISSION / VISION CARDS ===== */
.mission-card {
    background: #fff; border-radius: var(--radius-md); padding: 36px;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%; text-align: center;
}
.mission-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.mission-icon {
    width: 68px; height: 68px; margin: 0 auto 18px;
    background: var(--primary-gradient); color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 26px;
    box-shadow: 0 10px 30px rgba(0,108,181,0.3);
}
.mission-card h3 { font-size: 19px; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.mission-card p { color: var(--text-muted); font-size: 14px; line-height: 1.8; margin-bottom: 0; }

/* ===== CERT CARDS ===== */
.cert-card {
    background: #fff; border-radius: var(--radius-md); padding: 30px 24px;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); height: 100%; text-align: center;
}
.cert-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.cert-icon {
    width: 60px; height: 60px; margin: 0 auto 14px;
    background: var(--bg-soft); color: var(--green);
    border-radius: 16px; display: flex; align-items: center; justify-content: center;
    font-size: 24px; transition: var(--transition);
}
.cert-card:hover .cert-icon { background: var(--green); color: #fff; transform: rotate(8deg) scale(1.08); }
.cert-card h4 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.cert-card p { color: var(--text-muted); font-size: 13px; margin-bottom: 0; }

/* ===== STATS ===== */
.stats-section {
    background: linear-gradient(135deg, #0a1628 0%, #001a30 50%, #0d2137 100%);
    padding: 70px 0; position: relative; overflow: hidden;
}
.stats-section::before {
    content: '';
    position: absolute; width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(0,108,181,0.2) 0%, transparent 70%);
    top: -200px; right: -150px;
}
.stats-section .container { position: relative; z-index: 2; }
.stat-item { text-align: center; padding: 20px; }
.stat-icon {
    width: 60px; height: 60px; margin: 0 auto 14px;
    background: rgba(91,178,66,0.12); color: var(--green);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 24px;
}
.stat-number { font-size: 40px; font-weight: 900; color: #fff; line-height: 1.1; }
.stat-label {
    font-size: 12px; color: rgba(255,255,255,0.55);
    text-transform: uppercase; letter-spacing: 1.5px; margin-top: 6px;
}

/* ===== ABOUT PAGE EXTRAS ===== */
.about-tag {
    display: inline-flex; align-items: center;
    color: var(--primary); font-size: 11px; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    background: var(--primary-light); padding: 5px 16px; border-radius: 50px;
    margin-bottom: 12px;
}
.about-content h3 { font-size: 28px; font-weight: 900; color: var(--text-heading); margin-bottom: 14px; }
.about-content p { color: var(--text-body); font-size: 15px; line-height: 1.8; margin-bottom: 12px; }
.about-features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 18px; }
.about-feature-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-soft); border: 1px solid var(--border);
    padding: 11px 16px; border-radius: 10px;
    font-size: 13px; font-weight: 600; color: var(--text-body);
    transition: var(--transition);
}
.about-feature-item i { color: var(--green); font-size: 15px; }
.about-feature-item:hover { border-color: var(--primary); background: var(--primary-light); transform: translateX(4px); }
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== ABOUT - Enhanced Sections ===== */
.about-story-section { background: var(--bg-white); overflow: hidden; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story-visual { position: relative; }
.about-story-img-main { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-story-img-main img { width: 100%; height: 400px; object-fit: cover; display: block; }
.about-story-float-card {
    position: absolute; bottom: -30px; right: -30px;
    background: var(--primary-gradient); color: #fff;
    border-radius: var(--radius-md); padding: 24px 28px;
    box-shadow: 0 12px 40px rgba(0,108,181,0.3);
    min-width: 180px; text-align: center;
}
.about-story-float-card .num { font-size: 36px; font-weight: 900; line-height: 1; display: block; }
.about-story-float-card .label { font-size: 12px; opacity: 0.8; margin-top: 4px; display: block; }
.about-story-text .section-tag { margin-bottom: 16px; }
.about-story-text h2 { font-size: 32px; font-weight: 900; color: var(--text-heading); margin-bottom: 16px; line-height: 1.2; }
.about-story-text h2 .text-gradient { font-size: inherit; }
.about-story-text p { color: var(--text-body); font-size: 15px; line-height: 1.8; margin-bottom: 14px; }
.about-story-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-highlight-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; background: var(--bg-soft);
    border: 1px solid var(--border); border-radius: 12px;
    transition: var(--transition);
}
.about-highlight-item:hover { border-color: var(--primary); background: var(--primary-light); transform: translateX(4px); }
.about-highlight-item i { width: 36px; height: 36px; background: var(--primary-light); color: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0; }
.about-highlight-item span { font-size: 13px; font-weight: 600; color: var(--text-body); }

/* Timeline Section */
.timeline-section { background: var(--bg-alt); }
.timeline-wrapper { position: relative; max-width: 800px; margin: 0 auto; }
.timeline-line { position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.timeline-item {
    display: flex; align-items: center; margin-bottom: 50px; position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-item:nth-child(odd) .timeline-content { text-align: right; padding-right: 50px; padding-left: 0; }
.timeline-content { flex: 1; padding-left: 50px; }
.timeline-dot {
    width: 18px; height: 18px; background: var(--primary); border: 3px solid #fff;
    border-radius: 50%; position: absolute; left: 50%; transform: translateX(-50%);
    z-index: 2; box-shadow: 0 0 0 4px var(--primary-light);
}
.timeline-year { font-size: 14px; font-weight: 800; color: var(--primary); margin-bottom: 6px; }
.timeline-title { font-size: 18px; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.timeline-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* Team Grid */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card-img { height: 200px; overflow: hidden; background: var(--bg-alt); }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card-img img { transform: scale(1.08); }
.team-card-body { padding: 18px; }
.team-card-body h4 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.team-card-body span { font-size: 12px; color: var(--primary); font-weight: 600; }

/* ===== SERVICES - Enhanced ===== */
.services-hero-section {
    background: linear-gradient(135deg, #0a1628 0%, #001a30 50%, #0d2137 100%);
    padding: 60px 0; position: relative; overflow: hidden;
}
.services-hero-section::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(0,108,181,0.15) 0%, transparent 60%);
}
.services-hero-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; position: relative; z-index: 2; }
.service-hero-stat {
    text-align: center; padding: 30px 20px;
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md); transition: var(--transition);
}
.service-hero-stat:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.service-hero-stat .num { font-size: 36px; font-weight: 900; color: #fff; display: block; }
.service-hero-stat .num .accent { color: var(--green); }
.service-hero-stat .label { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 6px; display: block; }

/* Process Steps */
.process-steps-section { background: var(--bg-white); }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; position: relative; }
.process-steps::before {
    content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%;
    height: 2px; background: var(--border); z-index: 0;
}
.process-step {
    text-align: center; position: relative; z-index: 1;
}
.process-step-num {
    width: 80px; height: 80px; margin: 0 auto 16px;
    background: var(--primary-light); color: var(--primary);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; font-weight: 900; border: 4px solid #fff;
    box-shadow: var(--shadow-md); transition: var(--transition);
}
.process-step:hover .process-step-num { background: var(--primary); color: #fff; transform: scale(1.1); }
.process-step h4 { font-size: 16px; font-weight: 700; color: var(--text-heading); margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* Service Feature Cards */
.service-feature-card {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); display: flex; flex-direction: column;
}
.service-feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-feature-icon {
    padding: 30px; text-align: center;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(91,178,66,0.05) 100%);
}
.service-feature-icon .icon-wrap {
    width: 72px; height: 72px; margin: 0 auto;
    background: var(--primary); color: #fff;
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    font-size: 30px; transition: var(--transition);
}
.service-feature-card:hover .service-feature-icon .icon-wrap { border-radius: 50%; transform: rotate(-10deg) scale(1.1); }
.service-feature-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-feature-body h3 { font-size: 18px; font-weight: 700; color: var(--text-heading); margin-bottom: 10px; }
.service-feature-body p { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 18px; flex: 1; }
.service-feature-list { list-style: none; padding: 0; margin: 0 0 18px; }
.service-feature-list li {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 0; font-size: 13px; color: var(--text-body);
}
.service-feature-list li i { color: var(--green); font-size: 12px; }

/* ===== CONTACT - Enhanced ===== */
.contact-hero-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(91,178,66,0.05) 100%);
    padding: 50px 0; border-bottom: 1px solid var(--border);
}
.contact-quick-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.contact-quick-card {
    background: #fff; border-radius: var(--radius-md); padding: 24px 20px;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    text-align: center; transition: var(--transition);
}
.contact-quick-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.contact-quick-card .cq-icon {
    width: 50px; height: 50px; margin: 0 auto 12px;
    background: var(--primary-light); color: var(--primary);
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    font-size: 20px; transition: var(--transition);
}
.contact-quick-card:hover .cq-icon { background: var(--primary); color: #fff; border-radius: 50%; }
.contact-quick-card h4 { font-size: 13px; font-weight: 700; color: var(--text-heading); margin-bottom: 4px; }
.contact-quick-card p { font-size: 12px; color: var(--text-muted); margin-bottom: 0; line-height: 1.5; }

/* Contact Form Enhanced */
.contact-form-modern {
    background: #fff; border-radius: var(--radius-lg);
    padding: 40px; border: 1px solid rgba(0,0,0,0.04);
    box-shadow: var(--shadow-md); position: relative; overflow: hidden;
}
.contact-form-modern::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--primary-gradient);
}
.contact-form-modern h2 { font-size: 24px; font-weight: 900; color: var(--text-heading); margin-bottom: 6px; }
.contact-form-modern .subtitle { font-size: 14px; color: var(--text-muted); margin-bottom: 24px; }

/* Contact Info Side */
.contact-info-side {
    background: linear-gradient(135deg, #003D6B 0%, #006CB5 100%);
    border-radius: var(--radius-lg); padding: 36px;
    color: #fff; position: relative; overflow: hidden;
}
.contact-info-side::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 20%, rgba(91,178,66,0.15) 0%, transparent 60%);
}
.contact-info-side h3 { font-size: 22px; font-weight: 900; margin-bottom: 6px; position: relative; z-index: 1; }
.contact-info-side .subtitle { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 28px; position: relative; z-index: 1; }
.contact-info-item {
    display: flex; gap: 16px; margin-bottom: 22px; position: relative; z-index: 1;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item .cii-icon {
    width: 44px; height: 44px; background: rgba(255,255,255,0.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 18px; flex-shrink: 0; color: var(--green);
}
.contact-info-item h4 { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 3px; }
.contact-info-item p { font-size: 13px; color: rgba(255,255,255,0.7); margin-bottom: 0; line-height: 1.6; }
.contact-info-item a { color: rgba(255,255,255,0.7); }
.contact-info-item a:hover { color: #fff; }
.contact-social-links { display: flex; gap: 10px; margin-top: 28px; position: relative; z-index: 1; }
.contact-social-links a {
    width: 40px; height: 40px; background: rgba(255,255,255,0.08);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 16px;
    transition: var(--transition);
}
.contact-social-links a:hover { background: var(--green); color: #fff; transform: translateY(-3px); }

/* ===== SUBTLE STATS STRIP (replaces loud dark bars) ===== */
.page-stats-strip {
    padding: 24px 0;
    background: var(--bg-soft);
    border-bottom: 1px solid var(--border);
}
.page-stats-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}
.page-stats-inline .psi-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 2px 26px;
    border-right: 1px solid var(--border);
}
.page-stats-inline .psi-item:last-child { border-right: none; }
.psi-num { font-size: 19px; font-weight: 800; color: var(--primary); line-height: 1; white-space: nowrap; }
.psi-label { font-size: 11px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; font-weight: 600; }

/* ===== GALLERY - Enhanced ===== */
.gallery-masonry {
    columns: 3;
    column-gap: 16px;
}
.gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: inline-block;
    width: 100%;
}
.gallery-masonry-item img { width: 100%; display: block; transition: transform 0.6s ease; }
.gallery-masonry-item:hover img { transform: scale(1.06); }
.gallery-masonry-item .gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,108,181,0.85), rgba(0,80,138,0.85));
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    opacity: 0; transition: var(--transition); backdrop-filter: blur(4px);
}
.gallery-masonry-item:hover .gallery-overlay { opacity: 1; }
.gallery-masonry-item .gallery-overlay i { color: #fff; font-size: 32px; margin-bottom: 8px; }
.gallery-masonry-item .gallery-overlay span { color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 600; }
.gallery-stats-bar {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 16px;
    margin-bottom: 40px;
}
.gallery-stat-card {
    background: #fff; border-radius: var(--radius-md); padding: 24px;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    text-align: center; transition: var(--transition);
}
.gallery-stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-stat-card i { font-size: 28px; color: var(--primary); margin-bottom: 10px; display: block; }
.gallery-stat-card .num { font-size: 28px; font-weight: 900; color: var(--text-heading); display: block; }
.gallery-stat-card .label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* ===== BLOG - Enhanced ===== */
.blog-featured-card {
    background: #fff; border-radius: var(--radius-lg); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-md);
    display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 40px;
    transition: var(--transition);
}
.blog-featured-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-featured-image { position: relative; overflow: hidden; min-height: 320px; }
.blog-featured-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-featured-card:hover .blog-featured-image img { transform: scale(1.06); }
.blog-featured-badge {
    position: absolute; top: 16px; left: 16px;
    background: var(--green); color: #fff; padding: 4px 14px;
    border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase;
}
.blog-featured-body { padding: 36px; display: flex; flex-direction: column; justify-content: center; }
.blog-featured-body .blog-list-meta { margin-bottom: 14px; }
.blog-featured-body h3 { font-size: 24px; font-weight: 900; color: var(--text-heading); margin-bottom: 12px; line-height: 1.3; }
.blog-featured-body h3 a { color: var(--text-heading); }
.blog-featured-body h3 a:hover { color: var(--primary); }
.blog-featured-body p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }

/* Blog Grid Cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-grid-card {
    background: #fff; border-radius: var(--radius-md); overflow: hidden;
    border: 1px solid rgba(0,0,0,0.04); box-shadow: var(--shadow-sm);
    transition: var(--transition); display: flex; flex-direction: column;
}
.blog-grid-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.blog-grid-image { height: 200px; overflow: hidden; position: relative; }
.blog-grid-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-grid-card:hover .blog-grid-image img { transform: scale(1.08); }
.blog-grid-image .bca-cat {
    position: absolute; top: 12px; left: 12px;
    background: var(--primary); color: #fff; padding: 3px 12px;
    border-radius: 4px; font-size: 10px; font-weight: 700; text-transform: uppercase;
}
.blog-grid-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-grid-body .bca-date { font-size: 11px; color: var(--text-muted); display: block; margin-bottom: 8px; }
.blog-grid-body .bca-date i { color: var(--primary); margin-right: 4px; }
.blog-grid-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-grid-body h3 a { color: var(--text-heading); }
.blog-grid-body h3 a:hover { color: var(--primary); }
.blog-grid-body p { color: var(--text-muted); font-size: 13px; line-height: 1.7; margin-bottom: 14px; flex: 1; }

@media (max-width: 991px) {
    .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
    .timeline-line { left: 20px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: row; }
    .timeline-item:nth-child(odd) .timeline-content { text-align: left; padding-right: 0; padding-left: 50px; }
    .timeline-content { padding-left: 50px; }
    .timeline-dot { left: 20px; transform: none; }
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .services-hero-grid { grid-template-columns: 1fr; gap: 12px; }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .contact-quick-cards { grid-template-columns: repeat(2, 1fr); }
    .gallery-masonry { columns: 2; }
    .blog-featured-card { grid-template-columns: 1fr; }
    .blog-featured-image { min-height: 250px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .team-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .contact-quick-cards { grid-template-columns: 1fr; }
    .gallery-masonry { columns: 1; }
    .gallery-stats-bar { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .about-story-float-card { position: relative; bottom: 0; right: 0; margin-top: -30px; }
    .services-hero-grid { grid-template-columns: 1fr; gap: 12px; }
    .page-stats-inline { gap: 6px; }
    .page-stats-inline .psi-item { padding: 2px 14px; border-right: none; }
    .psi-num { font-size: 16px; }
}

/* ===== EMPTY STATE ===== */
.empty-state { text-align: center; padding: 60px 20px; }
.empty-state i { font-size: 60px; color: var(--border); margin-bottom: 18px; display: block; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: var(--text-heading); margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .page-banner { padding: 60px 0 50px; }
    .page-banner-content h1 { font-size: 32px; }
    .section-header h2 { font-size: 28px; }
    .product-layout { grid-template-columns: 1fr; gap: 30px; }
    .blog-list-item { flex-direction: column; }
    .blog-list-image { width: 100%; min-height: 220px; }
    .stats-section { padding: 50px 0; }
    .stat-number { font-size: 32px; }
}
@media (max-width: 575px) {
    .page-banner { padding: 50px 0 40px; }
    .page-banner-content h1 { font-size: 26px; }
    .page-banner-content > p { font-size: 14px; }
    .section-header h2 { font-size: 24px; }
    .features-grid, .about-features-grid { grid-template-columns: 1fr; }
    .product-actions { flex-direction: column; }
    .product-actions .btn { width: 100%; justify-content: center; }
    .contact-form-wrap { padding: 24px 18px; }
    .card-item { padding: 20px; }
    .cta-section { padding: 45px 0; }
    .cta-section h2 { font-size: 24px; }
    .cta-section .text-lg-end { margin-top: 16px; text-align: left !important; }
    .products-filter { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 8px; }
    .filter-btn { white-space: nowrap; }
    .product-name { font-size: 24px; }
}
