/* ==========================================================================
   DESIGN SYSTEM & PROFESSIONAL CORPORATE THEME
   ========================================================================== */
:root {
    /* Fonts */
    --font-headings: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Transition Speeds */
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;

    /* Spacing & Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Corporate Colors (SKF / Unbrako Style B2B) */
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #0f172a;

    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #f8fafc;

    --corporate-blue: #4d97d0;
    --corporate-blue-hover: #1558a8;
    --corporate-blue-glow: rgba(11, 58, 117, 0.08);

    --accent-orange: #1a6fc4;
    --accent-orange-hover: #155fa0;
    --accent-orange-glow: rgba(26, 111, 196, 0.1);

    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    --shadow-color: rgba(15, 23, 42, 0.06);
    --shadow-heavy: rgba(15, 23, 42, 0.14);
    --shadow-card: 0 4px 6px rgba(15, 23, 42, 0.04), 0 10px 30px rgba(15, 23, 42, 0.08);
    --shadow-card-hover: 0 8px 16px rgba(15, 23, 42, 0.06), 0 20px 48px rgba(11, 58, 117, 0.14);
    --shadow-header: 0 1px 0 var(--border-color), 0 4px 24px rgba(15, 23, 42, 0.06);
}


/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.25;
    color: #1e293b;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    background: none;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-hover);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--corporate-blue);
}

/* ==========================================================================
   UTILITY CLASSES & BUTTONS
   ========================================================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

/* Light Section Backgrounds */
.bg-light {
    background: #f8fafc;
}

.bg-white-sec {
    background: #ffffff;
}

.text-accent {
    color: var(--corporate-blue);
}

.text-muted {
    color: var(--text-muted);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: var(--radius-sm);
    background: var(--corporate-blue-glow);
    color: var(--corporate-blue);
    border: 1px solid rgba(11, 58, 117, 0.15);
    margin-bottom: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-primary {
    background: #1a6fc4;
    color: white;
    box-shadow: 0 2px 8px rgba(26, 111, 196, 0.28);
}

.btn-primary:hover {
    background: #1558a8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 111, 196, 0.38);
}

.btn-secondary {
    border: 1px solid #cbd5e1;
    color: #475569;
    background: #ffffff;
}

.btn-secondary:hover {
    border-color: #1a6fc4;
    color: #1a6fc4;
    transform: translateY(-1px);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header.scrolled {
    box-shadow: var(--shadow-header);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px !important;
    width: auto;

    filter: none;
    object-fit: contain;
}

.logo-text {
    border-left: 2px solid var(--border-color);
    padding-left: 12px;
}

.logo-title {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--corporate-blue);
    line-height: 1;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #475569;
    position: relative;
    padding: 6px 0;
}

.nav-link:hover {
    color: #1a6fc4;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a6fc4;
    transition: var(--transition-fast);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-fast);
}

/* Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border-color);
    padding: 100px 36px 36px 36px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 999;
    box-shadow: -10px 0 30px var(--shadow-heavy);
    transition: var(--transition-smooth);
}

.mobile-nav-drawer.active {
    right: 0;
}

/* ==========================================================================
   HERO SECTION - CLASSIC B2B ROW LAYOUT
   ========================================================================== */
.hero {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f2ff 50%, #f5f9ff 100%);
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

/* Wave shape */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* Big glowing orb top-right */
.hero::after {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 111, 196, 0.12) 0%, rgba(26, 111, 196, 0.05) 40%, transparent 70%);
    animation: orbPulse 6s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

/* Second orb bottom-left */
.hero-orb-2 {
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 550px;
    height: 550px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(77, 151, 208, 0.10) 0%, transparent 65%);
    animation: orbPulse 8s ease-in-out infinite reverse;
    pointer-events: none;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 80px;
}

