/* ============================================
   Akshat Alloys - Main Stylesheet
   Author: Senior PHP Full Stack Developer
   Version: 2.0 — Gold & Dark Theme
============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #1a1a1a;
    /* Metallic dark steel (logo inspired)  */
    --secondary: #a0522d;
    /* Rust/copper accent (logo inspired)   */
    --accent: #8b4513;
    /* Darker rust for hover states         */
    --white: #ffffff;
    --light-grey: #f0f0f0;
    /* Light grey, complements metallic     */
    --dark-grey: #2a2a2a;
    /* Steel grey                           */
    --text-muted: #666666;
    /* Neutral grey for body text           */
    --border: #d0d0d0;
    /* Metallic grey border                 */
    --gold: #a0522d;
    --transition: all 0.35s ease;
    --shadow: 0 8px 30px rgba(26, 26, 26, 0.25);
    --shadow-hover: 0 18px 50px rgba(26, 26, 26, 0.4);
    --radius: 10px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', 'Segoe UI', sans-serif;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark-grey);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
p{
    font-size: 16px !important;
}

/* ---- Page Loader ---- */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #e9e9e9;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    /*gap: 18px;*/
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.loader-logo span {
    color: var(--secondary);
}

.loader-brand{
   font-size: 2.2rem;
    text-align: center;
    font-weight: 900;
    color: #b02b0c;
}
.loader-tagline {
    text-align: center;
    font-size: 18px !important;
}

.loader-bar {
    width: 220px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: var(--secondary);
    border-radius: 10px;
    animation: loadBar 1.5s ease forwards;
}

@keyframes loadBar {
    to {
        width: 100%;
    }
}

/* ---- Scroll To Top ---- */
#scrollTop {
    position: fixed;
    bottom: 90px;
    right: 24px;
    z-index: 999;
    width: 46px;
    height: 46px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

#scrollTop.show {
    opacity: 1;
    visibility: visible;
}

#scrollTop:hover {
    background: var(--secondary);
    transform: translateY(-4px);
}

/* ---- Social Float ---- */
.social-float-stack {
    position: fixed;
    bottom: 150px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-float {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(26, 26, 26, 0.25);
    transition: var(--transition);
}

.social-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.facebook-float {
    background: #1877f2;
    box-shadow: 0 4px 20px rgba(24, 119, 242, 0.45);
}

.instagram-float {
    background: linear-gradient(135deg, #f58529 0%, #dd2a7b 45%, #8134af 75%, #515bd4 100%);
    box-shadow: 0 4px 20px rgba(221, 42, 123, 0.45);
}

.whatsapp-float {
    background: #25d366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.9);
    }
}

/* ---- Navbar ---- */
.navbar-brand .brand-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo .brand-icon {
    width: 44px;
    height: 44px;
    background: var(--secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}

.brand-logo .brand-text {
    line-height: 1.2;
}

.brand-logo .brand-text small {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    display: block;
    letter-spacing: 2px;
    text-transform: uppercase;
}

#mainNavbar {
    background: #fff !important;
    transition: background 0.4s ease, box-shadow 0.4s ease,
        padding 0.4s ease, top 0.35s ease;
    padding: 14px 0;
    top: 38px;
    /* sits below top-header on desktop */
}

nav#mainNavbar.main-nav.nav-scrolled {
    background-color: #f5f5f5 !important;
}

#mainNavbar.scrolled {
    background: var(--primary) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
}

#mainNavbar .nav-link {
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.5px;
    padding: 8px 14px !important;
    position: relative;
    text-transform: uppercase;
}

#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    transform: scaleX(1);
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: #fff !important;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.navbar-toggler-icon {
    filter: invert(1);
}

.nav-cta {
    background: var(--secondary) !important;
    color: #fff !important;
    border-radius: 6px;
    padding: 8px 20px !important;
    font-weight: 600 !important;
    margin-left: 8px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent) !important;
    transform: translateY(-1px);
}

/* ---- Section Common ---- */
.section-badge {
    display: inline-block;
    background: rgba(214, 40, 40, 0.1);
    color: var(--secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 14px;
    border: 1px solid rgba(214, 40, 40, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 16px;
    overflow-wrap: break-word;
    word-break: normal;
}

.section-title span {
    color: var(--secondary);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 580px;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0 24px;
}

.section-divider .line {
    height: 2px;
    background: var(--secondary);
    flex: 1;
    max-width: 50px;
}

.section-divider .dot {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-primary-custom:hover {
    background: transparent;
    color: var(--primary);
}

.btn-secondary-custom {
    background: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-secondary-custom:hover {
    background: transparent;
    color: var(--secondary);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 11px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.92rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: var(--primary);
    color: #fff;
}

/* ---- Hero Section ---- */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f7f6f3;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0.12;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(255, 255, 255, 0.88);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(214, 40, 40, 0.08);
    border: 1px solid rgba(214, 40, 40, 0.18);
    color: rgba(26, 26, 26, 0.82);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: rgba(15, 15, 15, 0.95);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title .highlight {
    color: var(--secondary);
    display: block;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(25, 25, 25, 0.72);
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 50px;
}

.hero-btn-primary {
    background: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.hero-btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.25);
}

.hero-btn-outline {
    background: transparent;
    color: rgba(26, 26, 26, 0.85);
    border: 2px solid rgba(26, 26, 26, 0.18);
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.hero-btn-outline:hover {
    border-color: rgba(26, 26, 26, 0.5);
    background: rgba(26, 26, 26, 0.06);
    color: rgba(26, 26, 26, 0.95);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat .stat-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
    font-family: var(--font-heading);
}

.hero-stat .stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero-stat .stat-divider {
    width: 30px;
    height: 2px;
    background: var(--secondary);
    margin: 6px 0 4px;
}

/* ---- Hero Right Visual ---- */
.hero-visual {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.hero-card-stack {
    position: relative;
}

.steel-card-main {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(10px);
    color: #fff;
}

.steel-card-main img {
    border-radius: 10px;
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.floating-badge-card {
    position: absolute;
    background: var(--secondary);
    color: #fff;
    border-radius: 10px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 0.85rem;
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
    white-space: nowrap;
}

.floating-badge-card.top-right {
    top: -15px;
    right: -15px;
    z-index: 1;
}

.floating-badge-card.bottom-left {
    bottom: -25px;
    left: -20px;
    background: var(--primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow);
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0)
    }

    50% {
        transform: translateX(-50%) translateY(8px)
    }
}

/* ---- About Preview ---- */
.about-preview {
    padding: 100px 0;
    background: var(--white);
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--secondary);
    color: #fff;
    border-radius: 12px;
    padding: 20px 24px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(214, 40, 40, 0.4);
}

.exp-badge .exp-num {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1;
    font-family: var(--font-heading);
}

.exp-badge .exp-text {
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 24px 0;
}

.about-feat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--light-grey);
    border-radius: 8px;
    padding: 12px 16px;
}

.about-feat-item i {
    color: var(--secondary);
    font-size: 1.2rem;
}

.about-feat-item span {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
}

/* ---- Products Section ---- */
.products-section {
    padding: 100px 0;
    background: var(--light-grey);
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-bottom-color: var(--secondary);
}

.product-card .card-img-wrap {
    overflow: hidden;
    position: relative;
}

.product-card .card-img-wrap img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.07);
}

.product-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card .card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.product-card .card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 14px;
}

.size-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
}

.size-tag {
    background: rgba(160, 82, 45, 0.08);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(160, 82, 45, 0.25);
}

.product-card .card-footer-custom {
    margin-top: auto;
}

.btn-view-details {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    cursor: pointer;
}

.btn-view-details:hover {
    background: var(--secondary);
    transform: none;
}

