/* =============================
   SHREEJI ENGINEERING WORKS CSS
   Theme: White + Orange (navy structure)
   ============================= */

:root {
    --orange: #ff6b35;
    --orange-light: #ff9a6b;
    --orange-dark: #e85a2c;
    --blue: #0B2545;
    --blue-mid: #134074;
    --blue-light: #1D5EA8;
    --gray-dark: #2C2C2C;
    --gray-mid: #555555;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --border: #E0E0E0;
    --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

html {
    direction: ltr;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--gray-dark);
    background: var(--white);
}

h1,h2,h3,h4,h5,h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ---- NAVBAR ---- */
.main-navbar {
    background: var(--white);
    border-bottom: 3px solid var(--blue-light);
    padding: 10px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.10);
}

/* Logo */
.logo-box {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.logo-icon { display: flex; line-height: 1; }
.logo-s { font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: white; }
.logo-h { font-family: var(--font-heading); font-size: 26px; font-weight: 800; color: rgba(255,255,255,0.75); }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-shree { font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--blue); letter-spacing: 1px; }
.logo-eng { font-family: var(--font-heading); font-size: 14px; font-weight: 700; color: var(--orange); letter-spacing: 0.12em; }
.logo-tag { font-size: 12px; color: var(--gray-mid); letter-spacing: 0.04em; line-height: 1.35; }

.navbar-brand { text-decoration: none; }

.main-navbar .nav-link {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--blue) !important;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 6px 14px !important;
    transition: color 0.2s;
}
.main-navbar .nav-link:hover,
.main-navbar .nav-link.active {
    color: var(--orange) !important;
}
.main-navbar .nav-link.active {
    border-bottom: 2px solid var(--orange);
}
.btn-contact {
    background: var(--orange) !important;
    color: white !important;
    border-radius: 5px;
    margin-left: 8px;
}
.btn-contact:hover {
    background: var(--orange-dark) !important;
    color: white !important;
}

/* Menu toggle: inline SVG via background (visible even if Bootstrap Icons webfont fails) */
.navbar-toggler-main {
    border: 2px solid rgba(11, 37, 69, 0.18);
    border-radius: 10px;
    padding: 10px 12px;
    color: var(--blue);
    line-height: 1;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.navbar-toggler-main:focus {
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.28);
}

.navbar-toggler-main .navbar-toggler-icon {
    width: 1.35rem;
    height: 1.35rem;
    vertical-align: middle;
    background-size: 100% 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230B2545'%3E%3Cpath d='M2.5 12a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5zm0-4a.5.5 0 0 1 .5-.5h10a.5.5 0 0 1 0 1H3a.5.5 0 0 1-.5-.5z'/%3E%3C/svg%3E");
}

