
:root {
    --color-gold: #cda157;
    --color-gold-dark: #b78a41;
    --color-gold-light: #e8d5ac;
    --color-navy: #1c2b42;
    --color-navy-soft: #2b3c56;
    --color-white: #ffffff;
    --color-light: #f6f6f7;
    --color-muted: #767c88;
    --color-border: #e8e8ea;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 26px rgba(0,0,0,0.10);
    --radius: 10px;
    --transition: all 0.25s ease;

}

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

body {
    font-family: Poppins, sans-serif;
    color: var(--color-navy);
    background: var(--color-white);
    line-height:28px;
    font-size:15px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.content-wrapper { min-height: 60vh; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
    background: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-block { line-height: 1.1; }

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.3px;
    font-family: Georgia, 'Times New Roman', serif;
    width: 100%;
    height: 100%;
}
    .logo img {
        max-width: 250px;
        width: 100%;
        height: 100%;
    }
.logo span { color: var(--color-navy); }

.logo-tagline {
    font-size: 0.7rem;
    color: var(--color-gold-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.main-nav ul { display: flex; gap: 34px; }

.main-nav a {
    position: relative;
    color: var(--color-navy);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 6px 2px;
    transition: color 0.25s ease;
}

    .main-nav a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -2px;
        width: 100%;
        height: 2px;
        background: var(--color-gold);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.3s ease;
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--color-gold);
    }

        .main-nav a:hover::after,
        .main-nav a.active::after {
            transform: scaleX(1);
        }

.header-actions .cart-icon {
    position: relative;
    font-size: 1.3rem;
    color: var(--color-navy);
    display: inline-flex;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -10px;
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-primary,
input[type="submit"].btn-primary {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    padding: 13px 34px;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    background: var(--color-gold-dark);
    
}

.btn-primary:hover {  transform: translateY(-4px);

}

.btn-secondary {
    display: inline-block;
    background: var(--color-gold);
    color: var(--color-white);
    border: none;
    padding: 12px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.btn-secondary:hover { background: var(--color-gold-dark); }

/* =========================================================
   HERO (Home page)
   ========================================================= */

/* =========================================================
   HERO (Home page) — banner image only
   ========================================================= */
.hero {
    padding: 0;
    line-height: 0;
}

.hero-banner-img {
    width: 100%;
    height: auto;
    display: block;
}

/* =========================================================
   FEATURES STRIP
   ========================================================= */
/* =========================================================
   FEATURES STRIP
   ========================================================= */
.features {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius);
    transition: var(--transition);
    transition-delay: calc(var(--delay, 0) * 0.12s);
}

    .feature-card:hover {
        box-shadow: var(--shadow-md);
        transform: translateY(-4px);
    }

.feature-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-gold-light);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

.feature-text h3 {
    font-size: 1.05rem;
    color: var(--color-navy);
    margin-bottom: 2px;
}

.feature-text p {
    color: var(--color-muted);
    font-size: 0.9rem;
}
.feature-icon i {
    font-size: 24px;
    color: var(--color-gold-dark);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.feature-icon { font-size: 2.2rem; margin-bottom: 10px; }

.feature-card h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--color-navy); }

.feature-card p { color: var(--color-muted); font-size: 0.92rem; }

/* =========================================================
   SECTION TITLES
   ========================================================= */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 36px;
    color: var(--color-navy);
    position: relative;
    line-height: 40px;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    background: var(--color-gold);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* =========================================================
   PREMIUM CREATIVE PRODUCTS PAGE
   ========================================================= */

/* Background for whole section */
.products-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

    /* Floating golden glow */
    .products-showcase::before,
    .products-showcase::after {
        content: "";
        position: absolute;
        width: 380px;
        height: 380px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(205,161,87,0.18) 0%, rgba(205,161,87,0) 70%);
        z-index: 0;
        animation: glowFloat 10s ease-in-out infinite;
    }

    .products-showcase::before {
        top: -120px;
        left: -120px;
    }

    .products-showcase::after {
        bottom: -120px;
        right: -120px;
        animation-delay: -5s;
    }

@keyframes glowFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(25px) scale(1.08);
    }
}

