:root {
    --cream: #FAF7F2;
    --cream2: #F3EDE3;
    --warm-white: #FFFDF9;
    --gold: #B8860B;
    --gold-light: #D4A017;
    --gold-pale: #F5E6C0;
    --teal: #1B8B8B;
    --teal-light: #2AADAD;
    --teal-pale: #E0F4F4;
    --charcoal: #1C1C1C;
    --dark: #2D2D2D;
    --mid: #5A5A5A;
    --muted: #8A8A8A;
    --border: #E8E0D0;
    --shadow: rgba(28, 28, 28, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--charcoal);
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    background: #FAF7F2;
    margin: 0;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #f7f7f7;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-logo img {
    height: 73px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--mid);
    font-size: 0.83rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--teal);
    color: #fff;
    padding: 0.6rem 1.6rem;
    font-size: 0.83rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(27, 139, 139, 0.25);
}

.nav-cta:hover {
    background: var(--teal-light);
    transform: translateY(-1px);
}

/* HERO */
.hero {
    min-height: 100vh;
    padding-top: 72px;
    display: flex;
    align-items: center;
    background: var(--warm-white);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(184, 134, 11, 0.12) 1px, transparent 0);
    background-size: 32px 32px;
    opacity: 0.6;
}

.hero-accent {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(27, 139, 139, 0.07) 0%, transparent 70%);
}

.hero-accent2 {
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.06) 0%, transparent 70%);
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--teal-pale);
    border: 1px solid rgba(27, 139, 139, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.hero-eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 2s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0.3
    }
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.08;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.hero h1 .hl {
    color: var(--teal);
}

.hero h1 .hl2 {
    color: var(--gold);
    font-style: italic;
}

.hero-desc {
    font-size: 1rem;
    color: var(--mid);
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-main {
    background: var(--gold);
    color: #fff;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(184, 134, 11, 0.3);
}

.btn-main:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.4);
}

.btn-sec {
    background: transparent;
    color: var(--teal);
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 2px solid var(--teal);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    border-radius: 2px;
    transition: all 0.3s;
}

.btn-sec:hover {
    background: var(--teal);
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
}

.h-stat {
    border-left: 3px solid var(--gold-pale);
    padding-left: 1rem;
}

.h-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
}

.h-stat-label {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
}

.hero-visual {
    position: relative;
}

.hero-img-wrap {
    position: relative;
    background: var(--cream2);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--shadow), 0 4px 16px rgba(0, 0, 0, 0.06);
}

.hero-img-wrap img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.hero-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--warm-white);
    border: 1px solid var(--border);
    padding: 1.2rem 1.5rem;
    border-radius: 4px;
    box-shadow: 0 8px 32px var(--shadow);
}

.hero-badge-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-badge-text {
    font-size: 0.72rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* SECTION */
section {
    padding: 7rem 5% !important;
    max-width: none !important;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.s-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.7rem;
    display: block;
}

.s-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

.s-title em {
    color: var(--gold);
    font-style: italic;
}

.s-rule {
    width: 48px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--teal));
    margin-bottom: 2.5rem;
    border-radius: 2px;
}

/* MARQUEE STRIP */
.marquee-strip {
    background: var(--charcoal);
    color: #fff;
    padding: 1rem 0;
    overflow: hidden;
}

.marquee-inner {
    display: flex;
    gap: 0;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    width: max-content;
}

@keyframes marquee {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.marquee-item {
    padding: 0 2.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.marquee-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

/* PRODUCTS */
.products {
    background: var(--cream2);
}

.products-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
}

.products-desc {
    color: var(--mid);
    line-height: 1.75;
    font-size: 0.95rem;
    font-weight: 300;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.35s, box-shadow 0.35s;
    cursor: default;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.product-card:hover .product-img {
    transform: scale(1.04);
}

.product-body {
    padding: 1.5rem 1.8rem 1.8rem;
}

.product-origin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-pale);
    padding: 0.25rem 0.7rem;
    border-radius: 30px;
    margin-bottom: 0.8rem;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.product-desc {
    font-size: 0.83rem;
    color: var(--mid);
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.product-specs {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.spec-item {
    font-size: 0.72rem;
    color: var(--muted);
}

.spec-val {
    font-weight: 700;
    color: var(--charcoal);
    display: block;
    font-size: 0.82rem;
}

.product-card-wide {
    grid-column: span 2;
}

/* ABOUT */
.about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-img-stack {
    position: relative;
    padding: 1.5rem 1.5rem 1.5rem 0;
}

.about-img-main {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    display: block;
    object-fit: cover;
    height: 420px;
    border: 1px solid var(--border);
}

.about-img-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 180px;
    height: 180px;
    border-radius: 4px;
    background: var(--gold-pale);
    border: 4px solid var(--warm-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px var(--shadow);
    text-align: center;
    padding: 1rem;
}

.accent-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.accent-text {
    font-size: 0.7rem;
    color: var(--mid);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.3rem;
}

.about-strengths {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.str-card {
    padding: 1.2rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    background: var(--cream);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.str-card:hover {
    border-color: var(--teal);
    box-shadow: 0 4px 16px rgba(27, 139, 139, 0.08);
}

.str-icon {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.str-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.str-text {
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.5;
}

/* TEAM */
.team {
    background: var(--cream2);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.team-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--shadow);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--gold), var(--teal));
}

.team-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
}

.team-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

.team-role {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.85rem;
    color: var(--mid);
    line-height: 1.7;
}

.team-exp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1.2rem;
    background: var(--gold-pale);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
}

/* INDUSTRIES */
.industries {
    background: var(--warm-white);
}

.ind-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: start;
}

