/* =========================================================================
   J K STEEL CORPORATION — MAIN STYLESHEET
   Premium industrial corporate theme.
   ========================================================================= */

/* =========================================================================
   1. GLOBAL / VARIABLES
   ========================================================================= */


body {
    margin: 0;
   
}
   
   
   
:root {
    --primary-dark: #0a0d10;
    --secondary-dark: #11161b;
    --tertiary-dark: #161d24;
    --steel: #69747d;
    --steel-dark: #3c444b;
    --light-steel: #c6ccd1;
    --white: #ffffff;
    --off-white: #f4f5f6;

    /* Accent derived from the J K Steel Corporation logo's ink colour */
    --accent: #a8291f;
    --accent-bright: #d1402f;
    --accent-glow: rgba(209, 64, 47, 0.35);

    --steel-blue: #3d5568;
    --steel-blue-light: #5c7a91;

    --font-heading: 'Poppins', 'Montserrat', sans-serif;
    --font-body: 'Inter', 'Poppins', sans-serif;

    --radius-sm: 4px;
    --radius-md: 10px;
    --radius-lg: 18px;

    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.25);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.45);

    --transition-fast: 0.25s ease;
    --transition-mid: 0.4s cubic-bezier(0.22, 1, 0.36, 1);

    --header-height: 84px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
   
    color: var(--light-steel);
       background:
        linear-gradient(
            180deg,
            rgba(5, 6, 8, 0.92),
            rgba(5, 6, 8, 0.75),
            rgba(5, 6, 8, 0.94)
        ),
        url('../images/body-img.webp');

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    -webkit-font-smoothing: antialiased;
}

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

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

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

section { position: relative; }

/* Offset anchor-linked targets (dropdown links, in-page jumps) below the fixed navbar */
[id] { scroll-margin-top: 110px; }

.section-pad { padding: 60px 0; }

.bg-dark { background: var(--primary-dark); }
.bg-secondary { background: var(--secondary-dark); }
.bg-light { background: var(--off-white); color: var(--secondary-dark); }

::selection { background: var(--accent); color: var(--white); }

/* Focus visibility for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--accent-bright);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--accent);
    color: var(--white);
    padding: 12px 20px;
    z-index: 10000;
}
.skip-link:focus { left: 12px; top: 12px; }

/* =========================================================================
   2. TYPOGRAPHY
   ========================================================================= */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin-bottom: 16px;
}
.eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent-bright);
    display: inline-block;
}

.section-heading {
    font-size: clamp(1.9rem, 3vw, 2.75rem);
    margin-bottom: 20px;
}

.section-sub {
    color: var(--steel);
    max-width: 640px;
    font-size: 1.05rem;
}

.bg-light .section-sub { color: #545e66; }
.bg-light h1, .bg-light h2, .bg-light h3, .bg-light h4 { color: var(--secondary-dark); }

.text-accent { color: var(--accent-bright); }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* =========================================================================
   3. BUTTONS
   ========================================================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-bright) 100%);
    color: var(--white);
    box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 34px var(--accent-glow);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
}
.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--white);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--secondary-dark);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.08);
}
.btn-dark:hover { background: var(--tertiary-dark); transform: translateY(-3px); }

.btn-sm { padding: 11px 22px; font-size: 0.8rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; gap: 16px; flex-wrap: wrap; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-bright);
}
.link-arrow i { transition: transform var(--transition-fast); }
.link-arrow:hover i { transform: translateX(6px); }

/* =========================================================================
   4. PRELOADER
   ========================================================================= */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }

.preloader-logo {
    width: 92px;
    height: auto;
    margin: 0 auto 22px;
    opacity: 0;
    animation: preloaderFade 0.9s ease forwards;
    filter: drop-shadow(0 0 18px var(--accent-glow));
}

.preloader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, var(--accent-bright), var(--light-steel), transparent);
    animation: preloaderShine 1.1s ease-in-out infinite;
}

@keyframes preloaderFade { to { opacity: 1; } }
@keyframes preloaderShine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* =========================================================================
   5. NAVBAR
   ========================================================================= */
.site-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    background: transparent;
    transition: background var(--transition-mid), padding var(--transition-mid), box-shadow var(--transition-mid);
}
.site-navbar.scrolled {
    background: rgba(10, 13, 16, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 0;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}
.navbar-logo {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: height var(--transition-mid);
}
.site-navbar.scrolled .navbar-logo { height: 70px; }

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}
.navbar-brand-name {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: 0.04em;
}
.navbar-brand-sub {
    font-size: 0.62rem;
    letter-spacing: 0.28em;
    color: var(--accent-bright);
    font-weight: 600;
}