/* Main card */
.showcase-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: center;
    gap: 34px;
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(205,161,87,0.18);
    border-radius: 32px;
    padding: 26px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0,0,0,0.10);
    transition: transform 0.45s ease, box-shadow 0.45s ease;
}

    /* Alternate layout */
    .showcase-row.image-right {
        grid-template-columns: 58% 42%;
    }

        .showcase-row.image-right .showcase-image {
            order: 2;
        }

        .showcase-row.image-right .showcase-info {
            order: 1;
        }

    /* Hover lift */
    .showcase-row:hover {
        transform: translateX(-10px);
        box-shadow: 0 28px 60px rgba(0,0,0,0.16);
    }

    /* Animated border sweep */
    .showcase-row::before {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 34px;
        padding: 2px;
        background: linear-gradient( 120deg, transparent 0%, rgba(205,161,87,0) 25%, rgba(205,161,87,0.9) 50%, rgba(205,161,87,0) 75%, transparent 100% );
        -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        -webkit-mask-composite: xor;
        mask-composite: exclude;
        transform: translateX(-120%);
        transition: transform 1.1s ease;
    }

    .showcase-row:hover::before {
        transform: translateX(120%);
    }

/* Image container */
.showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 26px;
}

    /* Image style */
    .showcase-image img {
        width: 100%;
        display: block;
        border-radius: 26px;
        transition: transform 0.8s ease, filter 0.8s ease;
    }

    /* Shine effect */
    .showcase-image::after {
        content: "";
        position: absolute;
        top: -120%;
        left: -60%;
        width: 45%;
        height: 300%;
        background: linear-gradient( 120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 35%, rgba(255,255,255,0.75) 50%, rgba(255,255,255,0.15) 65%, rgba(255,255,255,0) 100% );
        transform: rotate(18deg);
        transition: left 0.9s ease;
    }

.showcase-row:hover .showcase-image::after {
    left: 130%;
}

.showcase-row:hover .showcase-image img {
    transform: scale(1.08) rotate(1deg);
    filter: saturate(1.08) contrast(1.04);
}

/* Text area */
.showcase-info {
    position: relative;
    padding-left: 20px;
}

    /* Decorative vertical line */
    .showcase-info::before {
        content: "";
        position: absolute;
        left: 0;
        top: 6px;
        width: 4px;
        height: 64px;
        border-radius: 999px;
        background: linear-gradient(to bottom, #cda157, transparent);
    }

    /* Heading */
    .showcase-info h2 {
        font-size: 2rem;
        color: var(--color-navy);
        margin-bottom: 14px;
        letter-spacing: -0.5px;
    }

    /* Paragraph */
    .showcase-info p {
        color: var(--color-muted);
        line-height: 1.8;
        font-size: 1rem;
        margin-bottom: 20px;
    }

/* Optional category badge */
.showcase-category {
    display: inline-block;
    background: rgba(205,161,87,0.12);
    color: #b07a22;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Elegant button */
.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #cda157, #b8863b);
    color: #fff;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .showcase-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(205,161,87,0.35);
    }

/* Reveal animation on scroll */
.showcase-row {
    opacity: 0;
    transform: translateY(40px);
}

    .showcase-row.in-view {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.8s ease, transform 0.8s ease;
    }

/* Mobile */
@media (max-width: 768px) {
    .showcase-row,
    .showcase-row.image-right {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 20px;
    }

        .showcase-row.image-right .showcase-image,
        .showcase-row.image-right .showcase-info {
            order: initial;
        }

    .showcase-info {
        padding-left: 0;
        padding-top: 16px;
    }

        .showcase-info::before {
            width: 60px;
            height: 4px;
            top: 0;
            left: 0;
            background: linear-gradient(to right, #cda157, transparent);
        }

        .showcase-info h2 {
            font-size: 1.6rem;
        }
}

/* =========================================================
   ABOUT US PREVIEW (Home page)
   ========================================================= */
.home-about-link {
    display: block;
    color: inherit;
}

.home-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    border-radius: var(--radius);
    transition: var(--transition);
}
/*
.home-about-link:hover .home-about {
    background: var(--color-light);
}*/

.home-about-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}