/* ---- Why Choose Us ---- */
.why-section {
    padding: 100px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(160, 82, 45, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-6px);
    border-color: var(--secondary);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: rgba(214, 40, 40, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.why-icon i {
    font-size: 1.8rem;
    color: var(--secondary);
}

.why-card:hover .why-icon {
    background: var(--secondary);
}

.why-card:hover .why-icon i {
    color: #fff;
}

.why-card h4 {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

/* ---- Counter Section ---- */
.counter-section {
    padding: 80px 0;
    background: var(--secondary);
}

.counter-item {
    text-align: center;
    padding: 20px;
}

.counter-num {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1;
}

.counter-suffix {
    font-size: 1.5rem;
}

.counter-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
}

.counter-divider {
    width: 40px;
    height: 3px;
    background: rgba(255, 255, 255, 0.4);
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ---- Gallery Section ---- */
.gallery-section {
    padding: 100px 0;
    background: var(--white);
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--light-grey);
    color: var(--primary);
    border: 2px solid transparent;
    padding: 9px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--radius);
    cursor: pointer;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    border-radius: var(--radius);
}

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* ---- Lightbox ---- */
.lightbox-modal .modal-content {
    background: #000;
    border: none;
}

.lightbox-modal .modal-body {
    padding: 0;
    text-align: center;
}

.lightbox-modal img {
    max-height: 85vh;
    width: auto;
    margin: auto;
    border-radius: 4px;
}

.lightbox-modal .btn-close {
    filter: invert(1);
    position: absolute;
    top: 10px;
    right: 14px;
    z-index: 10;
}

/* ---- Lightbox Prev / Next Navigation ---- */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s, border-color 0.25s;
    line-height: 1;
    padding: 0;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
    background: var(--primary, #c0392b);
    border-color: var(--primary, #c0392b);
    transform: translateY(-50%) scale(1.1);
    outline: none;
}

.lightbox-prev {
    left: 12px;
}

.lightbox-next {
    right: 12px;
}

/* ---- Lightbox Image Fade Transition ---- */
.lightbox-modal img {
    transition: opacity 0.18s ease;
}

/* ---- Lightbox Counter  (e.g. 3 / 17) ---- */
.lightbox-counter {
    position: absolute;
    bottom: 12px;
    right: 16px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    pointer-events: none;
    user-select: none;
}

/* Mobile — make arrows smaller so they don't overlap image */
@media (max-width: 575.98px) {
    .lightbox-nav {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
    .lightbox-prev { left: 6px; }
    .lightbox-next { right: 6px; }
}

/* ---- Contact Section ---- */
.contact-section {
    padding: 100px 0;
    background: var(--light-grey);
}

.contact-info-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 40px 32px;
    height: 100%;
    color: #fff;
}

.contact-info-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-info-item .ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(214, 40, 40, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item .ci-icon i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.contact-info-item .ci-text h6 {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-info-item .ci-text a,
.contact-info-item .ci-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    margin: 0;
}

.contact-info-item .ci-text a:hover {
    color: var(--secondary);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contact-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

.contact-social a:hover {
    background: var(--secondary);
}

.contact-form-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    height: 100%;
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.92rem;
    transition: var(--transition);
    background: var(--light-grey);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.12);
    background: #fff;
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--primary);
    margin-bottom: 6px;
}

.btn-submit {
    background: var(--secondary);
    color: #fff;
    border: none;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.95rem;
    width: 100%;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(214, 40, 40, 0.4);
}

.alert-success-msg {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
    display: none;
}

.alert-error-msg {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 20px;
    display: none;
}

/* ---- CTA Section ---- */
.cta-section {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3d6b 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 0;
    width: 450px;
    height: 450px;
    background: rgba(160, 82, 45, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: #fff;
    margin-bottom: 14px;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.75);
    font-size: 1rem;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-end;
    align-items: center;
}

@media(max-width:768px) {
    .cta-actions {
        justify-content: flex-start;
    }
}

.cta-btn {
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.cta-btn.call {
    background: var(--secondary);
    color: #fff;
    border: 2px solid var(--secondary);
}

.cta-btn.call:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.cta-btn.wa {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
}

.cta-btn.wa:hover {
    background: #1ba84e;
    border-color: #1ba84e;
    color: #fff;
}

.cta-btn.mail {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn.mail:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

/* ---- Page Hero Banner ---- */
.page-hero {
    padding: 174px 0 80px;
    /* 38px top-header + 68px navbar + 68px breathing room */
    background: linear-gradient(135deg, #0d0400 0%, var(--primary) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    /*background-image: url('../images/Slide-5.webp');*/
    background-size: cover;
    background-position: center;
    opacity: 0.6;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 560px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-top: 16px;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.breadcrumb-item.active {
    color: var(--secondary);
    font-size: 0.85rem;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---- About Page ---- */
.about-story {
    padding: 100px 0;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 4px;
    width: 16px;
    height: 16px;
    background: var(--secondary);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-year {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-item h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.values-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    border-top: 3px solid transparent;
}

.values-card:hover {
    transform: translateY(-6px);
    border-top-color: var(--secondary);
}

.values-icon {
    width: 60px;
    height: 60px;
    background: rgba(214, 40, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.values-icon i {
    font-size: 1.5rem;
    color: var(--secondary);
}

.values-card h5 {
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 8px;
}

.values-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.leader-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.leader-img-wrap {
    position: relative;
    overflow: hidden;
}

.leader-img-wrap img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-img-wrap img {
    transform: scale(1.05);
}

.leader-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.88));
    padding: 30px 20px 20px;
}

.leader-overlay h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
    font-size: 1rem;
}

.leader-overlay span {
    color: var(--secondary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-body {
    padding: 18px 20px;
    background: var(--light-grey);
}

.leader-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin: 0;
}

/* ---- Footer ---- */
.footer {
    background: #122334;
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
}

.footer-brand .brand-logo {
    color: #fff;
    margin-bottom: 18px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary);
    color: #fff;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '›';
    color: var(--secondary);
    font-size: 1rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}

.footer-contact-item i {
    color: var(--secondary);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    line-height: 1.5;
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

.working-hours {
    font-size: 0.88rem;
}

.working-hours li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.65);
}

.working-hours li span:last-child {
    color: var(--secondary);
    font-weight: 600;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-bottom p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom a {
    color: var(--secondary);
}

/* ---- Product Page Filters ---- */
.products-filter-section {
    padding: 100px 0;
}

.product-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.prod-filter-btn {
    background: var(--light-grey);
    color: var(--primary);
    border: 2px solid transparent;
    padding: 9px 22px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: var(--transition);
}

.prod-filter-btn.active,
.prod-filter-btn:hover {
    background: var(--primary);
    color: #fff;
}

.product-detail-modal .modal-header {
    background: var(--primary);
    color: #fff;
}

.product-detail-modal .modal-header .btn-close {
    filter: invert(1);
}

.product-detail-modal .modal-body img {
    border-radius: 8px;
    margin-bottom: 20px;
}

.spec-table th {
    background: var(--light-grey);
    font-weight: 700;
    color: var(--primary);
}

/* ---- Map Section ---- */
.map-section {
    padding: 0;
}

.map-section iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
    filter: grayscale(20%);
}

/* ---- Page transitions & AOS override ---- */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .hero-visual {
        padding: 40px 0;
    }

    .about-img-wrap {
        margin-bottom: 50px;
    }

    .exp-badge {
        right: 0;
        bottom: -15px;
    }

    .cta-actions {
        justify-content: flex-start;
        margin-top: 24px;
    }

    .contact-info-card {
        margin-bottom: 30px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat .stat-num {
        font-size: 1.6rem;
    }

    .counter-num {
        font-size: 2.2rem;
    }

    .footer {
        padding: 60px 0 0;
    }

    .gallery-item img {
        height: 200px;
    }

    .leader-img-wrap img {
        height: 240px;
    }

    .contact-form-card,
    .contact-info-card {
        padding: 28px 20px;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
    }

    .hero-btn-primary,
    .hero-btn-outline {
        text-align: center;
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }
}

/* ---- Utility ---- */
.bg-primary-custom {
    background: var(--primary);
}

.bg-secondary-custom {
    background: var(--secondary);
}

.bg-light-grey {
    background: var(--light-grey);
}

.text-primary-custom {
    color: var(--primary);
}

.text-secondary-custom {
    color: var(--secondary);
}

.fw-700 {
    font-weight: 700;
}

.fw-800 {
    font-weight: 800;
}

.gap-3-custom {
    gap: 12px;
}

.overflow-hidden {
    overflow: hidden;
}

/* ---- Products Page – Horizontal Card ---- */
.product-card.flex-row {
    flex-direction: row !important;
}

@media (max-width: 767px) {
    .product-card.flex-row {
        flex-direction: column !important;
    }

    .product-card.flex-row .card-img-wrap {
        width: 100% !important;
    }

    .product-card.flex-row .card-img-wrap img {
        min-height: 200px !important;
        height: 200px !important;
    }
}

/* ---- Product page card hover override ---- */
.products-filter-section .product-card:hover {
    transform: translateY(-6px);
}

/* ---- Gallery keyboard accessibility ---- */
.gallery-item:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
    border-radius: var(--radius);
}

/* ---- Leader card hover color fix ---- */
.leader-card:hover .leader-img-wrap img {
    transform: scale(1.05);
}

/* ---- Section padding mobile ---- */
@media (max-width: 767px) {

    .about-preview,
    .products-section,
    .why-section,
    .gallery-section,
    .contact-section,
    .about-story,
    .products-filter-section {
        padding: 70px 0;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .footer {
        padding: 50px 0 0;
    }

    .hero-content {
        padding: 100px 0 60px;
    }
}

/* ---- Nav mobile fix ---- */
@media (max-width: 991px) {
    #mainNavbar {
        background: var(--white) !important;
        padding: 12px 0 !important;
    }

    #mainNavbar .nav-link::after {
        display: none;
    }

    .nav-cta {
        margin: 10px 0 0 !important;
        display: inline-flex !important;
    }

    .navbar-collapse {
        background: var(--primary);
        padding: 12px 16px;
        border-radius: 0 0 10px 10px;
    }
}

/* ---- Counter section mobile ---- */
@media (max-width: 575px) {
    .counter-item {
        padding: 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }
}

/* ---- Timeline spacing ---- */
.timeline {
    padding-left: 40px;
}

@media (max-width: 575px) {
    .timeline {
        padding-left: 28px;
    }
}

/* ---- Font weight helpers ---- */
.fw-600 {
    font-weight: 600 !important;
}

/* ============================================
   AKSHAT ALLOYS – GOLD THEME OVERRIDES
   Logo colours: Dark Maroon-Black + Gold
============================================ */

/* ---- Logo Image in Navbar ---- */
.navbar-brand .brand-logo {
    display: flex !important;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.navbar-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    filter: drop-shadow(0 2px 8px rgba(160, 82, 45, 0.35));
}

#mainNavbar.scrolled .navbar-logo-img {
    height: 44px;
}

.brand-text-wrap {
    line-height: 1.2;
}

.brand-text-wrap .brand-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    /* gold */
    letter-spacing: 1px;
    display: block;
}

