/* ==========================================================================
   BAPA SITARAM ENTERPRISE - B2B INDUSTRIAL WEBSITE
   Premium Modern UI/UX Stylesheet (Bootstrap 5 Enhancements)
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* CSS Variables for Brand Styling */
:root {
    /* Premium 2-Color Corporate Palette (Logo Navy & Choice Warm Amber/Gold) */
    --primary-color: #0b2a56;
    /* Logo Navy Blue (Base Brand Color) */
    --primary-dark: #051428;
    /* Darker shade of Logo Navy for footer/dark sections */

    --accent-color: #0162b0;
    /* Steel Blue (Secondary Brand Accent) */
    --accent-light: #027cd4;
    /* Bright Steel Blue (Accent Light for hovers) */
    --accent-glow: rgba(1, 98, 176, 0.15);

    /* 3rd Color: Reserved exclusively for special highlights (e.g. spec badges, alerts) */
    --special-highlight: #0162b0;
    --special-highlight-glow: rgba(1, 98, 176, 0.15);

    --bg-light: #f8fafc;
    /* Slate-50 */
    --bg-white: #ffffff;
    --text-main: #334155;
    /* Slate-700 */
    --text-muted: #64748b;
    /* Slate-500 */
    --text-light: #94a3b8;
    /* Slate-400 */
    --border-color: #e2e8f0;
    /* Slate-200 */
    --border-light: #f1f5f9;
    /* Slate-100 */

    /* Bootstrap Theme Overrides */
    --bs-primary: rgb(11, 42, 86);
    --bs-primary-rgb: 11, 42, 86;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Motion & Transitions */
    --transition-speed: 0.4s;
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);

    /* Shape Customization */
    --border-radius: 12px;
    /* Rounded modern cards */
    --border-radius-sm: 8px;
    --border-radius-lg: 20px;

    /* Shadows & Elevation */
    --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.08);
    --shadow-glow: 0 0 20px rgba(1, 98, 176, 0.25);
}

/* Global Reset & Base Styles */
body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6 {
    color: #ffffff !important;
}

/* Custom Reading Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-light), var(--accent-color));
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Selection Color */
::selection {
    background-color: var(--accent-color);
    color: #ffffff;
}

/* ==========================================================================
   Header & Navigation (Glassmorphic)
   ========================================================================== */

/* Top bar contact details */
.top-bar {
    background-color: var(--primary-dark);
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    letter-spacing: 0.3px;
}

.top-bar a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.top-bar a:hover {
    color: var(--accent-light);
}

/* Sticky Custom Navbar with Glassmorphism */
.navbar-custom {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px) saturate(120%);
    -webkit-backdrop-filter: blur(16px) saturate(120%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform var(--transition-speed) var(--transition-bounce);
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-custom .nav-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 18px !important;
    position: relative;
    transition: color var(--transition-speed) ease;
}

.navbar-custom .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transform: translateX(-50%);
    transition: width var(--transition-speed) var(--transition-bounce);
}

.navbar-custom .nav-link:hover::before,
.navbar-custom .nav-link.active::before {
    width: 24px;
}

.navbar-custom .dropdown-toggle::after {
    display: inline-block !important;
    margin-left: 6px !important;
    vertical-align: middle !important;
    content: "" !important;
    border-top: 4.5px solid !important;
    border-right: 4.5px solid transparent !important;
    border-bottom: 0 !important;
    border-left: 4.5px solid transparent !important;
    transition: transform var(--transition-speed) var(--transition-smooth) !important;
    position: static !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
}

/* Caret rotation micro-animations */
.navbar-custom .nav-item.dropdown:hover>.dropdown-toggle::after {
    transform: rotate(180deg) !important;
}

.navbar-custom .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg) !important;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent-color);
}

/* Dropdown styling */
.navbar-custom .dropdown-menu {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 10px;
    margin-top: 12px;
    animation: dropdownFade 0.3s var(--transition-bounce);
}

.navbar-custom .dropdown-item {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: all var(--transition-speed) ease;
}

.navbar-custom .dropdown-item:hover {
    background-color: var(--border-light);
    color: var(--accent-color);
    padding-left: 20px;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

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

/* ==========================================================================
   Buttons (Glow & Scale Effects)
   ========================================================================== */
.btn {
    border-radius: var(--border-radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 26px;
    transition: all var(--transition-speed) var(--transition-bounce);
    text-transform: uppercase;
    font-size: 0.82rem;
    letter-spacing: 0.8px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0369a1 100%);
    border: 2px solid transparent;
    color: #ffffff;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: #ffffff !important;
}

.btn-outline-primary {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    background: transparent;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--accent-color) 0%, #0369a1 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent-color) 100%);
    border: 2px solid transparent;
    color: #ffffff;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: #ffffff;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #ffffff;
    border-color: #ffffff;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    background:
        linear-gradient(105deg, rgba(5, 20, 40, 0.92) 0%, rgba(11, 42, 86, 0.78) 55%, rgba(1, 98, 176, 0.45) 100%),
        url('../Products/hero-bg.jpg');
    background-size: cover;
    background-position: center top;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #ffffff;
    position: relative;
    padding: 50px 0 50px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(1, 98, 176, 0.06) 1.5px, transparent 1.5px);
    background-size: 28px 28px;
    z-index: 1;
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.12;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 540px;
}