/* Hero content entry animations */
.hero-content .badge {
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
    background: rgba(26, 111, 196, 0.08);
    border-color: rgba(26, 111, 196, 0.3);
    color: #1a6fc4;
    font-size: 0.75rem;
    padding: 8px 16px;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1e293b;
    text-transform: uppercase;
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.hero-title span.text-accent {
    color: #1a6fc4;
}

.hero-description {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.75;
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.hero-cta {
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero trust badges below buttons */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 36px;
    animation: heroFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-trust-item i {
    color: #1a6fc4;
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: heroFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

/* Glowing ring behind image */
.hero-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img-wrapper::before {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 111, 196, 0.12) 0%, transparent 70%);
    animation: orbPulse 4s ease-in-out infinite;
    z-index: 0;
}

.hero-img {
    width: 100%;
    max-width: 460px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 40px rgba(26, 111, 196, 0.25)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.08));
    animation: float 6s ease-in-out infinite;
    position: relative;
    z-index: 1;
}

/* ISO Badge floating */
.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: -10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 2;
    font-size: 0.8rem;
}

.hero-img-badge i {
    color: #1a6fc4;
    font-size: 1.2rem;
}

.hero-img-badge-text strong {
    display: block;
    font-size: 0.8rem;
    color: #1e293b;
    font-weight: 800;
}

.hero-img-badge-text span {
    font-size: 0.7rem;
    color: #64748b;
}

/* ==========================================================================
   STATS COUNTERS
   ========================================================================== */
.stats {
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    padding: 50px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    border-right: 1px solid var(--border-color);
    text-align: center;
    padding: 20px 16px;
    transition: var(--transition-fast);
}

.stat-item:hover .stat-number {
    text-shadow: 0 0 20px rgba(11, 58, 117, 0.2);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--corporate-blue);
    line-height: 1.1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
}

/* ==========================================================================
   SECTION HEADER
   ========================================================================== */
.section-header {
    margin-bottom: 60px;
}

.section-title-line {
    display: flex;
    align-items: center;
    gap: 20px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #1a6fc4;
    white-space: nowrap;
}

.section-line {
    flex-grow: 1;
    height: 1px;
    background: rgba(26, 111, 196, 0.25);
}

.section-desc {
    color: #475569;
    font-size: 1.05rem;
    max-width: 760px;
    margin-top: 10px;
}

.section-titles {
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    white-space: nowrap;
}

/* ==========================================================================
   ABOUT US - CLASSIC GRID LAYOUT
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: flex-start;
}

.about-img-container {
    position: relative;
    top: 10px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-img {
    border-radius: var(--radius-md);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08), 0 24px 56px rgba(15, 23, 42, 0.12);
    width: 100%;
    transition: var(--transition-smooth);
}

.about-img-container:hover .about-img {
    box-shadow: 0 12px 28px rgba(0, 70, 180, 0.10), 0 32px 64px rgba(0, 70, 180, 0.14);
    transform: translateY(-4px);
}

.about-subtitle {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: #1e293b;
}

.about-text {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 30px;
    text-align: justify;
}

/* Timeline Components */
.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.timeline-card {
    display: flex;
    gap: 20px;
    background: #f8fafc;
    padding: 20px;
    border-radius: var(--radius-sm);
    border-left: 3px solid #1a6fc4;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: var(--transition-fast);
}

.timeline-card:hover {
    background: #eff6ff;
    transform: translateX(4px);
    border-left-color: #4d97d0;
}

.timeline-year {
    font-size: 1rem;
    font-weight: 800;
    color: #1a6fc4;
    flex-shrink: 0;
    width: 60px;
}

.timeline-content h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: #1e293b;
}

.timeline-content p {
    font-size: 0.85rem;
    color: #475569;
}

/* ==========================================================================
   PRODUCTS CATALOGUE (3-COLUMN CLEAN CARDS)
   ========================================================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--corporate-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    border-color: var(--corporate-blue);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-5px);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.product-material-badge {
    padding: 3px 10px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
}

.product-series-code {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--corporate-blue);
}

.product-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.product-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    min-height: 60px;
}

.product-specs {
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-bottom: 24px;
}

.product-specs-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-specs-list li {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs-list li i {
    color: var(--corporate-blue);
    font-size: 0.75rem;
}

.product-cta-btn {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--corporate-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.product-cta-btn i {
    transition: var(--transition-fast);
}

.product-card:hover .product-cta-btn i {
    transform: translateX(4px);
}

/* ==========================================================================
   BEARING SELECTOR TOOL (CLASSIC SPEC LAYOUT)
   ========================================================================== */