.navbar-nav-desktop > ul {
    display: flex;
    align-items: center;
    gap: 36px;
}
.navbar-nav-desktop a {
    font-family: var(--font-heading);
    font-size: 0.86rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    color: var(--light-steel);
    position: relative;
    padding: 6px 0;
}
.navbar-nav-desktop a::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-bright);
    transition: width var(--transition-fast);
}
.navbar-nav-desktop a:hover,
.navbar-nav-desktop a.active { color: var(--white); }
.navbar-nav-desktop a:hover::after,
.navbar-nav-desktop a.active::after { width: 100%; }

/* Desktop dropdown (Products / Brands) */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 6px; }
.dropdown-caret { font-size: 0.6rem; transition: transform var(--transition-fast); color: var(--steel); }
.has-dropdown:hover .dropdown-caret,
.has-dropdown:focus-within .dropdown-caret { transform: rotate(180deg); color: var(--accent-bright); }

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    margin-top: 14px;
    min-width: 230px;
    background: var(--secondary-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    padding: 10px;
    box-shadow: var(--shadow-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast), visibility var(--transition-fast);
    z-index: 1000;
}
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 0;
    right: 0;
    height: 14px;
}
.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 11px 16px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-steel);
    white-space: nowrap;
}
.dropdown-menu li a::after { display: none; }
.dropdown-menu li a:hover,
.dropdown-menu li a:focus-visible {
    background: rgba(209, 64, 47, 0.12);
    color: var(--white);
}

.navbar-actions { display: flex; align-items: center; gap: 18px; }

.navbar-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    cursor: pointer;
}
.navbar-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
    transition: all var(--transition-fast);
}

/* =========================================================================
   6. MOBILE MENU
   ========================================================================= */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-fast), visibility var(--transition-fast);
}
.mobile-menu-overlay.active { opacity: 1; visibility: visible; }

.mobile-menu {
    position: fixed;
    top: 0; right: 0;
    width: min(340px, 86vw);
    height: 100%;
    background: var(--secondary-dark);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1200;
    padding: 26px 26px 34px;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--transition-mid);
    overflow-y: auto;
}
.mobile-menu.active { transform: translateX(0); }

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}
.mobile-menu-logo { height: 40px; }
.mobile-menu-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    width: 38px; height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
}

.mobile-menu-links { display: flex; flex-direction: column; margin-bottom: 26px; }
.mobile-menu-links li { border-bottom: 1px solid rgba(255, 255, 255, 0.06); }
.mobile-menu-links a {
    display: block;
    padding: 16px 4px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--light-steel);
}
.mobile-menu-links a.active,
.mobile-menu-links a:hover { color: var(--accent-bright); }

/* Mobile dropdown (Products / Brands) — accordion */
.mobile-has-dropdown { display: flex; flex-direction: column; }
.mobile-menu-item-row { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu-item-row a { flex: 1; }
.mobile-dropdown-toggle {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-steel);
    cursor: pointer;
}
.mobile-dropdown-toggle i { font-size: 0.72rem; transition: transform var(--transition-fast); }
.mobile-has-dropdown.open .mobile-dropdown-toggle { color: var(--accent-bright); border-color: var(--accent); }
.mobile-has-dropdown.open .mobile-dropdown-toggle i { transform: rotate(180deg); }

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-mid);
}
.mobile-has-dropdown.open .mobile-dropdown-menu { max-height: 420px; }
.mobile-dropdown-menu li { border-bottom: none; }
.mobile-dropdown-menu li a {
    padding: 12px 4px 12px 18px;
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--steel);
    position: relative;
}
.mobile-dropdown-menu li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 1px;
    background: var(--accent-bright);
}
.mobile-dropdown-menu li a:hover { color: var(--accent-bright); }

.mobile-menu-contact {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.mobile-menu-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--steel);
}
.mobile-menu-contact i { color: var(--accent-bright); width: 18px; }

body.menu-open { overflow: hidden; }

/* =========================================================================
   7. HERO
   ========================================================================= */
.hero {
    position: relative;
    min-height: 98vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--primary-dark);
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.09);
    transition: opacity 1.6s ease;
    animation: heroZoom 7s ease-in-out infinite alternate;
    animation-play-state: paused;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    animation-play-state: running;
}