.brand-text-wrap .brand-tagline {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

/* ---- Navbar Gold Theme ---- */
#mainNavbar {
    background: #ffff !important;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease;
    padding: 14px 0;
}

#mainNavbar.scrolled {
    background: var(--primary) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    padding: 8px 0;
}

#mainNavbar .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 8px 14px !important;
    position: relative;
    text-transform: uppercase;
}

#mainNavbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--secondary);
    /* gold underline */
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

#mainNavbar .nav-link:hover::after,
#mainNavbar .nav-link.active::after {
    transform: scaleX(1);
}

#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
    color: var(--secondary) !important;
}

.nav-cta {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    border-radius: 6px;
    padding: 8px 20px !important;
    font-weight: 700 !important;
    margin-left: 8px;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--accent) !important;
    color: #fff !important;
}

/* ---- Page Loader — Gold ---- */
#page-loader {
    background: #e9e9e9;
}

.loader-logo {
    color: var(--secondary);
    font-size: 1.8rem;
    letter-spacing: 3px;
}

.loader-logo span {
    color: #fff;
}

.loader-bar-fill {
    background: var(--secondary);
}

/* ---- Section Badge — Gold ---- */
.section-badge {
    background: rgba(160, 82, 45, 0.12);
    color: var(--secondary);
    border: 1px solid rgba(160, 82, 45, 0.3);
}

.section-title span {
    color: var(--secondary);
}

.section-divider .line {
    background: var(--secondary);
}

.section-divider .dot {
    background: var(--secondary);
}

/* ---- Buttons — Gold ---- */
.btn-primary-custom {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-primary-custom:hover {
    background: var(--secondary);
    color: var(--primary);
}

.btn-secondary-custom {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
}

.btn-secondary-custom:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}

.btn-outline-custom {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--secondary);
}

.btn-outline-custom:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* ---- Hero — Light Theme ---- */
.hero-section {
    background: #f7f6f3;
}

.hero-overlay {
    background: rgba(255, 255, 255, 0.88);
}

.hero-badge {
    background: rgba(214, 40, 40, 0.08);
    border: 1px solid rgba(214, 40, 40, 0.18);
    color: rgba(26, 26, 26, 0.82);
}

.hero-title {
    color: rgba(15, 15, 15, 0.95);
}

.hero-title .highlight {
    color: var(--secondary);
}

.hero-subtitle {
    color: rgba(25, 25, 25, 0.72);
}

.hero-btn-primary {
    background: var(--secondary);
    color: var(--white);
    border: 2px solid var(--secondary);
    font-weight: 700;
}

.hero-btn-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    box-shadow: 0 8px 28px rgba(160, 82, 45, 0.25);
}

    .hero-btn-outline {
    background: #ffffff00;
    color: rgba(0, 0, 0, 0.85);
    border: 2px solid rgb(180, 180, 180);
}


.hero-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(26, 26, 26, 0.06);
    color: rgba(255, 255, 255, 0.95);
}

.hero-stat .stat-num {
    color: var(--secondary);
}

.hero-stat .stat-label {
    color: rgba(25, 25, 25, 0.58);
}

.hero-stat .stat-divider {
    background: var(--secondary);
}

/* Hero card */
.steel-card-main {
    background: linear-gradient(135deg, rgba(160, 82, 45, 0.09), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(160, 82, 45, 0.25);
}

.floating-badge-card {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
}

.floating-badge-card.bottom-left {
    background: var(--primary);
    border: 1px solid rgba(160, 82, 45, 0.35);
    color: var(--secondary);
}

/* ---- About Section ---- */
.exp-badge {
    background: var(--secondary);
    color: var(--white);
}

.about-feat-item {
    background: var(--light-grey);
}

.about-feat-item i {
    color: var(--secondary);
}

.about-feat-item span {
    color: var(--primary);
}

/* ---- Product Cards ---- */
.product-card:hover {
    border-bottom-color: var(--secondary);
}

.product-card-badge {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
}

.size-tag {
    background: rgba(160, 82, 45, 0.1);
    color: var(--dark-grey);
    border: 1px solid rgba(160, 82, 45, 0.3);
}

.btn-view-details {
    background: var(--primary);
    color: var(--white);
}

.btn-view-details:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* ---- Why Section ---- */
.why-section {
    background: #f5f0eb !important;
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 380px;
    height: 380px;
    background: rgba(160, 82, 45, 0.07);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.why-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 260px;
    height: 260px;
    background: rgba(160, 82, 45, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.why-section .container {
    position: relative;
    z-index: 1;
}

.why-section .section-badge {
    background: rgba(160, 82, 45, 0.10) !important;
    color: var(--secondary) !important;
    border-color: rgba(160, 82, 45, 0.25) !important;
}

.why-section .section-title {
    color: var(--primary) !important;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
}

.why-section .section-title span {
    color: var(--secondary) !important;
}

.why-section .section-subtitle {
    color: var(--text-muted) !important;
}

.why-section .section-divider .line {
    background: var(--secondary);
}

.why-section .section-divider .dot {
    background: var(--secondary);
}

.why-card {
    background: #ede8e2;
    border: 1px solid rgba(160, 82, 45, 0.12);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    box-shadow: 0 2px 12px rgba(160, 82, 45, 0.06);
}

.why-card:hover {
    background: #fff;
    transform: translateY(-6px);
    border-color: rgba(160, 82, 45, 0.35);
    box-shadow: 0 12px 32px rgba(160, 82, 45, 0.13);
}

.why-icon {
    background: rgba(160, 82, 45, 0.12);
}

.why-icon i {
    color: var(--secondary);
}

.why-card:hover .why-icon {
    background: var(--secondary);
}

.why-card:hover .why-icon i {
    color: #fff;
}

.why-card h4 {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}


/* ---- Counter Section ---- */
.counter-section {
    background: linear-gradient(90deg, #1a0a00 0%, var(--secondary) 50%, #1a0a00 100%);
}

.counter-num {
    color: #ffffff;
}

.counter-label {
    color: rgba(255, 255, 255, 0.8);
}

.counter-divider {
    background: rgba(26, 26, 26, 0.3);
}

/* ---- Gallery ---- */
.filter-btn.active,
.filter-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--secondary);
}

.gallery-overlay {
    background: rgba(26, 26, 26, 0.75);
}

/* ---- CTA Section ---- */
.cta-section {
       background: linear-gradient(135deg, #d6d6d6 0%, #af9686 100%);
}

.cta-section::after {
    background: rgba(160, 82, 45, 0.06);
}

.cta-section h2 {
    color: #1a1a1a;
}

.cta-section p {
    color: rgba(0, 0, 0, 0.7);
}

.cta-btn.call {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
    font-weight: 800;
}

.cta-btn.call:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.cta-btn.wa {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.cta-btn.wa:hover {
    background: #1ba84e;
}

.cta-btn.mail {
    border-color: rgba(160, 82, 45, 0.4);
    color: var(--secondary);
}

.cta-btn.mail:hover {
    background: rgba(160, 82, 45, 0.1);
    color: var(--secondary);
    border-color: var(--secondary);
}

/* ---- Page Hero ---- */
.page-hero {
    background: linear-gradient(135deg, #0d0400 0%, #1a0a00 100%);
}

.page-hero h1 {
    color: #fff;
}

.page-hero h1 span {
    color: var(--secondary);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.68);
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.55);
}

.breadcrumb-item.active {
    color: var(--secondary);
}

/* ---- About Values Cards ---- */
.values-icon {
    background: rgba(160, 82, 45, 0.1);
}

.values-icon i {
    color: var(--secondary);
}

.values-card:hover {
    border-top-color: var(--secondary);
}

/* ---- Timeline ---- */
.timeline-item::before {
    background: var(--secondary);
    box-shadow: 0 0 0 2px var(--secondary);
}

.timeline-year {
    background: var(--primary);
}

/* ---- Leader Cards ---- */
.leader-overlay {
    background: linear-gradient(transparent, rgba(26, 26, 26, 0.9));
}

.leader-overlay span {
    color: var(--secondary);
}

/* ---- Contact Section ---- */
.contact-info-card {
    background: var(--primary);
}

.contact-info-card h3 {
    color: #fff;
}

.ci-icon {
    background: rgba(160, 82, 45, 0.15);
}

.ci-icon i {
    color: var(--secondary);
}

.ci-text h6 {
    color: #fff;
}

.ci-text a:hover {
    color: var(--secondary);
}

.contact-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(160, 82, 45, 0.15);
}

.btn-submit {
    background: var(--secondary);
    color: var(--primary);
    font-weight: 800;
}

.btn-submit:hover {
    background: var(--accent);
    color: #fff;
    box-shadow: 0 8px 25px rgba(160, 82, 45, 0.4);
}

/* ---- Footer ---- */
.footer {
    background: #122334;
}

.footer-heading::after {
    background: var(--secondary);
}

.footer-links a::before {
    color: var(--secondary);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact-item i {
    color: var(--secondary);
}

.footer-contact-item a:hover {
    color: var(--secondary);
}

.working-hours li span:last-child {
    color: var(--secondary);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    border-top-color: rgba(160, 82, 45, 0.1);
}

.footer-bottom a {
    color: var(--secondary);
}

/* ---- Quick contact strip ---- */
section[aria-label="Quick contact options"] {
    background: var(--secondary) !important;
}

section[aria-label="Quick contact options"] a {
    color: var(--primary) !important;
}

section[aria-label="Quick contact options"] strong {
    color: var(--primary);
}

section[aria-label="Quick contact options"] small {
    color: rgba(26, 26, 26, 0.7) !important;
}

/* ---- Product detail modal ---- */
.product-detail-modal .modal-header {
    background: var(--primary);
    border-bottom: 2px solid var(--secondary);
}

.size-tag[style*="secondary"] {
    background: rgba(160, 82, 45, 0.12) !important;
}

/* ---- Prod filter buttons ---- */
.prod-filter-btn.active,
.prod-filter-btn:hover {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.55);
}

/* ---- Scroll to top ---- */
#scrollTop {
    background: var(--primary);
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

#scrollTop:hover {
    background: var(--secondary);
    color: var(--primary);
}

/* ---- Mobile navbar ---- */
@media (max-width: 991px) {
    #mainNavbar {
        background: var(--white) !important;
    }

    .navbar-collapse {
        background: var(--primary);
        border-top: 1px solid rgba(160, 82, 45, 0.2);
    }

    #mainNavbar .nav-link:hover,
    #mainNavbar .nav-link.active {
        color: var(--secondary) !important;
    }
}