.selector-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.selector-intro-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-card);
}

.selector-intro-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 14px;
    color: var(--corporate-blue);
}

.selector-intro-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.input-form-group {
    margin-bottom: 20px;
}

.input-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: block;
}

.select-box-wrapper {
    position: relative;
}

.selector-select-control {
    width: 100%;
    padding: 12px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.selector-select-control:focus {
    border-color: var(--corporate-blue);
}

.select-box-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.8rem;
    pointer-events: none;
}

/* Results Datasheet Block */
.selector-results {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-card);
    display: none;
}

.selector-results.active {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

.results-table-title {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--corporate-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 8px;
}

.results-table-container {
    overflow-x: auto;
}

.results-table {
    width: 100%;
    border-collapse: collapse;
}

.results-table th,
.results-table td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.results-table th {
    background-color: var(--bg-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-secondary);
    width: 40%;
}

.results-table td {
    font-size: 0.88rem;
    font-weight: 600;
}

.results-table td.highlight {
    color: var(--corporate-blue);
    font-weight: 700;
}

/* ==========================================================================
   QUALITY POLICY
   ========================================================================== */
.quality-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.quality-card-blocks {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.quality-card-item {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
}

.quality-card-item:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--corporate-blue);
    transform: translateX(4px);
}

.quality-card-number {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background: var(--corporate-blue-glow);
    border: 1px solid var(--corporate-blue);
    color: var(--corporate-blue);
    font-size: 1rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.quality-card-text h4 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.quality-card-text p {
    font-size: 0.88rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   ENQUIRY & CONTACT - CLEAN B2B LAYOUT
   ========================================================================== */
.enquiry-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: flex-start;
}

.contact-card-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-box-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    transition: var(--transition-fast);
}

.contact-box-item:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: var(--corporate-blue);
}

.contact-box-icon {
    width: 44px;
    height: 44px;
    background: var(--corporate-blue-glow);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--corporate-blue);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-box-info h5 {
    font-size: 0.95rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.contact-box-info p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Form Panel */
.enquiry-form-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-card);
}

.form-field-row {
    display: grid;
    grid-template-cols: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.form-field-group.no-margin {
    margin-bottom: 0;
}

.form-text-input,
.form-select-control,
.form-textarea-control {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.form-text-input:focus,
.form-select-control:focus,
.form-textarea-control:focus {
    border-color: var(--corporate-blue);
    background: var(--bg-primary);
}

.form-textarea-control {
    resize: none;
    height: 120px;
}

.form-submit-action {
    width: 100%;
    margin-top: 8px;
}

/* Modal SUCCESS View */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 540px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(24px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-check-icon {
    width: 72px;
    height: 72px;
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 20px auto;
}

.modal-title {
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.modal-text {
    color: var(--text-secondary);
    font-size: 0.92rem;
    margin-bottom: 24px;
}

.quote-receipt-card {
    border: 1px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 18px;
    background: var(--bg-secondary);
    text-align: left;
    margin-bottom: 28px;
    font-family: monospace;
    font-size: 0.78rem;
    color: var(--text-secondary);
}

.quote-receipt-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
    font-weight: bold;
    color: var(--corporate-blue);
}

/* ==========================================================================
   CONTACT DETAILS & ROAD MAP
   ========================================================================== */

/* Head Office Strap CTA */
#contact.contact-bg-img {
    position: relative;
}

.contact-address-row {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.contact-address-text {
    color: #0f172a;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
}

.contact-address-line {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 700;
    text-shadow: 0 1px 4px rgba(255,255,255,0.9);
}

.contact-address-line i {
    margin-top: 3px;
    color: #1a6fc4;
}

.contact-cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .contact-address-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-cta-row {
        width: 100%;
        flex-direction: column;
    }
}


.contact-strap-card {
    margin-top: 22px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-card);

    /* YAHAN IMAGE LAGAYI HAI: Pehle Gradient (Overlay) phir URL */
    background:
        url("img/industrial-foundry.png");
    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 30px;
    /* Padding thodi badhayi taaki image dikhe */
    position: relative;
    z-index: 1;
}

.contact-strap-left {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #ffffff;
}

.contact-strap-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-strap-title {
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 4px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* Image par text chamkega */
}

.contact-strap-sub {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-cta-btn {
    padding: 12px 24px;
    background: var(--accent-orange);
    /* Button color highlight */
    border: none;
    color: white;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .contact-strap-card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .contact-strap-left {
        flex-direction: column;
    }

    .contact-strap-right {
        width: 100%;
    }

    .contact-cta-btn {
        width: 100%;
        display: block;
    }
}

#contact.contact-bg-img {
    background: linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35)), url("../img/industrial-foundry.png");
    background-size: cover;
    background-position: center;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}


