body {
    font-family: 'Inter', sans-serif;
    color: #333;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
}

.transition-all {
    transition: all 0.3s ease;
}

/* === BRAND: Red Logo === */
.brand-logo-text {
    color: #C8102E;
    font-weight: 800;
    font-style: italic;
    font-size: 26px;
    letter-spacing: -1px;
}

/* Accent color variable (Red theme) */
:root {
    --brand-red: #C8102E;
    --brand-red-dark: #A50D22;
    --brand-red-light: #E63946;
    --accent: #C8102E;
}

/* Floating Navigation */
.jsw-navbar {
    transform: translateY(0);
    padding: 1.25rem 0;
    transition: transform 0.35s ease, padding 0.3s ease;
    z-index: 1030;
}

.jsw-navbar.scrolled {
    padding: 0.6rem 0;
}

.jsw-navbar.nav-hidden {
    transform: translateY(-130%);
}

.nav-inner {
    border-radius: 50px;
    padding: 0.5rem 1.75rem;
    transition: all 0.3s ease;
}

.nav-link {
    color: #4b5563 !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 5px !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--brand-red) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-red);
    transition: width 0.3s ease;
}

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

.nav-icon {
    color: #4b5563;
    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-icon:hover {
    color: var(--brand-red);
}

/* Brand Red Button */
.btn-brand {
    background-color: var(--brand-red) !important;
    border: none !important;
    color: #fff !important;
    transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn-brand:hover {
    background-color: var(--brand-red-dark) !important;
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .jsw-navbar {
        padding: 0.75rem 0.5rem !important;
    }
    .nav-inner {
        border-radius: 20px !important;
        padding: 0.75rem 1.25rem !important;
        margin: 0 0.5rem !important;
    }
    .navbar-collapse {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #f0f0f0;
    }
    .nav-actions {
        flex-direction: column;
        align-items: stretch !important;
        gap: 0.65rem !important;
        margin-top: 1.25rem;
    }
    .nav-actions .btn {
        width: 100%;
        text-align: center;
    }
}

/* Fixed / Parallax Background Sections */
.bg-fixed {
    background-attachment: fixed;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;
}

@media (max-width: 991px) {
    .bg-fixed {
        background-attachment: scroll;
        background-position: center center;
    }
}

/* Fluid Typography Utilities */
.fluid-hero-title {
    font-size: clamp(2.4rem, 6.5vw, 4.8rem);
    line-height: 1.1;
    letter-spacing: -1px;
}

.fluid-section-title {
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    line-height: 1.15;
}

.fluid-section-subtitle {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    line-height: 1.25;
}

/* Stats Section Responsive Borders */
@media (min-width: 768px) {
    .stats-col-middle {
        border-left: 1px solid #dee2e6;
        border-right: 1px solid #dee2e6;
    }
}
@media (max-width: 767px) {
    .stats-col-middle {
        border-top: 1px solid #dee2e6;
        border-bottom: 1px solid #dee2e6;
        padding-top: 1.75rem;
        padding-bottom: 1.75rem;
    }
}

/* Stock Card Styles */
.stock-badge-btn {
    border: none;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 50px;
    transition: all 0.2s ease;
    background: transparent;
    color: #fff;
    cursor: pointer;
}
.stock-badge-btn.active {
    background-color: var(--brand-red);
    color: #fff;
}

/* News Section */
.news-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-4px);
}

.news-card img {
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.04);
}

/* Careers Section Responsive Image */
.careers-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 20px 20px;
}
@media (min-width: 768px) {
    .careers-img {
        border-radius: 60px 0 0 60px;
    }
}

/* Footer Hover Effects */
.footer-link {
    color: #6c757d;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--brand-red) !important;
    transform: translateX(4px);
}

.social-icon-link {
    color: #888;
    font-size: 17px;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.social-icon-link:hover {
    color: var(--brand-red);
    transform: translateY(-3px);
}

/* Footer heading accent color */
.footer-heading {
    color: var(--brand-red);
    font-size: 14px;
    letter-spacing: 0.5px;
    font-weight: 700;
}

/* Industry Cards */
.industry-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.industry-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18) !important;
}

.industry-card img {
    transition: transform 0.6s ease;
}

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