/* Product Showcase on right side of hero */
.hero-product-showcase {
    position: relative;
}

.hero-prod-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Old hero-image-frame kept for compatibility */
.hero-image-frame {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    border-radius: var(--border-radius-lg);
    background-color: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.hero-image-frame img {
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed) var(--transition-smooth);
}

.hero-image-frame img:hover {
    transform: scale(1.03);
}


/* ==========================================================================
   Section Layouts
   ========================================================================== */
.section-padding {
    padding: 70px 0;
}

.bg-white.bg-opacity-10 {
    height: 100%;
}

.section-bg-light {
    background-color: var(--bg-light);
}

.section-title-wrap {
    margin-bottom: 60px;
}

.section-subtitle {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 12px;
    display: inline-block;
    background-color: var(--accent-glow);
    padding: 6px 16px;
    border-radius: 50px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 20px;
    color: var(--primary-color);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background-color: var(--accent-color);
}

.text-center .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

/* ==========================================================================
   Highlight & Service Cards
   ========================================================================== */
.highlight-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(56, 189, 248, 0.3);
}

.highlight-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    transition: transform var(--transition-speed) var(--transition-bounce);
}

.highlight-card:hover .highlight-icon {
    transform: scale(1.1) rotate(5deg);
}

.highlight-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: var(--primary-color);
}

/* ==========================================================================
   Brands Section
   ========================================================================== */
.brand-showcase-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-speed) var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.brand-showcase-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-color);
    box-shadow: var(--shadow-lg);
}

.brand-header-rockseal {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #1e293b 100%);
    color: #ffffff;
    padding: 40px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-header-yontax {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #ffffff;
    padding: 40px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.brand-showcase-title {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 3px;
    margin: 0;
    color: #ffffff !important;
}

.brand-showcase-body {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* ==========================================================================
   Product Grid & Catalog
   ========================================================================== */
.product-category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    background: #ffffff;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(56, 189, 248, 0.3);
}

.category-image-wrap {
    height: 250px;
    width: 100%;
    overflow: hidden;
    background-color: var(--border-light);
    border-bottom: 1px solid var(--border-color);
    display: block;
}

.category-image-wrap img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) var(--transition-smooth);
}

.product-category-card:hover .category-image-wrap img {
    transform: scale(1.08);
}

.category-card-body {
    padding: 24px;
}

.category-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Product Catalog Cards */
.product-catalog-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.product-catalog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(56, 189, 248, 0.3);
}

.product-image-container {
    height: 190px;
    background-color: var(--border-light);
    display: block;
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform var(--transition-speed) var(--transition-smooth);
}

.product-catalog-card:hover .product-image-container img {
    transform: scale(1.08);
}

.product-details-wrap {
    padding: 15px;
}

.product-catalog-brand {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: inline-block;
}

.product-catalog-name {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.product-application-list {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    list-style-type: none;
    padding-left: 0;
}

.product-application-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 8px;
}

.product-application-list li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.9rem;
    color: var(--accent-color);
}

/* ==========================================================================
   B2B Inquiry Section & Forms
   ========================================================================== */
.inquiry-container {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #ffffff;
    padding: 50px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.inquiry-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 1;
}

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

.inquiry-container h3 {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
}

.inquiry-form-card {
    background: #ffffff;
    padding: 45px;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 14px 20px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    transition: all var(--transition-speed) var(--transition-smooth);
    background-color: var(--bg-light);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px var(--accent-glow);
    background-color: #ffffff;
    outline: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-choose-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.why-choose-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
    background-color: var(--accent-glow);
    height: 52px;
    width: 52px;
    min-width: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    transition: all var(--transition-speed) var(--transition-bounce);
}

.why-choose-item:hover .why-choose-icon {
    transform: scale(1.1) rotate(15deg);
    background-color: var(--accent-color);
    color: #ffffff;
}

.why-choose-text h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--primary-color);
}

.card.border-0.shadow-sm {
    border: 1px solid var(--border-color) !important;
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: all var(--transition-speed) var(--transition-smooth);
}

.card.border-0.shadow-sm:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
    border-color: rgba(56, 189, 248, 0.2) !important;
}

/* ==========================================================================
   Industries We Serve
   ========================================================================== */
.industry-grid-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    padding: 0;
    height: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.industry-grid-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: background-color var(--transition-speed) ease;
}

.industry-grid-card:hover::after {
    background-color: var(--accent-color);
}

.industry-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(56, 189, 248, 0.3);
}

.industry-image-container {
    height: 180px;
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
    background-color: var(--border-light);
}

.industry-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-speed) var(--transition-smooth);
}

.industry-grid-card:hover .industry-card-img {
    transform: scale(1.08);
}