.navbar-toggler-main[aria-expanded="true"] {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

.navbar-toggler-main[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3E%3Cpath d='M4.646 4.646a.5.5 0 0 1 .708 0L8 7.293l2.646-2.647a.5.5 0 0 1 .708.708L8.707 8l2.647 2.646a.5.5 0 0 1-.708.708L8 8.707l-2.646 2.647a.5.5 0 0 1-.708-.708L7.293 8 4.646 5.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

/* ---- MOBILE NAV (navbar-expand-lg breakpoint) ---- */
@media (min-width: 992px) {
    .main-navbar .nav-link-icon {
        display: none !important;
    }

    .main-navbar .navbar-nav {
        column-gap: 0.125rem;
    }

    .main-navbar .nav-link {
        padding: 8px 14px !important;
    }

    .btn-contact {
        margin-left: 12px;
    }
}

@media (max-width: 991.98px) {
    .main-navbar {
        border-bottom: 1px solid rgba(11, 37, 69, 0.1);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    }

    .main-navbar .navbar-collapse.main-nav-collapse {
        margin-top: 12px;
        padding: 0;
        background: linear-gradient(165deg, #ffffff 0%, #fff8f4 45%, #fff2eb 100%);
        border-radius: 14px;
        border: 1px solid rgba(11, 37, 69, 0.1);
        box-shadow: 0 14px 38px rgba(11, 37, 69, 0.11);
        overflow: hidden;
    }

    .main-navbar .navbar-collapse.main-nav-collapse::before {
        content: '';
        display: block;
        height: 4px;
        background: linear-gradient(90deg, var(--blue) 0%, var(--orange) 52%, var(--blue-light) 100%);
    }

    .main-navbar .navbar-nav {
        padding: 10px 12px 14px;
        width: 100%;
    }

    .main-navbar .nav-item {
        border-bottom: 1px solid rgba(11, 37, 69, 0.07);
    }

    .main-navbar .nav-item:last-child {
        border-bottom: 0;
    }

    .main-navbar .nav-link {
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 13px 14px !important;
        border-radius: 10px;
        margin: 3px 0;
    }

    .main-navbar .nav-link.active {
        border-bottom: none !important;
        background: rgba(255, 107, 53, 0.1);
        color: var(--orange) !important;
        border-left: 4px solid var(--orange);
        padding-left: 10px !important;
    }

    .main-navbar .nav-link-icon {
        font-size: 1.1rem;
        width: 28px;
        text-align: center;
        color: var(--orange);
        flex-shrink: 0;
    }

    .main-navbar .nav-link.active .nav-link-icon {
        color: var(--orange-dark);
    }

    .main-navbar .nav-item-contact {
        margin-top: 8px;
        padding-top: 10px;
        border-top: 1px dashed rgba(11, 37, 69, 0.14);
        border-bottom: 0;
    }

    .main-navbar .btn-contact {
        margin-left: 0 !important;
        justify-content: center;
        padding: 14px 18px !important;
        box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
        border-radius: 10px;
    }

    .main-navbar .btn-contact .nav-link-icon {
        color: #fff !important;
    }

    .main-navbar .btn-contact.active {
        border-left: none !important;
        padding-left: 18px !important;
        background: var(--orange-dark) !important;
        box-shadow: 0 4px 18px rgba(255, 107, 53, 0.38);
    }
}

/* ---- HERO ---- */
/* ---- HOME SLIDER ---- */
.home-slider-wrap { position: relative; }
.home-slider-wrap .carousel-item {
    min-height: 78vh;
    position: relative;
}
.home-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
}
.home-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(8, 31, 63, 0.88) 0%, rgba(8, 31, 63, 0.72) 45%, rgba(255, 107, 53, 0.35) 100%);
}
.home-slide-content {
    position: relative;
    z-index: 2;
    padding-top: 120px;
    padding-bottom: 100px;
    color: white;
}
.home-slide-content .row { min-height: 520px; }
.home-slider-wrap .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255,255,255,0.6);
}
.home-slider-wrap .carousel-indicators .active { background: white; }
.home-slider-wrap .carousel-control-prev,
.home-slider-wrap .carousel-control-next { width: 8%; }
.home-slider-wrap .carousel-control-prev-icon,
.home-slider-wrap .carousel-control-next-icon {
    background-color: rgba(9, 30, 60, 0.55);
    border-radius: 50%;
    width: 52px;
    height: 52px;
    background-size: 56% 56%;
}
.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 16px;
    border-radius: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    color: white;
    line-height: 1.05;
    margin-bottom: 10px;
    font-weight: 800;
}
.hero-title span { color: var(--orange-light); }
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.75);
    margin-bottom: 30px;
    font-weight: 300;
    max-width: 520px;
}
.hero-glass-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 24px 22px;
    backdrop-filter: blur(8px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}