@keyframes heroZoom {
    from { transform: scale(1); }
    to { transform: scale(1.09); }
}

.hero-slider-dots {
    position: absolute;
    z-index: 2;
    bottom: 34px;
    right: 34px;
    display: flex;
    gap: 10px;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.25);
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.hero-slider-dot:hover { border-color: var(--accent-bright); }

.hero-slider-dot.active {
    background: var(--accent-bright);
    border-color: var(--accent-bright);
    transform: scale(1.2);
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(6,8,10,0.35);
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
    transform: translateY(-50%);
}
.hero-slider-arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
}
.hero-slider-prev { left: 24px; }
.hero-slider-next { right: 24px; }

@media (max-width: 767px) {
    .hero-slider-dots { right: 50%; transform: translateX(50%); bottom: 20px; }
    .hero-slider-arrow { width: 38px; height: 38px; font-size: 0.85rem; }
    .hero-slider-prev { left: 12px; }
    .hero-slider-next { right: 12px; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
    linear-gradient(
        180deg,
        rgba(6, 8, 10, 0.78) 0%,
        rgba(8, 10, 13, 0.52) 42%,
        rgba(6, 8, 10, 0.82) 100%
    ),
    linear-gradient(
        100deg,
        rgba(6, 8, 10, 0.65) 10%,
        rgba(6, 8, 10, 0.18) 55%,
        rgba(6, 8, 10, 0.70) 100%
    );
    z-index: 1;
}

.hero-sparks { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.spark {
    position: absolute;
    bottom: -10px;
    width: 3px;
    height: 3px;
    background: var(--accent-bright);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 8px 2px var(--accent-glow);
    animation: sparkRise linear infinite;
}
@keyframes sparkRise {
    0% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 0.9; }
    100% { transform: translateY(-90vh) translateX(30px); opacity: 0; }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: var(--header-height);
    text-align: center;
}

.hero-logo {
    width: 84px;
    margin: 0 auto 26px;
    opacity: 0;
    filter: drop-shadow(0 0 24px rgba(0,0,0,0.6));
    animation: fadeInUp 1s ease 0.1s forwards;
}

.hero-eyebrow {
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.3s forwards;
}

.hero-title {
    font-size: 35px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--white);
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.45s forwards;
    text-shadow: 0 6px 30px rgba(0,0,0,0.5);
}

.hero-tagline {
    margin: 22px auto 0;
    max-width: 700px;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.4rem);
    font-weight: 500;
    color: var(--light-steel);
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.65s forwards;
}
.hero-tagline strong { color: var(--white); font-weight: 700; }

.hero-meta {
    margin-top: 18px;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--steel);
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.8s forwards;
}
.hero-meta i { color: var(--accent-bright); margin-right: 6px; }

.hero-btns {
    margin-top: 42px;
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.9s ease 0.95s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--steel);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s ease 1.3s forwards;
}
.hero-scroll .scroll-line {
    width: 1px;
    height: 34px;
    background: linear-gradient(var(--accent-bright), transparent);
    animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(1); transform-origin: top; }
    50% { transform: scaleY(0.4); transform-origin: top; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(26px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Inner page hero (About / Products / Brands / Clientele / Contact) */
.page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}
.page-hero .hero-overlay { background: linear-gradient(180deg, rgba(6,8,10,0.9) 0%, rgba(6,8,10,0.7) 55%, rgba(6,8,10,0.96) 100%); }
.page-hero-content { position: relative; z-index: 2; text-align: center; width: 100%; }
.page-hero-title { font-size: clamp(2rem, 4.4vw, 3.2rem); color: var(--white); margin-top: 6px; }
.breadcrumb {
    margin-top: 16px;
    font-size: 0.82rem;
    color: var(--steel);
    letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--light-steel); }
.breadcrumb a:hover { color: var(--accent-bright); }
.breadcrumb i { font-size: 0.65rem; margin: 0 8px; }

/* =========================================================================
   8. STATS / COMPANY HIGHLIGHTS
   ========================================================================= */
.stats-section { padding: 10px 0 0px;  position: relative; }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.stat-card {
    background: linear-gradient(160deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: var(--radius-md);
    padding: 34px 26px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
    position: relative;
    overflow: hidden;
}
.stat-card::before {
    content: '';
    position: absolute;
    top: -60%; left: -20%;
    width: 60%; height: 220%;
    background: linear-gradient(120deg, transparent, rgba(209,64,47,0.08), transparent);
    transform: rotate(20deg);
    transition: transform 0.6s ease;
}
.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.stat-icon {
    width: 54px; height: 54px;
    margin: 0 auto 18px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    background: rgba(209,64,47,0.12);
    color: var(--accent-bright);
    font-size: 1.25rem;
}
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--white);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}
.stat-label-top { display: block; font-size: 1rem; color: var(--light-steel); font-weight: 600; margin-top: 4px; }
.stat-caption {
    margin-top: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--steel);
}