.industry-card-body {
    padding: 30px 25px;
}

.industry-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* ==========================================================================
   Corporate Footer
   ========================================================================== */
.footer-dark {
    background-color: var(--primary-dark);
    color: rgba(255, 255, 255, 0.65);
    padding-top: 100px;
}

.footer-dark h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-dark .footer-links {
    list-style: none;
    padding-left: 0;
}

.footer-dark .footer-links li {
    margin-bottom: 14px;
}

.footer-dark .footer-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: all var(--transition-speed) var(--transition-smooth);
    display: inline-block;
}

.footer-dark .footer-links a:hover {
    color: var(--accent-light);
    transform: translateX(6px);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
}

.footer-contact-icon {
    color: var(--accent-light);
    margin-right: 14px;
    font-size: 1.15rem;
    margin-top: 4px;
}

.footer-bottom {
    background-color: #020617;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ==========================================================================
   Page Headers (Subpages)
   ========================================================================== */
.page-header-bg {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    padding: 50px 0;
    color: #ffffff;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.page-header-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(56, 189, 248, 0.05) 1.5px, transparent 1.5px);
    background-size: 30px 30px;
    z-index: 1;
}

.page-header-bg .container {
    position: relative;
    z-index: 2;
}

.page-header-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.breadcrumb-custom {
    display: flex;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    font-size: 0.92rem;
    font-weight: 500;
}

.breadcrumb-custom li+li::before {
    content: "/";
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

.breadcrumb-custom a:hover {
    color: #ffffff;
}

.breadcrumb-custom .active {
    color: var(--accent-light);
}

/* ==========================================================================
   Special B2B Elements / Highlights
   ========================================================================== */
.certification-badge {
    border: 1px solid var(--border-color);
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--border-radius);
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.certification-badge:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.certification-badge i {
    font-size: 2.2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    transition: transform var(--transition-speed) var(--transition-bounce);
}

.certification-badge:hover i {
    transform: scale(1.1);
}

/* Specs Badge Elements in Catalog */
.spec-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--special-highlight);
    background-color: var(--special-highlight-glow);
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 6px;
    margin-bottom: 6px;
}

/* ==========================================================================
   Export page workflow roadmap
   ========================================================================== */
.export-roadmap {
    position: relative;
    padding: 40px 0;
}

.export-roadmap::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 26px;
    bottom: 50px;
    width: 3px;
    background: repeating-linear-gradient(to bottom,
            var(--accent-color) 0px,
            var(--accent-color) 8px,
            transparent 8px,
            transparent 16px);
    z-index: 1;
}

@media (min-width: 768px) {
    .export-roadmap::before {
        left: calc(25% - 40px);
        transform: translateX(-50%);
        top: 60px;
        bottom: 60px;
    }
}

.roadmap-step {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.roadmap-step:last-child {
    margin-bottom: 0;
}

.roadmap-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px var(--accent-glow);
    position: relative;
}

.roadmap-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: 0 0 0 0 var(--accent-color);
    animation: ripple 2s infinite;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(56, 189, 248, 0);
    }
}

/* ==========================================================================
   Milestones & About Us Timeline
   ========================================================================== */
.about-timeline {
    position: relative;
    border-left: 3px solid var(--border-color);
    padding-left: 30px;
    margin-left: 15px;
}

.timeline-item {
    position: relative;
    margin-bottom: 45px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -41px;
    top: 5px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 4px solid var(--accent-color);
    box-shadow: 0 0 0 4px var(--accent-glow);
    transition: all var(--transition-speed) ease;
}

.timeline-item:hover .timeline-marker {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.timeline-year {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 6px;
}

/* Subtle fade in animations */
.fade-in-up {
    animation: fadeInUp 0.8s var(--transition-smooth) forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

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

/* ==========================================================================
   B2B Restructuring & Industrial Elements
   ========================================================================== */

/* Premium Product Catalog Cards */
.product-catalog-card {
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    border-radius: 16px !important;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-catalog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color) !important;
}

.product-image-container {
    height: 190px;
    background: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);

}

.product-image-bg-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px) opacity(0.25);
    transform: scale(1.1);
    z-index: 1;
}

.product-image-container img {
    position: relative;
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.4s ease;
}

.product-catalog-card:hover .product-image-container img {
    transform: scale(1.08) translateZ(0);
}

.product-details-wrap {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-catalog-brand {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-color);
    margin-bottom: 6px;
    display: inline-block;
}

.product-catalog-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Symmetrical Technical Specification Tables */
.tech-spec-table {
    width: 100%;

    font-size: 0.82rem;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.tech-spec-table th,
.tech-spec-table td {
    padding: 8px 12px;
    border: 1px solid rgba(0, 0, 0, 0.06) !important;
}

.tech-spec-table th {
    background-color: #f1f5f9 !important;
    color: #334155 !important;
    font-weight: 600;
    text-align: left;
    width: 40%;
}

.tech-spec-table td {
    color: #475569 !important;
    background-color: #ffffff !important;
}

/* Manufacturing & Technical Capability Section */
.mfg-stat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 30px;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.mfg-stat-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.mfg-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 10px;
}