/* ============================================
   AKSHAT ALLOYS – CINZEL FONT FOR BRAND NAME
   Matches the engraved gold lettering in logo
============================================ */
.brand-text-wrap .brand-name,
.hero-title,
.section-title,
.footer-heading,
.contact-info-card h3,
.contact-form-card h3,
.cta-section h2,
.page-hero h1 {
    font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
}

/* Brand name in navbar — extra gold glow */
.brand-text-wrap .brand-name {
    text-shadow: 0 0 18px rgba(160, 82, 45, 0.55), 0 1px 3px rgba(0, 0, 0, 0.8);
    font-size: 1.25rem;
    letter-spacing: 2px;
}

/* Hero title gold highlight */
.hero-title .highlight {
    color: var(--secondary);
    text-shadow: 0 0 30px rgba(160, 82, 45, 0.4);
}

/* Section title gold span */
.section-title span {
    color: var(--secondary);
    text-shadow: 0 0 15px rgba(160, 82, 45, 0.25);
}

/* Gold decorative line for section headings */
.section-title::after {
    display: none;
    /* handled by section-divider */
}

/* ---- Body base warm tone ---- */
body {
    background: var(--white);
    color: var(--dark-grey);
}

/* ---- Warm light-grey backgrounds ---- */
.bg-light-grey,
section.py-5.bg-light-grey {
    background: var(--light-grey) !important;
}

/* ---- Footer brand company name text ---- */
.footer .brand-company {
    font-family: 'Cinzel', serif;
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-top: 8px;
    text-shadow: 0 0 12px rgba(160, 82, 45, 0.4);
}

.footer .brand-tagline-footer {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 14px;
}

/* ---- Product card title gold on hover ---- */
.product-card:hover .card-title {
    color: var(--secondary);
}

/* ---- about feat icon ---- */
.about-feat-item i {
    color: var(--secondary) !important;
}

/* ---- Counter section — white text on gold bg ---- */
.counter-section {
    background: linear-gradient(135deg, #1a0a00 0%, var(--secondary) 50%, #1a0a00 100%) !important;
}

.counter-num {
    color: #ffffff !important;
    font-family: 'Cinzel', serif;
}

.counter-label {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
}

/* ---- Scroll indicator ---- */
.scroll-indicator {
    color: rgba(160, 82, 45, 0.55);
}

/* ---- Floating badge card ---- */
.floating-badge-card {
    font-family: 'Cinzel', serif;
}

/* ---- Leader overlay span ---- */
.leader-overlay span {
    font-family: 'Cinzel', serif;
    letter-spacing: 1.5px;
}

/* ---- Timeline year badge ---- */
.timeline-year {
    font-family: 'Cinzel', serif;
    letter-spacing: 1px;
}

/* ---- Why section section-title ---- */
.why-section .section-title {
    color: var(--primary) !important;
}

.why-section .section-title span {
    color: var(--secondary) !important;
}

/* ---- Gallery filter active ---- */
.gallery-filter .filter-btn.active {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    border-color: var(--secondary) !important;
    font-weight: 700;
}

/* ---- Form label ---- */
.form-label {
    color: var(--primary);
    font-weight: 600;
}

/* ---- Quick contact strip override ---- */
section[aria-label="Quick contact options"] {
    background: linear-gradient(90deg, #1a0a00, var(--secondary), #1a0a00) !important;
}

/* ============================================
   AKSHAT ALLOYS – PRODUCT SINGLE PAGES
============================================ */

/* ---- Product Single Section ---- */
.product-single-section {
    padding: 80px 0 60px;
    background: var(--white);
}

/* ---- Product Gallery ---- */
.product-gallery-wrap {
    margin-bottom: 28px;
}

.product-main-img {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 12px;
    background: var(--light-grey);
}

.product-main-img img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-main-img:hover img {
    transform: scale(1.04);
}

.product-img-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--secondary);
    color: #ffffff;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-thumb-row {
    display: flex;
    gap: 10px;
}