.ind-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 2rem;
}

.ind-chip {
    padding: 0.55rem 1.1rem;
    background: var(--cream2);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--dark);
    border-radius: 2px;
    transition: all 0.25s;
    cursor: default;
}

.ind-chip:hover {
    background: var(--teal-pale);
    border-color: var(--teal);
    color: var(--teal);
}

.port-block {
    background: var(--cream2);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
}

.port-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
}

.port-group {
    margin-bottom: 1.5rem;
}

.port-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.port-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.port-list {
    font-size: 0.83rem;
    color: var(--mid);
    line-height: 1.8;
}

/* LOGISTICS */
.logistics {
    background: var(--charcoal);
    color: #fff;
}

.logistics .s-eyebrow {
    color: var(--teal-light);
}

.logistics .s-title {
    color: #fff;
}

.logistics-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.log-cards {
    display: grid;
    gap: 1.2rem;
}

.log-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 1.5rem;
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    transition: background 0.3s, border-color 0.3s;
}

.log-card:hover {
    background: rgba(27, 139, 139, 0.1);
    border-color: rgba(42, 173, 173, 0.3);
}

.log-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(184, 134, 11, 0.25);
    line-height: 1;
    flex-shrink: 0;
}

.log-title {
    font-size: 0.92rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.3rem;
}

.log-text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

.model-section {
    margin-top: 0;
}

.model-title-big {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.1;
}

.model-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.model-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.model-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 1.8rem;
    position: relative;
}

.model-card.gold-border {
    border-color: rgba(184, 134, 11, 0.35);
    background: rgba(184, 134, 11, 0.05);
}

.model-card.teal-border {
    border-color: rgba(42, 173, 173, 0.35);
    background: rgba(42, 173, 173, 0.05);
}

.mc-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.6rem;
}

.mc-label.t {
    color: var(--teal-light);
}

.mc-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.mc-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* CONTACT */
.contact {
    background: var(--cream2);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 1rem;
}

.ci-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ci-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 4px;
    background: var(--teal-pale);
    border: 1px solid rgba(27, 139, 139, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.ci-label {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.25rem;
}

.ci-value {
    font-size: 0.9rem;
    color: var(--charcoal);
    line-height: 1.5;
    font-weight: 500;
}

.ci-sub {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.2rem;
}

.gstin-badge {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--gold-pale);
    border: 1px solid rgba(184, 134, 11, 0.3);
    padding: 0.8rem 1.3rem;
    border-radius: 4px;
}

.gstin-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.gstin-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: 0.08em;
}

.contact-form-wrap {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: 0 8px 40px var(--shadow);
}

.form-head {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
}

.form-sub {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.fg {
    margin-bottom: 1.1rem;
}

.fg label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 0.4rem;
}

.fg input,
.fg select,
.fg textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--cream);
    border: 1.5px solid var(--border);
    color: var(--charcoal);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
    border-color: var(--teal);
}

.fg select option {
    background: var(--cream);
}

.fg textarea {
    resize: vertical;
    min-height: 90px;
}

.fg-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    width: 100%;
    background: var(--teal);
    color: #fff;
    padding: 0.95rem;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    border-radius: 2px;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(27, 139, 139, 0.25);
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: var(--teal-light);
    transform: translateY(-1px);
}

/* FOOTER */


footer {
    background-color: #1a1a1a;
    /* Dark industrial charcoal */
    color: #e0e0e0;
    padding: 60px 20px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    /* Creates 4 columns on desktop */
    grid-template-columns: 1.5fr 1.5fr 1fr 1fr;
    gap: 40px;
}