/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #f8fafc;
    padding: 80px 0 30px 0;
    border-top: 1px solid #e2e8f0;
}

.footer-brand-title,
.footer-links h5,
.footer-contact h5 {
    color: #1e293b;
}




.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e2e8f0;
    align-items: flex-start;
}

/* Desktop: logo left aligned like other columns */
.footer-brand {
    text-align: left;
}

.footer-logo {
    margin-left: 0;
    margin-right: auto;
}

.footer-links {
    text-align: left;
    padding-top: 0;
}

.footer-contact {
    text-align: left;
    padding-top: 0;
}

.footer-contact-details p {
    justify-content: flex-start;
    text-align: left;
    color: #475569;
}

.footer-logo {
    height: 100px;
    margin-bottom: 9px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.7;
    color: #475569;
}


.footer-links h5,
.footer-contact h5 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #1e293b;
    margin-bottom: 20px;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    color: #1a6fc4;
    font-size: 0.88rem;
    transition: all 0.2s ease;
}

.footer-links-list a:hover {
    color: #1558a8;
    padding-left: 6px;
}

.footer-contact-details {
    font-size: 0.88rem;
    color: #475569;
}

.footer-contact-details p {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact-details p i {
    color: #1a6fc4;
    margin-top: 3px;
}

.footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-top: 1px solid #e2e8f0;
}

.footer-bottom-row a {
    color: #1a6fc4;
    font-weight: 700;
    transition: color 0.2s ease;
}

.footer-bottom-row a:hover {
    color: #1558a8;
}

/* ==========================================================================
   ANIMATIONS KEYFRAMES
   ========================================================================== */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(0.5deg);
    }

    50% {
        transform: translateY(-14px) rotate(0deg);
    }

    75% {
        transform: translateY(-6px) rotate(-0.5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gridMove {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 32px 32px;
    }
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.12);
        opacity: 0.7;
    }
}

@keyframes ping {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.6);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* ==========================================================================
   SCROLL REVEAL — base hidden state
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.reveal-left {
    transform: translateX(-40px);
}

.reveal.reveal-right {
    transform: translateX(40px);
}

.reveal.reveal-scale {
    transform: scale(0.93);
}

.reveal.visible {
    opacity: 1;
    transform: translate(0) scale(1);
}

/* staggered children */
.reveal-group>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1), transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-group.visible>*:nth-child(1) {
    transition-delay: 0s;
}

.reveal-group.visible>*:nth-child(2) {
    transition-delay: 0.1s;
}

.reveal-group.visible>*:nth-child(3) {
    transition-delay: 0.2s;
}

.reveal-group.visible>*:nth-child(4) {
    transition-delay: 0.3s;
}

