/* Reset and Base Styles */
html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&family=Open+Sans:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #0b0f19; /* Rich Cinematic Dark Industrial */
    --primary-light: #161e31; /* Deep Metallic Tone */
    --secondary-color: #272f41; /* Premium Industrial Steel */
    --accent-color: #059669; /* Refined Engineering Green */
    --accent-hover: #047857; /* Hover state for green */
    --text-color: #334155; 
    --text-light: #64748b; 
    --background-color: #f8fafc; /* Crisp premium off-white */
    --white: #ffffff;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Premium Cinematic depth shadows */
    --shadow: 0 15px 35px -10px rgba(11, 15, 25, 0.12), 0 5px 15px rgba(11, 15, 25, 0.05);
    --shadow-hover: 0 30px 60px -15px rgba(11, 15, 25, 0.2), 0 15px 30px -10px rgba(5, 150, 105, 0.15);
    --shadow-soft: 0 10px 30px -5px rgba(11, 15, 25, 0.05);
    
    /* Premium Industrial gradients */
    --gradient-primary: linear-gradient(135deg, #161e31 0%, #0b0f19 100%);
    --gradient-accent: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-soft: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%);
    --gradient-overlay: linear-gradient(to bottom, rgba(11, 15, 25, 0.1) 0%, rgba(11, 15, 25, 0.8) 100%);
    --gradient-dark: linear-gradient(135deg, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.85) 100%);
    
    --radius-sm: 4px; /* Sharper industrial edges */
    --radius-md: 8px; /* Industrial premium radius */
    --radius-lg: 16px; 
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    line-height: 1.8;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    padding-top: 80px;
    max-width: 100vw;
    width: 100%;
}

html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Global Image Scaling */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    line-height: 1.25;
    letter-spacing: -0.02em; /* Enterprise tighter tracking */
}

h1 { 
    font-size: 3.8rem; 
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

h2 { 
    font-size: 2.7rem; 
    font-weight: 800;
    letter-spacing: -0.03em;
}

h3 { 
    font-size: 1.9rem; 
    font-weight: 800;
    letter-spacing: -0.01em;
}

h4 { 
    font-size: 1.4rem; 
    font-weight: 700;
    letter-spacing: 0;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
    line-height: 1.7;
    font-weight: 500;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles - Premium Industrial Corporate */
header {
    background: transparent;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-scrolled {
    background: rgba(10, 25, 48, 0.95); /* Deep Industrial Navy */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: padding 0.4s ease;
}

.header-scrolled nav {
    padding: 0.7rem 0;
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    padding: 4px 12px; /* Removed excessive white space */
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-scrolled .logo {
    padding: 2px 10px;
}

.logo img {
    height: 65px; /* Slightly larger (10-15%) and sharper */
    width: auto;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem; /* Elegant spacing */
    align-items: center;
    margin: 0;
}

.nav-links a {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 5px;
}

/* Smooth hover underline */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color); /* Premium green underline */
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--white);
}

.nav-links a:hover {
    color: var(--white);
    opacity: 0.9;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Scrolled Header Color Overrides */
.header-scrolled .logo,
.header-scrolled .nav-links a {
    color: var(--white);
}
.header-scrolled .nav-links a:hover,
.header-scrolled .nav-links a.active {
    color: var(--white);
}
.header-scrolled .nav-toggle span {
    background: var(--white);
}

/* Hero Section */
.hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 160px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.95) 0%, rgba(11, 15, 25, 0.6) 50%, rgba(11, 15, 25, 0.95) 100%),
                repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 2px, transparent 2px, transparent 4px); /* Subtle industrial grid texture */
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(10, 25, 48, 1) 0%, transparent 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Fade-in animation for scroll */
.fade-in {
    opacity: 0;
    transform: translateY(50px) scale(0.98); /* Premium slight scale reveal */
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Smooth transitions for all interactive elements */
a, button, .btn, .tab-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Card hover effects */
.product-card:hover,
.consultancy-card:hover,
.why-card:hover,
.benefit-card:hover,
.unit-card:hover,
.stage:hover,
.achievement-item:hover,
.initiative-card:hover,
.safety-card:hover,
.industry-item:hover,
.service-card:hover {
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Image hover effects */
.about-image img,
.product-card .product-image img,
.unit-card .unit-image img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 4.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: uppercase;
    line-height: 1.1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    background: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 0;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
}

.btn:hover::before {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.5);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 17, 33, 0.2);
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-title {
    display: flex;
    flex-direction: column-reverse;
    text-align: center;
    margin-bottom: 3.5rem;
    align-items: center;
}

.section-title h2 {
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    word-wrap: break-word;
}

.section-title p {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

/* Alternating section backgrounds */
.about,
.consultancy,
.industries {
    background: var(--background-color);
}

.products,
.why-clients-prefer,
.certifications,
.contact {
    background: var(--white);
}

/* Why Clients Prefer Us Card Layout */
.why-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.why-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-accent);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    transform: rotate(5deg) scale(1.05);
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.why-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.why-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefit Cards */
.key-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.benefit-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.benefit-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

/* Consultancy Process Timeline */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Responsive Grid System */
@media (max-width: 1024px) {
    .why-clients-grid,
    .process-steps,
    .units-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-clients-grid,
    .process-steps,
    .units-grid,
    .key-benefits {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 50px 0;
    }
}

.step {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.step-content h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.step-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Infrastructure Unit Cards */
.units-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.unit-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.unit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.unit-card .unit-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem; /* Balanced premium padding */
    background: var(--background-color);
}

.unit-card .unit-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease;
}

.unit-card:hover .unit-image img {
    transform: scale(1.08); /* Smooth premium zoom without cropping */
}

.unit-card .unit-content {
    padding: 25px;
    flex: 1;
}