.mfg-stat-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.mfg-stat-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* QA Lab list elements */
.mfg-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.mfg-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-main);
}

.mfg-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.85rem;
    color: var(--accent-color);
}

/* Trust Factors Section Grid */
.trust-factor-card {
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: var(--border-radius);
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-speed) var(--transition-smooth);
}

.trust-factor-card:hover {
    border-color: var(--accent-color);
    box-shadow: var(--shadow-md);
}

.trust-factor-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.trust-factor-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.trust-factor-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.5;
}

/* TDS/MSDS Request Badge */
.tds-request-banner {
    background-color: var(--border-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 15px 20px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tds-request-text {
    font-size: 0.88rem;
    color: var(--text-main);
    margin-bottom: 0;
}

/* Symmetrical Transparent B2B Hero Cards */
.product-division-hero-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    border-radius: 20px !important;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.product-division-hero-card:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.hero-card-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
    background: #ffffff;
    /* Symmetrical background for white B2B packaging */
}

.hero-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-division-hero-card:hover .hero-card-img-wrap img {
    transform: scale(1.05);
}

.product-division-hero-card .card-body {
    background: transparent !important;
}

.product-division-hero-card p {
    line-height: 1.4;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85) !important;
}

.product-division-hero-card ul {
    font-size: 0.78rem;
    line-height: 1.6;
    color: #ffffff !important;
}

/* B2B Helper Styles to Eliminate Inline CSS */
.hero-accent-line {
    display: inline-block;
    width: 36px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.hero-subtitle-badge {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-light);
    text-transform: uppercase;
}

.hero-title-custom {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.hero-divisions-label {
    letter-spacing: 1px;
    color: var(--accent-light) !important;
}

.hero-divisions-list {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.btn-hero-cta {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.overview-card {
    padding: 15px;
}

.hero-stat-number {
    font-size: 1.8rem;
    line-height: 1;
}

.hero-stat-label {
    color: var(--text-light);
}

.hero-stat-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.delay-200ms {
    animation-delay: 0.2s;
}

.card-badge-hero {
    font-size: 0.7rem;
    border-radius: 30px;
    z-index: 10;
}

.card-logo-sm {
    height: 22px;
    width: auto;
}

.invert-logo {
    filter: brightness(0) invert(1);
}

.brand-header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.brand-header-logo-white {
    height: 60px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.brand-logo-md {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer-brand-logo {
    height: 70px;
    width: auto;
    object-fit: contain;
}

.gstin-text {
    opacity: 0.65;
}

.btn-request-pdf {
    font-size: 0.75rem;
}

.bg-primary-custom {
    background-color: var(--primary-color) !important;
}

.export-icon-lg {
    font-size: 5rem;
}

.gst-trust-badge {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4fd 100%);
    border-color: var(--accent-color) !important;
}

.gst-trust-icon-box {
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.font-size-072rem {
    font-size: 0.72rem;
}

.brand-section-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
}

/* ==========================================================================
   Founder / Leadership Section (About Page)
   ========================================================================== */

.founder-img-wrapper {
    position: relative;
    padding-right: 15px;
    padding-bottom: 15px;
}

.founder-img-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--accent-color);
    border-radius: var(--border-radius);
    z-index: 1;
}

.founder-img {
    position: relative;
    z-index: 2;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-speed) var(--transition-bounce);
    background-color: var(--bg-white);
}

.founder-img:hover {
    transform: translateY(-5px);
}

.founder-quote-box {
    background-color: #f0f4f9;
    border-left: 4px solid var(--accent-color);
    padding: 1.25rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-bottom: 1.5rem;
}

.founder-quote-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0;
}

.founder-badge-role {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-color);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.founder-highlight-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.founder-highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.founder-highlight-icon {
    color: var(--accent-color);
    margin-top: 4px;
    font-size: 1rem;
}

.founder-highlight-text {
    font-size: 0.95rem;
    color: var(--text-main);
    margin-bottom: 0;
}

/* Grid layout updates for expertise/industries/quality components on About Us page */
.about-expertise-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    transition: transform var(--transition-speed) ease, box-shadow var(--transition-speed) ease;
}

.about-expertise-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent-color);
}