.product-thumb {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.product-thumb img {
    width: 100%;
    height: 72px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.product-thumb:hover img {
    transform: scale(1.08);
}

.product-thumb.active {
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(160, 82, 45, 0.3);
}

.product-thumb:hover {
    border-color: rgba(160, 82, 45, 0.5);
}

/* ---- Quick Specs Card ---- */
.quick-specs-card {
    background: var(--primary);
    border-radius: var(--radius);
    padding: 24px 22px;
    color: #fff;
}

.quick-specs-card h5 {
    font-family: 'Cinzel', serif;
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.quick-specs-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-specs-card ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(160, 82, 45, 0.12);
    font-size: 0.88rem;
}

.quick-specs-card ul li:last-child {
    border-bottom: none;
}

.quick-specs-card ul li span {
    color: rgba(255, 255, 255, 0.6);
}

.quick-specs-card ul li strong {
    color: var(--secondary);
    font-weight: 600;
    text-align: right;
}

/* ---- Product Info Wrap ---- */
.product-info-wrap {
    padding-left: 10px;
}

.product-category-label {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.product-single-title {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 14px;
}

.product-single-title span {
    color: var(--secondary);
}

.product-rating-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.stars {
    color: var(--secondary);
    font-size: 0.9rem;
}

.rating-text {
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.product-single-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* ---- Size Grid ---- */
.product-spec-block {
    margin-bottom: 22px;
}

.spec-block-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.spec-block-title i {
    color: var(--secondary);
}

.size-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.size-pill {
    background: rgba(160, 82, 45, 0.1);
    border: 1.5px solid rgba(160, 82, 45, 0.3);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 6px;
    transition: var(--transition);
    cursor: default;
}

.size-pill:hover {
    background: var(--secondary);
    color: var(--primary);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.size-pill.custom-pill {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--secondary);
}

/* ---- Grades Grid ---- */
.grades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.grade-pill {
    background: #7e7e7e;
    border: 1.5px solid rgb(126 126 126);
    border-radius: 8px;
    padding: 8px 14px;
    min-width: 90px;
    text-align: center;
    transition: var(--transition);
}

.grade-pill:hover {
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.grade-pill strong {
    display: block;
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
}

.grade-pill span {
    color:#ffffff;
    font-size: 0.72rem;
    display: block;
    margin-top: 2px;
}

/* ---- CTA Buttons Row ---- */
.product-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}

.btn-enquire {
    background: var(--secondary);
    color: #ffffff;
    border: 2px solid var(--secondary);
    border-radius: 6px;
    padding: 12px 24px;
    font-weight: 800;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
}

.btn-enquire:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(160, 82, 45, 0.4);
}

.btn-call {
    background: #059587;
    color: #ffffff;
    border: 2px solid #059587;
    border-radius: 6px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-call:hover {
    background: #059587cf;
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    border: 2px solid #25d366;
    border-radius: 6px;
    padding: 12px 22px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-whatsapp:hover {
    background: #1ba84e;
    border-color: #1ba84e;
    color: #fff;
    transform: translateY(-3px);
}

/* ---- Billet Highlights ---- */
.billet-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 20px 0 4px;
}

.billet-hl-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--light-grey);
    border-radius: 8px;
    padding: 14px 16px;
    border-left: 3px solid var(--secondary);
}

.billet-hl-item i {
    color: var(--secondary);
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.billet-hl-item strong {
    display: block;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 3px;
}

.billet-hl-item span {
    color: var(--text-muted);
    font-size: 0.83rem;
}

/* ---- Specs Section ---- */
.product-specs-section {
    padding: 80px 0;
    background: var(--light-grey);
    position: relative;
    isolation: isolate;
}

.spec-table-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    height: auto;
    position: relative;
    overflow: visible;
}

.spec-table-title {
    font-family: 'Cinzel', serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--secondary);
}

.spec-table-title i {
    color: var(--secondary);
}

.spec-table {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.spec-table thead tr th {
    background: #e3e3e3;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    padding: 10px 12px;
}

.spec-table tbody tr td {
    color: var(--dark-grey);
    padding: 9px 12px;
    border-color: var(--border);
    vertical-align: middle;
}

.spec-table tbody tr:hover {
    background: rgba(160, 82, 45, 0.05);
}

.spec-table tbody tr td:first-child {
    font-weight: 700;
    color: var(--primary);
}

/* ---- Applications Card ---- */
.applications-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 22px;
    box-shadow: var(--shadow);
    position: relative;
    isolation: isolate;
}

.applications-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.applications-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 0.88rem;
    border-bottom: 1px solid var(--border);
}

.applications-list li:last-child {
    border-bottom: none;
}

.applications-list li i {
    color: var(--secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ---- Features Section ---- */
.product-features-section {
    padding: 80px 0;
    background: #626262;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.product-features-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(160, 82, 45, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.product-feature-card {
    background: rgb(0 0 0 / 5%);
    border: 1px solid rgba(160, 82, 45, 0.15);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.product-feature-card:hover {
    background: rgba(160, 82, 45, 0.1);
    border-color: var(--secondary);
    transform: translateY(-6px);
}

.pf-icon {
    width: 66px;
    height: 66px;
    background: rgba(160, 82, 45, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition);
}

.pf-icon i {
    font-size: 1.7rem;
    color: #ffffff;
}

.product-feature-card:hover .pf-icon {
    background: var(--secondary);
}

.product-feature-card:hover .pf-icon i {
    color: #ffffff;
}

.product-feature-card h5 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 10px;
    font-size: 1rem;
}

.product-feature-card p {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.88rem;
    margin: 0;
}

/* ---- Related Products ---- */
.related-products-section {
    padding: 80px 0;
    background: var(--white);
}

.related-product-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.related-product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.rp-img-wrap {
    position: relative;
    overflow: hidden;
}

.rp-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.related-product-card:hover .rp-img-wrap img {
    transform: scale(1.07);
}

.rp-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--secondary);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.5px;
}