/* =========================================================================
   9. ABOUT
   ========================================================================= */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}
.about-media { position: relative; }
.about-media img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-strong);
    width: 100%;
    /* aspect-ratio: 4/5; */
    object-fit: cover;
}
.about-media::before {
    content: '';
    position: absolute;
    top: -18px; left: -18px;
    width: 100%; height: 100%;
    border: 2px solid var(--accent);
    border-radius: var(--radius-md);
    z-index: -1;
}
.about-accent-line {
    position: absolute;
    top: 30px; left: -34px;
    width: 3px;
    height: calc(100% - 60px);
    background: linear-gradient(var(--accent), transparent);
    display: none;
}
.about-content p { margin-bottom: 18px; color: var(--light-steel); }
.about-content .btn { margin-top: 12px; }

/* =========================================================================
   10. LEADERSHIP
   ========================================================================= */
.leadership-section {
    /*background: var(--tertiary-dark);*/
    background-image:
        repeating-linear-gradient(135deg, rgba(255,255,255,0.015) 0 2px, transparent 2px 26px);
    position: relative;
}
.leadership-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}
.leadership-media {
    position: relative;
    text-align: center;
}
.leadership-media img {
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    box-shadow: var(--shadow-strong);
    border: 1px solid rgba(255,255,255,0.08);
}
.leadership-years {
    position: absolute;
    bottom: -22px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-bright));
    color: var(--white);
    padding: 16px 26px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 14px 30px rgba(0,0,0,0.4);
}
.leadership-years .num { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; line-height: 1; }
.leadership-years .lbl { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; }

.leadership-name {
    font-size: 1.15rem;
    color: var(--accent-bright);
    font-weight: 600;
    margin-bottom: 14px;
    letter-spacing: 0.03em;
}
.leadership-content p { margin-bottom: 16px; }

/* =========================================================================
   11. PRODUCTS
   ========================================================================= */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-top: 50px;
}
.product-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: transform var(--transition-mid), border-color var(--transition-mid), box-shadow var(--transition-mid);
}
.product-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: var(--shadow-strong);
}
.product-media { overflow: hidden; aspect-ratio: 4/3; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-body { padding: 26px; }
.product-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.product-body p { font-size: 0.92rem; color: var(--steel); margin-bottom: 18px; }

.products-marquee {
    overflow: hidden;
    margin-top: 50px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.products-marquee-track {
    display: flex;
    gap: 26px;
    width: max-content;
    animation: productsMarqueeScroll 26s linear infinite;
}
.products-marquee:hover .products-marquee-track { animation-play-state: paused; }
.products-marquee-item {
    flex: 0 0 auto;
    width: 320px;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
}
.products-marquee-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes productsMarqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* =========================================================================
   12. BRANDS
   ========================================================================= */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}
.brand-card {
   background: #fff;
border: 1px solid #e5e5e5;
border-top-color: #e5e5e5;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-md);
    padding: 16px 5px;
    text-align: center;
    transition: all var(--transition-mid);
}
.brand-card:hover {
    border-color: var(--accent-bright);
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px var(--accent) inset, 0 16px 34px rgba(0,0,0,0.35);
}
.brand-icon { font-size: 1.6rem; color: var(--accent-bright);
     /* margin-bottom: 14px; */
     }
.brand-name { font-family: var(--font-heading); font-weight: 600; color: var(--white); letter-spacing: 0.02em; }


.brand-icon img{
    width: 100%;
    height: 100px;
}


/* =========================================================================
   13. STOCKIST
   ========================================================================= */
.stockist-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 46px;
}
.stockist-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.03);
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
}
.stockist-badge i { color: var(--accent-bright); }

/* =========================================================================
   14. MARKET REACH
   ========================================================================= */
.market-section {  overflow: hidden; }
.market-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.market-regions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.market-region-chip {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-steel);
}
.market-region-chip.primary {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    font-weight: 700;
}