.home-about-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-navy);
    line-height:40px;
}

.home-about-text p {
    color: var(--color-muted);
    margin-bottom: 22px;
    line-height: 1.7;
}

.home-about-text .btn-secondary {
    display: inline-block;
    width: auto;
    padding: 12px 28px;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter {
    background: #CDA157;
    
    color: var(--color-white);
    text-align: center;
    padding: 70px 24px;
}

.newsletter h2 { font-size: 1.8rem; margin-bottom: 10px; }

.newsletter p { color: var(--color-gold-light); margin-bottom: 26px; }

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 13px 18px;
    border-radius: 30px;
    border: none;
    width: 300px;
    font-size: 1rem;
}

.newsletter-msg {
    display: block;
    margin-top: 16px;
    font-weight: 600;
}

.newsletter-msg.success { color: #4ade80; }
.newsletter-msg.error { color: #f87171; }

/* =========================================================
   PAGE BANNER (Products / About Us)
   Solid gold block with a large rounded bottom-left corner,
   matching the "Store" banner on ravidasindustries.com
   ========================================================= */
.page-banner {
    background: var(--color-gold);
    color: var(--color-white);
    padding: 70px 24px 90px;
    border-bottom-left-radius: 90px;
}

.page-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.page-banner h1 { font-size: 2.4rem; font-weight: 800; margin-bottom: 6px; }
.page-banner p { color: var(--color-navy); opacity: 0.75; }

/* =========================================================
   PRODUCTS PAGE
   ========================================================= */
/* =========================================================
   PRODUCTS PAGE — alternating image/info showcase
   ========================================================= */

.showcase-row {
    display: grid;
    grid-template-columns: 30% 64%;
    gap: 64px;
    align-items: center;
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .showcase-row.image-right {
        grid-template-columns: 64% 30%;
        transform: translateX(80px);
    }

    .showcase-row.in-view {
        opacity: 1;
        transform: translateX(0);
        transition: 0.5s;
    }

    .showcase-row.image-right .showcase-image {
        order: 2;
    }

    .showcase-row.image-right .showcase-info {
        order: 1;
    }

.showcase-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    background: var(--color-light);
}

.showcase-category {
    display: inline-block;
    background: var(--color-light);
    color: var(--color-gold-dark);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.showcase-info h2 {
    font-size: 1.8rem;
    margin-bottom: 14px;
    color: var(--color-navy);
}

.showcase-info p {
    color: var(--color-muted);
    line-height: 1.7;
}

.no-results {
    display: block;
    text-align: center;
    color: var(--color-muted);
    padding: 40px 0;
    font-size: 1rem;
}

.no-results {
    display: block;
    text-align: center;
    color: var(--color-muted);
    padding: 40px 0;
    font-size: 1rem;
}

/* =========================================================
   ABOUT US PAGE
   ========================================================= */
.about-story {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 { font-size: 2rem; margin-bottom: 18px; color: var(--color-navy); }
.about-text p { color: var(--color-muted); margin-bottom: 16px; }

.about-image img {
    border-radius: var(--radius);
    
    height: 100%;
    object-fit: cover;
}

.about-values {
    background: var(--color-light);
    padding: 70px 24px;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--color-white);
    text-align: center;
    padding: 30px 18px;
    border-radius: var(--radius);
    transition: var(--transition);
}

.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 10px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--color-navy); }
.value-card p { color: var(--color-muted); font-size: 0.88rem; }
.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--color-gold-light);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

    .value-icon i {
        font-size: 22px;
        color: var(--color-gold-dark);
    }