.about-industry-card {
    border: 1px solid var(--border-light);
    border-radius: var(--border-radius-sm);
    background-color: var(--bg-white);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.about-industry-card:hover {
    background-color: var(--bg-light);
    border-color: var(--border-color);
}

/* ==========================================================================
   Mega Menu Custom Styles (Premium UI/UX)
   ========================================================================== */
@media (min-width: 992px) {
    .navbar-custom .mega-menu {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100vw !important;
        margin-top: 0 !important;
        top: 100% !important;
        border-top: 3px solid var(--accent-color) !important;
        border-radius: 0 0 var(--border-radius) var(--border-radius) !important;
        box-shadow: 0 15px 30px rgba(15, 23, 42, 0.12) !important;
        padding: 30px 0 !important;
        background-color: rgba(255, 255, 255, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
    }

    /* Transparent bridge to prevent menu from closing when cursor transitions from navbar trigger */
    .navbar-custom .mega-menu::before {
        content: '' !important;
        position: absolute !important;
        top: -24px !important;
        left: 0 !important;
        width: 100% !important;
        height: 24px !important;
        background: transparent !important;
        z-index: 1 !important;
    }
}


.mega-menu-list {
    margin-bottom: 0;
}

.mega-menu-list li a {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-main) !important;
    padding: 6px 12px !important;
    border-radius: var(--border-radius-sm);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    width: 100%;
}

.mega-menu-list li a:hover {
    background-color: var(--border-light) !important;
    color: var(--accent-color) !important;
    padding-left: 18px !important;
}

.mega-menu-list li a::after {
    display: none !important;
    /* Disable navigation under-line for mega menu items */
}

/* Mega menu hover trigger on desktop (min-width: 992px) */
@media (min-width: 992px) {
    .navbar-custom .nav-item.dropdown:hover .dropdown-menu.mega-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
        animation: dropdownFade 0.3s var(--transition-bounce);
    }

    /* Transparent bridge under the Products link to maintain hover state while moving down */
    .navbar-custom .dropdown-toggle::before {
        content: '' !important;
        position: absolute !important;
        bottom: -35px !important;
        left: 0 !important;
        width: 100% !important;
        height: 35px !important;
        background: transparent !important;
        z-index: 1000 !important;
    }
}

.mega-menu-thumb {
    width: 24px !important;
    height: 24px !important;
    object-fit: cover !important;
    border-radius: 50% !important;
    border: 1px solid var(--border-color) !important;
    box-shadow: var(--shadow-sm) !important;
    transition: transform var(--transition-speed) ease !important;
}

.mega-menu-list li a:hover .mega-menu-thumb {
    transform: scale(1.15) !important;
}

/* Footer Social Links Styling */
.footer-social-links a {
    color: rgba(255, 255, 255, 0.5) !important;
    transition: color 0.3s ease, transform 0.3s ease !important;
    display: inline-block !important;
}

.footer-social-links a:hover {
    color: var(--accent-color) !important;
    transform: translateY(-3px) !important;
}

/* Premium Breadcrumbs Styling */
.breadcrumb {
    padding: 0 !important;
    margin-bottom: 0 !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
}

.breadcrumb-item {
    font-family: var(--font-heading) !important;
    font-size: 0.82rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.2px !important;
}

.breadcrumb-item a {
    color: var(--text-muted) !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.breadcrumb-item a:hover {
    color: var(--accent-color) !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: '\f105' !important;
    /* FontAwesome chevron-right icon */
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    color: var(--text-light) !important;
    font-size: 0.72rem !important;
    padding-right: 8px !important;
    vertical-align: middle !important;
}

.breadcrumb-item.active {
    color: var(--primary-color) !important;
    font-weight: 600 !important;
}

/* Breadcrumb wrapper section background override */
.bg-light.border-bottom.py-2 {
    background-color: var(--border-light) !important;
    border-bottom: 1px solid var(--border-color) !important;
    padding: 12px 0 !important;
}

/* ==========================================================================
   IndiaMART TrustSEAL Section
   ========================================================================== */

.indiamart-trust-section {
    background: linear-gradient(135deg, #f8fafc 0%, #eef2f8 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.indiamart-cert-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(11, 42, 86, 0.10);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.indiamart-cert-card:hover {
    box-shadow: 0 16px 56px rgba(11, 42, 86, 0.15);
    transform: translateY(-4px);
}

.indiamart-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.indiamart-chip {
    display: inline-flex;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-heading);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.indiamart-chip:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.trust-highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s ease;
}

.trust-highlight-item:hover {
    box-shadow: var(--shadow-md);
}

.trust-highlight-icon {
    font-size: 1.4rem;
    color: var(--accent-color);
    flex-shrink: 0;
    width: 32px;
    text-align: center;
}

/* Embed IndiaMART trustseal cert styles scoped inside our card */
.indiamart-cert-card .trustseal-cert {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
    box-sizing: border-box;
}

.indiamart-cert-card .trustseal-cert__container {
    display: flex;
    width: 100%;
    position: relative;
    background-color: #ffffff;
}

.indiamart-cert-card .trustseal-cert__border {
    flex: 0 0 20px;
    width: 20px;
    min-height: 100%;
}

.indiamart-cert-card .trustseal-cert__border img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.indiamart-cert-card .trustseal-cert__body {
    flex: 1;
    padding: 24px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.indiamart-cert-card .trustseal-cert__logo {
    max-width: 150px;
    height: auto;
    display: block;
    margin-bottom: 5px;
}

.indiamart-cert-card .trustseal-cert__id {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: #6b7381;
    margin-bottom: 20px;
}

.indiamart-cert-card .trustseal-cert__award-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #6b7381;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.indiamart-cert-card .trustseal-cert__award-to {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 12px;
    color: #6b7381;
    letter-spacing: 0.5px;
    margin: 0 0 16px 0;
}

.indiamart-cert-card .trustseal-cert__recipient {
    margin-bottom: 20px;
    width: 100%;
}

.indiamart-cert-card .trustseal-cert__name {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(22px, 5vw, 36px);
    line-height: 1.2;
    color: #1b375e;
    margin: 0 0 8px 0;
    font-weight: 700;
}

.indiamart-cert-card .trustseal-cert__location {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #6b7381;
    margin: 0;
}

.indiamart-cert-card .trustseal-cert__details {
    display: flex;
    width: 100%;
    max-width: 380px;
    margin: 0 auto 20px auto;
}

.indiamart-cert-card .trustseal-cert__details-col {
    flex: 1;
    padding: 0 8px;
    text-align: center;
}

.indiamart-cert-card .trustseal-cert__details-col:not(:last-child) {
    border-right: 1px solid #1b375e;
}

.indiamart-cert-card .trustseal-cert__details-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 9px;
    color: #6b7381;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.indiamart-cert-card .trustseal-cert__details-value {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 11px;
    color: #1b375e;
}