.rp-body {
    padding: 20px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.related-product-card:hover .rp-body {
    border-bottom-color: var(--secondary);
}

.rp-body h5 {
    font-family: 'Cinzel', serif;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.rp-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 14px;
}

.rp-link {
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    transition: var(--transition);
}

.related-product-card:hover .rp-link {
    gap: 10px;
}

/* ---- Product Hero Badge Wrap ---- */
.product-hero-badge-wrap {
    display: inline-block;
}

.product-hero-badge {
    background: rgba(160, 82, 45, 0.15);
    border: 2px solid rgba(160, 82, 45, 0.4);
    color: var(--secondary);
    border-radius: 12px;
    padding: 20px 28px;
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.product-hero-badge i {
    font-size: 2rem;
}

.product-hero-badge span {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .product-info-wrap {
        padding-left: 0;
        margin-top: 10px;
    }

    .product-single-section {
        padding: 60px 0 40px;
    }
}

@media (max-width: 767px) {
    .product-main-img img {
        height: 260px;
    }

    .product-thumb img {
        height: 58px;
    }

    .product-single-title {
        font-size: 1.5rem;
    }

    .product-cta-row {
        flex-direction: column;
    }

    .btn-enquire,
    .btn-call,
    .btn-whatsapp {
        justify-content: center;
    }

    .product-features-section,
    .related-products-section,
    .product-specs-section {
        padding: 60px 0;
    }
}

/* ============================================
   FIX: Dark section heading visibility
   product-features-section has dark bg —
   section-title must be white not primary
============================================ */

/* Product Features Section — dark bg fix */
.product-features-section .section-title {
    color: #ffffff !important;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
    white-space: normal;
    word-break: normal;
    line-height: 1.3;
}

.product-features-section .section-title span {
    color: #d5d5d5 !important;
    display: inline;
}

.product-features-section .section-badge {
    background: rgb(255 255 255 / 15%) !important;
    color: #ffffff !important;
    border-color: rgb(255 255 255 / 35%) !important;
}

.product-features-section .section-divider .line {
    background: var(--secondary) !important;
}

.product-features-section .section-divider .dot {
    background: var(--secondary) !important;
}

/* Why Section — light theme */
.why-section .section-title {
    color: var(--primary) !important;
    font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
}

.why-section .section-title span {
    color: var(--secondary) !important;
}

/* Counter section text on gold bg */
.counter-section .section-title {
    color: var(--primary) !important;
}

/* CTA section headings */
.cta-section h2 {
    color: #1a1a1a !important;
    font-size: clamp(1.5rem, 2.5vw, 2rem) !important;
    white-space: normal;
    word-break: normal;
    line-height: 1.3;
}

/* Page hero h1 — ensure white always */
.page-hero h1 {
    color: #ffffff !important;
    white-space: normal;
    line-height: 1.25;
}

/* General: section-title inside any dark-bg parent */
[style*="background:var(--primary)"] .section-title,
[style*="background: var(--primary)"] .section-title {
    color: #ffffff !important;
}

/* Cinzel font-size guard — prevent huge headings on small containers */
.section-title {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: none;
}

/* Fix: product-features section text-center alignment on mobile */
@media (max-width: 767px) {
    .product-features-section .section-title {
        font-size: 2rem !important;
    }

    .cta-section h2 {
        font-size: 2rem !important;
    }

    .why-section .section-title {
        font-size: 2rem !important;
    }
}

/* ============================================
   FIX: Section stacking — correct approach.
   Each section is a self-contained stacking
   context via isolation:isolate. No z-index
   fighting between adjacent sections.
============================================ */

/* Every section is isolated — pseudo elements
   cannot bleed outside their own section */
section {
    isolation: isolate;
    position: relative;
}

/* Light sections — normal flow, no z-index needed */
.product-specs-section,
.about-preview,
.gallery-section,
.contact-section,
.about-story,
.products-filter-section,
.products-section,
.related-products-section,
.why-section {
    position: relative;
    isolation: isolate;
}

/* Dark sections — isolated, no z-index */
.product-features-section,
.counter-section,
.cta-section {
    position: relative;
    isolation: isolate;
}

/* Pseudo decorators stay inside their section */
.product-features-section::before,
.product-features-section::after,
.why-section::before,
.why-section::after,
.cta-section::before,
.cta-section::after {
    pointer-events: none;
}

/* Content inside dark sections above internal decorators only */
.product-features-section .container,
.why-section .container,
.cta-section .container,
.counter-section .container {
    position: relative;
    z-index: 1;
}

/* White cards — normal flow, no z-index leaking out */
.spec-table-card,
.applications-card,
.quick-specs-card {
    position: relative;
    isolation: isolate;
}

/* Row inside spec section */
.product-specs-section .row {
    position: relative;
}


/* 1. Define the initial hidden or static state */
[data-aos="bounce"] {
    opacity: 0;
    transform: translateY(100px);
    transition-property: transform, opacity;
}

/* 2. Define the active animation state when scrolled into view */
[data-aos="bounce"].aos-animate {
    opacity: 1;
    animation: customBounce 1s ease forwards;
}

/* 3. Create the bounce physics using CSS Keyframes */
@keyframes customBounce {
    0% {
        transform: translateY(100px);
        opacity: 0;
    }

    60% {
        transform: translateY(-20px);
        opacity: 1;
    }

    75% {
        transform: translateY(10px);
    }

    90% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ============================================
   HERO SLIDER — Full Width Product Slider
   Style: Rudra Alloys inspired, Gold theme
============================================ */
.container {
    max-width: 1650px;
}

/* ---- Slider Section ---- */
.hero-slider-section {
    position: relative;
    width: 100%;
    /* height/padding handled by override block below */
}

/* ---- Swiper Container — base (overridden by block below) ---- */
.heroSwiper {
    width: 100%;
    height: calc(100vh - 106px);
    /* desktop: 100vh minus top-header(38) + navbar(68) */
    min-height: 560px;
    max-height: 860px;
}

/* ---- Each Slide ---- */
.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Dark gradient overlay on slide bg */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(105deg,*/
    /*        rgba(240, 240, 240, 0.93) 0%,*/
    /*        rgba(243, 243, 243, 0.88) 45%,*/
    /*        rgba(223, 223, 223, 0.55) 70%,*/
    /*        rgba(255, 254, 254, 0.25) 100%);*/
    background: linear-gradient(105deg, rgb(255 255 255) 0%, rgb(243 243 243 / 62%) 45%, rgb(223 223 223 / 10%) 70%, rgb(255 255 255 / 0%) 100%);
    z-index: 1;
}

/* .slide-0 .hero-slide-overlay {
    background: linear-gradient(135deg, rgb(0 0 0 / 31%) 0%, rgb(0 0 0 / 68%) 50%, rgb(0 0 0 / 29%) 100%);
 
}
.slide-0 .hero-slide-title{
    color: #ffffff;
}
.slide-0 .hero-slide-content, .slide-0 .hero-slide-desc{
color: #ffffff;
text-align: center !important;
margin: 0 auto 20px;
}
.slide-0 .hero-btn-outline{
color: #ffffff;
text-align: center !important;
margin: 0 auto;
}

.slide-0 .hero-slide-btns{
text-align: center !important;
margin: 0 auto;
display:block;
}  */
/* Content sits above overlay */
.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-slide .row {
    height: 100%;
}

/* ---- Slide Content (Left) ---- */
.hero-slide-content {
    padding: 50px 0 70px;
    /* controlled by override block; base only */
}

.hero-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(160, 82, 45, 0.15);
    border: 1px solid rgba(160, 82, 45, 0.4);
    color: var(--secondary);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeSlideDown 0.6s ease both;
}

.hero-slide-title {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeSlideUp 0.7s ease 0.1s both;
}

.hero-slide-title span {
    color: var(--secondary);
    display: block;
    text-shadow: 0 0 30px rgba(160, 82, 45, 0.4);
}

.hero-slide-desc {
    font-size: 1rem;
    color: rgba(0, 0, 0, 0.72);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 34px;
    animation: fadeSlideUp 0.7s ease 0.2s both;
}

.hero-slide-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: fadeSlideUp 0.7s ease 0.3s both;
}

/* ---- Slide Image (Right) ---- */
.hero-slide-img-wrap {
    position: relative;
    max-width: 520px;
    width: 100%;
    animation: fadeSlideLeft 0.8s ease 0.2s both;
}

.hero-slide-img-wrap img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 0 2px rgba(160, 82, 45, 0.25);
    display: block;
}

.hero-slide-img-badge {
    position: absolute;
    bottom: -16px;
    left: 24px;
    background: var(--secondary);
    color: var(--white);
    font-family: 'Cinzel', serif;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 22px;
    border-radius: 6px;
    letter-spacing: 1px;
    box-shadow: 0 4px 20px rgba(160, 82, 45, 0.5);
}

/* ---- Navigation Arrows ---- */
.hero-prev,
.hero-next {
    width: 50px;
    height: 50px;
    background: rgba(160, 82, 45, 0.15);
    border: 2px solid rgba(160, 82, 45, 0.4);
    border-radius: 50%;
    color: var(--secondary) !important;
    transition: var(--transition);
}

.hero-prev:hover,
.hero-next:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary) !important;
}

.hero-prev::after,
.hero-next::after {
    font-size: 1rem !important;
    font-weight: 900;
}

.hero-prev {
    left: 24px;
}

.hero-next {
    right: 24px;
}

/* ---- Pagination Bullets ---- */
.hero-pagination {
    bottom: 90px !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    display: flex;
    justify-content: flex-start;
    padding-left: calc((100% - 1320px) / 2 + 12px);
    gap: 8px;
}

@media (max-width: 1400px) {
    .hero-pagination {
        padding-left: calc((100% - 1140px) / 2 + 12px);
    }
}

@media (max-width: 1200px) {
    .hero-pagination {
        padding-left: calc((100% - 960px) / 2 + 12px);
    }
}

@media (max-width: 992px) {
    .hero-pagination {
        padding-left: 20px;
    }
}

.hero-pagination .swiper-pagination-bullet {
    width: 32px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    font-size: 0;
    transition: var(--transition);
}

.hero-pagination .swiper-pagination-bullet-active {
    background: var(--secondary);
    width: 56px;
}

/* ---- Slide Counter ---- */
.hero-slide-counter {
    position: absolute;
    bottom: 88px;
    right: 80px;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Cinzel', serif;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.hero-slide-counter .current-slide {
    color: var(--secondary);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1;
}

.hero-slide-counter .divider {
    color: rgba(160, 82, 45, 0.4);
    font-size: 1.2rem;
}

/* ---- Stats Bar ---- */
.hero-stats-bar {
    background: #a0522d;
    border-top: 2px solid rgba(160, 82, 45, 0.25);
    padding: 0;
    position: relative;
    z-index: 5;
}

.hstat-item {
    padding: 20px 24px;
    text-align: center;
    border-right: 1px solid rgba(160, 82, 45, 0.12);
    transition: var(--transition);
}

.hstat-item:last-child {
    border-right: none;
}

.hstat-item:hover {
    background: rgba(160, 82, 45, 0.06);
}