.about-team {
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 24px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.team-card {
    text-align: center;
    background: var(--color-light);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.team-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.team-card img {
    width: 130px;
    height: 130px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--color-white);
    border: 3px solid var(--color-gold);
}

.team-card h3 { font-size: 1.05rem; margin-bottom: 4px; color: var(--color-navy); }
.team-card p { color: var(--color-gold-dark); font-size: 0.88rem; font-weight: 600; }

/* =========================================================
   PRODUCT DETAILS PAGE
   ========================================================= */

/* =========================================================
   FOOTER
   Light footer matching ravidasindustries.com (not a dark block)
   ========================================================= */
.site-footer {
    background: linear-gradient( 135deg, #FFF8E7 0%, #FDEFC8 40%, #F6DE9A 100% );
    color: #1F1F1F;
    margin-top: 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 24px 40px;
    display: grid;
    grid-template-columns: 30% 15% 25% 25%;
    gap: 20px;
}

.footer-logo {
    font-size: 21px;
    font-weight: 700;
    color: var(--color-gold);
    font-family: Georgia, 'Times New Roman', serif;
}

    .footer-logo span {
        color: var(--color-navy);
        font-family: popins, sans-serif;
    }

.footer-logo-tagline {
    font-size: 0.72rem;
    color: var(--color-gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 18px;
}

.footer-col h4 {
    color: #C08E2D;
    font-size: 1rem;
    margin-bottom: 14px;
}
.footer-col p {
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #0c0b07;
}

/* Footer list spacing */
.footer-col ul li {
    margin-bottom: 10px;
    list-style: none; /* remove default bullets */
}

    /* Footer links */
    .footer-col ul li a {
        position: relative;
        display: inline-block;
        padding-left: 18px; /* space for the dot */
        font-size: 0.9rem;
        color: #0c0b07;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        /* Custom dot before link */
        .footer-col ul li a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background:black; /* gold dot */
            transform: translateY(-50%);
            transition: background 0.3s ease, transform 0.3s ease;
        }

        /* Animated underline */
        .footer-col ul li a::after {
            content: '';
            position: absolute;
            left: 18px; /* start after the dot */
            bottom: -3px;
            width: calc(100% - 18px);
            height: 2px;
            background: #C08E2D;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.35s ease;
        }

        /* Hover effect */
        .footer-col ul li a:hover {
            color: #C08E2D;
        }

            /* Dot animation on hover */
            .footer-col ul li a:hover::before {
                background: #C08E2D;
                transform: translateY(-50%) scale(1.3);
            }

            /* Line animation left to right */
            .footer-col ul li a:hover::after {
                transform: scaleX(1);
            }
.footer-bottom {
    background: var(--color-light);
    text-align: center;
    padding: 16px;
    font-size: 0.85rem;
    color: var(--color-muted);
}





















/* =========================================================
   ROCKFELLAR SAFETY BRAND SECTIONS
   ========================================================= */

/* ---- Scroll reveal (shared by all sections) ---- */
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    [data-reveal].is-visible {
        opacity: 1;
        transform: translateY(0);
        text-align: center;
    }

/* ---- Intro ---- */
.rockfellar-intro {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

.rockfellar-intro-text p {
    color: var(--color-muted);
    line-height: 1.8;
    margin: 14px 0;
}
.rockfellar-intro-text .section-subtitle {
    font-weight: 600;
    color: var(--color-gold-dark);
    margin-top: -20px;
    margin-bottom: 16px;
}

/* ---- Why Choose Rockfellar ---- */
.rockfellar-why {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px 24px;
    text-align: center;
}

.rockfellar-why-header {
    max-width: 720px;
    margin: 0 auto 44px;
}

    .rockfellar-why-header .section-subtitle {
        font-weight: 600;
        color: var(--color-gold-dark);
        margin-top: -20px;
        margin-bottom: 16px;
    }

    .rockfellar-why-header .rockfellar-lead {
        color: var(--color-muted);
        line-height: 1.7;
    }

.rockfellar-why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
}

.why-card {
    flex: 1 1 200px;
    max-width: 220px;
    padding: 28px 20px;
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    transition-delay: calc(var(--delay, 0) * 0.1s);
}

    .why-card:hover {
        transform: translateY(-6px);
    }

.why-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: var(--color-gold-light);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .why-icon i {
        font-size: 22px;
        transition: var(--transition);
    }

.why-card:hover .why-icon {
    background: var(--color-gold);
    color: #fff;
}

    .why-card:hover .why-icon i {
        transform: rotate(-10deg) scale(1.1);
    }

.why-card h3 {
    font-size: 1.05rem;
    color: var(--color-navy);
    margin-bottom: 4px;
}

.why-card p {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ---- Manufacturing (reuses .home-about layout) ---- */
.rockfellar-manufacturing .home-about-image img {
    transition: var(--transition);
    width: 100%;
    object-fit: contain;
    max-width: 320px;
}
.rf-slider-box {
    width: 100%;
    max-width: 380px;
}

.rfFactorySwiper {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

  
        .rfFactorySwiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.rf-next,
.rf-prev {
    color: #fff;
}

.rf-pagination .swiper-pagination-bullet-active {
    background: #c6922d;
}

.rf-slider-box {
    width: 100%;
    max-width: 380px;
}

.rfFactorySwiper {
    width: 100%;
    height: 420px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

    /* IMPORTANT: do not set width or flex-shrink here */
    .rfFactorySwiper .swiper-slide {
        height: 420px;
    }

        .rfFactorySwiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.rf-next,
.rf-prev {
    color: #fff;
}

.rf-pagination .swiper-pagination-bullet-active {
    background: #c6922d;
}
.rockfellar-tagline {
    font-style: italic;
    font-weight: 600;
    color: var(--color-navy);
    padding-left: 16px;
    border-left: 3px solid var(--color-gold);
}

/* ---- Industries We Serve ---- */
.rockfellar-industries {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 24px;
    text-align: center;
}

    .rockfellar-industries .section-subtitle {
        color: var(--color-muted);
        margin-top: -20px;
        margin-bottom: 20px;
        font-weight: 600;
    }

.industry-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

    .industry-tags span {
        padding: 9px 20px;
        border: 1px solid var(--color-gold-light);
        border-radius: 30px;
        font-size: 0.875rem;
        font-weight: 500;
        color: var(--color-navy);
        opacity: 0;
        transform: translateY(15px);
        animation: tagPop 0.5s ease forwards;
        animation-delay: calc(var(--delay, 0) * 0.08s);
        animation-play-state: paused;
        transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
        cursor: default;
    }

        .industry-tags span:hover {
            background: var(--color-gold);
            color: #fff;
        }

.rockfellar-industries.is-visible .industry-tags span {
    animation-play-state: running;
}

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

.rockfellar-closing {
    font-weight: 600;
    color: var(--color-navy);
    margin-top: 12px;
}

/* ---- Responsive ---- */
@media (max-width: 600px) {
    .rockfellar-intro,
    .rockfellar-why,
    .rockfellar-industries {
        padding: 40px 16px;
    }

    .why-card {
        flex: 1 1 100%;
        max-width: 320px;
    }
}

.rockfellar-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.rockfellar-intro-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

    .rockfellar-intro-logo img {
        max-width: 400px;
        width: 100%;
        height: auto;
        object-fit: contain;
    }

.rockfellar-intro-text .section-title {
    text-align: center;
}

    .rockfellar-intro-text .section-title::after {
        margin: 12px auto 0; /* left-align the gold underline instead of centering it */
    }

.rockfellar-intro-text .section-subtitle {
    font-weight: 600;
    color: var(--color-gold-dark);
    margin-bottom: 16px;
}

.rockfellar-intro-text .rockfellar-lead {
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 14px;
    text-align: center;
}

/* Stack on mobile */
@media (max-width: 700px) {
    .rockfellar-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .rockfellar-intro-text .section-title,
    .rockfellar-intro-text .rockfellar-lead {
        text-align: center;
    }

        .rockfellar-intro-text .section-title::after {
            margin: 12px auto 0;
        }
}

.rockfellar-industries {
    max-width: 1100px;
    margin: 0 auto;
    padding: 70px 24px;
    text-align: center;
}

    .rockfellar-industries .section-subtitle {
        color: var(--color-muted);
        font-weight: 600;
        margin-top: -20px;
        margin-bottom: 40px;
    }

.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    padding: 28px 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    transition-delay: calc(var(--delay, 0) * 0.08s);
}

    .industry-card:hover {
        transform: translateY(-6px);
        border-color: var(--color-gold);
    }

.industry-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: var(--color-gold-light);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .industry-icon i {
        font-size: 20px;
        transition: var(--transition);
    }

.industry-card:hover .industry-icon {
    background: var(--color-gold);
}

    .industry-card:hover .industry-icon i {
        color: #fff;
        transform: scale(1.1);
    }

.industry-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-navy);
    margin: 0;
}

.rockfellar-closing {
    font-weight: 600;
    color: var(--color-navy);
    margin-top: 44px;
    font-size: 1.05rem;
    position: relative;
    display: inline-block;
    padding-top: 20px;
}

    .rockfellar-closing::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background: var(--color-gold);
        border-radius: 2px;
    }

.rf-premium-industries {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px;
    font-family: 'Poppins',sans-serif;
}

.rf-premium-head {
    text-align: center;
    margin-bottom: 50px;
}

    .rf-premium-head span {
        color: #c6922d;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 3px;
    }

    .rf-premium-head h2 {
        font-size: 46px;
        color: #0d2340;
        font-weight: 800;
        margin: 14px 0 10px;
    }

    .rf-premium-head p {
        color: #666;
        font-size: 17px;
    }

.rf-premium-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 26px;
}

/* Card */
.rf-premium-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.08);
    transition: all .35s ease;
    position: relative;
}

    .rf-premium-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,.15);
    }

