/* ===== Responsive base rules — ADDED to improve mobile behavior (non-destructive) ===== */
:root {
    --responsive-padding: 1rem;
}

/* Make images and videos scale */
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Flexible container pattern */
.container {
    width: 100%;
    max-width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--responsive-padding);
    box-sizing: border-box;
}

/* Make general elements box-sizing friendly */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Ensure common full-width helpers */
.w-100 {
    width: 100% !important;
    max-width: 100% !important;
}

/* Navbar responsive helper - final mobile behaviour handled via media query appended later */

/* ====================================
   Shama Fabrication Works - Light Theme (Blue Palette)
   ==================================== */

/* ------------------------------
   Global Reset & Base Styles
------------------------------ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', sans-serif;
}

html,
body {
    background-color: #dde5ff;
    color: #222;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ------------------------------
   Color Variables
------------------------------ */
:root {
    --brand-dark: #3D3F94;
    --brand-mid: #00AFF0;
    --brand-light: #C9E4F5;
    --text-dark: #222;
    --text-light: #555;
    --bg-main: #FFFFFF;
    --bg-alt: #F8FBFD;
    --border-light: #E0E0E0;
    --shadow-soft: rgba(0, 0, 0, 0.08);
}

/* ------------------------------
   Navbar
------------------------------ */
.navbar {
    background: var(--brand-dark);
    color: #fff;
    padding: 0.8rem 1.8rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 6px var(--shadow-soft);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.brand-logo {
    width: 40px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-links a {
    color: #fff;
    transition: opacity 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.85;
    color: var(--brand-light);
}

/* ------------------------------
   Hero Section
------------------------------ */
.hero {
    background: var(--bg-alt);
    padding: 6rem 1rem;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

.btn-primary {
    background: var(--brand-mid);
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 0.8rem 1.6rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.1s ease;
}

.btn-primary:hover {
    background: var(--brand-dark);
    transform: translateY(-1px);
}

/* ------------------------------
   Section Layouts
------------------------------ */
section {
    padding: 4rem 1rem;
}

.container {
    max-width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

h2 {
    color: var(--brand-dark);
    text-align: center;
    font-size: 2rem;
    margin-bottom: 0.8rem;
    position: relative;
}

h2::after {
    content: "";
    display: block;
    width: 100%;
    max-width: 60px;
    height: 3px;
    background: var(--brand-mid);
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

p {
    color: var(--text-light);
}

/* ------------------------------
   Product Grid
------------------------------ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow-soft);
    overflow: hidden;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px var(--shadow-soft);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f0f0f0;
    filter: blur(10px);
    transition: filter 0.4s ease, opacity 0.4s ease;
}

.product-card img.loaded {
    filter: blur(0);
    opacity: 1;
}

.product-info {
    padding: 1rem;
}

.product-info h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.4rem;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ------------------------------
   WHY CHOOSE US SECTION
------------------------------ */
.why-section {
    background: var(--brand-light);
    padding: 6rem 1rem;
    text-align: center;
}

.why-intro {
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
}

.why-card {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    box-shadow: 0 3px 10px var(--shadow-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px var(--shadow-soft);
}

.why-card i {
    font-size: 2.2rem;
    color: var(--brand-mid);
    margin-bottom: 1rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.why-card:hover i {
    transform: scale(1.15);
    color: var(--brand-dark);
}

.why-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.why-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ------------------------------
   ABOUT US SECTION
------------------------------ */
.about-section {
    background: var(--bg-main);
    padding: 6rem 1rem;
    color: var(--text-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

.about-text {
    text-align: left;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--brand-dark);
    font-weight: 600;
}

.about-text .btn-primary {
    display: inline-block;
    margin-top: 1rem;
}

.about-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: center;
    background: var(--brand-light);
    border-radius: 14px;
    padding: 2.5rem;
    box-shadow: 0 6px 18px var(--shadow-soft);
    position: relative;
}

.about-icons::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: var(--border-light);
}

.about-icons div {
    text-align: center;
    color: var(--brand-mid);
    transition: transform 0.3s ease, color 0.3s ease;
}

.about-icons div:hover {
    transform: translateY(-6px);
    color: var(--brand-dark);
}

.about-icons i {
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.about-icons p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 0.3rem;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-icons::before {
        display: none;
    }

    .about-icons {
        margin-top: 2rem;
    }
}

/* ------------------------------
   CONTACT SECTION
------------------------------ */
.contact-section {
    background: var(--brand-light);
    padding: 5rem 1rem;
}

.contact-section h2 {
    text-align: center;
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

.contact-sub {
    text-align: center;
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    align-items: start;
    max-width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-details {
    background: #fff;
    border-radius: 8px;
    border: 1px solid var(--border-light);
    box-shadow: 0 3px 8px var(--shadow-soft);
    padding: 2rem;
    color: var(--text-dark);
}

.contact-details h3 {
    color: var(--brand-dark);
    margin-bottom: 0.8rem;
}

.contact-details p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 3px 10px var(--shadow-soft);
}

/* ------------------------------
   PROCESS STRIP
------------------------------ */
.process-strip {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2.5rem 1rem;
    background: var(--brand-light);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.process-strip div {
    text-align: center;
    color: var(--brand-mid);
    transition: transform 0.3s ease, color 0.3s ease;
}

.process-strip i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.process-strip div:hover {
    transform: translateY(-6px);
    color: var(--brand-dark);
}

/* ------------------------------
   Footer
------------------------------ */
.footer {
    background: var(--brand-dark);
    color: #f5f7fa;
    padding: 2rem 1rem;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer a {
    color: var(--brand-mid);
    text-decoration: none;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    color: #e4e8ef;
    /* ✅ lighter, readable text */
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    margin-top: 0.5rem;
    opacity: 0.95;
}

/* ------------------------------
   Utilities & Animations
------------------------------ */
.center {
    text-align: center;
    margin-top: 1.5rem;
}

.fade-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.no-products {
    text-align: center;
    color: #777;
    padding: 2rem 0;
}

/* ------------------------------
   ABOUT HERO (Video Version)
------------------------------ */
.about-hero {
    position: relative;
    height: 400px;
    overflow: hidden;
    color: #fff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.45);
    z-index: 1;
}

.about-overlay {
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    max-width: 100%;
    max-width: 700px;
    text-align: center;
}

.about-overlay h2 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.about-overlay p {
    color: #eaeaea;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-overlay .btn-primary {
    background: var(--brand-mid);
    color: #fff;
    font-weight: 600;
    border-radius: 4px;
}

.about-overlay .btn-primary:hover {
    background: var(--brand-dark);
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .about-hero {
        height: 320px;
    }

    .about-overlay h2 {
        font-size: 1.6rem;
    }

    .about-overlay p {
        font-size: 0.95rem;
    }
}


/* ------------------------------
   Product Section Intro
------------------------------ */
.catalog-section p:first-of-type {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 auto 1rem auto;
    max-width: 100%;
    max-width: 700px;
    line-height: 1.7;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.catalog-section p:first-of-type:hover {
    color: var(--brand-mid);
}


/* ------------------------------
   Contact Section Alignment Fix
------------------------------ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.contact-details,
.contact-map {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.contact-map iframe {
    flex-grow: 1;
    border-radius: 8px;
    height: 100%;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-map iframe {
        height: 280px;
    }
}


/* ====================================
   STRENGTH SECTION (Process + Why Combined)
==================================== */
.strength-section {
    position: relative;
    background: linear-gradient(180deg, #3D3F94 0%, #2C2D77 100%);
    color: #fff;
    text-align: center;
    padding: 8rem 1rem 6rem;
    overflow: hidden;
    z-index: 1;
}

/* --- Top Wave Overlapping Hero --- */
.wave-top {
    position: absolute;
    top: -140px;
    /* pull further up to overlap hero */
    left: 0;
    width: 100%;
    height: 220px;
    /* more height to show curvature */
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: top;
    z-index: 5;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'><path fill='%2300aff0' fill-opacity='1' d='M0,96L60,106.7C120,117,240,139,360,165.3C480,192,600,224,720,224C840,224,960,192,1080,165.3C1200,139,1320,117,1380,106.7L1440,96V0H1380C1320,0,1200,0,1080,0C960,0,840,0,720,0C600,0,480,0,360,0C240,0,120,0,60,0H0Z'></path></svg>");
}


/* --- Process Icons --- */
.process-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    max-width: 100%;
    max-width: 900px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 3;
}

.process-item {
    text-align: center;
    color: var(--brand-light);
    transition: transform 0.3s ease, color 0.3s ease;
}

.process-item i {
    font-size: 2.5rem;
    color: var(--brand-mid);
    margin-bottom: 0.6rem;
    display: block;
    transition: transform 0.3s ease, color 0.3s ease;
}

.process-item:hover i {
    color: #fff;
    transform: scale(1.15);
}

.process-item p {
    color: var(--brand-light);
    font-size: 1rem;
    font-weight: 500;
}

/* --- Why Choose Us --- */
.strength-section h2 {
    color: #fff;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 3;
}

.why-intro {
    color: #EAEAEA;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    z-index: 3;
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    z-index: 3;
    position: relative;
}

.why-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(4px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.why-card i {
    font-size: 2.2rem;
    color: var(--brand-mid);
    margin-bottom: 1rem;
}

.why-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.why-card p {
    color: #E0E0E0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .process-container {
        gap: 2rem;
    }

    .wave-top {
        height: 100px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }
}

.hero {
    position: relative;
    background: var(--bg-alt);
    padding: 6rem 1rem 10rem;
    /* extra bottom space for the wave overlap */
    text-align: center;
    overflow: hidden;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.8rem;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    /* hides any gap */
    left: 0;
    width: 100%;
    height: 180px;
    display: block;
    z-index: 2;

}

/* --- Bottom Wave Transition from Strength → Products --- */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 180px;
    display: block;
    z-index: 2;
}

.hero {
    position: relative;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8ecff 100%);
    text-align: center;
    padding: 8rem 1rem 10rem;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1e1e4f;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #3D3F94, #00AFF0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero .btn-primary {
    background: #00AFF0;
    padding: 1rem 2.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 175, 240, 0.3);
    transition: all 0.3s ease;
}

.hero .btn-primary:hover {
    background: #3D3F94;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(61, 63, 148, 0.4);
}

/* Glow animation behind text */
.hero-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 175, 240, 0.4) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
    filter: blur(80px);
    animation: glowPulse 6s infinite ease-in-out;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Animated waves */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.layer1 {
    animation: waveMotion 12s infinite linear;
}

.layer2 {
    opacity: 0.7;
    animation: waveMotion 18s infinite linear reverse;
}

@keyframes waveMotion {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50px);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-glow {
        width: 100%;
        max-width: 250px;
        height: 250px;
    }
}


/* ===== Navbar responsive rules (added) ===== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
}

.navbar .menu,
.navbar .nav-links,
.navbar ul {
    display: flex;
    gap: 1rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        z-index: 5;
    }

    .navbar .menu,
    .navbar .nav-links,
    .navbar ul {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0.75rem 0;
        background: transparent;
    }

    .navbar.open .menu,
    .navbar.open .nav-links,
    .navbar.open ul {
        display: flex;
    }

    .navbar {
        position: relative;
    }

    .navbar .logo {
        z-index: 3;
    }
}



/* === Compact Bank Details & Totals — Keep Original Font Size === */

/* Bank Details — same font, reduced vertical spacing */
.bank-details {
    padding: 4px 6px;
    /* less padding */
    font-size: 13px;
    /* keep same font size */
    line-height: 1.2;
    /* tighter vertical spacing */
    border-radius: 4px;
    background: #fbfeff;
}

.bank-details h4 {
    font-size: 14px;
    /* same as before */
    margin-bottom: 3px;
    /* reduced gap below heading */
}

.bank-details p {
    margin: 1px 0;
    /* much smaller margin between lines */
    line-height: 1.2;
    /* reduced spacing but readable */
}

/* Amount in Words — same size, less top gap */
.amount-words {
    font-size: 13px;
    line-height: 1.25;
    padding-top: 3px;
    margin-top: 2px;
    border-top: 1px dashed #ccc;
}

/* Totals section — same font, tighter padding */
.inv-table tfoot td {
    padding: 4px 6px;
    /* reduced cell padding only */
    font-size: 13px;
    /* unchanged */
    line-height: 1.2;
    /* slightly tighter rows */
    vertical-align: middle;
}

.inv-table .highlight td {
    background: #fff8f0;
    padding: 5px 6px;
    font-weight: 700;
}

/* Keep numeric columns aligned neatly */
.inv-table td.right {
    padding-right: 6px;
}

/* Signature area closer to totals */
.signature-row {
    margin-top: 14px;
    /* slightly reduced spacing */
}

/* === Print / Mobile Consistency === */
@media print,
(max-width: 900px) {

    .bank-details,
    .amount-words,
    .inv-table tfoot td {
        line-height: 1.2;
        padding: 4px 5px;
        font-size: 13px;
    }
}

/* === Compact Totals (tfoot) Only === */
.inv-table tfoot tr td {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    line-height: 1.1 !important;
}

/* Specifically for the first left-side cell (bank + amount) */
.inv-table tfoot tr:first-child td[rowspan] {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

/* Optional: remove inline heights if any */
.inv-table tfoot tr[style*="height"] {
    height: auto !important;
}

/* === Brand Typography System === */

/* Import these fonts once (already in your HTML head) */
/* Poppins → body text | Playfair Display → headings */

/* html, body {
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  color: #111;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6,
.brand-title,
.company-title,
.section-title,
.hero h1,
.hero h2,
.navbar .logo span {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  color: var(--brand-accent, #c4161c);
  letter-spacing: 0.3px;
}

p, label, input, textarea, select, td, th, button, li, span {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  color: #222;
}

h1, h2 {
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

button, .btn, .nav-links a {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  text-transform: none;
} */



.hero-line {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #1c1c1c;
    text-align: center;
    max-width: 900px;
    line-height: 1.6;
}

.hero-line span {
    display: inline-block;
    color: #1c1c1c;
    animation: liftWave 0.8s ease-in-out;
    animation-play-state: paused;
    /* initially paused, JS will trigger */
}

/* Wave motion (quick lift and return) */
@keyframes liftWave {

    0%,
    100% {
        transform: translateY(0);
        color: #1c1c1c;
    }

    50% {
        transform: translateY(-4px);
        color: #0078c8;
    }
}