.reveal-group.visible>* {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {

    .hero-grid,
    .about-grid,
    .selector-grid,
    .quality-grid,
    .enquiry-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .about-subtitle {
        font-size: 1.3rem;
    }

    .selector-inputs-card {
        grid-template-cols: 1fr;
        gap: 20px;
        padding: 24px;
    }

    .results-table th {
        width: 50%;
    }

    .form-field-row {
        grid-template-cols: 1fr;
        gap: 0;
    }

    .enquiry-form-card {
        padding: 24px;
    }

    .footer-grid {
        grid-template-cols: 1fr;
        gap: 40px;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}


/* ==========================================================================
   UPDATED PROFESSIONAL POLISH (Same Structure, Better Visuals)
   ========================================================================== */

:root {
    /* Fonts remain same */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* REFINED COLORS (Sharper Shades) */
    --corporate-blue: #4d97d0;
    /* Slightly deeper B2B blue */
    --corporate-blue-hover: #1558a8;
    --corporate-blue-glow: rgba(0, 59, 115, 0.08);
    --accent-orange: #1a6fc4;

    /* IMPROVED SHADOWS (For Depth) */
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 20px 40px -10px rgba(0, 59, 115, 0.15);

    /* Rest of the variables... */
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --bg-primary: #ffffff;
    --bg-secondary: #F8FAFC;
    --border-color: #E2E8F0;
    --text-primary: #1e293b;
    --text-secondary: #475569;
}

/* --- HEADER IMPROVEMENT --- */
.header {
    height: 90px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
}

.header.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.logo-img {
    height: 140px;
    /* Keep SMR logo prominent */
    transition: var(--transition-smooth);
}

.header.scrolled .logo-img {
    height: 110px;
}

/* --- HERO TEXT & BADGE --- */
.badge {
    background: white;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    color: var(--corporate-blue);
    font-weight: 700;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: #1e293b;
    -webkit-text-fill-color: #1e293b;
    background: none;
}

/* --- STATS BOX --- */
.stats {
    background: linear-gradient(135deg, #4d97d0 0%, #1a6fc4 100%);
    padding: 28px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border-radius: 14px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 16px 40px rgba(26, 111, 196, 0.18);
    border: none;
    width: calc(100% - 60px);
    max-width: 1140px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 6px 16px;
}

.stat-item:last-child {
    border-right: none;
}

.stat-icon i {
    font-size: 1.4rem;
    color: var(--accent-orange);
    margin-bottom: 6px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 3px;
    font-family: var(--font-headings);
}

.stat-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(255, 255, 255, 0.7);
}

/* --- MODERN BUTTONS --- */
.btn {
    border-radius: 8px;
    /* Slightly more curved */
    padding: 16px 32px;
}

.btn-primary {
    background: #1a6fc4;
    border: none;
}

.btn-primary:hover {
    background: #1558a8;
    transform: translateY(-3px);
}

/* --- PRODUCT CARDS (High Polish) --- */
.product-card {
    border: 1px solid #F1F5F9;
    background: white;
}

.product-card:hover {
    border-color: var(--corporate-blue);
    background: #ffffff;
}

.product-material-badge {
    background: var(--bg-secondary);
    color: var(--corporate-blue);
    letter-spacing: 0.5px;
}

.product-cta-btn {
    border-top: 1px solid #F1F5F9;
    width: 100%;
    padding-top: 20px;
    margin-top: 15px;
}

/* --- SELECTOR TOOL --- */
.selector-intro-card {
    border: none;
    background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
}

.results-table th {
    background-color: #F1F5F9;
    color: var(--corporate-blue);
}

.results-table tr:hover td {
    background-color: #F8FAFC;
    color: var(--corporate-blue);
}

/* ==========================================================================
   ENQUIRY FORM - COMPACT & SLEEK VERSION
   ========================================================================== */

.enquiry-form-card {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 25px;
    /* Padding kam kar di */
    box-shadow: var(--shadow-card);
}

/* Grid ko 2 column mein fix kiya height bachane ke liye */
.form-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2 columns */
    gap: 15px;
    /* Gap kam kiya */
    margin-bottom: 12px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 12px;
}

.form-field-group.no-margin {
    margin-bottom: 0;
}

/* Inputs ko thoda slim banaya */
.form-text-input,
.form-select-control,
.form-textarea-control {
    width: 100%;
    padding: 10px 14px;
    /* Slim padding */
    background: #F9FAFB;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 0.85rem;
    /* Font thoda chota */
}

/* Textarea height kam kar di */
.form-textarea-control {
    resize: none;
    height: 80px;
    /* 120px se 80px kar di */
}

/* Labels ko thoda aur sleek kiya */
.input-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--corporate-blue);
    margin-bottom: 2px;
    letter-spacing: 0.3px;
}