.hero-glass-card h5 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.hero-glass-card h5 i { color: var(--orange-light); }
.hero-glass-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}
.hero-glass-card li {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    margin-bottom: 9px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.hero-glass-card li i {
    color: #9fd2ff;
    margin-top: 2px;
}
.hero-mini-link {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}
.hero-mini-link i { transition: transform .2s ease; }
.hero-mini-link:hover { color: #fff; }
.hero-mini-link:hover i { transform: translateX(3px); }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary-custom {
    background: var(--orange);
    color: white;
    border: none;
    padding: 13px 32px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.2s;
}
.btn-primary-custom:hover { background: var(--orange-dark); color: white; transform: translateY(-2px); }

.btn-outline-custom {
    background: transparent;
    color: var(--blue);
    border: 2px solid var(--blue-light);
    padding: 13px 32px;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
}
.btn-outline-custom:hover { background: var(--blue); color: white; border-color: var(--blue); }

.home-slide-content .btn-outline-custom {
    color: white;
    border-color: rgba(255,255,255,0.75);
}
.home-slide-content .btn-outline-custom:hover {
    background: white;
    color: var(--blue);
    border-color: white;
}

.hero-stats {
    display: flex; gap: 32px; margin-top: 40px; flex-wrap: wrap;
}
.hero-stat { color: white; }
.hero-stat-num { font-family: var(--font-heading); font-size: 40px; font-weight: 800; color: var(--orange-light); line-height: 1; }
.hero-stat-label { font-size: 14px; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.08em; }

/* Hero right card */
.hero-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hero-card h4 { color: var(--blue); font-size: 20px; margin-bottom: 16px; }
.spec-item {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0; border-bottom: 1px solid var(--border);
}
.spec-item:last-child { border-bottom: none; }
.spec-icon { width: 36px; height: 36px; background: var(--orange); border-radius: 6px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.spec-text strong { display: block; font-size: 14px; color: var(--blue); }
.spec-text span { font-size: 14px; color: var(--gray-mid); }

/* ---- SECTION COMMON ---- */
.section-pad { padding: 70px 0; }
.section-pad-sm { padding: 50px 0; }

.section-label {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--blue);
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.1;
}
.section-title span { color: var(--orange); }
.section-desc { color: var(--gray-mid); max-width: 580px; line-height: 1.75; font-size: 1.0625rem; }
.section-divider {
    width: 60px; height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    border-radius: 2px; margin: 14px 0 20px;
}

/* ---- WHY US / FEATURES ---- */
.features-section { background: var(--gray-light); }
.feature-card {
    background: white;
    border-radius: 10px;
    padding: 28px 24px;
    height: 100%;
    border: 1px solid var(--border);
    border-top: 4px solid var(--orange);
    transition: transform 0.25s, box-shadow 0.25s;
    text-align: center;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.1); }
.feature-icon { width: 64px; height: 64px; background: linear-gradient(135deg, var(--orange), var(--orange-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.feature-icon i { font-size: 26px; color: white; }
.feature-card h5 { color: var(--blue); font-size: 18px; margin-bottom: 10px; }
.feature-card p { color: var(--gray-mid); font-size: 1.0625rem; line-height: 1.7; }

/* ---- MACHINES ---- */
.machine-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    height: 100%;
    transition: box-shadow 0.25s;
}
.machine-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.machine-card-header {
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    padding: 18px 20px;
    display: flex; align-items: center; gap: 14px;
}
.machine-card-header i { font-size: 28px; color: var(--orange-light); }
.machine-card-header h5 { color: white; margin: 0; font-size: 17px; }
.machine-card-header small { color: rgba(255,255,255,0.6); font-size: 14px; }
.machine-card-body { padding: 18px 20px; }
.machine-spec { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px dashed var(--border); font-size: 15px; }
.machine-spec:last-child { border-bottom: none; }
.machine-spec-label { color: var(--gray-mid); }
.machine-spec-value { color: var(--blue); font-weight: 600; text-align: right; }

/* ---- INDUSTRIES ---- */
.industry-card {
    background: white;
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.25s;
    height: 100%;
}
.industry-card:hover { background: var(--blue); border-color: var(--blue); }
.industry-card:hover .industry-icon { background: var(--orange); }
.industry-card:hover h6 { color: white; }
.industry-card:hover p { color: rgba(255,255,255,0.75); }
.industry-icon { width: 56px; height: 56px; background: var(--gray-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; transition: background 0.25s; }
.industry-icon i { font-size: 24px; color: var(--orange); transition: color 0.25s; }
.industry-card:hover .industry-icon i { color: white; }
.industry-card h6 { color: var(--blue); font-size: 16px; margin-bottom: 6px; transition: color 0.25s; }
.industry-card p { color: var(--gray-mid); font-size: 15px; line-height: 1.6; margin: 0; transition: color 0.25s; }

/* ---- CLIENTS ---- */
.clients-section { background: var(--gray-light); }
.client-marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.client-marquee-track {
    display: flex;
    align-items: center;
    gap: 14px;
    width: max-content;
    animation: clientScroll 34s linear infinite;
}
.client-marquee:hover .client-marquee-track { animation-play-state: paused; }
.client-marquee-item {
    flex: 0 0 180px;
}
.client-logo {
    background: white;
    border-radius: 8px;
    padding: 18px 24px;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border);
    height: 90px;
    transition: box-shadow 0.2s, transform 0.2s;
}
.client-logo:hover { box-shadow: 0 6px 20px rgba(0,0,0,0.1); transform: translateY(-3px); }
.client-logo img { max-height: 50px; max-width: 100%; object-fit: contain; filter: grayscale(40%); transition: filter 0.2s; }
.client-logo:hover img { filter: grayscale(0%); }
.client-logo span { font-family: var(--font-heading); font-size: 17px; font-weight: 700; color: var(--blue); letter-spacing: 1px; }
.client-logo-pill {
    border-radius: 999px;
    padding: 16px 26px;
    background: linear-gradient(180deg, #ffffff, #f7f9fc);
}

.client-showcase-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 14px 16px;
    text-align: center;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.client-showcase-card:hover {
    transform: translateY(-4px);
    border-color: rgba(19, 69, 126, 0.25);
    box-shadow: 0 12px 32px rgba(8, 25, 51, 0.12);
}
.client-showcase-logo {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}
.client-showcase-card h6 {
    font-family: var(--font-heading);
    font-size: 19px;
    color: var(--blue);
    margin: 0 0 4px;
    line-height: 1.2;
}
.client-showcase-card span {
    display: block;
    font-size: 14px;
    color: var(--gray-mid);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ---- CONTACT ---- */
.contact-card {
    background: white;
    border-radius: 12px;
    padding: 35px 30px;
    border: 1px solid var(--border);
    height: 100%;
}
.contact-info-item { display: flex; gap: 16px; margin-bottom: 22px; }
.contact-info-icon { width: 46px; height: 46px; background: var(--orange); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-icon i { font-size: 20px; color: white; }
.contact-info-text strong { display: block; color: var(--blue); font-size: 14px; margin-bottom: 2px; }
.contact-info-text span { color: var(--gray-mid); font-size: 15px; }

.contact-form-card {
    background: var(--blue);
    border-radius: 12px;
    padding: 35px 30px;
    position: relative;
    z-index: 2;
    overflow: visible;
}
/* Enquiry column stacks above the white contact card so the open select doesn’t sit under it */
.section-pad .row.g-4 > .col-lg-5 { position: relative; z-index: 1; }
.section-pad .row.g-4 > .col-lg-7 { position: relative; z-index: 2; }

.contact-form-card h4 { color: white; margin-bottom: 22px; font-size: 24px; }
.contact-form-card .form-control, .contact-form-card .form-select {
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.08);
    color: white;
    padding: 10px 14px;
    font-size: 15px;
}
.contact-form-card .form-select {
    padding-right: 2.75rem;
    cursor: pointer;
    /* Light chevron on dark background (Bootstrap default is dark stroke) */
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-opacity='0.8' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    background-size: 12px 10px;
}
.contact-form-card .form-select:focus {
    background-color: rgba(255,255,255,0.12);
    border-color: var(--orange);
    box-shadow: none;
    color: white;
}
.contact-form-card .form-select option,
.contact-form-card .form-select optgroup {
    color: var(--blue);
    background: #fff;
}
.contact-form-card .form-select.contact-select--empty {
    color: rgba(255,255,255,0.5);
}
.contact-form-card .contact-form-field-select .form-select:not(:disabled) {
    min-height: calc(1.5em + 20px + 2px);
}
.contact-form-card .form-control::placeholder { color: rgba(255,255,255,0.45); }
.contact-form-card .form-control:focus { background: rgba(255,255,255,0.12); border-color: var(--orange); box-shadow: none; color: white; }
.contact-form-card textarea.form-control { resize: vertical; min-height: 120px; }
.contact-form-card label { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 5px; }

/* ---- CONTACT THANK YOU MODAL ---- */
.contact-thank-modal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 30, 60, 0.25);
}
.contact-thank-modal__body {
    padding: 2.5rem 2rem 2.25rem;
}
.contact-thank-modal__icon-wrap {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), #c2410c);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.35);
}
.contact-thank-modal__icon-wrap i {
    font-size: 2rem;
    color: white;
    line-height: 1;
}
.contact-thank-modal__title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.85rem;
    color: var(--blue);
    margin-bottom: 0.5rem;
}
.contact-thank-modal__text {
    color: var(--gray-mid);
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 1.5rem;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}
.contact-thank-modal__btn {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.55rem 1.75rem;
    border-radius: 6px;
    border: none;
    background: var(--orange);
    color: white;
    transition: background 0.2s, transform 0.15s;
}
.contact-thank-modal__btn:hover {
    background: #c2410c;
    color: white;
    transform: translateY(-1px);
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--blue-mid), var(--blue-light));
    padding: 60px 0;
    text-align: center;
}
.cta-section h2 { color: white; font-size: 38px; margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 28px; }
.btn-white {
    background: white; color: var(--blue);
    border: none; padding: 13px 36px;
    font-family: var(--font-heading);
    font-size: 17px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    border-radius: 5px; text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
}
.btn-white:hover { background: var(--blue-dark, #081f3f); color: white; transform: translateY(-2px); }

/* ---- BREADCRUMB ---- */
.page-hero {
    background: linear-gradient(120deg, var(--blue), var(--blue-mid));
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}
.page-hero::after {
    content: '';
    position: absolute; top: 0; right: 0; bottom: 0; left: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: white; font-size: clamp(30px, 5vw, 48px); margin-bottom: 8px; }
.breadcrumb-custom { list-style: none; padding: 0; margin: 0; display: flex; gap: 6px; align-items: center; }
.breadcrumb-custom li { color: rgba(255,255,255,0.6); font-size: 14px; }
.breadcrumb-custom li a { color: var(--orange-light); text-decoration: none; }
.breadcrumb-custom li.sep { color: rgba(255,255,255,0.4); }

/* ---- TABLE ---- */
.spec-table { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.spec-table thead th { background: var(--blue); color: white; font-family: var(--font-heading); font-size: 15px; letter-spacing: 1px; border: none; }
.spec-table tbody tr:nth-child(even) { background: #f8fafc; }
.spec-table td { border-color: var(--border); vertical-align: middle; font-size: 15px; padding: 12px 16px; }

/* ---- FOOTER ---- */
.site-footer { background: var(--gray-dark); color: #aaa; }
.footer-top { padding: 60px 0 40px; }
.footer-bottom { background: rgba(0,0,0,0.3); padding: 16px 0; }
.footer-bottom p { margin: 0; font-size: 14px; }

.footer-brand { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: white; letter-spacing: 1px; }
.footer-desc { font-size: 15px; line-height: 1.75; margin-bottom: 12px; }
.footer-gstin { font-size: 13px; background: rgba(255,255,255,0.07); padding: 6px 12px; border-radius: 4px; display: inline-block; }
.footer-gstin strong { color: var(--orange-light); }

.footer-heading { font-family: var(--font-heading); font-size: 18px; font-weight: 700; color: white; letter-spacing: 1px; margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 3px; background: var(--orange); border-radius: 2px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: #aaa; text-decoration: none; font-size: 15px; transition: color 0.2s; display: flex; align-items: center; gap: 4px; }
.footer-links a:hover { color: var(--orange-light); }
.footer-links i { font-size: 13px; }

.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact-item i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 15px; line-height: 1.65; }

.logo-box-sm { width: 30px; height: 30px; background: var(--orange); border-radius: 4px; align-items: center; justify-content: center; }
.logo-icon-sm { display: flex; }
.logo-icon-sm .logo-s, .logo-icon-sm .logo-h { font-family: var(--font-heading); font-size: 14px; font-weight: 800; color: white; }
.logo-icon-sm .logo-h { color: rgba(255,255,255,0.7); }

/* Scroll to Top */
/* Floating WhatsApp — bottom-right (scroll-to-top sits to its left) */
.float-whatsapp {
    position: fixed;
    left: auto !important;
    right: max(16px, env(safe-area-inset-right, 0px) + 8px) !important;
    bottom: max(20px, env(safe-area-inset-bottom, 0px) + 8px) !important;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 28px;
    box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45), 0 2px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.2s, box-shadow 0.2s;
}
.float-whatsapp:hover {
    color: #fff;
    transform: scale(1.06);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.55), 0 4px 12px rgba(0, 0, 0, 0.22);
}
.float-whatsapp:focus-visible {
    outline: 3px solid rgba(37, 211, 102, 0.5);
    outline-offset: 3px;
}

.scroll-top {
    position: fixed; bottom: 24px; right: 92px;
    width: 44px; height: 44px;
    background: var(--orange); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    text-decoration: none; font-size: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.25);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    z-index: 999;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--orange-dark); color: white; transform: translateY(-3px); }

@media (max-width: 480px) {
    .float-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 26px;
        right: max(12px, env(safe-area-inset-right, 0px) + 6px) !important;
        bottom: max(16px, env(safe-area-inset-bottom, 0px) + 6px) !important;
    }
    .scroll-top {
        right: 78px;
        bottom: max(16px, env(safe-area-inset-bottom, 0px) + 6px);
        width: 42px;
        height: 42px;
    }
}