.india-map-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.india-map-wrap svg { width: 100%; max-width: 420px; height: auto; }
.map-outline { fill: rgba(255,255,255,0.035); stroke: rgba(198,204,209,0.3); stroke-width: 1; }
.map-point { fill: var(--accent-bright); }
.map-point.hub { fill: var(--white); }
.map-pulse {
    fill: none;
    stroke: var(--accent-bright);
    stroke-width: 2;
    opacity: 0;
    animation: mapPulse 2.6s ease-out infinite;
}
@keyframes mapPulse {
    0% { r: 4; opacity: 0.9; }
    100% { r: 26; opacity: 0; }
}
.map-line {
    fill: none;
    stroke: rgba(209,64,47,0.55);
    stroke-width: 1.4;
    stroke-dasharray: 5 5;
    animation: dashFlow 3s linear infinite;
}
@keyframes dashFlow { to { stroke-dashoffset: -40; } }
.map-label {
    fill: var(--light-steel);
    font-size: 11px;
    font-family: var(--font-body);
}
.map-label.hub-label { fill: var(--white); font-weight: 700; font-size: 12px; }

/* =========================================================================
   15. WHY CHOOSE US
   ========================================================================= */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    margin-top: 50px;
}
.why-card {
    background: #11161b9e;
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 38px 28px;
    transition: transform var(--transition-mid), box-shadow var(--transition-mid);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.why-icon {
    width: 58px; height: 58px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(209,64,47,0.12);
    color: var(--accent-bright);
    font-size: 1.4rem;
    margin-bottom: 22px;
}
.why-card h3 { font-size: 1.1rem; margin-bottom: 12px; }
.why-card p { font-size: 0.92rem; color: var(--steel); }

/* =========================================================================
   16. CLIENTELE
   ========================================================================= */
.clients-marquee {
    overflow: hidden;
    margin-top: 35px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.clients-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: clientsMarqueeScroll 40s linear infinite;
}
.clients-marquee:hover .clients-marquee-track { animation-play-state: paused; }
.clients-marquee-item {
    flex: 0 0 auto;
    width: 220px;
    aspect-ratio: 3/2;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: var(--off-white);
    border: 1px solid rgba(255,255,255,0.08);
}
.clients-marquee-item img { max-width: 100%; max-height: 100%; object-fit: contain; }
@keyframes clientsMarqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.clientele-cta {
    margin-top: 60px;
    text-align: center;
    padding: 50px;
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015));
    border: 1px solid rgba(255,255,255,0.08);
}

/* =========================================================================
   17. INDUSTRIAL CTA
   ========================================================================= */
.industrial-cta {
    position: relative;
    padding: 0px 0 50px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    overflow: hidden;
}
.industrial-cta .hero-overlay {
    background: linear-gradient(180deg, rgba(5,6,8,0.92) 0%, rgba(5,6,8,0.75) 50%, rgba(5,6,8,0.94) 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
.cta-content .section-sub { margin: 18px auto 0; max-width: 560px; color: var(--light-steel); }
.cta-content .btn-group { justify-content: center; margin-top: 40px; }

/* =========================================================================
   18. CONTACT
   ========================================================================= */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: flex-start;
}
.contact-info-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: rgba(209,64,47,0.12);
    color: var(--accent-bright);
    display: flex; align-items: center; justify-content: center;
}
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 6px; color: var(--white); }
.contact-info-item p, .contact-info-item a { color: var(--steel); font-size: 0.92rem; display: block; }
.contact-info-item a:hover { color: var(--accent-bright); }

.contact-quick-btns { display: flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; }