.hstat-num {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hstat-label {
    font-size: 0.75rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* ---- Slide Animations ---- */
@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Reset swiper slide animation between transitions */
.swiper-slide-active .hero-slide-badge {
    animation: fadeSlideDown 0.6s ease 0.1s both;
}

.swiper-slide-active .hero-slide-title {
    animation: fadeSlideUp 0.7s ease 0.2s both;
}

.swiper-slide-active .hero-slide-desc {
    animation: fadeSlideUp 0.7s ease 0.35s both;
}

.swiper-slide-active .hero-slide-btns {
    animation: fadeSlideUp 0.7s ease 0.5s both;
}

.swiper-slide-active .hero-slide-img-wrap {
    animation: fadeSlideLeft 0.8s ease 0.3s both;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .heroSwiper {
        height: calc(100vh - 70px);
        min-height: 500px;
        max-height: none;
    }

    .hero-slide-content {
        padding: 40px 16px 60px;
    }

    .hero-slide-img-wrap {
        display: none;
    }

    .hero-slide-title {
        font-size: 2rem;
    }

    .hero-slide-counter {
        display: none;
    }

    .hero-pagination {
        bottom: 24px !important;
        padding-left: 20px;
    }
}

@media (max-width: 767px) {
    .heroSwiper {
        height: calc(100vh - 66px);
        min-height: 480px;
    }

    .hero-slide-content {
        padding: 30px 16px 50px;
    }

    .hero-slide-title {
        font-size: 1.7rem;
    }

    .hero-slide-desc {
        font-size: 0.92rem;
    }

    .hero-slide-btns {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-prev,
    .hero-next {
        display: none;
    }

    .hstat-item {
        padding: 16px 12px;
    }

    .hstat-num {
        font-size: 1.4rem;
    }
}

@media (max-width: 575px) {
    .hero-slide-content {
        padding: 24px 16px 40px;
    }

    .hstat-item {
        border-right: none;
        border-bottom: 1px solid rgba(160, 82, 45, 0.1);
    }
}

/* ============================================
   TOP HEADER BAR — Desktop only
   Dark maroon bg, gold accents
============================================ */

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: #0d0400;
    border-bottom: 1px solid rgba(160, 82, 45, 0.18);
    height: 38px;
    display: flex;
    align-items: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

/* Hide top header when scrolled — gives more viewport */
.top-header.hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

/* Social links */
.top-header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.top-header-follow {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 4px;
}

.top-header-social a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}

.top-header-social a:hover {
    color: var(--secondary);
    background: rgba(160, 82, 45, 0.1);
}

/* Center info text */
.top-header-info {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-header-info i {
    color: var(--secondary);
}

/* Phone link */
.top-header-phone a {
    color: var(--secondary);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.top-header-phone a:hover {
    color: #fff;
}

.top-header-phone i {
    font-size: 0.78rem;
}

/* ============================================
   NAVBAR — top offset + scroll behaviour
============================================ */

/* When top-header scrolls away, navbar moves to top */
#mainNavbar.top-hidden {
    top: 0 !important;
}

/* Scrolled: solid dark bg */
#mainNavbar.scrolled {
    background: var(--primary) !important;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
    padding: 8px 0 !important;
}

/* Mobile: no top-header, navbar fixed at top */
@media (max-width: 991px) {
    #mainNavbar {
        top: 0 !important;
    }
}

/* ============================================
   NAVBAR DROPDOWN MENU — Gold theme
============================================ */

.navbar-dropdown {
    background: #100600;
    border: 1px solid rgba(160, 82, 45, 0.25);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
    padding: 8px;
    min-width: 210px;
    margin-top: 8px !important;
}

.navbar-dropdown .dropdown-item {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 9px 14px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: var(--transition);
    text-decoration: none;
}

.navbar-dropdown .dropdown-item i {
    color: var(--secondary);
    font-size: 0.7rem;
}

.navbar-dropdown .dropdown-item:hover,
.navbar-dropdown .dropdown-item:focus {
    background: rgba(160, 82, 45, 0.12);
    color: var(--secondary);
}

.navbar-dropdown .dropdown-divider {
    border-color: rgba(160, 82, 45, 0.15);
    margin: 4px 0;
}

/* Dropdown toggle arrow colour */
#mainNavbar .dropdown-toggle::after {
    border-top-color: rgba(255, 255, 255, 0.6);
    vertical-align: 0.2em;
}

#mainNavbar .dropdown-toggle:hover::after,
#mainNavbar .dropdown-toggle.active::after {
    border-top-color: var(--secondary);
}

/* ============================================
   HERO SLIDER — Height + padding (canonical)
   Desktop: top-header(38) + navbar(68) = 106px
============================================ */

.hero-slider-section {
    padding-top: 106px;
    background: var(--primary);
}

.heroSwiper {
    height: calc(100vh - 106px) !important;
    min-height: 560px;
    max-height: 860px;
}

.hero-slide-content {
    padding: 50px 0 70px;
}

.hero-pagination {
    bottom: 28px !important;
}

.hero-slide-counter {
    bottom: 28px;
    right: 60px;
}

@media (max-width: 991px) {
    .hero-slider-section {
        padding-top: 70px;
    }

    .heroSwiper {
        height: calc(100vh - 70px) !important;
        max-height: none;
    }

    .hero-slide-content {
        padding: 36px 0 56px;
    }
}

@media (max-width: 767px) {
    .hero-slider-section {
        padding-top: 66px;
    }

    .heroSwiper {
        height: calc(100vh - 66px) !important;
        min-height: 480px;
    }

    .hero-slide-content {
        padding: 24px 0 44px;
    }
}

/* ---- Stats Bar ---- */
.hero-stats-bar {
    background: #a0522d;
    border-top: 1px solid rgba(160, 82, 45, 0.2);
    position: relative;
    z-index: 5;
}

/* ============================================================
   AKSHAT ALLOYS — SITE HEADER (FINAL CANONICAL RULES)
   Overrides all previous conflicting navbar declarations.
   Matches Rudra Alloys style: top-bar + transparent main-nav
   overlaying the hero slider.
============================================================ */

/* ── Wrapper ─────────────────────────────────────────────── */
.site-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: top 0.35s ease;
}

/* ── TOP BAR ──────────────────────────────────────────────── */
.top-bar {
    background: #a0522d;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    height: 40px;
    display: flex;
    align-items: center;
    transition: height 0.35s ease, opacity 0.35s ease;
    overflow: hidden;
}

/* Hide top-bar when scrolled */
.top-bar.bar-hidden {
    height: 0;
    opacity: 0;
    pointer-events: none;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 16px;
}

/* Social icons */
.top-bar-left {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.top-bar-left a {
    color: rgb(255, 255, 255);
    font-size: 20px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    text-decoration: none;
    transition: color 0.25s ease, background 0.25s ease;
}

.top-bar-left a:hover {
    color: var(--white);
    background: rgba(160, 82, 45, 0.1);
}

/* Center address */
.top-bar-center {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.top-bar-center i {
    color: #ffffff;
    margin-right: 4px;
    font-size: 1rem;
}

/* Right phone */
.top-bar-right {
    flex-shrink: 0;
}

.top-bar-right a {
    color: rgb(255, 255, 255);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.25s ease;
}

.top-bar-right a:hover {
    color: #d5d5d5;
}

.top-bar-right i {
    font-size: 0.75rem;
}

/* ── MAIN NAV ─────────────────────────────────────────────── */
.main-nav {
    background: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
    padding: 0;
}

/* Scrolled: fully solid */
.main-nav.nav-scrolled {
    background: #ffffff !important;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(0px);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    height: 70px;
}

/* ── Logo ─── */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    transition: height 0.3s ease;
    /*filter: drop-shadow(0 2px 8px rgba(160, 82, 45, 0.35));*/
}

.main-nav.nav-scrolled .nav-logo-img {
    /* height: 100px; */
}

.nav-logo-text {
    line-height: 1.25;
}
.footer-brand .nav-brand-name {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 2px;
    display: block;
    /*text-shadow: 0 0 16px rgba(61, 61, 61, 0.5);*/
}
.nav-brand-name {
    font-family: 'Cinzel', 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 2px;
    display: block;
    /*text-shadow: 0 0 16px rgba(61, 61, 61, 0.5);*/
}

.nav-brand-tagline {
    font-size: 0.63rem;
    color: rgb(0, 0, 0);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
}

/* ── Desktop Nav Links ─── */
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    color: rgba(0, 0, 0, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: relative;
    transition: color 0.25s ease;
    white-space: nowrap;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-link-item:hover,
.nav-link-item.active {
    color: var(--secondary);
}

.nav-link-item:hover::after,
.nav-link-item.active::after {
    transform: scaleX(1);
}

/* Arrow icon */
.nav-arrow {
    font-size: 0.6rem;
    transition: transform 0.25s ease;
    color: rgba(255, 255, 255, 0.5);
}

.nav-has-drop:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--secondary);
}

/* ── Dropdown ─── */
.nav-has-drop {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: #100600;
    border: 1px solid rgba(160, 82, 45, 0.22);
    border-radius: 10px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55);
    list-style: none;
    padding: 8px;
    margin: 0;
    min-width: 210px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    z-index: 999;
}

.nav-has-drop:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown li a i {
    color: var(--secondary);
    font-size: 0.65rem;
    flex-shrink: 0;
}

.nav-dropdown li a:hover {
    background: rgba(160, 82, 45, 0.12);
    color: var(--secondary);
}

.nav-drop-divider {
    border-top: 1px solid rgba(160, 82, 45, 0.15);
    margin: 4px 6px;
    list-style: none;
}