/* Product gallery */
.product-img {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #f8f8f8;
    display: flex; align-items: center; justify-content: center;
    height: 220px;
}
.product-img img { max-height: 200px; max-width: 100%; object-fit: contain; }

/* About page */
.about-highlight { background: linear-gradient(135deg, var(--blue), var(--blue-mid)); border-radius: 12px; padding: 24px; color: white; overflow: hidden; }
.about-highlight h5 { color: var(--orange-light); margin-bottom: 16px; }
.about-overview-panel {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 10px;
    padding: 14px;
    color: var(--navy, #0f172a);
}
.about-founder-photo-wrap {
    flex: 0 0 38%;
    max-width: 38%;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
}
.about-founder-photo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 3 / 4;
    min-height: 180px;
}
.about-founder-photo-placeholder {
    width: 100%;
    aspect-ratio: 3 / 4;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #e2e8f0, #cbd5e1);
    color: #94a3b8;
    font-size: 3rem;
}
.about-founder-caption {
    text-align: center;
    padding: 10px 8px 12px;
    background: linear-gradient(135deg, var(--blue), var(--blue-mid));
    color: #fff;
}
.about-founder-caption strong {
    display: block;
    font-size: 0.88rem;
    color: #fff;
    margin-bottom: 2px;
    line-height: 1.3;
}
.about-founder-caption span {
    display: block;
    font-size: 0.68rem;
    color: var(--orange-light, #fdba74);
    font-weight: 600;
    line-height: 1.35;
}
.about-overview-details {
    flex: 1;
    min-width: 0;
    display: flex;
    align-items: center;
}
.about-overview-table {
    font-size: 0.82rem;
    margin: 0;
}
.about-overview-table td {
    padding: 5px 8px 5px 0;
    vertical-align: top;
    line-height: 1.45;
    border: none;
}
.about-overview-table td:first-child {
    color: #64748b;
    width: 42%;
    white-space: nowrap;
}
.about-overview-table td:last-child {
    color: var(--navy, #0f172a);
}
.about-overview-table strong {
    font-weight: 700;
}
@media (max-width: 575.98px) {
    .about-overview-panel {
        flex-direction: column;
    }
    .about-founder-photo-wrap {
        flex: none;
        max-width: 100%;
    }
    .about-founder-photo-wrap img,
    .about-founder-photo-placeholder {
        aspect-ratio: 4 / 3;
        max-height: 220px;
    }
}
.about-stat { text-align: center; padding: 20px; }
.about-stat-num { font-family: var(--font-heading); font-size: 46px; font-weight: 800; color: var(--orange); line-height: 1; }
.about-stat-label { font-size: 14px; color: var(--gray-mid); text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* Company stats bar — all pages */
.company-stats-bar {
    background: linear-gradient(180deg, #f1f5f9 0%, #eef2f7 100%);
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}
.company-stats-bar .about-stat {
    padding: clamp(0.75rem, 2vw, 1.25rem) 0.5rem;
}
.company-stats-bar .about-stat-num {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--orange);
    line-height: 1.1;
}
.company-stats-bar .about-stat-label {
    font-size: clamp(0.68rem, 1.4vw, 0.82rem);
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-top: 6px;
}
@media (max-width: 1199.98px) {
    .company-stats-bar .row-cols-xl-5 > .col:nth-child(5):last-child {
        flex: 0 0 auto;
        width: 100%;
        max-width: 50%;
    }
}
@media (max-width: 575.98px) {
    .company-stats-bar .row-cols-xl-5 > .col:nth-child(5):last-child {
        max-width: 100%;
    }
}

/* Materials */
.material-badge {
    display: inline-block;
    background: var(--blue);
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 4px;
    margin: 4px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

/* Alert / Info Boxes */
.info-box {
    border-left: 4px solid var(--orange);
    background: #fff8f3;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 15px;
    color: var(--gray-dark);
}

/* Responsive */
@media (max-width: 768px) {
    .home-slider-wrap .carousel-item { min-height: 66vh; }
    .home-slide-content { padding-top: 90px; padding-bottom: 70px; }
    .home-slide-content .row { min-height: auto; }
    .hero-glass-card { margin-top: 10px; }
    .hero-stats { gap: 20px; }
    .client-marquee {
        -webkit-mask-image: none;
        mask-image: none;
    }
    .client-marquee-item { flex-basis: 160px; }
    .client-showcase-card { padding: 14px 10px 12px; border-radius: 10px; }
    .client-showcase-card h6 { font-size: 16px; }
    .client-showcase-card span { font-size: 13px; }
}

/* Real logo image */
.navbar-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Footer: same logo image as header — full colour on a light panel (matches header look on dark footer) */
.site-footer .footer-logo-link {
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s, box-shadow 0.2s;
}
.site-footer .footer-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.25);
}
.site-footer .footer-logo-img {
    display: block;
    height: auto;
    max-height: 64px;
    width: auto;
    max-width: min(240px, 100%);
    object-fit: contain;
}

/* Client logo images */
.client-logo-real img {
    max-height: 55px;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.25s, transform 0.25s;
}
.client-logo-real:hover img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

@keyframes clientScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 7px)); }
}

/* Product gallery real images */
.product-gallery-img {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
}
.product-gallery-img img {
    width: 100%;
    display: block;
    transition: transform 0.3s;
}
.product-gallery-img:hover img {
    transform: scale(1.02);
}