.contact-form-card {
    background: var(--secondary-dark);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 0px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 8px;
    color: var(--light-steel);
}
.form-group .required { color: var(--accent-bright); }
.form-control {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}
.form-control::placeholder { color: #5c6870; }
.form-control:focus { border-color: var(--accent-bright); background: rgba(255,255,255,0.07); outline: none; }
textarea.form-control { resize: vertical; min-height: 100px; }

.form-alert {
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 24px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.form-alert.success { background: rgba(46, 160, 67, 0.12); border: 1px solid rgba(46, 160, 67, 0.4); color: #7ee2a8; }
.form-alert.error { background: rgba(209, 64, 47, 0.12); border: 1px solid rgba(209, 64, 47, 0.4); color: #f19b90; }

.map-wrap {
    margin-top: 70px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    filter: grayscale(0.4) contrast(1.1);
}
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* =========================================================================
   19. FOOTER
   ========================================================================= */
.site-footer { background: #060809; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-top { padding: 80px 0 50px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 50px;
}
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-logo { height: 70px; }
.footer-brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.footer-brand-text span { font-family: var(--font-heading); font-weight: 800; color: var(--white); font-size: 1rem; }
.footer-brand-text small { font-size: 0.6rem; letter-spacing: 0.24em; color: var(--accent-bright); }
.footer-tagline { font-size: 0.9rem; color: var(--steel); margin-bottom: 22px; max-width: 280px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: var(--light-steel);
    transition: all var(--transition-fast);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    margin-bottom: 22px;
}
.footer-links li, .footer-contact li { margin-bottom: 14px; }
.footer-links a { font-size: 0.92rem; color: var(--steel); }
.footer-links a:hover { color: var(--accent-bright); }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--steel); }
.footer-contact i { color: var(--accent-bright); margin-top: 4px; width: 14px; }
.footer-contact a { color: var(--steel); }
.footer-contact a:hover { color: var(--accent-bright); }
.footer-contact-name { color: #4a545b; font-size: 0.8rem; }
.footer-address { font-size: 0.9rem; color: var(--steel); font-style: normal; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-bottom-inner p { font-size: 0.82rem; color: #4a545b; }
.back-to-top {
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.back-to-top:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-3px); }

/* =========================================================================
   20. FLOATING BUTTONS
   ========================================================================= */
.floating-cta {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 900;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.floating-btn {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: transform var(--transition-fast);
}
.floating-btn:hover { transform: scale(1.08); }
.floating-whatsapp { background: #25D366; }
.floating-call { background: var(--accent); }
.floating-whatsapp::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: pulseRing 2.2s ease-out infinite;
}
@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.7); opacity: 0; }
}
.floating-tooltip {
    position: absolute;
    right: 64px;
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    background: var(--secondary-dark);
    color: var(--white);
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.78rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    border: 1px solid rgba(255,255,255,0.08);
}
.floating-btn:hover .floating-tooltip { opacity: 1; visibility: visible; transform: translateY(-50%) translateX(0); }

/* =========================================================================
   21. SECTION SEPARATORS / TEXTURES
   ========================================================================= */
.divider-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.14), transparent);
    width: 100%;
}
.grid-texture {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 46px 46px;
    pointer-events: none;
}

/* =========================================================================
   22. SCROLL REVEAL (fallback if AOS unavailable) & MISC ANIMATIONS
   ========================================================================= */
[data-aos] { transition-property: transform, opacity; }

.count-up { display: inline-block; }

/* =========================================================================
   23. 404 PAGE
   ========================================================================= */
.error-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 20px 80px;
}
.error-page .code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 14vw, 9rem);
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    text-shadow: 0 0 60px var(--accent-glow);
}

/* =========================================================================
   24. RESPONSIVE
   ========================================================================= */