/* ── Right group: separator + CTA + hamburger ─── */
.nav-right-group {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.nav-sep {
    display: inline-block;
    width: 1px;
    height: 26px;
    background: rgba(160, 82, 45, 0.28);
}

.nav-get-quote {
    background: var(--secondary);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 800;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.8px;
    padding: 9px 22px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.nav-get-quote:hover {
    background: var(--accent);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(160, 82, 45, 0.45);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: rgba(0, 0, 0, 0.85);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Drawer (Left Slide-in Panel) ─── */
.nav-mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    border-right: 2px solid rgba(160, 82, 45, 0.2);
    padding: 70px 0 30px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1050;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 4px 0 30px rgba(0, 0, 0, 0.15);
}

.nav-mobile-drawer.drawer-open {
    transform: translateX(0);
}

/* Overlay backdrop */
.nav-drawer-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1049;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.nav-drawer-overlay.overlay-show {
    opacity: 1;
}

/* Close button inside drawer */
.drawer-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(160, 82, 45, 0.1);
    border: 1px solid rgba(160, 82, 45, 0.35);
    color: #333;
    width: 34px;
    height: 34px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.2s ease, color 0.2s ease;
    line-height: 1;
}

.drawer-close-btn:hover {
    background: var(--secondary);
    color: #fff;
}

.nav-mobile-drawer ul {
    list-style: none;
    padding: 0 0 0 0;
    margin: 0;
}

.nav-mobile-drawer ul li a {
    display: block;
    color: #1a1a1a;
    font-size: 0.92rem;
    font-weight: 600;
    padding: 13px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-mobile-drawer ul li a:hover {
    color: var(--secondary);
    background: rgba(160, 82, 45, 0.06);
    padding-left: 30px;
}

.nav-mobile-drawer .mobile-sub a {
    padding: 10px 24px 10px 38px;
    font-size: 0.82rem;
    text-transform: none;
    letter-spacing: 0;
    color: #444444;
}

.nav-mobile-drawer .mobile-sub a i {
    color: var(--secondary);
    font-size: 0.6rem;
}

.mobile-quote-btn {
    display: flex !important;
    align-items: center;
    background: var(--secondary) !important;
    color: #fff !important;
    font-weight: 700 !important;
    padding: 13px 24px !important;
    border-bottom: none !important;
    margin-top: 10px;
    font-size: 0.9rem !important;
}

/* ── HERO OFFSET: push slider below header ─── */
.hero-slider-section {
    /* desktop: top-bar(40) + main-nav(70) = 110px */
    padding-top: 110px !important;
    background: var(--primary);
}

.heroSwiper {
    width: 100%;
    height: calc(100vh - 110px) !important;
    min-height: 540px !important;
    max-height: 900px !important;
}

.hero-slide-content {
    padding: 40px 0 60px;
}

.hero-pagination {
    bottom: 26px !important;
}

.hero-slide-counter {
    bottom: 26px;
    right: 60px;
}

/* ── Page-hero offset (About/Products etc.) ─── */
.page-hero {
    padding-top: 170px !important;
    /* 40+70+60 breathing */
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1199px) {
    .top-bar-center {
        font-size: 0.7rem;
    }

    .nav-brand-name {
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .nav-links {
        gap: 0;
    }

    .nav-link-item {
        padding: 8px 10px;
        font-size: 0.82rem;
    }

    .nav-get-quote {
        padding: 8px 16px;
        font-size: 0.78rem;
    }
}

@media (max-width: 991px) {

    /* Hide top bar on tablet/mobile */
    .top-bar {
        display: none !important;
    }

    /* Full solid nav on mobile */
    .main-nav {
        background: rgba(26, 26, 26, 0.97) !important;
        backdrop-filter: none;
    }

    /* Hide desktop links, show hamburger */
    .nav-links {
        display: none !important;
    }

    .nav-sep {
        display: none !important;
    }

    .nav-get-quote {
        display: none !important;
    }

    .nav-hamburger {
        display: flex !important;
    }

    .nav-mobile-drawer {
        display: block;
        /* fixed panel, always in DOM on mobile */
    }

    /* Hero: no top-bar */
    .hero-slider-section {
        padding-top: 70px !important;
    }

    .heroSwiper {
        height: calc(100vh - 70px) !important;
        max-height: none !important;
    }

    .hero-slide-content {
        padding: 30px 16px 50px;
    }

    @media (max-width: 767px) {
        .hero-slider-section {
            padding-top: 66px !important;
        }

        .heroSwiper {
            height: calc(100vh - 66px) !important;
            min-height: 460px !important;
        }

        .hero-slide-content {
            padding: 24px 16px 44px;
        }

        .hero-slide-title {
            font-size: 3rem !important;
        }

        .hero-slide-desc {
            font-size: 0.9rem;
        }

        .hero-slide-btns {
            flex-direction: column;
            align-items: flex-start;
        }

        .hero-prev,
        .hero-next {
            display: none !important;
        }

        .hero-slide-counter {
            display: none !important;
        }

        .nav-inner {
            height: 62px;
        }

        .nav-logo-img {
            height: 50px;
        }

        .nav-brand-tagline {
            /* display: none; */
            font-size:6px;
        }
    }

    @media (max-width: 575px) {
        .nav-brand-name {
            font-size: 1.3rem;
        }

        .hstat-item {
            border-right: none;
            border-bottom: 1px solid rgba(160, 82, 45, 0.1);
        }
    }

    /* Disable OLD mainNavbar fixed positioning — replaced by .site-header-wrap */
    #mainNavbar {
        position: static !important;
        top: auto !important;
    }
}


/* ============================================
   GRADES PAGE
============================================ */

/* ---- Intro Section ---- */
.grades-intro-section {
    padding: 90px 0;
    background: var(--white);
}

.grades-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.grade-stat-card {
    background: var(--light-grey);
    border-radius: var(--radius);
    padding: 32px 20px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.grade-stat-card:hover {
    border-bottom-color: var(--secondary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.gsc-icon {
    width: 52px;
    height: 52px;
    background: rgba(160, 82, 45, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 4px;
}

.gsc-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.gsc-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ---- Grade Categories ---- */
.grades-main-section {
    padding: 90px 0;
    background: var(--light-grey);
}

.grade-category-card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.grade-category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
}

.gcc-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    color: #fff;
}

.gcc-en {
    background: linear-gradient(135deg, #1a3d6b 0%, #1a2a4a 100%);
}

.gcc-sae {
    background: linear-gradient(135deg, #5a2200 0%, #a0522d 100%);
}

.gcc-din {
    background: linear-gradient(135deg, #1a1a1a 0%, #3a2000 100%);
}

.gcc-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.gcc-header h4 {
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 0 2px;
    color: #fff;
}

.gcc-header p {
    margin: 0;
    font-size: 0.78rem;
    opacity: 0.85;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
}

.gcc-body {
    padding: 24px 28px;
    flex: 1;
}

.grade-tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.grade-tag {
    background: rgba(160, 82, 45, 0.08);
    color: var(--primary);
    border: 1px solid rgba(160, 82, 45, 0.22);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: var(--transition);
    cursor: default;
}

.grade-tag:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.gcc-desc p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.gcc-applications h6 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.gcc-applications ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gcc-applications ul li {
    font-size: 0.85rem;
    color: var(--text-muted);
    padding: 4px 0 4px 16px;
    position: relative;
}

.gcc-applications ul li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.gcc-footer {
    padding: 16px 28px 24px;
}

.gcc-enquire-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px;
    padding: 12px 20px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.gcc-enquire-btn:hover {
    background: var(--secondary);
    color: #fff;
}

/* ---- Grade Comparison Table ---- */
.grade-table-section {
    padding: 90px 0;
    background: var(--white);
}

.grade-table-card {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.grade-ref-table {
    margin: 0;
    font-size: 0.88rem;
}

.grade-ref-table thead tr {
    background: var(--primary);
}

.grade-ref-table thead th {
    padding: 14px 18px;
    font-weight: 900;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    white-space: nowrap;
    color: #a0522d;
}

.grade-ref-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.2s ease;
}

.grade-ref-table tbody tr:hover {
    background: rgba(160, 82, 45, 0.05);
}

.grade-ref-table tbody td {
    padding: 12px 18px;
    color: var(--dark-grey);
    vertical-align: middle;
    border: none;
}

.grade-ref-table tbody td:first-child {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.92rem;
}

.std-badge {
    background: rgba(160, 82, 45, 0.1);
    color: var(--secondary);
    border: 1px solid rgba(160, 82, 45, 0.25);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
}

.table-note {
    padding: 14px 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
    background: var(--light-grey);
    margin: 0;
    border-top: 1px solid var(--border);
}

/* ---- Grades Responsive ---- */
@media (max-width: 991px) {
    .grades-stats-grid {
        margin-top: 40px;
    }
}

@media (max-width: 767px) {

    .grades-intro-section,
    .grades-main-section,
    .grade-table-section {
        padding: 60px 0;
    }

    .gsc-num {
        font-size: 1.8rem;
    }

    .gcc-header {
        padding: 18px 20px;
    }

    .gcc-body,
    .gcc-footer {
        padding: 18px 20px;
    }
}

@media (max-width: 575px) {
    .grade-stat-card {
        padding: 22px 12px;
    }

    .gsc-num {
        font-size: 1.6rem;
    }
    .loader-brand{
   font-size: 1.3rem;
}
.loader-tagline {
    text-align: center;
    font-size: 12px !important;
}
}