.indiamart-cert-card .trustseal-cert__rating-box {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #cecece;
    border-radius: 10px;
    padding: 10px 15px;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 30px auto;
    box-sizing: border-box;
}

.indiamart-cert-card .trustseal-cert__stars {
    display: flex;
    gap: 5px;
    margin-right: 12px;
}

.indiamart-cert-card .trustseal-cert__star-icon {
    width: 26px;
    height: 26px;
    display: block;
}

.indiamart-cert-card .trustseal-cert__rating-number {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1b375e;
    line-height: 1.1;
}

.indiamart-cert-card .trustseal-cert__rating-label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 9px;
    color: #1b375e;
    text-transform: uppercase;
}

.indiamart-cert-card .trustseal-cert__verification--no-qr {
    justify-content: center;
    width: 100%;
}

.indiamart-cert-card .trustseal-cert__verification--no-qr .trustseal-cert__verification-right {
    flex: 0 1 auto;
    align-items: center;
    text-align: center;
    padding: 0;
    max-width: 360px;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.indiamart-cert-card .trustseal-cert__verified-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #1b375e;
    margin: 0 0 16px 0;
    text-align: center;
}

.indiamart-cert-card .trustseal-cert__checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.indiamart-cert-card .trustseal-cert__check-item {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1b375e;
    text-align: left;
}

.indiamart-cert-card .trustseal-cert__tick-icon {
    width: 26px;
    height: 26px;
    margin-right: 12px;
    flex-shrink: 0;
}

.indiamart-cert-card .trustseal-cert__footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.indiamart-cert-card .trustseal-cert__footer-logo {
    max-height: 34px;
    width: auto;
    margin-bottom: 12px;
    display: block;
}

.indiamart-cert-card .trustseal-cert__footer-text {
    font-family: 'Inter', sans-serif;
    font-style: italic;
    font-size: 9px;
    line-height: 1.5;
    color: #6d6f71;
    margin: 0;
    padding-bottom: 10px;
    text-align: center;
}

/* ==========================================================================
   OEM Visualizer Custom Styles
   ========================================================================== */