.unit-card .unit-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.unit-card .unit-content p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.unit-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.unit-features ul li {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.unit-features ul li i {
    color: var(--accent-color);
    font-size: 0.85rem;
}

.unit-specs {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.unit-specs p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.5rem 0;
}

.unit-specs p strong {
    color: var(--primary-color);
}

/* Quality Control Step Cards */
.quality-stages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stage {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.stage:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.stage-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.stage h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.stage p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* R&D Achievements Statistic Cards */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.achievement-item {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.achievement-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.achievement-item h4 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.achievement-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Environmental Initiatives Cards */
.initiatives-grid {
    display: grid;
    gap: 2rem;
}

.initiative-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.initiative-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.initiative-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), var(--accent-hover));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.initiative-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.initiative-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.initiative-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.initiative-metrics {
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.initiative-metrics p {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.initiative-metrics p strong {
    color: var(--primary-color);
    background: rgba(34, 197, 94, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

/* Workplace Safety Card */
.safety-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.safety-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.safety-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.safety-icon i {
    font-size: 2rem;
    color: var(--white);
}

.safety-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.safety-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Global Icon Standardization */
.why-icon,
.benefit-icon,
.step-number,
.safety-icon,
.initiative-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i,
.benefit-icon i,
.step-number,
.safety-icon i,
.initiative-icon i {
    color: var(--white);
}

/* Icon alignment with text */
.unit-features ul li,
.initiative-metrics p {
    align-items: center;
}

/* Why Choose Consultancy 2-Column List */
.why-choose-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-choose-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

/* Enquiry Popup */
.enquiry-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
}

.enquiry-popup.active {
    display: block;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.close-popup:hover {
    color: var(--accent-color);
}

.popup-content h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.popup-content .form-group {
    margin-bottom: 1rem;
}

.popup-content input,
.popup-content select,
.popup-content textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
}

.popup-content input:focus,
.popup-content select:focus,
.popup-content textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.popup-content button {
    width: 100%;
    margin-top: 1rem;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(11, 61, 145, 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader p {
    color: var(--primary-color);
    font-weight: 500;
}

/* About Section */
.about {
    background: var(--white);
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 700;
}

.about-text p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: scale(1.02);
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

@media (max-width: 992px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.stat-item {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item h4 {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    letter-spacing: -1px;
    line-height: 1;
}

.stat-item p {
    color: var(--text-color);
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Products Grid */
.products {
    background: #006cb5;
    padding: 60px 0 80px 0;
}

.products .swiper-button-next,
.products .swiper-button-prev {
    color: #fff !important;
    background: #1a1a1a;
    width: 45px !important;
    height: 55px !important;
    border-radius: 4px;
    top: 40% !important;
}

.products .swiper-button-next::after,
.products .swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: 800 !important;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Hidden state for product filtering */
.product-card.hidden-card {
    display: none !important;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0) 0%, rgba(5,150,105,0.03) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 45px rgba(10, 25, 48, 0.15), 0 0 20px rgba(5, 150, 105, 0.08);
    border-color: rgba(5, 150, 105, 0.25);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card .product-image {
    height: 200px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background-color);
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.product-card .product-image img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.product-card p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-card .product-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.product-card .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Category Filter Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    color: var(--text-color);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.3);
}

/* Consultancy Section */
.consultancy {
    background: url('../images/transformer-winding-machine-250x250.jpg') center/cover no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0;
}

.consultancy::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(5, 13, 26, 0.95) 0%, rgba(10, 25, 48, 0.85) 100%);
    z-index: 0;
}

.consultancy .container {
    position: relative;
    z-index: 1;
}

.consultancy .section-title h2 {
    color: var(--white);
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.consultancy .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.consultancy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
}

@media (max-width: 992px) {
    .consultancy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .consultancy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.consultancy-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-md);
    background: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.consultancy-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.consultancy-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Industries Served */
.industries {
    background: #f4f4f4;
    padding: 80px 0;
}

.industries-layout {
    display: grid;
    grid-template-columns: 4fr 8fr;
    gap: 3rem;
    align-items: center;
}

/* Product Category Filter Tabs */
.product-categories {
    padding: 40px 0;
    background: var(--white);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 61, 145, 0.2);
}

.tab-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.tab-btn.active:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
}

/* Consultancy Page Service Grid */
.services-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.service-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1rem 0 0.75rem;
}

.service-features ul, .service-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features ul li, .service-details ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
    line-height: 1.6;
}

.service-features ul li::before, .service-details ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.industry-item {
    text-align: center;
    padding: 32px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.industry-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.industry-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.industry-item:hover i {
    transform: scale(1.1);
}

.industry-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.industry-item p {
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Why Choose Us */
.why-choose {
    background: var(--background-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 50px;
    text-align: center;
}

.feature-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Mission/Vision/Values */
.mission-vision {
    background: var(--background-color);
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mv-item {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.mv-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(5, 150, 105, 0.15);
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mv-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.mv-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.mv-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.company-stats {
    background: var(--primary-color);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: #082c6c;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:hover {
    background: #0b3d91;
    transform: translateY(-4px);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.stat-icon i {
    font-size: 1.25rem;
    color: var(--white);
}

.stat-item h4 {
    color: var(--white);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-item p {
    color: #dbeafe;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Certifications */
.certifications {
    background: var(--white);
    padding: 80px 0;
}

/* Infrastructure Page Stats */
.infrastructure-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}

@media (max-width: 992px) {
    .infrastructure-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .infrastructure-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.infrastructure-stats .stat-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.06);
    width: 100%;
}

.infrastructure-stats .stat-item h4 {
    color: var(--primary-color);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.infrastructure-stats .stat-item p {
    color: var(--text-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.cert-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--primary-color);
}

.cert-logo {
    width: 55px;
    height: 55px;
    background: rgba(22, 163, 74, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.cert-logo i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.cert-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.cert-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Contact Form */
.contact {
    background: var(--background-color);
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 4rem;
    align-items: center;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-color);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.info-item h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(11, 61, 145, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form button[type="submit"],
.enquiry-form button[type="submit"] {
    width: 100%;
    padding: 12px 22px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form button[type="submit"]:hover,
.enquiry-form button[type="submit"]:hover {
    background: #082c6c;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--primary-color) 0%, #060e1c 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section ul li {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-section ul li:hover {
    transform: translateX(8px);
}

.footer-section ul li i {
    color: var(--accent-color);
    margin-right: 0.5rem;
    width: 20px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-section a:hover {
    color: var(--accent-color);
    text-shadow: 0 0 8px rgba(5, 150, 105, 0.4);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        box-shadow: var(--shadow-hover);
        transition: right 0.3s ease;
        z-index: 1001;
    }
    
    .nav-links.active {
        display: flex;
        right: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
        width: 100%;
        word-wrap: break-word;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .products-grid,
    .consultancy-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .industries-layout,
    .contact-layout {
        grid-template-columns: 1fr !important;
        gap: 2.5rem !important;
    }

    .contact-info {
        grid-template-columns: 1fr !important;
    }
    
    .form-row {
        grid-template-columns: 1fr !important;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section ul li {
        text-align: center;
    }
    
    .btn-outline {
        margin-left: 0;
        margin-top: 1rem;
        display: block;
    }

    .container {
        padding: 0 20px;
        width: 100%;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
        width: 100%;
    }
    
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    h1 { 
        font-size: 1.6rem; 
        line-height: 1.3;
        word-wrap: break-word;
    }
    h2 { 
        font-size: 1.3rem;
        word-wrap: break-word;
    }
    h3 { 
        font-size: 1.1rem;
        word-wrap: break-word;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .infrastructure-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .products-grid,
    .consultancy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Hero Section with Background Image */
.hero {
    background-color: var(--primary-color);
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.92) 0%, rgba(20, 80, 160, 0.88) 100%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1, .hero p {
    color: var(--white);
}

/* Product Images */
.product-card .product-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.product-card .product-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    pointer-events: none;
}

/* Using base image styles from earlier in stylesheet */

.product-card:hover .product-image {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

/* Using base hover styles from earlier in stylesheet */

/* Service Images */
.consultancy-card .service-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
}

.consultancy-card .service-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    pointer-events: none;
}

.consultancy-card .service-image img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.consultancy-card:hover .service-image {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.consultancy-card:hover .service-image img {
    transform: scale(1.1);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 2rem 2rem;
        box-shadow: var(--shadow-hover);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1rem;
    }
}

/* Tablet Responsive (max-width: 992px) */
@media (max-width: 992px) {
    /* Container padding */
    .container {
        padding: 0 20px;
        width: 100%;
    }

    /* Section spacing */
    section {
        padding: 50px 0;
    }

    /* Card grids - 2 columns for tablet */
    .stats,
    .stats-grid,
    .products-grid,
    .consultancy-grid,
    .key-benefits,
    .why-clients-grid,
    .features-grid,
    .industries-grid,
    .units-grid,
    .infrastructure-stats,
    .achievements-grid,
    .initiatives-grid,
    .contact-grid,
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Infrastructure cards */
    .unit-card {
        flex-direction: column;
    }

    .unit-card .unit-image {
        width: 100%;
        height: 200px;
    }

    /* Hero section */
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.3;
        word-wrap: break-word;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Quality stages */
    .quality-stages {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    /* Process steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobile Responsive (max-width: 600px) */
@media (max-width: 600px) {
    /* Container padding */
    .container {
        padding: 0 20px;
        width: 100%;
        max-width: 100%;
    }

    /* Section spacing */
    section {
        padding: 50px 0;
    }

    /* Hero section - fix text wrapping and overflow */
    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero p {
        font-size: 0.9rem;
        line-height: 1.6;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    /* Section title */
    .section-title h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    .section-title p {
        font-size: 0.9rem;
    }

    /* Stats section - 2 columns, 2 rows */
    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .stat-item h4 {
        font-size: 1.8rem;
    }

    .stat-item p {
        font-size: 0.75rem;
    }

    /* Infrastructure stats - 2 per row */
    .infrastructure-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .infrastructure-stats .stat-item {
        padding: 1.25rem 0.75rem;
    }

    .infrastructure-stats .stat-item h4 {
        font-size: 1.8rem;
    }

    /* Why Clients Prefer Us - 2 per row */
    .why-clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .why-card {
        padding: 1.25rem;
    }

    .why-icon {
        width: 45px;
        height: 45px;
    }

    .why-icon i {
        font-size: 1.25rem;
    }

    /* Consultancy services - 2 per row */
    .consultancy-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .consultancy-card {
        padding: 1.25rem;
    }

    .key-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .benefit-card {
        padding: 1.25rem;
    }

    .benefit-icon {
        width: 45px;
        height: 45px;
    }

    .benefit-icon i {
        font-size: 1.25rem;
    }

    /* Features grid - 2 per row */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    /* Industries grid - 2 per row */
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .industry-item {
        padding: 1.5rem 1rem;
    }

    /* Process timeline */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step {
        padding: 1.25rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Product cards - 2 per row on mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card {
        padding: 1rem;
    }

    .product-card .btn {
        width: 100%;
        text-align: center;
    }

    /* Infrastructure units - 2 per row */
    .units-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .unit-card .unit-image {
        height: 160px;
    }

    .unit-card .unit-content {
        padding: 1.25rem;
    }

    /* Quality Control steps - 2 per row */
    .quality-stages {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stage {
        padding: 1.25rem;
    }

    /* R&D Achievements - 2 per row */
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .achievement-item {
        padding: 1.25rem;
    }

    .achievement-item h4 {
        font-size: 1.8rem;
    }

    /* Environmental initiatives - 2 per row */
    .initiatives-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .initiative-card {
        padding: 1.25rem;
    }

    /* Why Choose Consultancy list */
    .why-choose-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Buttons - full width on mobile */
    .btn {
        width: 100%;
        text-align: center;
        padding: 0.85rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Icon alignment */
    .why-icon,
    .benefit-icon,
    .step-number,
    .safety-icon,
    .initiative-icon {
        flex-shrink: 0;
    }

    /* WhatsApp button */
    .whatsapp-float {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    /* Scroll to top button */
    .scroll-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    /* Contact form */
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }

    .form-group {
        width: 100%;
    }

    /* Contact info */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section ul li {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Page header */
    .page-header h1 {
        font-size: 1.8rem;
        word-wrap: break-word;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    /* Tab buttons */
    .category-tabs {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tab-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    /* Contact methods */
    .contact-methods {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-method {
        width: 100%;
    }

    /* Services content on consultancy page */
    .services-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    /* Equipment grid */
    .equipment-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .equipment-item {
        padding: 1.25rem;
    }
}

/* Extra small mobile (max-width: 400px) */
@media (max-width: 400px) {
    /* Single column for very small screens */
    .products-grid,
    .consultancy-grid,
    .key-benefits,
    .why-clients-grid,
    .features-grid,
    .industries-grid,
    .stats,
    .stats-grid,
    .infrastructure-stats,
    .units-grid,
    .quality-stages,
    .achievements-grid,
    .initiatives-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 0.85rem;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }

    .section-title p {
        font-size: 0.85rem;
    }

    .stat-item h4 {
        font-size: 1.5rem;
    }

    .infrastructure-stats .stat-item h4 {
        font-size: 1.5rem;
    }

    .achievement-item h4 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
}

/* ==========================================================================
   ADVANCED ENGINEERINGISTIC PREMIUM LAYOUT & RESPONSIVENESS OVERRIDES
   ========================================================================== */

/* 1. Premium 2-Column Page Section Layouts */
.story-content,
.csr-content,
.overview-content,
.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
    width: 100%;
}

/* Proportional High-End Facility Image Containers */
.story-image,
.csr-image,
.overview-image,
.quality-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    background: var(--white);
    border: 1px solid rgba(15, 23, 42, 0.05);
    height: 420px;
    width: 100%;
    display: block;
}

.story-image img,
.csr-image img,
.overview-image img,
.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-image:hover img,
.csr-image:hover img,
.overview-image:hover img,
.quality-image:hover img {
    transform: scale(1.03);
}

/* 2. Global Card & Grid Stacking Overrides (Stops Mobile Overflow completely) */
@media (max-width: 768px) {
    .stats,
    .stats-grid,
    .products-grid,
    .consultancy-grid,
    .key-benefits,
    .why-clients-grid,
    .features-grid,
    .industries-grid,
    .units-grid,
    .infrastructure-stats,
    .achievements-grid,
    .initiatives-grid,
    .quality-stages,
    .process-steps,
    .cert-grid,
    .mv-grid,
    .equipment-grid,
    .services-content {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        width: 100% !important;
    }
}

/* 3. Responsive Proportions for 2-Column Sections on Tablet & Mobile */
@media (max-width: 992px) {
    .story-content,
    .csr-content,
    .overview-content,
    .quality-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .story-image,
    .csr-image,
    .overview-image,
    .quality-image {
        height: 350px;
    }
}

@media (max-width: 600px) {
    .story-content,
    .csr-content,
    .overview-content,
    .quality-content {
        gap: 2rem;
    }
    
    .story-image,
    .csr-image,
    .overview-image,
    .quality-image {
        height: 260px;
        border-radius: 12px;
    }
}

/* 4. Infrastructure Manufacturing Unit Image Overhauls (Full-bleed Factory Floor Banners) */
.unit-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 16px;
    background: var(--white);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.05);
    height: 100%;
}

.unit-card .unit-image {
    width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    height: auto !important;
    padding: 2rem !important; /* Restoring premium balanced padding */
    background: var(--background-color) !important;
    overflow: hidden;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.unit-card .unit-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important; /* CRITICAL FIX: prevents cropping */
    object-position: center !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.8s ease !important;
}

.unit-card:hover .unit-image img {
    transform: scale(1.08) !important;
}

@media (max-width: 600px) {
    .unit-card .unit-image {
        aspect-ratio: 4 / 3 !important; /* Keep proportion on mobile */
        height: auto !important;
    }
}

/* 5. Mobile Hero Section background Scaling Fixes */
@media (max-width: 768px) {
    .hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

/* ==========================================================================
   PREMIUM INDUSTRIAL UI/UX POLISH - SENIOR FRONTIER SPECIFIC OVERRIDES
   ========================================================================== */

/* 1. PREMIUM TYPOGRAPHY SYSTEM */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    letter-spacing: -0.02em !important;
    color: var(--primary-color);
}

h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
}

h2 {
    font-size: 2.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    letter-spacing: -0.03em !important;
}

/* Beautiful Metallic Text Gradient for Section Titles */
.section-title h2 {
    background: linear-gradient(135deg, var(--primary-color) 40%, var(--accent-color) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block;
}

p {
    margin-bottom: 1.5rem !important;
    line-height: 1.7 !important;
    font-size: 1rem !important;
    color: var(--text-color);
}

/* Subtle linear gradients for alternating sections */
.about, .consultancy, .industries {
    background: linear-gradient(180deg, var(--white) 0%, #f8fafc 100%) !important;
}

.products, .why-clients-prefer, .certifications, .contact {
    background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%) !important;
}

/* Hero Overlay Polish */
.hero {
    position: relative;
}
.hero::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important; left: 0 !important; right: 0 !important; bottom: 0 !important;
    background: radial-gradient(circle at 80% 20%, rgba(5, 150, 105, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* 2. CARD DESIGN POLISH (Premium glassmorphic depth, soft outlines, and highlights) */
.product-card,
.consultancy-card,
.service-card,
.why-card,
.benefit-card,
.unit-card,
.step,
.stage,
.achievement-item,
.initiative-card,
.safety-card,
.cert-item,
.info-item {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
    padding: 2.5rem 2rem !important;
    border-radius: var(--radius-md) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 10px 30px -10px rgba(9, 14, 26, 0.04), 
                0 1px 3px rgba(9, 14, 26, 0.01),
                inset 0 1px 0 rgba(255, 255, 255, 0.7) !important;
    border: 1px solid rgba(9, 14, 26, 0.04) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-align: center !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Specific card alignment overrides */
.product-card, .unit-card, .consultancy-card {
    text-align: left !important;
    align-items: flex-start !important;
}
.product-card h4, .unit-card h3, .consultancy-card h4 {
    text-align: left !important;
    width: 100% !important;
}
.product-card p, .unit-card p, .consultancy-card p {
    text-align: left !important;
    width: 100% !important;
}

/* Product Image Frame Polish */
.product-image {
    background: #f8fafc !important;
    border-radius: var(--radius-sm) !important;
    padding: 1.5rem !important;
    width: 100% !important;
    margin-bottom: 1.5rem !important;
    border: 1px solid rgba(9, 14, 26, 0.02) !important;
}

/* 3. STATISTICS CARDS REDESIGN & PERFECT WRAPPING FIX (TEXT CROPPING RESOLUTION) */
.stat-item {
    padding: 1.75rem 0.75rem !important; /* Reduced horizontal padding, responsive vertical space */
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.7) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 0 12px 30px -10px rgba(9, 14, 26, 0.04), 
                inset 0 1px 0 rgba(255, 255, 255, 0.8) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    width: 100% !important;
}

.stat-item::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 3px !important;
    background: linear-gradient(90deg, var(--accent-color) 0%, var(--accent-green) 100%) !important;
    transform: scaleX(0) !important;
    transform-origin: left !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.stat-item:hover {
    transform: translateY(-6px) !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(2, 132, 199, 0.2) !important;
    box-shadow: 0 24px 48px -15px rgba(9, 14, 26, 0.08), 
                0 0 0 1px rgba(2, 132, 199, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.95) !important;
}

.stat-item:hover::before {
    transform: scaleX(1) !important;
}

/* Counters h4 styling - powerful and fluid */
.stat-item h4 {
    font-size: 2.5rem !important; /* Perfect visual counter scale */
    font-weight: 800 !important;
    margin-bottom: 0.25rem !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
    background: linear-gradient(135deg, var(--primary-color) 30%, var(--accent-color) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: var(--primary-color) !important;
}

/* Label paragraph styling - prevents horizontal crop on all viewports */
.stat-item p {
    font-size: 0.8rem !important; /* Perfectly proportional font size */
    font-weight: 600 !important;
    color: var(--text-light) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    line-height: 1.35 !important;
    margin-bottom: 0 !important;
    white-space: normal !important; /* Forces standard wrap behavior */
    word-break: normal !important;
    word-wrap: break-word !important; /* Safe wrapping for long words */
    overflow-wrap: break-word !important;
    display: block !important;
    width: 100% !important;
    padding: 0 0.25rem !important;
}

/* Dark stat card override in about.html & consultancy.html */
.company-stats .stat-item {
    background: rgba(15, 22, 44, 0.65) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.2), 
                inset 0 1px 0 rgba(255, 255, 255, 0.05) !important;
}

.company-stats .stat-item:hover {
    background: rgba(15, 22, 44, 0.8) !important;
    border-color: rgba(2, 132, 199, 0.3) !important;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.3), 
                0 0 0 1px rgba(2, 132, 199, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1) !important;
}

.company-stats .stat-item h4 {
    background: linear-gradient(135deg, #ffffff 30%, var(--accent-color) 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: var(--white) !important;
}

.company-stats .stat-item p {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* 4. PREMIUM HOVER MOTIONS & SCROLL TRANSITIONS */
.consultancy-card:hover,
.service-card:hover,
.why-card:hover,
.benefit-card:hover,
.unit-card:hover,
.step:hover,
.stage:hover,
.achievement-item:hover,
.initiative-card:hover,
.safety-card:hover,
.cert-item:hover,
.info-item:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 24px 48px -15px rgba(9, 14, 26, 0.08), 
                0 0 0 1px rgba(2, 132, 199, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
    border-color: rgba(2, 132, 199, 0.2) !important;
}

/* Button Sliding Light sweep & Hover scale */
.btn {
    transition: var(--transition) !important;
    position: relative !important;
    overflow: hidden !important;
    border-radius: var(--radius-sm) !important;
    z-index: 1 !important;
}

.btn::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -50% !important;
    width: 25% !important;
    height: 100% !important;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%) !important;
    transform: skewX(-25deg) !important;
    transition: 0.75s ease !important;
    z-index: 2 !important;
}

.btn:hover::after {
    left: 125% !important;
}

.btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 25px -5px rgba(2, 132, 199, 0.3) !important;
}

.nav-links a {
    transition: var(--transition) !important;
}

/* Smooth Premium Image Hover Scale */
.about-image img,
.story-image img,
.overview-image img,
.unit-image img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.about-image:hover img,
.story-image:hover img,
.overview-image:hover img,
.unit-card:hover .unit-image img {
    transform: scale(1.03) !important;
}

/* Scroll Reveal Fade-up settings */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* 5. IMAGE-BESIDE-TEXT SECTION ALIGNMENT & PREMIUM FRAMING */
.about-content {
    display: grid !important;
    grid-template-columns: 1.15fr 0.85fr !important;
    gap: 4rem !important;
    align-items: center !important;
}

.about-image {
    position: relative !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 25px 60px -20px rgba(11, 18, 38, 0.18), 
                0 0 0 1px rgba(11, 18, 38, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    height: 480px !important;
    width: 100% !important;
    transition: var(--transition) !important;
}

.about-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

.about-image:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 35px 70px -20px rgba(11, 18, 38, 0.25), 
                0 0 0 1px rgba(2, 132, 199, 0.15) !important;
}

/* Subtle Vignette Overlay for Industrial Feel */
.about-image::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(to bottom, rgba(11, 18, 38, 0) 50%, rgba(11, 18, 38, 0.4) 100%) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* 6. LISTS & CHECKLIST POLISH (SUBTLE ENGINEERING GREEN HIGHLIGHTS) */
.product-features ul,
.unit-features ul,
.why-choose-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 1.5rem 0 !important;
}

.product-features ul li,
.unit-features ul li,
.why-choose-item {
    font-size: 0.95rem !important;
    color: var(--text-color) !important;
    margin-bottom: 0.6rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    list-style: none !important;
    padding: 0 !important;
}

.product-features ul li i,
.unit-features ul li i,
.why-choose-item i {
    color: var(--accent-green) !important; /* Premium engineering green checkmark */
    font-size: 0.95rem !important;
    width: 1.25rem !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* 7. HIGH-FIDELITY RESPONSIVE LAYOUT & SCALING */
@media (max-width: 1250px) {
    .stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }
}

@media (max-width: 992px) {
    .about-content,
    .story-content,
    .overview-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }
    
    .about-image,
    .story-image,
    .overview-image {
        height: 380px !important;
    }

    .stats,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }
    
    .stat-item {
        padding: 2.25rem 1.25rem !important; /* Comfortable wrapping padding on tablet size */
    }
    
    .stat-item h4 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 600px) {
    h1 { font-size: 2.25rem !important; }
    h2 { font-size: 1.75rem !important; }
    h3 { font-size: 1.4rem !important; }
    h4 { font-size: 1.2rem !important; }
    p { font-size: 0.95rem !important; }

    .about-image,
    .story-image,
    .overview-image {
        height: 280px !important;
        border-radius: var(--radius-sm) !important;
    }

    .stats,
    .stats-grid {
        grid-template-columns: 1fr !important; /* Clean single column stack on mobile */
        gap: 1.25rem !important;
    }

    .stat-item {
        padding: 2.25rem 1.5rem !important;
        min-height: auto !important;
    }
    
    .stat-item h4 {
        font-size: 2.5rem !important;
    }
}

/* 8. FLOATING WHATSAPP BUTTON PULSE INDICATOR */
.whatsapp-float {
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.35) !important;
    position: fixed !important;
    z-index: 9999 !important;
    transition: var(--transition) !important;
}

.whatsapp-float::before {
    content: '' !important;
    position: absolute !important;
    top: -4px !important;
    left: -4px !important;
    right: -4px !important;
    bottom: -4px !important;
    border: 2px solid #27ae60 !important;
    border-radius: 50% !important;
    opacity: 0.8 !important;
    animation: wa-pulse 2s infinite !important;
    pointer-events: none !important;
}

@keyframes wa-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.25); opacity: 0; }
}

/* 9. PREMIUM INPUT FORMS POLISH */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    border: 1px solid rgba(11, 18, 38, 0.12) !important;
    border-radius: 8px !important;
    padding: 0.85rem 1rem !important;
    background: rgba(255, 255, 255, 0.8) !important;
    transition: var(--transition) !important;
    outline: none !important;
    font-family: 'Inter', sans-serif !important;
    color: var(--text-color) !important;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1) !important;
    background: var(--white) !important;
}

/* Darker premium footer backdrop */
footer {
    background: #050814 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}
footer h4 {
    color: var(--white) !important;
}
footer p, footer li {
    color: rgba(255, 255, 255, 0.6) !important;
}

/* ======================================================
   USER REQUESTED PREMIUM HOVER OVERRIDES FOR PRODUCT CARDS
   ====================================================== */

.product-card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.06) !important;
    transition: all 0.35s ease !important;
}
}

.hero-nav-btn {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transition: var(--transition);
}

.hero-nav-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.hero-nav-btn::after {
    font-size: 20px !important;
}

/* Cinematic Hero CSS Overrides */
.hero-swiper .hero-content {
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    position: relative;
    top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-tag {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 6px 16px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 25px;
    position: relative;
    border-radius: 50px;
    box-shadow: 0 0 15px rgba(140, 198, 63, 0.2);
}

.hero-swiper h1 {
    font-size: 2.4rem !important;
    line-height: 1.2 !important;
    text-transform: uppercase;
    font-weight: 900 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
    letter-spacing: -1px;
}

.hero-swiper p {
    font-size: 1rem !important;
    font-weight: 500 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 650px;
    margin: 0 auto 35px auto;
    text-shadow: 0 4px 15px rgba(0,0,0,0.4);
    letter-spacing: 0.5px;
}

.hero-buttons {
    display: flex;
    justify-content: center !important;
    gap: 20px;
    width: 100%;
}

.hero-buttons .btn {
    background: var(--accent-color) !important;
    color: #1a1a1a !important;
    border-radius: 4px !important; 
    padding: 16px 36px !important;
    font-size: 1.05rem !important;
    text-transform: uppercase;
    font-weight: 800 !important;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    border: none !important;
    box-shadow: 0 10px 25px rgba(140, 198, 63, 0.3) !important;
}

.hero-buttons .btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(140, 198, 63, 0.5) !important;
    background: #ffffff !important;
    color: var(--accent-color) !important;
}

.hero-buttons .btn-outline {
    background: rgba(255,255,255,0.05) !important;
    color: #ffffff !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255,255,255,0.4) !important;
    border-radius: 4px !important;
    padding: 16px 36px !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: rgba(255,255,255,0.5) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Slider arrows Mudico style */
.hero-nav-btn {
    background: var(--accent-color) !important;
    border-radius: 0 !important;
    width: 50px !important;
    height: 50px !important;
    opacity: 1 !important;
}
.hero-nav-btn:hover {
    background: var(--primary-color) !important;
}
.swiper-button-prev {
    left: 0 !important;
}
.swiper-button-next {
    right: 0 !important;
}

/* Fix WhatsApp Button */
.whatsapp-float {
    border-radius: 8px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25d366 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    bottom: 20px !important;
    left: 20px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3) !important;
}
.whatsapp-float i {
    color: white !important;
    font-size: 35px !important;
}
.whatsapp-float::before {
    display: none !important; /* Remove huge pulse ring */
}
/* Removed body padding to allow premium transparent navbar overlay */
body {
    padding-top: 0 !important;
}

.hero-swiper {
    height: 100vh !important;
    min-height: 500px !important;
}

/* Responsive fixes for mobile overflow */
@media (max-width: 768px) {
    .hero-swiper h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto;
    }
    .hero-tag {
        font-size: 0.8rem !important;
        padding: 5px 10px !important;
        margin-bottom: 10px !important;
    }
    .hero-buttons {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: flex-start !important;
    }
    .hero-buttons .btn, .hero-buttons .btn-outline {
        width: 100% !important;
        text-align: center !important;
    }
    .whatsapp-float {
        width: 50px !important;
        height: 50px !important;
        padding: 5px !important;
        bottom: 10px !important;
        left: 10px !important;
    }
    .whatsapp-float i {
        font-size: 24px !important;
        margin-bottom: 2px !important;
    }
    .whatsapp-float span {
        font-size: 9px !important;
    }
    /* Hide slider arrows on mobile to save space */
    .hero-nav-btn {
        display: none !important;
    }
}

html, body {
    overflow-x: hidden; /* Prevent horizontal scrolling */
    width: 100%;
}

/* ======================================================
   CINEMATIC & PREMIUM INDUSTRIAL OVERRIDES
   ====================================================== */

.product-card:hover, .consultancy-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 18px 40px rgba(0,0,0,0.18), 0 0 12px rgba(13,71,161,0.15) !important;
}

.product-card .product-image img, .consultancy-card .service-image img {
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover .product-image img, .consultancy-card:hover .service-image img {
    transform: scale(1.08) !important;
}

/* Hero Slider Styles & Cinematic Zoom */
.hero-swiper {
    height: 100vh;
    min-height: 600px;
}

.hero-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: cinematicKenBurns 25s infinite alternate ease-in-out;
}

@keyframes cinematicKenBurns {
    0% { background-size: 100% auto; background-position: center; }
    100% { background-size: 115% auto; background-position: center bottom; }
}

.hero-slide .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10, 25, 48, 0.95) 0%, rgba(10, 25, 48, 0.5) 50%, rgba(10, 25, 48, 0.95) 100%);
    z-index: 1;
}

.hero-slide .container {
    z-index: 2;
    position: relative;
    width: 100%;
}

/* Premium Footer */
footer {
    background: linear-gradient(135deg, #0A1930 0%, #050d1a 100%) !important;
    border-top: 4px solid var(--accent-color);
}

/* ======================================================
   PREMIUM PRODUCT & INDUSTRY SHOWCASE FIXES
   ====================================================== */

/* Product Cards Final Polish */
.product-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    box-shadow: 0 4px 25px rgba(10, 25, 48, 0.08) !important;
    border: 1px solid rgba(10, 25, 48, 0.03) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    height: 100% !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(10, 25, 48, 0.15) !important;
}

.product-image {
    background: #f8fafc !important;
    border-radius: 8px !important;
    width: 100% !important;
    height: 220px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.5rem !important;
    padding: 1rem !important;
    overflow: hidden !important;
}

.product-image img {
    max-height: 100% !important;
    width: auto !important;
    object-fit: contain !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover .product-image img {
    transform: scale(1.12) !important;
}

.product-card h4 {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    margin: 0 !important;
    width: 100% !important;
    text-align: center !important;
}

/* We Serve Industry Final Polish */
.industry-item {
    background: #ffffff !important;
    border-radius: 12px !important;
    padding: 2.5rem 1rem !important;
    text-align: center !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
    border: 1px solid rgba(0,0,0,0.02) !important;
    transition: all 0.4s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.industry-item:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.industry-icon-circle {
    background: var(--primary-color) !important;
    width: 110px !important;
    height: 110px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 1.5rem auto !important;
    transition: all 0.4s ease !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(10, 25, 48, 0.3) !important;
}

.industry-icon-circle::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--gradient-accent) !important;
    opacity: 0;
    transition: opacity 0.4s ease !important;
}

.industry-item:hover .industry-icon-circle::before {
    opacity: 1 !important;
}

.industry-icon-circle i {
    font-size: 2.5rem !important;
    color: var(--white) !important;
    position: relative !important;
    z-index: 2 !important;
    transition: transform 0.4s ease !important;
}

.industry-item:hover .industry-icon-circle i {
    transform: scale(1.15) !important;
}

.industry-item h4 {
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}

/* ======================================================
   EXACT REPLICA DESIGN MATCH (USER REQUESTED)
   ====================================================== */

/* 1. Products Section */
.products {
    background: #0b5b94 !important;
    position: relative;
    padding: 100px 0 120px 0 !important;
}

.products::before {
    display: none !important;
}

.products .container {
    position: relative;
    z-index: 1;
}

.products .section-title p {
    color: #ffffff !important;
    border-bottom: 2px solid #ffffff !important;
}

.products .section-title h2 {
    color: #ffffff !important;
    text-shadow: none !important;
}

.category-filters {
    display: none !important; /* Hidden to match screenshot */
}

.product-card {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    overflow: visible;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card::after {
    display: none !important;
}

.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: none !important;
    border-color: transparent !important;
}

.product-image {
    background: #ffffff !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important; /* Perfect square like screenshot */
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2.5rem !important; 
    margin-bottom: 0 !important;
    border: none !important;
    border-radius: 6px !important; /* Slight rounded corners */
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    transition: box-shadow 0.4s ease !important;
}

.product-card:hover .product-image {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.product-image img {
    max-height: 100% !important;
    max-width: 100% !important;
    width: auto !important;
    object-fit: contain !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.product-card:hover .product-image img {
    transform: scale(1.1) !important; 
}

.product-card h4 {
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    margin: 1.5rem 0 0 0 !important;
    letter-spacing: 1px !important;
    padding: 0 !important;
    background: transparent !important;
}

/* Square Nav Arrows */
.products-swiper .swiper-button-next,
.products-swiper .swiper-button-prev {
    background: #1a1a1a !important;
    color: #ffffff !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 4px !important;
    top: calc(50% - 1.5rem) !important; /* Align vertically with the image square, accounting for text below */
    margin-top: -22px !important;
}

.products-swiper .swiper-button-next::after,
.products-swiper .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 900 !important;
}

/* 2. We Serve Industry Section */
.industries {
    background: #ffffff !important;
    padding: 100px 0 !important;
    position: relative;
}

.industry-item {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 20px 0 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

.industry-icon-circle {
    background: #1a1a1a !important;
    width: 120px !important;
    height: 120px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 25px !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05) !important;
    border: 3px solid transparent !important;
}

.industry-icon-circle i {
    font-size: 45px !important;
    color: #ffffff !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.industry-item:hover .industry-icon-circle {
    background: #0b5b94 !important; /* Premium industrial blue hover */
    transform: translateY(-10px) scale(1.05) !important;
    box-shadow: 0 20px 40px rgba(11, 91, 148, 0.25) !important;
    border: 3px solid #8cc63f !important; /* Green industrial accent border */
}

.industry-item:hover .industry-icon-circle i {
    transform: scale(1.1) !important;
}

.industry-item h4 {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: color 0.4s ease !important;
    margin: 0 !important;
}

.industry-item:hover h4 {
    color: #0b5b94 !important;
}

/* ======================================================
   HYBRID HOMEPAGE ENHANCEMENTS
   ====================================================== */

/* Hero Cinematic Effect & Motion */
.hero-slide {
    animation: cinematicKenBurns 25s infinite alternate ease-in-out;
}

/* Consultancy Section Enterprise Feel */
.consultancy {
    background: #0b5b94 !important;
    position: relative !important;
}

.consultancy::before {
    display: none !important;
}

.consultancy .container {
    position: relative;
    z-index: 1;
}

.consultancy .section-title h2 {
    color: var(--white) !important;
    text-shadow: none !important;
}

.consultancy .section-title p {
    color: rgba(255, 255, 255, 0.8) !important;
}

.consultancy-card {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
    overflow: visible !important;
    padding: 0 !important;
    transition: transform 0.5s ease !important;
}

.consultancy-card::before {
    display: none !important;
}

.consultancy-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: none !important;
    background: transparent !important;
    border-color: transparent !important;
}

.consultancy-card:hover::before {
    display: none !important;
}

.consultancy-card h4 {
    color: var(--white) !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    text-align: center !important;
    text-transform: uppercase !important;
    margin: 1.5rem 0 0.5rem 0 !important;
}

.consultancy-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center !important;
    font-size: 0.9rem !important;
}

.consultancy-card .service-image {
    background: #ffffff !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 2.5rem !important;
    margin-bottom: 0 !important;
    border-radius: 6px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
    transition: box-shadow 0.4s ease !important;
}

.consultancy-card:hover .service-image {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2) !important;
}

.consultancy-card .service-image img {
    max-height: 100% !important;
    max-width: 100% !important;
    width: auto !important;
    object-fit: contain !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.consultancy-card:hover .service-image img {
    transform: scale(1.1) !important; 
}

/* Swiper Arrows */
.consultancy-swiper .swiper-button-next,
.consultancy-swiper .swiper-button-prev,
.industries-swiper .swiper-button-next,
.industries-swiper .swiper-button-prev {
    background: #1a1a1a !important;
    color: #ffffff !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 4px !important;
    top: calc(50% - 3rem) !important; /* Adjusted slightly to center on images with taller text underneath */
    margin-top: -22px !important;
}

.consultancy-swiper .swiper-button-next::after,
.consultancy-swiper .swiper-button-prev::after,
.industries-swiper .swiper-button-next::after,
.industries-swiper .swiper-button-prev::after {
    font-size: 16px !important;
    font-weight: 900 !important;
}

/* Client Logo Ticker Polish */
.logo-swiper .swiper-wrapper { transition-timing-function: linear !important; }
.client-logo-text { font-size: 1.5rem !important; font-weight: 900 !important; color: #8892a0 !important; text-transform: uppercase; letter-spacing: 2px; transition: color 0.3s ease; margin: 0; }
.client-logo-text:hover { color: var(--primary-color) !important; cursor: pointer; }

@keyframes cinematicKenBurns { 0% { transform: scale(1.0); } 100% { transform: scale(1.1); } }

.hero-slide .hero-overlay { background: radial-gradient(circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%) !important; }

/* Fix for hidden slider images */
.hero::before { display: none !important; }

/* --- PREMIUM INDUSTRIAL POLISH --- */

/* Image Overlays for Cinematic Feel */
.product-image, .service-image, .unit-image, .about-image {
    position: relative;
    overflow: hidden; /* Ensure overlay doesn't spill out */
}

.product-image::after, .service-image::after, .unit-image::after, .about-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 15, 25, 0.05) 0%, rgba(11, 15, 25, 0.25) 100%);
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: inherit;
    z-index: 1;
}