@media (max-width: 1200px) {
    .products-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
    .navbar-nav-desktop { display: none; }
    .navbar-toggle { display: flex; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .leadership-grid, .market-grid, .contact-grid { grid-template-columns: 1fr; }
    .leadership-media { max-width: 340px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .section-pad { padding: 80px 0; }
    .industrial-cta { background-attachment: scroll; }
}

@media (max-width: 768px) {
    .products-grid, .why-grid, .brands-grid { grid-template-columns: repeat(2, 1fr); }
    .form-row { grid-template-columns: 1fr; }
    .products-marquee-item { width: 240px; }
    .clients-marquee-item { width: 170px; }
    .contact-info-card, .contact-form-card { padding: 30px 26px; }
    .hero-btns, .cta-content .btn-group { flex-direction: column; align-items: stretch; }
    .hero-btns .btn, .cta-content .btn { width: 100%; }
    .navbar-cta { display: none; }
}

@media (max-width: 560px) {
    .products-grid, .why-grid { grid-template-columns: 1fr; }
    .stats-grid, .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .stat-card { padding: 24px 16px; }
    .stat-icon { width: 44px; height: 44px; font-size: 1.05rem; margin-bottom: 14px; }
    .stat-number { font-size: 1.7rem; }
    .brand-card { padding: 22px 14px; }
    .brand-icon { font-size: 1.3rem; margin-bottom: 10px; }
    .brand-name { font-size: 0.88rem; }
    .section-pad { padding: 60px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-links { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 16px; }
    .stockist-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .stockist-badge { padding: 14px 10px; justify-content: center; font-size: 0.85rem; text-align: center; }
    .footer-bottom-inner { flex-direction: column; gap: 14px; text-align: center; }
    .container { padding: 0 18px; }
    .floating-cta { bottom: 18px; right: 18px; }
    .floating-btn { width: 48px; height: 48px; font-size: 1.1rem; }
    .contact-info-card, .contact-form-card { padding: 24px 18px; }
    .leadership-years { right: 50%; transform: translateX(50%); bottom: -20px; }
}





.jk-cl-wrapper {
    width: 100%;
    padding: 60px 20px 10px;

}

.jk-cl-grid {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.jk-cl-item {
    min-height: 130px;
    padding: 10px;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s ease;
}

.jk-cl-item:hover {
    transform: translateY(-5px);
    border-color: #dddddd;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.jk-cl-item img {
    width: 100%;
    max-width: 180px;
    height: 100px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.jk-cl-item:hover img {
    transform: scale(1.05);
}

/* Large Tablets */
@media (max-width: 1199px) {
    .jk-cl-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .jk-cl-item {
        min-height: 140px;
    }
}

/* Tablets */
@media (max-width: 767px) {
    .jk-cl-wrapper {
        padding: 45px 15px;
    }

    .jk-cl-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .jk-cl-item {
        min-height: 125px;
        padding: 18px 12px;
        border-radius: 12px;
    }

    .jk-cl-item img {
        max-width: 145px;
        height: 70px;
    }
}

/* Small Mobile */
@media (max-width: 380px) {
    .jk-cl-grid {
        gap: 10px;
    }

    .jk-cl-item {
        min-height: 110px;
        padding: 12px 8px;
    }

    .jk-cl-item img {
        max-width: 125px;
        height: 60px;
    }
}




/* ===============================
   TMT STEEL SECTION
================================ */

.tmt-steel-section {
    width: 100%;
    padding: 0px 20px 40px;
    background:
        radial-gradient(circle at 90% 10%, rgba(255,255,255,0.055), transparent 28%),
        radial-gradient(circle at 5% 90%, rgba(255,255,255,0.035), transparent 25%),
        #0b0d0f;
    color: #ffffff;
    overflow: hidden;
}

.tmt-steel-container {
    width: 100%;
    max-width: 1380px;
    margin: 0 auto;
}


/* ===============================
   INTRO
================================ */

.tmt-steel-intro {
    max-width: 900px;
    margin-bottom: 80px;
}

.tmt-steel-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 16px;
    margin-bottom: 22px;
    border: 1px solid rgba(255,255,255,0.13);
    border-radius: 50px;
    background: rgba(255,255,255,0.045);
    color: #d0d0d0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.tmt-steel-chip span {
    width: 7px;
    height: 7px;
    display: inline-block;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 12px rgba(255,255,255,0.7);
}

.tmt-steel-intro h2 {
    margin: 0 0 25px;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.04;
    font-weight: 700;
    letter-spacing: -2px;
}

.tmt-steel-intro h2 span {
    color: #a7a7a7;
}

.tmt-steel-intro p {
    max-width: 850px;
    margin: 0;
    color: #a9abad;
    font-size: 16px;
    line-height: 1.9;
}


/* ===============================
   COMMON BLOCK
================================ */

.tmt-steel-block {
    padding: 42px;
    border: 1px solid rgba(255,255,255,0.09);
    background: rgba(255,255,255,0.025);
    border-radius: 18px;
    margin-bottom: 25px;
}

.tmt-steel-heading {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 35px;
}

.tmt-steel-number {
    min-width: 43px;
    height: 43px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.tmt-steel-heading small {
    display: block;
    margin-bottom: 6px;
    color: #777b7e;
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 700;
}

.tmt-steel-heading h3 {
    margin: 0;
    font-size: 29px;
    line-height: 1.2;
    font-weight: 600;
    color: #ffffff;
}


/* ===============================
   BRANDS
================================ */

.tmt-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.tmt-brand-card {
    position: relative;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    background: #111417;
    overflow: hidden;
    transition: 0.35s ease;
}

.tmt-brand-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.25);
    background: #15181b;
}

.tmt-brand-card span {
    margin-bottom: 9px;
    color: #606569;
    font-size: 10px;
    letter-spacing: 1px;
}

.tmt-brand-card strong {
    color: #eeeeee;
    font-size: 16px;
    font-weight: 600;
}


/* ===============================
   TWO COLUMN
================================ */

.tmt-steel-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.tmt-steel-two-column .tmt-steel-block {
    margin-bottom: 0;
}


/* ===============================
   FEATURES
================================ */

.tmt-feature-list {
    display: flex;
    flex-direction: column;
}

.tmt-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: #b8bbbd;
    font-size: 14px;
    line-height: 1.5;
}

.tmt-feature-item:first-child {
    padding-top: 0;
}

.tmt-feature-item:last-child {
    border-bottom: 0;
}

.tmt-feature-item i {
    flex-shrink: 0;
    width: 23px;
    height: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: #ffffff;
    font-size: 11px;
    font-style: normal;
}


/* ===============================
   APPLICATIONS
================================ */

.tmt-application-intro {
    margin: -10px 0 25px;
    color: #888d90;
    font-size: 14px;
}

.tmt-application-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.tmt-application-grid div {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    background: rgba(255,255,255,0.025);
    color: #c6c8ca;
    font-size: 13px;
    line-height: 1.4;
    transition: 0.3s ease;
}

.tmt-application-grid div:hover {
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
}

.tmt-application-grid span {
    flex-shrink: 0;
    color: #64686b;
    font-size: 9px;
    font-weight: 700;
}


/* ===============================
   WHY CHOOSE
================================ */

.tmt-why-box {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 25px;
    padding: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    background:
        linear-gradient(135deg,
        rgba(255,255,255,0.065),
        rgba(255,255,255,0.018));
    overflow: hidden;
}

.tmt-why-content {
    max-width: 900px;
}

.tmt-why-content .tmt-steel-heading {
    margin-bottom: 20px;
}

.tmt-why-content p {
    margin: 0;
    color: #aeb1b3;
    font-size: 15px;
    line-height: 1.8;
}

.tmt-why-icon {
    flex-shrink: 0;
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50%;
}

.tmt-why-icon span {
    font-size: 42px;
    font-weight: 200;
    color: #777b7e;
}


/* ===============================
   TABLET
================================ */

@media (max-width: 991px) {

    .tmt-steel-section {
        padding: 75px 20px;
    }

    .tmt-steel-intro {
        margin-bottom: 60px;
    }

    .tmt-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tmt-steel-two-column {
        grid-template-columns: 1fr;
    }

    .tmt-steel-two-column .tmt-steel-block {
        margin-bottom: 0;
    }

}


/* ===============================
   MOBILE
================================ */

@media (max-width: 767px) {

    .tmt-steel-section {
        padding: 60px 15px;
    }

    .tmt-steel-intro {
        margin-bottom: 45px;
    }

    .tmt-steel-chip {
        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .tmt-steel-intro h2 {
        font-size: 40px;
        letter-spacing: -1.5px;
    }

    .tmt-steel-intro p {
        font-size: 14px;
        line-height: 1.75;
    }

    .tmt-steel-block {
        padding: 25px 20px;
        border-radius: 14px;
    }

    .tmt-steel-heading {
        gap: 12px;
        margin-bottom: 25px;
    }

    .tmt-steel-number {
        min-width: 36px;
        width: 36px;
        height: 36px;
        font-size: 10px;
    }

    .tmt-steel-heading h3 {
        font-size: 23px;
    }

    .tmt-steel-heading small {
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    /* 2 brands per row */
    .tmt-brand-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .tmt-brand-card {
        min-height: 85px;
        padding: 15px;
    }

    .tmt-brand-card strong {
        font-size: 13px;
    }

    .tmt-brand-card span {
        font-size: 8px;
    }

    /* Applications */
    .tmt-application-grid {
        grid-template-columns: 1fr;
    }

    .tmt-application-grid div {
        min-height: 60px;
        font-size: 12px;
    }

    .tmt-feature-item {
        font-size: 13px;
    }

    .tmt-why-box {
        align-items: flex-start;
        flex-direction: column;
        padding: 30px 20px;
        gap: 25px;
    }

    .tmt-why-content p {
        font-size: 13px;
    }

    .tmt-why-icon {
        width: 65px;
        height: 65px;
    }

    .tmt-why-icon span {
        font-size: 30px;
    }

}


/* ===============================
   SMALL MOBILE
================================ */

@media (max-width: 400px) {

    .tmt-steel-intro h2 {
        font-size: 34px;
    }

    .tmt-steel-block {
        padding: 22px 16px;
    }

    .tmt-brand-card {
        padding: 13px;
    }

    .tmt-brand-card strong {
        font-size: 12px;
    }

}
#mw{
    max-width : 100%;
    margin-bottom : 20px;
}



.sec-top{
    padding-top : 70px;
}
.sec-bot{
    padding-bottom : 60px;
}