.oem-visual-bottle {
    position: relative;
    width: 60px;
    height: 140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.oem-cap {
    width: 20px;
    height: 30px;
    background: #475569;
    border-radius: 4px 4px 0 0;
}

.branded-bottle .oem-cap {
    background: var(--accent);
}

.oem-nozzle {
    width: 10px;
    height: 15px;
    background: #cbd5e1;
}

.oem-body {
    width: 60px;
    height: 95px;
    background: #f1f5f9;
    border: 2px solid #cbd5e1;
    border-radius: 8px 8px 12px 12px;
    position: relative;
    padding: 10px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blank-bottle .oem-body {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.branded-bottle .oem-body {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.oem-label {
    width: 48px;
    height: 60px;
    background: #e2e8f0;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
    color: #64748b;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.2;
}

.branded-bottle .oem-label {
    background: var(--primary);
    color: #ffffff;
}

.oem-label-logo {
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--accent);
}

.oem-label-sub {
    font-size: 5px;
    color: #cbd5e1;
    margin-top: 2px;
}

.oem-visual-box {
    position: relative;
    width: 90px;
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.oem-box-lid {
    width: 90px;
    height: 15px;
    background: #94a3b8;
    border-radius: 4px 4px 0 0;
}

.blank-box .oem-box-lid {
    background: #cbd5e1;
}

.branded-box .oem-box-lid {
    background: var(--primary);
}

.oem-box-body {
    width: 90px;
    height: 145px;
    background: #e2e8f0;
    border: 2px solid #cbd5e1;
    border-top: none;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.blank-box .oem-box-body {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.branded-box .oem-box-body {
    background: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.oem-box-text {
    width: 74px;
    height: 110px;
    border: 1px dashed #cbd5e1;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: bold;
    color: #94a3b8;
    text-align: center;
}

.branded-box .oem-box-text {
    border: 1px solid var(--accent);
    background: rgba(249, 115, 22, 0.03);
    color: var(--primary);
}

.oem-box-logo {
    font-size: 9px;
    font-weight: 800;
    color: var(--primary);
}

.oem-box-sub {
    font-size: 6px;
    color: #64748b;
    margin-top: 3px;
    text-transform: uppercase;
}

.oem-brand-highlight {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-md) !important;
}

.oem-connector-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

/* ==========================================================================
   Desktop Hover Dropdowns (Width >= 992px)
   ========================================================================== */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
        animation: fadeIn 0.2s var(--transition-smooth);
    }
}

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

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

/* ==========================================================================
   Custom Dropdown Menu Items (Theme Alignment)
   ========================================================================== */
.dropdown-menu {
    border-radius: var(--border-radius);
    padding: 8px;
}

.dropdown-item {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text-main);
    padding: 10px 16px;
    border-radius: var(--border-radius-sm);
    transition: all 0.2s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--bg-light);
    color: var(--primary-color);
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* ==========================================================================
   Mobile & Responsive Styles Overrides (max-width: 991px & 767px)
   ========================================================================== */
@media (max-width: 991px) {

    /* Mobile Navigation Collapse Scroll UX Fix */
    .navbar-collapse {
        max-height: 75vh !important;
        overflow-y: auto !important;
        padding-bottom: 20px;
    }

    /* Table format / border styling for mobile navigation items */
    .navbar-custom .navbar-nav {
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        background-color: #ffffff;
        overflow: hidden;
        margin-top: 15px;
        margin-bottom: 15px;
        box-shadow: var(--shadow-sm);
        padding: 0 !important;
    }

    .navbar-custom .nav-item {
        border-bottom: 1px solid var(--border-color);
        margin: 0 !important;
        padding: 0 !important;
    }

    .navbar-custom .nav-item:last-child {
        border-bottom: none;
    }

    .navbar-custom .nav-link {
        padding: 14px 20px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100%;
        color: var(--primary-color) !important;
        transition: background-color 0.2s ease;
    }

    .navbar-custom .nav-link:hover,
    .navbar-custom .nav-link:focus,
    .navbar-custom .nav-link.active {
        background-color: var(--bg-light) !important;
        color: var(--accent-color) !important;
    }

    /* On mobile, remove the underline effects */
    .navbar-custom .nav-link::before {
        display: none !important;
    }

    /* Align the dropdown caret arrow to the right on mobile */
    .navbar-custom .dropdown-toggle::after {
        margin-left: auto !important;
    }

    /* Standard dropdown menu list on mobile */
    .navbar-custom .dropdown-menu {
        border: none !important;
        box-shadow: none !important;
        background-color: var(--bg-light) !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
        padding: 0 !important;
        border-top: 1px solid var(--border-color) !important;
        animation: none !important;
        display: none;
    }

    .navbar-custom .dropdown-menu.show {
        display: block !important;
    }

    .navbar-custom .dropdown-item {
        padding: 12px 30px !important;
        /* Indent sub items */
        border-bottom: 1px solid rgba(0, 0, 0, 0.04) !important;
        border-radius: 0 !important;
        background-color: transparent !important;
        color: var(--text-main) !important;
        display: block;
        transition: all 0.2s ease;
    }

    .navbar-custom .dropdown-item:last-child {
        border-bottom: none !important;
    }

    .navbar-custom .dropdown-item:hover,
    .navbar-custom .dropdown-item:focus {
        background-color: rgba(0, 0, 0, 0.02) !important;
        color: var(--accent-color) !important;
        padding-left: 35px !important;
    }

    /* Mega menu static flow inside mobile navigation menu */
    .navbar-custom .mega-menu {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        border: none !important;
        box-shadow: none !important;
        padding: 0 !important;
        background-color: var(--bg-light) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        margin-top: 0 !important;
        border-radius: 0 !important;
        border-top: 1px solid var(--border-color) !important;
        display: none;
    }

    .navbar-custom .mega-menu.show {
        display: block !important;
    }

    .navbar-custom .mega-menu .container {
        padding: 0 !important;
    }

    .navbar-custom .mega-menu .row {
        margin: 0 !important;
    }

    .navbar-custom .mega-menu .col-lg-3,
    .navbar-custom .mega-menu .col-lg-5,
    .navbar-custom .mega-menu .col-lg-4 {
        margin-bottom: 0 !important;
        padding: 0 !important;
        border-bottom: 1px solid var(--border-color);
    }

    .navbar-custom .mega-menu .col-lg-4 {
        border-bottom: none;
        background-color: #ffffff;
    }

    /* Category headers inside mega menu */
    .navbar-custom .mega-menu h5 {
        padding: 12px 20px !important;
        margin: 0 !important;
        background-color: rgba(0, 0, 0, 0.02);
        border-bottom: 1px solid var(--border-color);
        font-size: 0.85rem !important;
        font-weight: 700 !important;
    }

    .navbar-custom .mega-menu h5 a {
        display: flex;
        align-items: center;
        width: 100%;
        color: var(--primary-color) !important;
    }

    .mega-menu-list {
        padding-left: 0 !important;
        margin: 0 !important;
    }

    .mega-menu-list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
        margin: 0 !important;
        padding: 0 !important;
    }

    .mega-menu-list li:last-child {
        border-bottom: none;
    }

    .mega-menu-list li a {
        padding: 12px 30px !important;
        display: flex !important;
        align-items: center !important;
        color: var(--text-main) !important;
        text-decoration: none;
        transition: all 0.2s ease;
        font-weight: 500 !important;
    }

    .mega-menu-list li a:hover {
        background-color: rgba(0, 0, 0, 0.02) !important;
        color: var(--accent-color) !important;
        padding-left: 35px !important;
    }

    .mega-menu-thumb {
        width: 28px !important;
        height: 28px !important;
        object-fit: cover;
        border-radius: 4px;
        border: 1px solid var(--border-color);
    }

    .navbar-custom .mega-menu .col-lg-4 .p-4 {
        padding: 20px !important;
        border: none !important;
        border-radius: 0 !important;
        background-color: transparent !important;
    }

    /* Request quote button container padding on mobile */
    .navbar-custom .navbar-collapse .d-flex {
        padding: 0 !important;
        width: 100% !important;
    }

    .navbar-custom .navbar-collapse .d-flex a.btn {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }

    /* Hide scroll progress bar on mobile view */
    .scroll-progress-bar {
        display: none !important;
    }
}

@media (max-width: 767px) {

    /* Heading Font Size Reductions */
    .hero-title {
        font-size: 2.0rem !important;
        line-height: 1.25 !important;
    }

    .section-title {
        font-size: 1.25rem !important;
        line-height: 1.3 !important;
        padding-bottom: 15px !important;
    }

    .page-header-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }

    h1 {
        font-size: 2.0rem !important;
    }

    h2 {
        font-size: 1.55rem !important;
    }

    h3 {
        font-size: 1.10rem !important;
    }

    p {
        font-size: 14px !important;
    }

    .row.g-5,
    .row.gy-5 {
        --bs-gutter-y: 30px !important;
    }

    /* Hero Layout Padding Adjustments */
    .hero-section {
        min-height: auto !important;
        padding: 60px 0 !important;
    }

    .section-padding {
        padding: 30px 0 !important;
    }

    /* Subtle container spacing */
    .page-header-bg {
        padding: 35px 0 !important;
    }
}

@media (max-width: 575px) {

    /* Responsive Button Padding Adjustments to Prevent Text Wrapping */
    .btn {
        padding: 10px 18px !important;
        font-size: 0.85rem !important;
        letter-spacing: 0.5px !important;
        white-space: normal !important;
    }

    .btn-lg {
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }

    /* Stack side-by-side buttons on mobile to maintain vertical rhythm */
    .hero-section .d-flex,
    .footer-dark .d-flex,
    .section-padding .d-flex {

        gap: 12px !important;
        align-items: center !important;
    }

    .hero-section .d-flex .btn,
    .footer-dark .d-flex .btn,
    .section-padding .d-flex .btn {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .inquiry-form-card {
        padding: 15px;
    }

    .inquiry-container {

        padding: 15px;

    }

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

    .industry-grid-card {

        padding: 15PX;

    }

    .section-subtitle {

        font-size: 0.75rem;
        letter-spacing: 1px;

    }

    .section-title-wrap {
        margin-bottom: 30px;
    }

    .footer-brand-logo {
        height: 50px;

    }

    .footer-dark {

        padding-top: 30px;

    }
}

/* Custom Green Badges in Footer */
.footer-dark .badge.bg-secondary {
    background-color: #198754 !important; /* Positive Green (Bootstrap Success) */
    color: #ffffff !important;
    font-weight: 500;
    padding: 6px 12px !important;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-dark .badge.bg-secondary i {
    color: #ffffff !important;
}

/* Responsive Export Roadmap for Mobile */
@media (max-width: 767px) {
    .export-roadmap::before {
        left: 28px !important; /* Align exactly with the center of the 56px badge */
        top: 68px !important; /* Start line at the center of the first badge */
        bottom: 68px !important; /* End line at the center of the last badge */
    }

    .roadmap-step {
        position: relative;
        padding-left: 80px; /* Push the text column to the right */
        margin-bottom: 40px;
    }

    .roadmap-step .row {
        margin: 0;
    }

    .roadmap-step .row > div:first-child {
        position: absolute;
        left: 0;
        top: 0;
        width: 56px;
        padding: 0 !important;
        margin: 0 !important;
    }

    .roadmap-step .row > div:last-child {
        width: 100%;
        padding: 0 !important;
        margin: 0 !important;
    }

    .roadmap-badge {
        margin-bottom: 0 !important;
    }
}