/* Button ko compact kiya */
.form-submit-action {
    width: 100%;
    margin-top: 5px;
    padding: 12px;
    font-size: 0.85rem;
}

/* Mobile par fields ek ke niche ek aayenge */
@media (max-width: 768px) {
    .form-field-row {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 0;
    }

    .form-field-group.no-margin {
        margin-bottom: 12px;
    }
}

/* --- MAP & CONTACT --- */
.map-layout-box {
    border: 8px solid white;
    box-shadow: var(--shadow-card);
}

/* --- FOOTER --- */
.footer {
    background: #f8fafc;
}

.footer-brand-title {
    letter-spacing: 1px;
    color: #1e293b;
}

/* --- Desktop & General Fixes --- */
.section-title-line {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    /* Mobile par title niche aa sake */
}

.section-title {
    white-space: normal;
    /* Title ko wrap hone dega */
    word-break: break-word;
}

/* --- Mobile Breakpoint (Max 768px) --- */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem !important;
        line-height: 1.2;
        color: #1e293b !important;
        -webkit-text-fill-color: #1e293b !important;
    }

    .hero-grid,
    .about-grid,
    .selector-grid,
    .quality-grid,
    .enquiry-grid,
    .contact-grid {
        grid-template-columns: 100% !important;
        /* Force single column */
        display: block;
        /* Safer layout */
    }

    .about-img-container,
    .hero-visual {
        margin-bottom: 20px;
    }

    /* Stats Section Fix */
    .stats {
        margin: -40px auto 0 auto !important;
        width: calc(100% - 20px) !important;
        max-width: 100% !important;
        padding: 35px 15px !important;
        border-radius: 12px !important;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    /* Product Cards Fix */
    .products-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .product-card {
        padding: 20px !important;
        min-height: auto !important;
    }

    /* Form Fix */
    .form-field-row {
        grid-template-columns: 1fr !important;
        gap: 0;
    }

    .enquiry-form-card {
        padding: 15px !important;
    }

    /* Selector Table Scroll Fix */
    .results-table-container {
        overflow-x: auto;
        /* Table screen se bahar nahi jayegi, andar scroll hogi */
        -webkit-overflow-scrolling: touch;
        margin-top: 15px;
    }

    .results-table {
        min-width: 400px;
        /* Thoda space rakhega table ke andar */
    }
}

/* --- Small Mobile Fix (Max 480px) --- */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr !important;
        /* Ek ke niche ek stats */
    }

    .badge {
        font-size: 0.6rem;
        padding: 5px 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .section-title {
        font-size: 1.3rem !important;
        color: #1a6fc4 !important;
    }

    /* Map layout safe width */
    .map-layout-box {
        height: 250px;
        width: 100%;
    }
}


html,
body {
    max-width: 100%;
    overflow-x: hidden;
    /* Ye horizontal cutting rokega */
    position: relative;
}

* {
    box-sizing: border-box;
    /* Padding se width nahi badhegi */
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    /* Mobile ke liye safe padding */
}

/* Hero section fix */
.hero {
    min-height: 100vh;
    padding-top: 160px;
    padding-bottom: 100px;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f2ff 50%, #f5f9ff 100%);
}

.hero-bg-orb {
    max-width: 100%;
    /* Orb screen se bahar nahi jayegi */
}