/* Logo Styling */
.footer-logo img {
    max-width: 225px;
    height: auto;
    margin-bottom: 20px;
}

/* Typography & Layout */
.footer-inner h4 {
    color: #ffb400;
    /* Industrial Amber accent */
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-inner div {
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Link Styling */
.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffb400;
}

/* Product Header Link */
.footer-links>a {
    font-weight: bold;
    display: block;
    margin-bottom: 15px;
    color: #ffb400;
}

/* Copyright Section */
.footer-copy {
    grid-column: 1 / -1;
    /* Spans all columns */
    text-align: center;
    border-top: 1px solid #333;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #777;
}

/* ANIMATIONS */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-inner>* {
    animation: fadeUp 0.9s ease forwards;
    opacity: 0;
}

.hero-inner>*:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-inner>*:nth-child(2) {
    animation-delay: 0.35s;
}

/* RESPONSIVE */
@media(max-width:900px) {
    nav .nav-links {
        display: none;
    }

    .hero-inner,
    .about-grid,
    .products-intro,
    .team-grid,
    .ind-layout,
    .logistics-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card-wide {
        grid-column: span 1;
    }

    .model-cards {
        grid-template-columns: 1fr;
    }

    .fg-row {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-wrap: wrap;
    }
}

section {
    padding: 60px 5%;
    max-width: 1100px;
    margin: auto;
}

h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.line {
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #B8860B, #1B8B8B);
    margin-bottom: 20px;
}

p {
    color: #555;
    line-height: 1.7;
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.card {
    background: #fff;
    padding: 20px;
    border: 1px solid #eee;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chip {
    background: #eee;
    padding: 8px 12px;
    font-size: 13px;
}

@media(max-width:768px) {
    .grid {
        grid-template-columns: 1fr
    }
}

/* NEW MODERN FLOW SECTION */
.about-flow {
    margin-top: 60px;
}

.about-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
}

.about-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.about-content h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.about-content p {
    margin-bottom: 20px;
}

/* FLOW DESIGN */
.flow {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.flow-step {
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
    text-align: center;
    width: 150px;
    transition: 0.3s;
}

.flow-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 30px;
    margin-bottom: 5px;
}

.arrow {
    font-size: 22px;
    color: #B8860B;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .about-flex {
        grid-template-columns: 1fr;
    }

    .flow {
        justify-content: center;
    }
}

/* GLOBAL 2-COLUMN LAYOUT */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 30px;
}

.two-col.reverse {
    direction: rtl;
}

.two-col.reverse>* {
    direction: ltr;
}

.two-col img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media(max-width:768px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.card {
    margin: 20px;
}

/* BREADCRUMB BANNER */
.breadcrumb-banner {
    height: 260px;
    background: url('../img/breadcrump-3.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 72px;
    /* navbar height */
}

.breadcrumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    /* opacity 0.5 */
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.breadcrumb-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    color: #ddd;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 6px;
    color: #bbb;
}

.industry-list {
    margin-top: 10px;
    padding-left: 18px;
}

.industry-list li {
    margin-bottom: 6px;
    color: #444;
    font-size: 0.9rem;
}

.icon {
    font-size: 28px;
    margin-bottom: 8px;
    color: #B8860B;
}

.arrow i {
    font-size: 20px;
    color: #B8860B;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.product-image img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.product-origin {
    font-size: 0.75rem;
    color: var(--teal);
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.product-text {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.product-features div {
    font-size: 0.85rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-features i {
    color: #1B8B8B;
}

/* MOBILE */
@media(max-width:768px) {
    .product-layout {
        grid-template-columns: 1fr;
    }

    .product-image img {
        height: 250px;
    }
}


.dropdown {
    position: relative;
}

/* hidden menu */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 180px;
    list-style: none;
    padding: 10px 0;
    border-radius: 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
}

/* show on hover */
.dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
}

.dropdown-menu-custom li a:hover {
    background: #f5f5f5;
}


#topBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;

    background: #ffb400;
    color: #000;
    border: none;
    outline: none;

    width: 45px;
    height: 45px;
    border-radius: 50%;

    font-size: 18px;
    cursor: pointer;

    display: none;
    /* initially hidden */

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

#topBtn:hover {
    background: #000;
    color: #ffb400;
    transform: translateY(-5px);
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    /* left side (top button right me hai) */
    z-index: 999;

    background: #25D366;
    color: #fff;

    width: 50px;
    height: 50px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 24px;
    text-decoration: none;

    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background: #000;
    color: #25D366;
    transform: scale(1.1);
}


#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    /* ya white bhi rakh sakta hai */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Spinner */
.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #444;
    border-top: 5px solid #ffb400;
    /* theme color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}