.product-card:hover .product-image::after, 
.consultancy-card:hover .service-image::after, 
.unit-card:hover .unit-image::after, 
.about-image:hover::after {
    opacity: 0.1; /* Lighten slightly on hover to 'reveal' */
}

/* Premium Gradients for Buttons and Accents */
.btn {
    background: var(--gradient-accent) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.2) !important;
}

.btn:hover {
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.4) !important;
    transform: translateY(-3px) scale(1.02);
}

.btn-outline {
    background: transparent !important;
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: none !important;
}

.btn-outline:hover {
    background: var(--gradient-primary) !important;
    color: var(--white) !important;
    border-color: transparent !important;
    box-shadow: 0 10px 30px rgba(11, 15, 25, 0.3) !important;
}

/* Image Consistency & Hover Enhancements */
.home-img img, .product-image img, .service-image img, .unit-image img, .about-image img {
    filter: contrast(1.05) saturate(1.05); /* Make images pop slightly more */
    position: relative;
    z-index: 0;
}

/* Ensure consistent spacing and responsiveness */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
}

/* Fix sections spacing for enterprise feel */
section {
    padding: 120px 0 !important;
}
@media (max-width: 768px) {
    section {
        padding: 60px 0 !important; /* Reduced from 80px */
    }
    
    /* 1. Mobile Header Fix */
    header {
        background: rgba(10, 25, 48, 0.98) !important;
        padding: 0 !important;
    }
    nav {
        padding: 10px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    .logo {
        padding: 2px 8px !important;
    }
    .logo img {
        height: 40px !important;
    }
    .nav-toggle {
        display: flex !important;
        margin-left: auto !important;
        z-index: 1001 !important;
    }
    
    /* 6. Premium Mobile Menu */
    .nav-links {
        display: none !important; /* Hide old desktop links on mobile */
    }
    
    .mobile-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100vw;
        height: 100vh;
        background: rgba(10, 25, 48, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        padding: 0;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .mobile-menu-wrapper.active {
        right: 0;
    }
    
    /* Header Area */
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 25px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: rgba(0, 0, 0, 0.2);
    }
    .mobile-logo {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .mobile-logo img {
        height: 35px;
        filter: drop-shadow(0 0 5px rgba(255,255,255,0.2));
    }
    .mobile-logo span {
        color: var(--white);
        font-family: var(--font-heading);
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 1px;
    }
    .mobile-close-btn {
        background: transparent;
        border: none;
        color: var(--white);
        font-size: 1.8rem;
        cursor: pointer;
        transition: var(--transition);
        padding: 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .mobile-close-btn:hover {
        color: var(--primary);
        transform: rotate(90deg);
    }
    
    /* Nav Links Area */
    .mobile-nav-links {
        list-style: none;
        padding: 30px 25px;
        margin: 0;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .mobile-nav-links li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .mobile-nav-links li:last-child {
        border-bottom: none;
    }
    .mobile-nav-links a {
        display: flex;
        align-items: center;
        gap: 15px;
        padding: 18px 10px;
        font-size: 1.2rem;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: var(--transition);
    }
    .mobile-nav-links a i {
        font-size: 1.3rem;
        color: var(--primary);
        width: 25px;
        text-align: center;
        transition: var(--transition);
    }
    .mobile-nav-links a:hover, .mobile-nav-links a.active {
        color: var(--white);
        background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
        padding-left: 20px;
        border-left: 3px solid var(--primary);
    }
    .mobile-nav-links a:hover i, .mobile-nav-links a.active i {
        color: var(--secondary);
    }
    
    /* Bottom Action Area */
    .mobile-action-area {
        padding: 25px;
        background: rgba(0, 0, 0, 0.3);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    .mobile-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 14px;
        border-radius: 8px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        transition: var(--transition);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    .mobile-btn i {
        font-size: 1.2rem;
    }
    .mobile-btn.call-btn {
        background: var(--primary);
        color: var(--white);
        box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    }
    .mobile-btn.call-btn:hover {
        background: #1d4ed8;
        transform: translateY(-2px);
    }
    .mobile-btn.wa-btn {
        background: #25D366; /* WhatsApp Green */
        color: var(--white);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    .mobile-btn.wa-btn:hover {
        background: #128C7E;
        transform: translateY(-2px);
    }
    .mobile-btn.email-btn {
        background: transparent;
        color: var(--white);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .mobile-btn.email-btn:hover {
        background: rgba(255, 255, 255, 0.05);
        border-color: var(--white);
    }
    
    /* Hamburger animation */
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px) !important; }
    .nav-toggle.active span:nth-child(2) { opacity: 0 !important; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -5px) !important; }

    /* 2. Mobile Hero Fix */
    .hero, .hero-swiper {
        height: auto !important;
        min-height: auto !important;
        padding: 100px 0 60px !important;
    }
    .hero-static-content {
        position: relative !important;
        height: auto !important;
        padding-top: 40px !important;
    }
    .hero-static-content .container {
        margin-top: 0 !important;
    }
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 1rem !important;
        word-wrap: break-word !important;
    }
    .hero p {
        font-size: 1.05rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        padding: 0 10px !important;
    }

    /* 3. CTA Button Fix */
    .hero-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        width: 100% !important;
        padding: 0 20px !important;
    }
    .hero-buttons .btn {
        padding: 12px 24px !important;
        font-size: 1rem !important;
        width: 100% !important;
    }
    
    /* 4. WhatsApp Button Fix */
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        width: 60px !important;
        height: 60px !important;
        padding: 10px !important;
        z-index: 999 !important;
    }

    /* 5. Mobile Spacing */
    .section-title {
        margin-bottom: 2rem !important;
    }
    .section-title h2 {
        font-size: 2rem !important;
    }
}
@media (max-width: 414px) {
    .hero h1 { font-size: 2rem !important; }
}
@media (max-width: 375px) {
    .hero h1 { font-size: 1.8rem !important; }
}
@media (max-width: 320px) {
    .hero h1 { font-size: 1.6rem !important; }
    .hero-buttons .btn { font-size: 0.9rem !important; padding: 10px 20px !important; }
}