/* Mobile Hero Fix */
@media (max-width: 768px) {
    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
        text-align: center;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .hero-title {
        font-size: 2rem !important;
        width: 100%;
        color: #1e293b !important;
        -webkit-text-fill-color: #1e293b !important;
    }

    .hero-visual {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-img {
        max-width: 80%;
        /* Image screen ke andar hi rahegi */
        height: auto;
    }

    .hero-img-badge {
        position: relative;
        /* Absolute se hataya taaki layout na tode */
        bottom: 0;
        margin-top: 20px;
        display: inline-flex;
    }
}

/* Footer safe layout */
.footer {
    width: 100%;
    padding: 60px 0 30px;
    background: #f8fafc;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        /* 2 columns for tablets */
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        /* 1 column for mobile */
        text-align: left;
        gap: 30px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        width: 100%;
    }

    /* Logo left aligned on mobile too */
    .footer-brand {
        text-align: left;
    }

    .footer-logo {
        margin-left: 0;
        margin-right: auto;
    }

    /* Quick links phone me center nahi */
    .footer-links {
        text-align: left;
    }

    .footer-contact-details p {
        justify-content: flex-start;
        /* Icons center mein nahi */
        text-align: left;
    }

    .footer-bottom-row {
        flex-direction: column;
        gap: 15px;
        padding: 20px 10px;
    }
}

.hero-bg-orb {
    display: none;
}

/* ==========================================================================
   DARK THEME OVERRIDES — Alternating sections
   ========================================================================== */

body {
    background: #ffffff;
}

/* Light sections */
.bg-light {
    background: #f8fafc !important;
}

.bg-white-sec {
    background: #ffffff !important;
}

/* Section headers */
.section-title {
    color: #1a6fc4 !important;
}

.section-line {
    background: #e2e8f0 !important;
}

.section-desc {
    color: #475569 !important;
}

/* About */
.about-subtitle {
    color: #1e293b !important;
}

.about-text {
    color: #475569 !important;
}

/* Timeline */
.timeline-card {
    background: #f8fafc !important;
    border-left: 3px solid #1a6fc4 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: none;
}

.timeline-card:hover {
    background: #eff6ff !important;
    border-left-color: #4d97d0 !important;
}

.timeline-year {
    color: #1a6fc4 !important;
}

.timeline-content h4 {
    color: #1e293b !important;
}

.timeline-content p {
    color: #475569 !important;
}

/* Product Cards */
.product-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: none;
}

.product-card:hover {
    background: #ffffff !important;
    border-color: #1a6fc4 !important;
    box-shadow: 0 12px 40px rgba(26, 111, 196, 0.12) !important;
}

.product-material-badge {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

.product-series-code {
    color: #1a6fc4 !important;
}

.product-name {
    color: #1e293b !important;
}

.product-desc {
    color: #475569 !important;
}

.product-specs {
    border-top: 1px solid #e2e8f0 !important;
}

.product-specs-list li {
    color: #475569 !important;
}

.product-specs-list li i {
    color: #1a6fc4 !important;
}

.product-cta-btn {
    color: #1a6fc4 !important;
}

.product-cta-btn {
    border-top: 1px solid #e2e8f0 !important;
}

/* Selector */
.selector-intro-card {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%) !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: none;
}

.selector-intro-card h3 {
    color: #1a6fc4 !important;
}

.selector-intro-card p {
    color: #475569 !important;
}

.selector-select-control {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    color: #1e293b !important;
}

.input-label {
    color: #475569 !important;
}

.select-box-wrapper::after {
    color: #64748b !important;
}

.selector-results {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    backdrop-filter: none;
}

.results-table-title {
    color: #1a6fc4 !important;
    border-bottom: 2px solid #e2e8f0 !important;
}

.results-table th,
.results-table td {
    border-bottom: 1px solid #e2e8f0 !important;
}

.results-table th {
    background: #f1f5f9 !important;
    color: #475569 !important;
}

.results-table td {
    color: #1e293b !important;
}

.results-table td.highlight {
    color: #1a6fc4 !important;
}