/* Image */
.rf-premium-image-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
}

    .rf-premium-image-wrap img {
        width: 100%;
        height: 100%;
       /* object-fit: cover;*/
        transition: transform .5s ease;
    }

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

/* Dark overlay ONLY on image */
.rf-premium-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0);
    transition: background .35s ease;
}

.rf-premium-card:hover .rf-premium-dark {
    background: rgba(0,0,0,.28);
}

/* White angled content */
.rf-premium-content {
    position: relative;
    background: #fff;
    padding: 38px 24px 28px;
    text-align: center;
    z-index: 2;
}

    .rf-premium-content::before {
        content: "";
        position: absolute;
        top: -34px;
        left: 0;
        width: 100%;
        height: 70px;
        background: #fff;
        clip-path: polygon(0 58%,100% 0,100% 100%,0 100%);
    }

/* Icon */
.rf-premium-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #c6922d;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -62px auto 18px;
    position: relative;
    z-index: 3;
    border: 6px solid #fff;
    box-shadow: 0 8px 18px rgba(198,146,45,.35);
}

    .rf-premium-icon i {
        font-size: 24px;
    }

/* Text */
.rf-premium-content h3 {
    font-size: 22px;
    color: #0d2340;
    font-weight: 700;
    margin-bottom: 12px;
}