.results-table tr:hover td {
    background: #f8fafc !important;
    color: #1a6fc4 !important;
}

/* Quality */
.quality-card-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
    backdrop-filter: none;
}

.quality-card-item:hover {
    background: #ffffff !important;
    border-color: #1a6fc4 !important;
}

.quality-card-number {
    background: rgba(26, 111, 196, 0.08) !important;
    border: 1px solid #1a6fc4 !important;
    color: #1a6fc4 !important;
}

.quality-card-text h4 {
    color: #1e293b !important;
}

.quality-card-text p {
    color: #475569 !important;
}

/* Enquiry & Contact */
.contact-box-item {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    backdrop-filter: none;
}

.contact-box-item:hover {
    background: #f8fafc !important;
    border-color: #1a6fc4 !important;
}

.contact-box-icon {
    background: rgba(26, 111, 196, 0.08) !important;
    color: #1a6fc4 !important;
}

.contact-box-info h5 {
    color: #1e293b !important;
}

.contact-box-info p {
    color: #475569 !important;
}

.enquiry-form-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    backdrop-filter: none;
}

.form-text-input,
.form-select-control,
.form-textarea-control {
    background: #f9fafb !important;
    border: 1px solid #d1d5db !important;
    color: #1e293b !important;
}

.form-text-input::placeholder,
.form-textarea-control::placeholder {
    color: #9ca3af !important;
}

/* Contact section */
.contact-detail-line {
    color: #475569 !important;
}

.contact-detail-line i {
    color: #1a6fc4 !important;
}

.map-layout-box {
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06) !important;
}

.section-title {
    white-space: normal !important;
    word-break: break-word !important;
    color: #1a6fc4 !important;
}

/* Btn secondary light theme */
.btn-secondary {
    border: 1px solid #e2e8f0 !important;
    color: #0f172a !important;
    background: #ffffff !important;
}

.btn-secondary:hover {
    border-color: #1a6fc4 !important;
    color: #1a6fc4 !important;
    background: #ffffff !important;
}

/* Mobile nav drawer light */
.mobile-nav-drawer {
    background: #f8fafc !important;
    border-left: 1px solid #e2e8f0 !important;
}

/* ==========================================================================
   HERO CONTENT SLIDER
   ========================================================================== */
.hero-slider {
    position: relative;
    min-height: 280px;
    overflow: hidden;
}

.hero-slide {
    display: flex;
    flex-direction: column;
    position: absolute;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

/* Word animation */
.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-slide.active .hero-word {
    opacity: 1;
    transform: translateY(0);
}

/* Section title word animation */
.title-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.title-word.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(26, 111, 196, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0;
}

.slider-dot.active {
    background: #1a6fc4;
    width: 32px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(26, 111, 196, 0.3);
}

/* ==========================================================================
   INDUSTRY LEVEL SCROLL ANIMATIONS
   ========================================================================== */

/* --- Fade Up (default cards, text blocks) --- */
.anim-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Fade Left --- */
.anim-fade-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-left.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* --- Fade Right --- */
.anim-fade-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-fade-right.in-view {
    opacity: 1;
    transform: translateX(0);
}

/* --- Scale In (cards) --- */
.anim-scale {
    opacity: 0;
    transform: scale(0.88);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-scale.in-view {
    opacity: 1;
    transform: scale(1);
}

/* --- Clip from bottom (section header line) --- */
.anim-clip {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
    transition: opacity 0.6s ease, clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.anim-clip.in-view {
    opacity: 1;
    clip-path: inset(0 0 0% 0);
}

/* Stagger delays */
.anim-delay-1 {
    transition-delay: 0.1s !important;
}

.anim-delay-2 {
    transition-delay: 0.2s !important;
}

.anim-delay-3 {
    transition-delay: 0.3s !important;
}

.anim-delay-4 {
    transition-delay: 0.4s !important;
}

.anim-delay-5 {
    transition-delay: 0.5s !important;
}

.anim-delay-6 {
    transition-delay: 0.6s !important;
}