.rf-premium-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* Responsive */
@media(max-width:992px) {
    .rf-premium-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px) {

    .rf-premium-grid {
        grid-template-columns: 1fr;
    }

    .rf-premium-head h2 {
        font-size: 34px;
    }

    .rf-premium-image-wrap {
        height: 240px;
    }
}
/* Responsive */
@media (max-width: 900px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .industry-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .industry-card {
        padding: 22px 12px;
    }
}
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-around; /* use center if you want centered logo */
}

.footer-logo-only img {
    max-width: 260px; /* change size as needed */
    width: 100%;
    height: auto;
    display: block;
    margin-top: -50px;
}
.footer-logo-only1 img {
    max-width: 180px; /* change size as needed */
    width: 100%;
    height: auto;
    display: block;
    margin-top: -50px;
}
.rfFactorySwiper .swiper-wrapper {
    display: flex;
}

.rfFactorySwiper .swiper-slide {
    width: auto !important;
    flex-shrink: 0;
}
.rf-only-slider {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

.rf-working-swiper {
    width: 100%;
    height: 420px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(0,0,0,0.16);
}

    /* Force Swiper layout */
    .rf-working-swiper .swiper-wrapper {
        display: flex !important;
    }

    .rf-working-swiper .swiper-slide {
        min-width: 100% !important;
        width: 100% !important;
        height: 420px;
        flex-shrink: 0 !important;
    }

        .rf-working-swiper .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.rf-arrow-prev,
.rf-arrow-next {
    color: #fff !important;
}

.rf-dots .swiper-pagination-bullet {
    background: rgba(255,255,255,0.8);
    opacity: 1;
}

.rf-dots .swiper-pagination-bullet-active {
    background: #c6922d;
}

@media(max-width:768px) {
    .rf-working-swiper {
        height: 320px;
    }

        .rf-working-swiper .swiper-slide {
            height: 320px;
        }
}
/* ---------- PAGINATION DOTS ---------- */

/* Normal dots */
.rf-dots .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background: #fff7e3; /* light cream */
    opacity: 1;
    border: 2px solid #c6922d; /* gold border */
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

/* Active dot */
.rf-dots .swiper-pagination-bullet-active {
    width: 32px; /* pill shape */
    border-radius: 20px;
    background: #c6922d; /* gold */
    border-color: #c6922d;
}


/* ---------- ARROW BUTTONS ---------- */

.rf-arrow-prev,
.rf-arrow-next {
    width: 46px !important;
    height: 46px !important;
    border-radius: 50%;
    background: rgba(255,255,255,0.92); /* white glass effect */
    color: #c6922d !important; /* gold arrow */
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

    /* Arrow icon size */
    .rf-arrow-prev::after,
    .rf-arrow-next::after {
        font-size: 18px !important;
        font-weight: 700;
    }

    /* Hover effect */
    .rf-arrow-prev:hover,
    .rf-arrow-next:hover {
        background: #c6922d;
        color: #fff !important;
        transform: scale(1.08);
    }


/* Position arrows slightly inside */
.rf-arrow-prev {
    left: 14px !important;
}

.rf-arrow-next {
    right: 14px !important;
}



/*
------------------------------contact0------------------------------------*/

/* =========================
   RAVIDAS CONTACT SECTION
   ========================= */

.rv-contact-shell{
    padding:30px 20px;
    background:linear-gradient(135deg,#fffdf7 0%,#fff5dd 100%);
}

.rv-contact-grid{
    max-width:1200px;
    margin:0 auto;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:36px;
    align-items:stretch;
}

/* ---------- LEFT PANEL ---------- */

.rv-contact-info{
    background:linear-gradient(180deg,#f4d892 0%,#e6be5b 100%);
    border-radius:28px;
    padding:40px 32px;
    color:#1f1f1f;
    box-shadow:0 14px 32px rgba(0,0,0,0.10);
}

.rv-contact-tag{
    display:inline-block;
    padding:8px 16px;
    border-radius:999px;
    background:rgba(255,255,255,0.65);
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:18px;
}

.rv-contact-info h2{
    font-size:2rem;
    line-height:1.2;
    margin-bottom:16px;
}

.rv-contact-info p{
    color:#2f2f2f;
    line-height:1.7;
}

.rv-contact-item{
    display:flex;
    gap:16px;
    align-items:flex-start;
    padding:18px 0;
    border-bottom:1px solid rgba(0,0,0,0.08);
}

.rv-contact-item:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.rv-contact-icon{
    width:52px;
    height:52px;
    border-radius:16px;
    background:rgba(255,255,255,0.75);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    color:#8a5e12;
    font-size:1.1rem;
}

.rv-contact-item h4{
    margin:0 0 6px;
    font-size:1rem;
    color:#111;
}

/* ---------- RIGHT PANEL ---------- */

/* =========================
   MODERN RIGHT SIDE FORM
   ========================= */

.rv-modern-formbox {
    background: rgba(255,255,255,0.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(198,146,45,0.16);
    border-radius: 30px;
    padding: 42px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.rv-modern-formhead span {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #b8841f;
    background: #fff5dc;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.rv-modern-formhead h3 {
    font-size: 2rem;
    color: #111827;
    margin-bottom: 12px;
}

.rv-modern-formhead p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 28px;
}

.rv-modern-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Floating field */
.rv-modern-field {
    position: relative;
}

    .rv-modern-field input,
    .rv-modern-field textarea {
        width: 100%;
        padding: 18px 18px 18px 18px;
        border: 1px solid #ead7a4;
        border-radius: 18px;
        background: #fffdf8;
        font-size: 1rem;
        color: #1f2937;
        outline: none;
        transition: all 0.3s ease;
        box-sizing: border-box;
    }

    .rv-modern-field textarea {
        min-height: 150px;
        resize: vertical;
    }

    /* Floating label */
    .rv-modern-field label {
        position: absolute;
        left: 18px;
        top: 18px;
        color: #9ca3af;
        font-size: 0.95rem;
        pointer-events: none;
        transition: all 0.25s ease;
        background: #fffdf8;
        padding: 0 6px;
    }

    /* Focus */
    .rv-modern-field input:focus,
    .rv-modern-field textarea:focus {
        border-color: #c6922d;
        background: #ffffff;
        box-shadow: 0 0 0 4px rgba(198,146,45,0.12);
    }

        .rv-modern-field input:focus + label,
        .rv-modern-field input:not(:placeholder-shown) + label,
        .rv-modern-field textarea:focus + label,
        .rv-modern-field textarea:not(:placeholder-shown) + label {
            top: -10px;
            left: 14px;
            font-size: 0.78rem;
            color: #b8841f;
            font-weight: 600;
        }
/* Button */
.rv-modern-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: 18px;
    padding: 18px 26px;
    background: linear-gradient(135deg,#c6922d 0%,#e0b14d 100%);
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 12px 24px rgba(198,146,45,0.28);
}

    .rv-modern-submit i {
        font-size: 1rem;
    }

    .rv-modern-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 30px rgba(198,146,45,0.34);
    }

/* Mobile */
@media(max-width:576px) {
    .rv-modern-formbox {
        padding: 28px 22px;
    }

    .rv-modern-formhead h3 {
        font-size: 1.7rem;
    }
}

.about-image-grid {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: 520px;
    margin: auto;
}

    .about-image-grid img {
        position: absolute;
        object-fit: cover;
        border-radius: 22px;
        box-shadow: 0 12px 30px rgba(0,0,0,0.18);
        transition: transform 0.4s ease;
    }

        .about-image-grid img:hover {
            transform: translateY(-6px);
        }

    /* Main vertical image */
    .about-image-grid .img-main {
        width: 260px;
        height: 420px;
        left: 130px;
        top: 50px;
        z-index: 2;
    }

    /* Top horizontal image */
    .about-image-grid .img-top {
        width: 220px;
        height: 140px;
        left: 0;
        top: 0;
        z-index: 3;
    }

    /* Bottom horizontal image */
    .about-image-grid .img-bottom {
        width: 220px;
        height: 140px;
        right: 0;
        bottom: 0;
        z-index: 1;
    }

@media (max-width: 768px) {
    .about-image-grid {
        max-width: 360px;
        height: 420px;
    }

        .about-image-grid .img-main {
            width: 180px;
            height: 300px;
            left: 90px;
            top: 60px;
        }

        .about-image-grid .img-top,
        .about-image-grid .img-bottom {
            width: 150px;
            height: 100px;
        }
}
.about-image-column {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 420px;
    margin: auto;
}

.about-box {
    border: 1px solid #777;
    padding: 18px;
    background: #f5f5f5;
}

    .about-box img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: contain;
    }
.about-image-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 100%;
    max-width: 430px;
    margin: auto;
    justify-content: center;
}

    .about-image-grid img {
        width: 100%;
        display: block;
        object-fit: contain;
        background: #f5f5f5;
        border: 1px solid #777;
        padding: 18px;
        box-sizing: border-box;
        border-radius: 0;
        box-shadow: none;
        position: static;
    }

    /* remove old positioning */
    .about-image-grid .img-main,
    .about-image-grid .img-top,
    .about-image-grid .img-bottom {
        position: static;
        width: 100%;
        height: auto;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        z-index: auto;
    }
.about-image-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    width: 100%;
    max-width: 430px;
    margin: auto;
}

    .about-image-grid img {
        width: 100%;
        display: block;
        object-fit: contain;
        background: #f5f5f5;
        border: 1px solid #777;
        padding: 18px;
        box-sizing: border-box;
        transition: transform 0.45s ease, filter 0.45s ease;
    }

        /* Only this hover effect */
        .about-image-grid img:hover {
            transform: scale(1.08) rotate(1deg);
            filter: saturate(1.08) contrast(1.04);
        }