/* ===========================================================================================================================
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                  Main.css
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
============================================================================================================================== */




:root {
    --ha-h: 760px;
    --ha-max: 1300px;
    --ha-accent-a: #00D1C1;
    --ha-accent-b: #2B8AFF;
    --ha-ink: #052826;
    --ha-ease: cubic-bezier(.16,.9,.3,1);
    --ha-radius: 14px;
}
/* shell */

.ha-hero {
    position: relative;
    min-height: var(--ha-h);
    width: 100% !important;
    overflow: hidden;
    background: linear-gradient(180deg,#fbfeff,#f5fbfb);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    color: var(--ha-ink);
}
/* canvas layers */

.ha-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}


.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 48%;
    filter: none;
    transform: scale(1.02);
    will-change: transform;
    filter: contrast(0.96) saturate(0.96) brightness(0.72);
}

.hero-loaded .hero-img {
    filter: contrast(0.96) saturate(0.96) brightness(0.72);
    transition: filter 600ms ease;
}

.ha-matrix {
    position: absolute;
    left: 0;
    right: 0;
    top: 8%;
    height: 22%;
    z-index: 1;
    mix-blend-mode: screen;
    pointer-events: none;
    opacity: 0.95;
}

.ha-grain {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: radial-gradient(circle at 8% 18%, rgba(0,0,0,0.03) 0 1px, transparent 2px), radial-gradient(circle at 82% 72%, rgba(255,255,255,0.02) 0 1px, transparent 2px);
    mix-blend-mode: overlay;
    opacity: 0.06;
    filter: blur(2px);
    pointer-events: none;
}
/* stage layout */

.ha-stage {
    position: relative;
    z-index: 2;
    max-width: var(--ha-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: center;
    padding: clamp(20px,4vw,64px);
    box-sizing: border-box;
}
/* alloy fold group (3D plates) */

.ha-alloy {
    width: 100%;
    perspective: 1200px;
    display: grid;
    grid-template-rows: auto 10px auto;
    gap: 0;
    align-items: start;
    transform-style: preserve-3d;
}

.ha-plate {
    border-radius: calc(var(--ha-radius));
    padding: clamp(18px,3.6vw,36px);
    margin-top: 50px;
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(246,248,250,0.99));
    box-shadow: 0 18px 56px rgba(6,18,20,0.06);
    border: 1px solid rgba(6,18,20,0.04);
    transition: transform 520ms var(--ha-ease), box-shadow 420ms var(--ha-ease);
    transform-origin: center;
}



.ha-plate--front {
    transform: translateZ(48px) rotateX(.6deg) rotateY(0deg);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease;
    border-left: 6px solid rgba(0,209,193,0.06);
    border-radius: calc(var(--ha-radius));
    /* Frosted glass effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px) saturate(180%);
    -webkit-backdrop-filter: blur(14px) saturate(180%);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 -2px 12px rgba(255,255,255,0.1);
}



/* gap (visual seam) */

.ha-gap {
    height: 10px;
    width: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.02), rgba(0,0,0,0.01));
    transform-origin: center;
}
/* back plate slightly recessed with metallic tint */

.ha-plate--back {
    transform: translateZ(-18px) rotateX(-2deg);
    background: linear-gradient(180deg, rgba(245,247,249,0.98), rgba(238,243,245,0.99));
    border-left: 6px solid rgba(43,138,138,0.04);
    margin-top: 0;
}
/* typography */

.ha-kicker {
    display: inline-block;
    color: rgba(255,255,255,0.7); /* softened white */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.82rem;
    margin-bottom: 8px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.ha-ctas {
    display: flex;
}

.ha-title {
    margin: 6px 0 10px 0;
    font-family: "Merriweather", Georgia, serif;
    font-weight: 900;
    font-size: clamp(2rem, 5.2vw, 3.6rem);
    line-height: 0.98;
    color: #FFFFFF;
    text-shadow: 0 0 4px rgba(255,255,255,0.4), 0 0 8px rgba(255,255,255,0.3), 0 2px 6px rgba(0,0,0,0.2);
    animation: glowPulse 3s ease-in-out infinite alternate;
}





.ha-lead {
    margin: 0;
    color: rgba(255,255,255,0.85); /* light text for readability */
    max-width: 64ch;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0,0,0,0.15);
}
/* CTAs */

.ha-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: linear-gradient(135deg, #002B43, #004F6E);
    color: #EAFBFF;
    border-radius: 18px;
    padding: 40px 20px;
    backdrop-filter: blur(12px) saturate(150%);
    -webkit-backdrop-filter: blur(12px) saturate(150%);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.05);
    color: #f7f7f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .ha-stats:hover {
        transform: scale(1.02);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255,255,255,0.1);
    }

.ha-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 4px #ffffff, 0 0 8px #333333;
    animation: subtleGlow 3s ease-in-out infinite alternate;
}

.ha-stat-label {
    font-size: 1rem;
    letter-spacing: 0.5px;
    color: #ccc;
}








.ha-side {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-self: end;
    align-items: end;
}

.ha-card {
    width: 240px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
    text-align: center;
    font-size: 1.2rem;
    background: rgba(255,255,255,0.08); /* frosted glass effect */
    background: linear-gradient(135deg, #002B43, #004F6E);
    color: #EAFBFF;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4), inset 0 0 8px rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    text-decoration: none;
}

    .ha-card:hover {
        transform: scale(1.05) translateY(-8px) !important;
        filter: brightness(1.06);
        box-shadow: 12px 12px 26px rgba(157, 171, 186, 0.6), -12px -12px 26px rgba(255, 255, 255, 0.95), 0 16px 32px rgba(43,138,138,0.35) !important;
        text-decoration: none;
        color: #fff;
    }

.ha-card--metal {
    /*  border-left: 6px solid rgba(255,255,255,0.2);*/
}


.ha-card--soft {
    /*    border-left: 6px solid rgba(255,255,255,0.15);*/
}
/* hover & interactive lifts */

.ha-hero:hover .ha-layer--base {
    transform: scale(1.085) translateY(-8px);
    /*    filter: saturate(1.04) contrast(1.03);*/
}

.ha-hero:hover .ha-plate {
    transform: translateZ(64px);
    box-shadow: 0 44px 140px rgba(6,18,20,0.14);
}

.ha-hero:hover .ha-card {
    transform: translateY(-8px);
    box-shadow: 0 36px 120px rgba(6,18,20,0.12);
}
/* matrix wave subtle motion */

.ha-matrix__wave {
    transition: transform 640ms var(--ha-ease);
    transform-origin: center;
}
/* responsive: stack, focus image left on narrow screens */

@media (max-width:1000px) {
    .ha-stage {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* vertically center */
        gap: 18px;
        text-align: center;
        width: 100%;
        margin: 0 auto;
        padding-top: 60px;
    }

    .ha-side {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* ensures vertical centering inside */
        width: 100%;
    }

    .ha-alloy {
        order: 1;
        width: min(92%, 920px);
        margin: 0 auto;
    }

    .ha-card,
    .ha-card--metal {
        width: min(92%, 420px);
        text-align: center;
        margin: 0 auto;
    }

    .ha-layer--base {
        background-position: center center; /* center background for small screens */
    }

    .ha-title {
        font-size: clamp(1.6rem, 6.4vw, 2.6rem);
        text-align: center;
        margin: 0 auto 0.5em;
        line-height: 1.2;
    }

    .ha-lead {
        max-width: 90%;
        margin: 0 auto 1.2em;
        text-align: center;
    }

    .ha-plate--back {
        display: none;
    }
}


@media (max-width: 768px) {

    /* Hero full width & shorter */
    .ha-hero {
        width: 100vw; /* full viewport width */
        min-height: 480px;
        max-height: 620px;
        padding: 32px 16px;
        position: relative;
        overflow: hidden; /* prevent horizontal overflow */
        box-sizing: border-box;
    }

    /* Background layer */
    .ha-layer--base {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-position: center top !important;
        transform: scale(1.02);
    }

    /* Center the stage content */
    .ha-stage {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        width: 100% !important;
        max-width: 600px; /* constrain inner content */
        margin: 0 auto !important;
        gap: 16px;
        box-sizing: border-box;
    }

    /* Hide right-side / small sections */
    .ha-side,
    .ha-plate--back,
    .ha-matrix,
    .ha-grain {
        display: none !important;
    }

    /* Plates & alloy */
    .ha-alloy {
        width: 100% !important;
        max-width: 100%;
        margin: 0 auto !important;
        text-align: center !important;
        flex: none !important;
    }

    .ha-ctas {
        display: block;
    }

    .ha-plate--front {
        padding: 16px;
        transform: translateZ(12px);
        margin: 20px auto !important;
    }

    /* Titles & paragraphs */
    .ha-title,
    .ha-lead {
        text-align: center !important;
        margin: 0 auto 1em !important;
    }

    /* Stats block */
    .ha-stats {
        width: 100% !important;
        max-width: 480px !important;
        margin: 0 auto !important; /* CRITICAL: Ensure center alignment */
        flex-direction: column !important;
        text-align: center !important;
    }

    /* Cards */
    .ha-card {
        width: 100% !important;
        max-width: 420px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) { /* Reduce spacing + center hero */

    .ha-hero {
        padding: 22px 12px !important;
        text-align: center !important;
        min-height: 700px;
    }

    .ha-title {
        font-size: clamp(1.8rem, 8vw, 3.6rem);
    }

    .ha-lead {
        font-size: clamp(0.85rem, 4vw, 1.1rem);
    }

    /* Disable heavy layers */

    .ha-plate--front, .ha-layer, .ha-matrix, .ha-grain {
        animation: none !important;
        transform: none !important;
    }
}

@media (max-width: 380px) {
    .ha-hero {
        padding: 18px 10px !important;
        min-height: 620px;
    }

    .ha-title {
        font-size: clamp(1.6rem, 8vw, 2.8rem);
    }

    .ha-lead {
        font-size: 0.85rem !important;
    }

    .ha-plate--front,
    .ha-layer,
    .ha-matrix,
    .ha-grain {
        animation: none !important;
        transform: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ha-layer--base, .ha-matrix__wave, .ha-plate, .ha-card {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

@media (min-width:900px) {
    /* Floating glass animation */
    @keyframes floatGlass {
        0% {
            transform: translateZ(48px) rotateX(.6deg) translateY(0px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 -2px 12px rgba(255,255,255,0.1);
        }

        50% {
            transform: translateZ(48px) rotateX(.6deg) translateY(-4px);
            box-shadow: 0 16px 48px rgba(0,0,0,0.15), inset 0 -2px 14px rgba(255,255,255,0.12);
        }

        100% {
            transform: translateZ(48px) rotateX(.6deg) translateY(0px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 -2px 12px rgba(255,255,255,0.1);
        }
    }

    @keyframes subtleGlow {
        from {
            text-shadow: 0 0 6px #ffffff, 0 0 10px #333333;
        }

        to {
            text-shadow: 0 0 10px #ffffff, 0 0 20px #555555;
        }
    }

    /* Subtle pulsing glow */
    @keyframes glowPulse {
        0% {
            text-shadow: 0 0 4px rgba(255,255,255,0.3), 0 0 8px rgba(255,255,255,0.2), 0 2px 6px rgba(0,0,0,0.15);
        }

        50% {
            text-shadow: 0 0 6px rgba(255,255,255,0.45), 0 0 12px rgba(255,255,255,0.3), 0 4px 8px rgba(0,0,0,0.2);
        }

        100% {
            text-shadow: 0 0 4px rgba(255,255,255,0.3), 0 0 8px rgba(255,255,255,0.2), 0 2px 6px rgba(0,0,0,0.15);
        }
    }
}



/* ===========================================================================================================================
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                  about.css
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
============================================================================================================================== */






.xp-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #041D2E, #0A3A52);
    padding: 0 50px;
    color: #fff;
}

/* Panels */
.xp-panel {
    flex: 1 1 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 50px;
    transition: transform 0.5s ease, box-shadow 0.5s ease, background-color 0.5s ease;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.2);
}

.xp-tx-left {
    margin-bottom: 100px;
}
/* Left Panel */
.xp-left {
    background: linear-gradient(135deg, #002B43, #004F6E);
    color: #EAFBFF;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 85%);
    padding-left: 20px;
}

/* Right Panel */
.xp-right {
    background: #f9fbfd;
    color: #041D2E;
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 100%);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

    .xp-right .xp-content p {
        color: #333;
    }
/* Content */
.xp-content {
    max-width: 600px;
    text-align: left;
    z-index: 1;
    position: relative;
    top: 20px;
}

.xp-n-h2 {
    font-size: clamp(3rem, 6vw, 3.5rem) !important;
    font-weight: 700 !important;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1.2;
    color: #00E5FF !important;
}

.xp-n-2 {
    font-size: clamp(1.5rem, 5vw, 2rem);
    font-weight: 600;
    color: #0077B6;
    margin-bottom: 10px;
}

.xp-content p {
    font-size: clamp(0.95rem, 5vw, 1.2rem);
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 400;
    color: rgba(240, 250, 255, 0.9);
}



/* Hover effect for panels */
.xp-panel:hover {
    transform: translateY(-15px);
    box-shadow: rgba(0, 0, 0, 0.25) 0px 30px 70px;
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.xp-content {
    animation: fadeInLeft 1s ease-out;
}

    .xp-content h1, .xp-content p {
        animation: fadeInLeft 1.2s ease-out;
    }

.xp-ontent h2 {
    animation: fadeInRight 1.4s ease-out;
}


/* === Responsive === */
@media (max-width: 992px) {
    .xp-about {
        grid-template-columns: 1fr;
        padding: 20px;
        min-height: auto;
    }

    .xp-panel {
        padding: 60px 20px;
        height: auto;
    }

    .xp-right {
        margin-top: 30px;
        clip-path: none;
    }

    .xp-left {
        clip-path: none;
    }

    .xp-tx-left {
        margin-bottom: 20px;
    }
    /*.xp-tx-right {
        margin-top: 20px;
    }*/
}

@media (max-width: 480px) {
    .xp-n-h2 {
        font-size: clamp(2rem, 8vw, 2rem) !important;
    }

    .xp-n-2 {
        font-size: clamp(1.2rem, 6vw, 3.6rem);
    }

    .xp-content p {
        font-size: clamp(0.95rem, 5vw, 3.6rem);
        line-height: 1.6;
    }
}

@media (max-width: 380px) {
    .xp-n-h2 {
        font-size: clamp(1.8rem, 8vw, 1.8rem) !important;
    }
}

@media (max-width: 310px) {


    .xp-tx-left {
        margin-bottom: 0;
    }

    .xp-tx-right {
        margin-top: 0;
    }
}








/* ===========================================================================================================================
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                  industrial.css
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
============================================================================================================================== */




.modular-service {
    background: #e9eef3;
    padding: 80px 20px;
    font-family: 'Poppins', sans-serif;
}

.modular-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}

.modular-block {
    padding: 40px;
    border-radius: 20px; /* More rounded for modern look */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1); /* Deeper shadow for more depth */
    background: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Prevents content overflow */
}

    .modular-block:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.2); /* More pronounced shadow on hover */
    }

.image-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

    .image-block img:hover {
        transform: scale(1.05); /* Slight zoom effect on hover */
    }

.text-block h2 {
    font-size: 2.8rem; /* Slightly larger title for better impact */
    margin-bottom: 20px;
    color: #333333;
    font-weight: 600; /* Slightly bolder text */
    transition: color 0.3s ease;
}

.text-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555; /* Lighter gray text for better readability */
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

    .text-block h2:hover,
    .text-block p:hover {
        color: #0b1220; /* Darken text on hover for interactivity */
    }


/* Responsive */
@media (max-width: 768px) {
    .modular-grid {
        grid-template-columns: 1fr;
    }

    .modular-block {
        padding: 20px;
    }

    .text-block h2 {
        font-size: 2.2rem; /* Slightly larger heading on smaller screens */
    }

    .text-block p {
        font-size: 1.1rem;
    }
}
/* Responsive */
@media (max-width: 480px) {
    .text-block h2 {
        font-size: clamp(1.2rem, 6vw, 3.6rem);
    }

    .text-block p {
        font-size: clamp(0.95rem, 5vw, 3.6rem);
    }
}



/* ============================================================================================================================
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                   embroidery.css
 /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
=============================================================================================================================== */



.parallax-embroidery {
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* 🟢 lower min width for tiny screens */
    place-items: center;
    padding: 0 20px; /* 🟢 adds space on very small screens */
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    z-index: 0;
    transform: translateZ(-1px) scale(1.3);
    filter: blur(6px) brightness(0.6);
}

    .parallax-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


.parallax-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 20px;
}

.parallax-card {
    display: grid;
    grid-template-columns: 45% 55%; /* 🟢 replaces flex split */
    background: rgba(255,255,255,0.92);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    overflow: hidden;
    transform: translateY(40px);
    opacity: 0;
    animation: fadeUp 1.2s ease forwards;
    align-items: stretch; /* ensures even column heights */
}

/* === Image Side === */
.card-image {
    overflow: hidden;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
        transform: scale(1.1);
        transition: transform 0.6s ease;
    }

.parallax-card:hover .card-image img {
    transform: scale(1.2) rotate(-2deg);
}

/* === Content Side === */
.card-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideIn 1.2s ease forwards 0.3s;
}

    .card-content h2 {
        font-size: 2.6rem;
        margin-bottom: 20px;
        color: #2B8A8A;
    }

    .card-content p {
        font-size: 1.2rem;
        line-height: 1.8;
        color: #333;
        margin-bottom: 30px;
    }



/* === Animations === */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(60px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* //////////////////////////
   📱 Responsive Design
  /////////////////////////// */

/* Tablet (below 792px) */
@media (max-width: 792px) {
    .parallax-embroidery {
        height: auto;
        padding: 60px 0;
    }

    .parallax-card {
        grid-template-columns: 1fr; /* 🟢 stack image + content */
        transform: none;
        animation: none;
        opacity: 1;
        box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    }

    .card-image {
        max-height: 360px;
    }

    .card-content {
        padding: 30px 40px;
        text-align: center;
        align-items: center;
    }

        .card-content h2 {
            font-size: 2.2rem;
        }

        .card-content p {
            font-size: 1rem;
            line-height: 1.6;
            max-width: 90%;
        }
}

/* Mobile (below 600px) */
@media (max-width: 600px) {
    .parallax-embroidery {
        height: auto;
        padding: 40px 0;
    }

    .parallax-bg {
        filter: blur(4px) brightness(0.55);
        transform: none;
    }

    .parallax-card {
        grid-template-columns: 1fr; /* stack content */
        /*max-width: 90%;*/ /* 🟢 ensures padding on tiny screens */
    }

    .card-image img {
        width: 100%;
        height: auto;
    }

    .card-content {
        padding: 20px;
        text-align: center;
        align-items: center;
    }

        .card-content h2 {
            font-size: 1.8rem;
            margin-bottom: 14px;
        }

        .card-content p {
            font-size: 0.95rem;
            line-height: 1.5;
            margin-bottom: 24px;
        }
}
/* Responsive */
@media (max-width: 480px) {
    .card-content h2 {
        font-size: clamp(1.2rem, 6vw, 3.6rem) !important;
    }

    .card-content p {
        font-size: clamp(0.95rem, 5vw, 3.6rem);
    }
}


/* ===========================================================================================================================
  /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                 quilting.css
 ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
=============================================================================================================================== */



this code causes the section the start flickering on scroll, :root {
    --bg-1: #041D2E;
    --accent-1: #00E5FF;
    --accent-2: #0077B6;
    --glass: rgba(255,255,255,0.06);
    --muted: #9aa6b2;
    --radius: 18px;
    --ease: cubic-bezier(.2,.9,.3,1);
    --card-w: clamp(320px, 36vw, 540px);
    --gap: 28px;
}
/* Ensure background layers never capture pointer events and sit behind content */
#quilting-diagonal {
    position: relative;
    z-index: 1; /* base layer */
}



/* Prevent rapid CSS keyframe vibration on small elements */

.mini-card, .diag-card, .media-large, .floating-tag {
    will-change: transform, opacity;
    transition: transform 300ms cubic-bezier(.2,.9,.3,1), opacity 300ms ease;
    animation: none !important; /* avoid competing keyframe animation unless intentionally used */
}
/* Keep image hover subtle and smooth */

.media-clip img {
    transition: transform 700ms cubic-bezier(.2,.9,.3,1), filter 400ms ease;
    border-radius: 20px;
}
/* If you used inline transitions on many elements, normalize them here */


/* Content wrapper sits above everything */

#quilting-diagonal .qa-diag-wrap {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    align-items: center;
    padding: 40px;
}

@media (max-width:980px) {
    #quilting-diagonal .qa-diag-wrap {
        grid-template-columns: 1fr;
        padding: 24px;
    }
}
/* Diagonal band */

#quilting-diagonal .diag-band {
    position: absolute;
    left: -15%;
    top: 30%;
    width: 130%;
    height: 48%;
    background: linear-gradient(90deg, rgba(0,229,255,0.04), rgba(0,119,182,0.02));
    transform: skewY(-6deg);
    border-radius: 12px;
    z-index: 2;
    box-shadow: 0 36px 120px rgba(0,0,0,0.5);
    pointer-events: none;
}

@media (max-width:980px) {
    #quilting-diagonal .diag-band {
        display: none
    }
}
/* LEFT: Tilted interactive card */

#quilting-diagonal .diag-left {
    position: relative;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}


#quilting-diagonal .diag-card:focus {
    outline: 3px solid rgba(0,229,255,0.08);
    transform: translateY(-6px) rotateX(4deg);
}
/* Card contents */

#quilting-diagonal .diag-title {
    color: var(--accent-1);
    font-size: clamp(18px,2.6vw,30px);
    text-transform: uppercase;
    font-weight: 800;
    margin: 0;
}

#quilting-diagonal .diag-badge {
    background: linear-gradient(90deg, rgba(0,229,255,0.06), rgba(0,119,182,0.04));
    color: var(--accent-1);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
}


/* isolate entire system from layout recalculation */
#quilting-diagonal {
    contain: layout paint;
}

/* GPU optimization layer */
[data-tilt],
[data-parallax],
.diag-animated-bg {
    will-change: transform;
    transform: translateZ(0);
}

/* hover is now CLASS-BASED (no JS styles) */
.mini-card {
    transition: transform 180ms cubic-bezier(.2,.9,.3,1), box-shadow 180ms ease;
    transform: translateZ(0);
}

    .mini-card.is-hovered {
        transform: translate3d(0,-6px,0) scale(1.02);
        box-shadow: 0 30px 80px rgba(0,0,0,0.55);
    }





/* RIGHT: media stack */

#quilting-diagonal .diag-right {
    position: relative;
    z-index: 6;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#quilting-diagonal .media-stack {
    position: relative;
    width: 100%;
    max-width: 740px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: center;
}
/* MEDIA: explicit heights and full cover */

#quilting-diagonal .media-large {
    border-radius: 16px;
    overflow: hidden;
    z-index: 5;
    box-shadow: 0 28px 90px rgba(0,0,0,0.6);
    position: relative;
    height: 420px; /* fixed visual frame */
    min-height: 360px;
    max-height: 520px;
}

@media (max-width:980px) {
    #quilting-diagonal .media-large {
        height: 360px;
    }
}

@media (max-width:560px) {
    #quilting-diagonal .media-large {
        height: 260px;
    }
}

#quilting-diagonal .media-clip {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
}

    #quilting-diagonal .media-clip img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        transform: translateZ(0);
        transition: transform .9s cubic-bezier(.2,.9,.3,1), filter .6s ease;
        will-change: transform;
        display: block;
    }

#quilting-diagonal .media-large:hover .media-clip img {
    transform: scale(1.035) translateY(-6px);
    filter: brightness(1.03) saturate(1.05);
}
/* vignette overlay to emphasize top area */

#quilting-diagonal .img-vignette {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(50% 60% at 50% 20%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.18) 70%);
    mix-blend-mode: multiply;
}
/* mini cards overlapping image */

#quilting-diagonal .media-cards {
    position: relative; /* important for z-index */
    z-index: 10; /* higher than .media-large (z-index implied by translateZ) */
    margin-top: -56px; /* keeps overlapping effect */
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    transition: transform 0.36s var(--ease), box-shadow 0.36s var(--ease);
}

#quilting-diagonal .mini-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0.06));
    backdrop-filter: blur(6px);
    padding: 14px;
    border-radius: 12px;
    min-width: 180px;
    color: #e6fbff;
    box-shadow: 0 16px 40px rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.03);
    transition: transform .36s var(--ease), box-shadow .36s var(--ease);
    position: relative;
    overflow: visible;
    transform: translateZ(80px);
}



    /* Add this to your CSS */
    #quilting-diagonal .mini-card,
    #quilting-diagonal .mini-card * {
        pointer-events: none !important;
    }

        #quilting-diagonal .mini-card:hover {
            transform: translateZ(85px) translateY(0); /* subtle pop without vibration */
            box-shadow: 0 30px 90px rgba(0,0,0,0.6);
        }
/* floating tag */

#quilting-diagonal .floating-tag {
    position: absolute;
    left: 10%;
    top: 6%;
    background: linear-gradient(90deg, rgba(0,229,255,0.06), rgba(0,119,182,0.02));
    padding: 10px 18px;
    border-radius: 999px;
    color: var(--accent-1);
    font-weight: 800;
    box-shadow: 0 18px 60px rgba(0,229,255,0.06);
}


/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
    #quilting-diagonal .ribbon, #quilting-diagonal .diag-animated-bg::after, #quilting-diagonal .particle-layer, #quilting-diagonal .media-clip img, #quilting-diagonal .diag-card, #quilting-diagonal .floating-tag {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

/* Tablet & medium screens */
@media (max-width: 980px) {
    #quilting-diagonal .qa-diag-wrap {
        gap: 12px;
    }

    /* Mini-cards become smaller and wrap */
    #quilting-diagonal .media-cards {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    #quilting-diagonal .mini-card {
        min-width: 120px;
        padding: 12px;
        font-size: 0.9rem;
    }

    #quilting-diagonal .diag-card {
        width: 90% !important;
    }
    /* FORM FIRST on mobile */
    .diag-right {
        order: 1;
    }

    /* TEXT SECOND on mobile */
    .diag-left {
        order: 2;
        transform: none;
        clip-path: none;
        text-align: center;
        min-height: 400px;
    }
}






/* Base mobile adjustments for smoother scrolling */
@media (max-width: 652px) {
    #quilting-diagonal {
        padding: 40px 12px;
        overflow: hidden; /* reduce repaints */
        contain: layout paint; /* isolate container */
    }

        /* Stack content vertically */
        #quilting-diagonal .qa-diag-wrap {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 16px;
        }

        /* Left card full width, reduce shadows */
        #quilting-diagonal .diag-card {
            width: 70vw;
            max-width: 400px;
            box-shadow: 0 12px 36px rgba(0,0,0,0.3);
            transform: none !important; /* remove 3D transforms */
            transition: none !important;
        }

        /* Media image square & fully visible */
        #quilting-diagonal .media-large {
            width: 90vw;
            max-width: 400px;
            height: auto;
            aspect-ratio: 1/1;
            object-fit: cover;
            object-position: top center;
            box-shadow: 0 12px 36px rgba(0,0,0,0.3);
            transition: none !important;
            transform: none !important;
        }

        /* Hide mini-cards & floating elements */
        #quilting-diagonal .mini-card,
        #quilting-diagonal .floating-tag,
        #quilting-diagonal .ribbon,
        #quilting-diagonal .diag-animated-bg::after,
        #quilting-diagonal .particle-layer {
            display: none !important;
            animation: none !important;
            transition: none !important;
        }

        /* Center media-cards */
        #quilting-diagonal .media-cards {
            width: 80%;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }

        /* Reduce heavy background filters */
        #quilting-diagonal .ribbon,
        #quilting-diagonal .diag-animated-bg::after {
            filter: blur(6px) saturate(110%);
        }

    /* Font scaling for readability */
    .diag-head h2 {
        font-size: clamp(1.2rem, 6vw, 2.5rem);
    }

    .diag-body p {
        font-size: clamp(0.9rem, 4.5vw, 1.5rem);
    }
}
/* Responsive */
/* Extra-small screens (iPhone SE, small Androids) */
@media (max-width: 480px) {
    #quilting-diagonal {
        padding: 32px 10px;
    }

        #quilting-diagonal .media-large {
            width: 85vw;
            max-width: 420px;
            aspect-ratio: 1/1;
        }

        /* Minimal shadows and transforms */
        #quilting-diagonal .diag-card,
        #quilting-diagonal .media-large {
            box-shadow: 0 8px 24px rgba(0,0,0,0.25);
        }
}






/* mini-card dead zone utility (increase if needed) */

#quilting-diagonal .mini-card[data-hover="true"] {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

.mini-card h3 {
    color: #00E5FF;
}

#quilting-diagonal.qa-diagonal {
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(180deg,var(--bg-1),#022034);
    color: #e6f7fb;
    overflow: hidden;
    font-family: Inter, system-ui, "Segoe UI", Roboto, -apple-system, Arial;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

#quilting-diagonal .diag-card {
    width: var(--card-w);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.06));
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid rgba(255,255,255,0.04);
    box-shadow: 0 18px 60px rgba(2,12,22,0.6);
    will-change: transform;
}

@media (min-width: 900px) {
    #quilting-diagonal .diag-card {
        backdrop-filter: blur(8px) saturate(120%);
        transform-style: preserve-3d;
        transition: transform .45s var(--ease), box-shadow .45s var(--ease);
    }


    #quilting-diagonal .media-large {
        transform: translateZ(0);
        transition: transform .6s var(--ease);
    }

    #quilting-diagonal > .diag-animated-bg, #quilting-diagonal > svg.qa-bg-svg, #quilting-diagonal .particle-layer, #quilting-diagonal .ribbon {
        pointer-events: none !important;
    }

    #quilting-diagonal > .diag-animated-bg,
    #quilting-diagonal > svg.qa-bg-svg {
        position: absolute;
        inset: 0;
        z-index: 0; /* always behind content */
        height: 100%;
    }

    #quilting-diagonal .qa-diag-wrap {
        position: relative;
        z-index: 2; /* content above background */
    }

    #quilting-diagonal * {
        backface-visibility: hidden;
        transform-style: preserve-3d;
    }
    /* Section base and stacking */


    /* Animated BG container: ensure it's behind svg and content but visible */

    #quilting-diagonal > .diag-animated-bg {
        position: absolute;
        inset: 0;
        z-index: 0; /* behind content but above page background */
        pointer-events: none;
        overflow: hidden;
        transform: translate3d(0,0,0);
        will-change: transform;
    }
    /* ribbons & ambient overlay */

    #quilting-diagonal .ribbon {
        position: absolute;
        width: 160%;
        height: 40%;
        left: -30%;
        top: 12%;
        transform-origin: center;
        background: linear-gradient(90deg, rgba(0,229,255,0.06), rgba(0,119,182,0.03));
        filter: blur(36px) saturate(140%);
        border-radius: 24%;
        opacity: 0.9;
        animation: ribbonFloat 22s linear infinite;
        will-change: transform, opacity;
    }

        #quilting-diagonal .ribbon.ribbon-2 {
            top: 44%;
            left: -20%;
            height: 32%;
            background: linear-gradient(90deg, rgba(0,180,216,0.04), rgba(0,120,180,0.02));
            animation-duration: 28s;
            transform-origin: 30% 50%;
        }

    #quilting-diagonal .diag-animated-bg::after {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 10% 15%, rgba(0,229,255,0.02), transparent 10%), radial-gradient(circle at 85% 85%, rgba(0,119,182,0.015), transparent 10%);
        pointer-events: none;
        mix-blend-mode: screen;
        will-change: opacity;
    }
    /* Ribbon animation */

    @keyframes ribbonFloat {
        0% {
            transform: translate3d(0,0,0) rotate(-6deg) scale(1);
            opacity: .95;
        }

        25% {
            transform: translate3d(6%,-3%,0) rotate(-4deg) scale(1.03);
            opacity: .9;
        }

        50% {
            transform: translate3d(0%,4%,0) rotate(-2deg) scale(1);
            opacity: .92;
        }

        75% {
            transform: translate3d(-6%,-2%,0) rotate(-5deg) scale(.98);
            opacity: .9;
        }

        100% {
            transform: translate3d(0,0,0) rotate(-6deg) scale(1);
            opacity: .95;
        }
    }

    #quilting-diagonal {
        pointer-events: none !important;
    }
        /* Ensure the wrapper holding the CTA is also clickable (Diag-card) */
        #quilting-diagonal .diag-card {
            pointer-events: auto !important;
        }

        #quilting-diagonal .cta-ripple {
            position: absolute;
            inset: 0;
            background: radial-gradient(circle, rgba(255,255,255,0.08) 2%, transparent 50%);
            opacity: 0;
            transform: scale(0);
            transition: opacity .45s, transform .45s;
            pointer-events: none;
        }

    @keyframes diagFloat {
        0% {
            transform: translateY(0)
        }

        50% {
            transform: translateY(-16px)
        }

        100% {
            transform: translateY(0)
        }
    }
    /* particle dot defaults (JS will populate) */

    #quilting-diagonal .diag-particle {
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
        transform: translate3d(0,0,0);
        transition: transform 10s linear, opacity 6s ease-in-out;
        will-change: transform, opacity;
    }

    #quilting-diagonal .floating-tag {
        transform: translateZ(80px);
        animation: diagFloat 5.5s ease-in-out infinite;
        will-change: transform;
    }

    #quilting-diagonal .mini-card::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -6px; /* extends slightly below the visible card */
        height: 10px; /* buffer height (tweak 8–14px if needed) */
        pointer-events: none; /* ignore pointer so tiny edge touches don't trigger anything */
        background: transparent;
        z-index: 2;
        pointer-events: none;
    }
}


/* ============================================================================================================================
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                    motor.css
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
=============================================================================================================================== */



.motor {
    position: relative;
    padding: 110px 24px;
    background: #e9eef3; /* soft neutral base */
    font-family: 'Inter', system-ui, sans-serif;
    color: #24323f;
    overflow: hidden;
}

/* subtle texture */
.motor-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(1200px 600px at -10% 110%, rgba(255,255,255,0.6), transparent 60%), radial-gradient(1000px 500px at 110% -10%, rgba(200,210,220,0.35), transparent 60%);
    z-index: 0;
}

/* container */
.motor-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1150px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

/* neumorphic card holding the image */
.motor-image {
    background: #e9eef3;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 14px 14px 28px rgba(157, 171, 186, 0.55), -14px -14px 28px rgba(255, 255, 255, 0.9);
}

    .motor-image img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 14px;
        box-shadow: inset 0 0 0 1px rgba(36,50,63,0.06);
        transition: transform 0.35s ease, filter 0.35s ease;
    }

        .motor-image img:hover {
            transform: translateY(-3px) scale(1.02);
            filter: saturate(1.04);
        }

/* content card */
.motor-content {
    background: #e9eef3;
    border-radius: 22px;
    padding: 36px 34px;
    box-shadow: 14px 14px 28px rgba(157, 171, 186, 0.55), -14px -14px 28px rgba(255, 255, 255, 0.9);
}

    .motor-content h2 {
        font-size: 2.5rem;
        line-height: 1.15;
        margin-bottom: 18px;
        font-weight: 800;
        letter-spacing: 0.2px;
        color: #1e2a35;
    }

    .motor-content p {
        font-size: 1.08rem;
        line-height: 1.85;
        color: #415264;
        margin-bottom: 28px;
    }





.motor-accent {
    position: absolute;
    right: 0;
    width: 100%;
    max-width: 400px;
    height: 100px;
    pointer-events: none;
    user-select: none;
    z-index: 1;
    display: block;
}

    .motor-accent text {
        font-family: 'Inter', sans-serif;
        font-weight: 900;
        font-size: 150px;
        letter-spacing: 12px;
        fill: rgba(36, 50, 63, 0.06);
        text-transform: uppercase;
    }





@media (max-width: 980px) {
    .motor-wrapper {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .motor-accent {
        height: 80px;
    }

    .motor-content {
        text-align: center;
        padding: 30px 24px;
    }

    .motor-btn {
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .motor-accent {
        width: 70%;
        height: 80px;
    }

        .motor-accent text {
            font-size: 130px;
        }
}

@media (max-width: 560px) {
    .motor {
        padding: 80px 16px;
    }

    .motor-content h2 {
        font-size: 2rem;
    }

    .motor-content p {
        font-size: 1rem;
    }
}

@media (max-width: 510px) {
    .motor-accent {
        height: 70px;
    }
}

/* Responsive */
@media (max-width: 480px) {
    .motor-content h2 {
        font-size: clamp(1.2rem, 6vw, 3.6rem) !important;
    }

    .motor-content p {
        font-size: clamp(0.95rem, 5vw, 3.6rem);
    }
}


/* ================================================================================================================================
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                    slideshow.css
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
====================================================================================================================================*/


:root {
    --slide-ease: cubic-bezier(0.25, 1, 0.5, 1);
    --glass-bg-sl: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.15);
    --text-color: #ffffff;
}

.hero-gallery {
    position: relative;
    width: 100%;
    max-height:850px;
    overflow: hidden;
}

.hero-slides {
    display: flex;
    height: 100%;
    width: 100%;
    will-change: transform;
    transition: transform 0.8s var(--slide-ease);
}

.slide {
  flex: 0 0 100%;
  min-height: 850px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.slide-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

    .slide-bg img {
        width: 100%;
        height: 100%;
        object-fit:cover;
    }

.slide-wrapper {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    height: 100%;
    display: flex;
    margin-block:20px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.img-frame {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.8);
    border: 1px solid var(--glass-border);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s var(--slide-ease) 0.1s, transform 0.8s var(--slide-ease) 0.1s;
}

.slide.active .img-frame {
    opacity: 1 !important;
}

.img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.slide-content {
    position: relative;
    z-index: 10;
    min-width: 300px;
    max-width: 600px;
    text-align: center;
    margin-top: -60px;
    background: var(--glass-bg-sl);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 24px 40px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    color: var(--text-color);
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--slide-ease) 0.3s, transform 0.8s var(--slide-ease) 0.3s;
}

.slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.slide-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-modern {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}

    .btn-modern:hover {
        transform: scale(1.05);
    }

.slide-controls {
    position: absolute;
    top: 50%;
    inset-inline: 0;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
    transform: translateY(-50%);
}

    .slide-controls span {
        pointer-events: auto;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid var(--glass-border);
        display: grid;
        place-items: center;
        color: #fff;
        cursor: pointer;
        transition: background 0.3s ease;
    }

        .slide-controls span:hover {
            background: rgba(255, 255, 255, 0.3);
        }

/* /////////////////////
   RESPONSIVE DESIGN
   ///////////////////// */


  @media (max-width: 768px) {
    .hero-gallery {
      display: block;
    }

    .hero-slides {
      height: auto;
    }

    .slide {
      height: auto;
      min-height: auto;
      padding-bottom: 40px;
    }

    .slide-wrapper {
      height: auto;
      justify-content: flex-start;
      padding: 20px 0;
    }

    .img-frame {
      height: auto;
      width: 100%;
    }

      .img-frame img {
        object-fit: cover;
      }

    .slide-controls {
      top: 92%;
    }
  }


  @media (max-height: 500px) and (orientation: landscape) {
    .hero-gallery {
      min-height: 400px;
    }

    .slide-wrapper {
      flex-direction: row;
      gap: 20px;
    }

    .img-frame {
      height: auto;
      width: 60%;
      max-width: none;
    }

    .slide-content {
      width: 45%;
      margin-top: 0;
      min-width: auto;
    }
  }

  @media (max-width: 480px) {
    .slide-content {
      min-width: 0;
      width: 85%;
      padding: 20px;
    }
    .img-frame {
      width: 100svw;
    
    }
    .slide-wrapper {
      width: 95%;
    }
  }
  /* ===================================================================================================================================
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                     contact.css
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
===================================================================================================================================== */

  .folded-horizon {
    --accent: #00E5FF;
    --muted: #0099D6;
    --bg-dark: #041D2E;
    --text: #D9F7FF;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    position: relative;
    padding: 64px 24px;
    color: var(--text);
    overflow: hidden;
    background: radial-gradient(circle at 20% 30%, #041D2E, #041D2E 90%);
  }


    .folded-horizon .fh-head #fh-title {
      color: #fff !important;
    }

  .fh-inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
  }

  /* Header */
  .fh-head {
    text-align: center;
    margin-bottom: 40px;
  }

    .fh-head h2 {
      color: var(--accent);
      font-size: 2.2rem;
      text-shadow: 0 0 10px rgba(0,229,255,0.5);
    }

  .fh-lead {
    color: var(--text);
    opacity: 0.85;
    font-size: 1.05rem;
  }

  /* Two-column layout */
  .fh-stage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    perspective: 1200px;
  }

  /* Left info panel */
  .fh-panel-left {
    position: relative;
    background: rgba(0,229,255,0.03);
    border: 1px solid rgba(0,229,255,0.1);
    padding: 32px;
    color: var(--text);
    box-shadow: inset 0 0 12px rgba(0,229,255,0.1), 0 0 20px rgba(0,229,255,0.15);
    transform: rotateY(-8deg);
    clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
    transition: all 0.4s cubic-bezier(.2,.9,.2,1);
  }

    .fh-panel-left:hover {
      transform: rotateY(-3deg) translateZ(20px);
      box-shadow: inset 0 0 16px rgba(0,229,255,0.2), 0 0 30px rgba(0,229,255,0.25);
    }

    .fh-panel-left::before {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(0,229,255,0.2);
      border-radius: 4px;
      pointer-events: none;
      animation: pulseOutline 4s ease-in-out infinite;
    }

  .panel-content h3 {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 12px;
  }

  .tx-ws {
    color: var(--accent);
  }

  .contact-phone {
    text-decoration: none;
  }

  .panel-content p {
    color: var(--text);
    opacity: 0.85;
    font-size: 1rem;
    line-height: 1.5;
  }

  /* Decorative Fold */
  .panel-fold {
    position: absolute;
    top: 0;
    right: -40px;
    width: 100px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,229,255,0.15), rgba(0,153,214,0.05));
    transform: skewX(-18deg);
    filter: blur(1.2px) drop-shadow(0 0 10px rgba(0,229,255,0.4));
  }

  /* Right form panel */
  .fh-panel-right {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
  }

  .fold-right {
    left: -40px;
    right: auto;
    transform: skewX(18deg);
    background: linear-gradient(180deg, rgba(0,229,255,0.15), rgba(0,153,214,0.05));
    filter: blur(1px) drop-shadow(0 0 8px rgba(0,229,255,0.3));
  }


  .rs-form {
    width: 100%;
    max-width: 600px;
    padding: 28px;
    border-radius: 14px;
    background: rgba(0,229,255,0.05);
    border: 1px solid rgba(0,153,214,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 20px rgba(0,229,255,0.15), 0 20px 60px rgba(0,229,255,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

    .rs-form:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 30px rgba(0,229,255,0.25), 0 40px 100px rgba(0,229,255,0.12);
    }

  /* Input fields row container */
  .rs-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
  }

  /* Field container (label) */
  .rs-field {
    position: relative;
    flex-grow: 0;
    flex-shrink: 0;
    width: calc(50% - 7px);
  }

    .rs-field.textarea {
      width: 100%;
      flex: 1 1 100%;
    }

    /* Input and textarea elements */
    .rs-field input,
    .rs-field textarea {
      width: 100%;
      /* Added box-sizing to ensure padding/border don't affect width calculation */
      box-sizing: border-box;
      background: rgba(4,29,46,0.3);
      color: var(--text);
      border: 1px solid rgba(0,229,255,0.1);
      border-radius: 10px;
      padding: 12px;
      font-size: 15px;
      outline: none;
      transition: 0.2s ease;
      resize: none;
    }

      .rs-field input:focus,
      .rs-field textarea:focus {
        border-color: var(--accent);
        box-shadow: 0 0 10px rgba(0,229,255,0.25);
      }


      .rs-field input + span,
      .rs-field textarea + span {
        position: absolute;
        left: 12px;
        top: 12px;
        color: #fff;
        font-size: 14px;
        pointer-events: none;
        transition: all 0.2s ease;
        background: transparent;
      }

      /* Float label on focus or filled */
      .rs-field input:focus + span,
      .rs-field input:not(:placeholder-shown) + span,
      .rs-field textarea:focus + span,
      .rs-field textarea:not(:placeholder-shown) + span {
        top: -8px;
        font-size: 11px;
        color: var(--accent);
        background: rgba(4,29,46,0.9);
        padding: 0 6px;
        border-radius: 6px;
      }


  /* Buttons */
  .actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    justify-content: center; /* centers left/right */
    align-items: center; /* centers top/bottom */
  }








  @media (max-width: 920px) {

    .fh-stage {
      grid-template-columns: 1fr;
      gap: 20px;
    }

    .fh-panel-left {
      transform: none;
      clip-path: none;
      text-align: center;
      min-height: 400px;
    }

    /* FORM FIRST on mobile */
    .fh-panel-right {
      order: 1;
    }

    /* TEXT SECOND on mobile */
    .fh-panel-left {
      order: 2;
      transform: none;
      clip-path: none;
      text-align: center;
      min-height: 400px;
    }

    .panel-fold, .fold-right {
      display: none;
    }
    /*    .rs-form h3::after {
        content: " • Serving Tampa & surrounding areas";
        display: block;
        font-size: 0.85rem;
        opacity: 0.75;
        margin-top: 4px;
    }*/
  }

  @media (max-width: 600px) {
    /* Updated for rs-row */
    .rs-row {
      flex-direction: column;
      gap: 12px;
    }



    /* Updated for rs-field and rs-field.textarea */
    .rs-field,
    .rs-field.textarea {
      width: 100%;
    }

    .rs-form {
      padding: 18px;
    }

    .actions {
      flex-direction: column;
    }
  }

  @media (max-width: 480px) {
    .fh-head h2 {
      font-size: clamp(1.2rem, 6vw, 3.6rem) !important;
    }

    .fh-head p, .panel-content p {
      font-size: clamp(0.95rem, 5vw, 3.6rem);
    }

    .C-Form h3 {
      font-size: clamp(1rem, 5,5vw, 3.6rem ) !important;
    }

    .panel-content h3 {
      font-size: clamp(1rem, 6vw, 3.6rem ) !important;
    }
  }

  @media (max-width:350px) {
    .fh-panel-left {
      min-height: 500px;
    }
  }

  @media (min-width:900px) {
    /* Floating particles */
    .folded-horizon::before, .folded-horizon::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle 1px at 20% 40%, rgba(0,229,255,0.5) 0%, transparent 80%), radial-gradient(circle 1.5px at 80% 60%, rgba(0,229,255,0.5) 0%, transparent 80%), radial-gradient(circle 1px at 50% 80%, rgba(0,229,255,0.4) 0%, transparent 80%);
      animation: floatParticles 20s linear infinite;
      opacity: 0.4;
      pointer-events: none;
    }

    .folded-horizon::after {
      animation-delay: -10s;
      opacity: 0.3;
    }

    /* Depth layers */
    .fh-bg-layer {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .fh-bg-mid {
      background: radial-gradient(800px 400px at 25% 40%, rgba(0,229,255,0.08), transparent), radial-gradient(400px 200px at 80% 70%, rgba(0,153,214,0.05), transparent);
      animation: floatMid 18s ease-in-out infinite alternate;
      mix-blend-mode: screen;
      filter: drop-shadow(0 0 12px rgba(0,229,255,0.25));
    }
    /* Animations */
    @keyframes floatMid {
      0%,100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-10px);
      }
    }

    @keyframes floatParticles {
      0% {
        transform: translateY(0);
      }

      100% {
        transform: translateY(-100px);
      }
    }

    @keyframes pulseOutline {
      0%,100% {
        opacity: 0.3;
        box-shadow: 0 0 8px rgba(0,229,255,0.3);
      }

      50% {
        opacity: 0.7;
        box-shadow: 0 0 20px rgba(0,229,255,0.6);
      }
    }
  }

  @media(prefers-reduced-motion:reduce) {
    .fh-panel-left::before, .folded-horizon::before, .folded-horizon::after, .fh-bg-mid, .rs-error-message {
      animation: none !important
    }

    .rs-error-message {
      transform: none !important
    }

    .fh-panel-left, .rs-form {
      transition: none !important;
      transform: none !important
    }

      .fh-panel-left:hover, .rs-form:hover {
        transform: none !important;
        box-shadow: none !important
      }
  }



  /* ================================================================================================================================
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                     business-hours.css
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
=================================================================================================================================== */



  /* Wrapper for outside the panel */
  .store-hours-wrapper {
    background: #e9eef3;
    padding: 40px 20px; /* reduced padding for smaller screens */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* Glow behind widget */
  .store-hours-widget {
    position: relative;
    z-index: 1;
  }

    .store-hours-widget::before {
      content: '';
      position: absolute;
      top: -20px;
      left: -20px;
      right: -20px;
      bottom: -20px;
      background: radial-gradient(circle at center, rgba(45,255,200,0.01), transparent 60%);
      border-radius: 20px;
      z-index: -1;
    }

  .store-hours-container {
    background: linear-gradient(135deg, #e9eef3, #e9eef4);
    color: #fff;
    backdrop-filter: blur(6px) saturate(120%);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.6);
    max-width: 400px;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    transition: all 0.3s ease;
  }

  /* Title */
  .widget-title {
    font-size: clamp(2rem, 8vw, 2.5rem) !important;
    font-weight: 700;
    color: #004F6E;
    margin-bottom: 16px;
  }

  /* Current day & time */
  #current-status {
    font-size: clamp(1.7rem, 6vw, 1.8rem) !important;
    font-weight: 600;
    margin-bottom: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  #current-day-time {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0099D6;
  }

  .status {
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 10px;
    display: inline-block;
    font-size: 1rem;
    transition: box-shadow 0.5s ease;
  }

    /* Open/Closed pulse */
    .status.open {
      background: #27ae60;
      color: #0b0c10;
      box-shadow: 0 0 10px rgba(39,174,96,0.6), 0 0 20px rgba(39,174,96,0.3) inset;
      animation: pulseOpen 1.5s infinite;
    }

    .status.closed {
      background: radial-gradient(circle at 20% 30%, #041D2E, #041D2E 90%);
      color: #ffffff;
      /*      box-shadow: 0 0 10px rgba(231,76,60,0.6), 0 0 20px rgba(231,76,60,0.3) inset;
            animation: pulseClosed 1.5s infinite;*/
    }

  @keyframes pulseOpen {
    0%,100% {
      box-shadow: 0 0 10px rgba(39,174,96,0.6), 0 0 20px rgba(39,174,96,0.3) inset;
    }

    50% {
      box-shadow: 0 0 20px rgba(39,174,96,0.8), 0 0 30px rgba(39,174,96,0.4) inset;
    }
  }

  @keyframes pulseClosed {
    0%,100% {
      box-shadow: 0 0 10px rgba(231,76,60,0.6), 0 0 20px rgba(231,76,60,0.3) inset;
    }

    50% {
      box-shadow: 0 0 20px rgba(231,76,60,0.8), 0 0 30px rgba(231,76,60,0.4) inset;
    }
  }



  .full-hours {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .4s ease, opacity .3s ease, padding .3s ease;
    text-align: left;
    margin-top: 10px;
    border-radius: 12px;
    background: #12171f;
    padding: 0 12px;
  }

    .full-hours.expanded {
      opacity: 1;
      max-height: 420px;
      padding: 10px 12px;
    }

    .full-hours ul {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .full-hours li {
      padding: 8px 6px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      font-size: clamp(1.2rem, 2vw, 1.5rem) !important;
      color: #bfeeea;
    }

      .full-hours li:last-child {
        border-bottom: 0;
      }

      .full-hours li.today {
        background: linear-gradient(90deg,var(--accent-1),#0099D6);
        color: #0b0c10;
        font-weight: 700;
        border-left: 4px solid rgba(0,229,255,0.5);
        padding-left: 10px;
      }

  /* //////////////////////
   Responsive for Tablets
   /////////////////////// */
  @media (max-width: 768px) {
    .store-hours-wrapper {
      padding: 30px 15px;
    }

    .store-hours-container {
      max-width: 90%;
      padding: 16px 20px;
    }

    .widget-title {
      font-size: 1.3rem;
    }

    #current-day-time {
      font-size: 1.4rem;
    }

    #current-status {
      gap: 4px;
      margin-bottom: 8px;
    }

    .full-hours li {
      font-size: 0.9rem;
      padding: 6px 4px;
    }

    /* Reduce glow size for smaller tablets */
    .store-hours-widget::before {
      top: -15px;
      left: -15px;
      right: -15px;
      bottom: -15px;
      border-radius: 14px;
    }
  }

  /* //////////////////////
   Responsive for Phones
   ////////////////////// */
  @media (max-width: 480px) {
    .store-hours-wrapper {
    }

    .store-hours-container {
      max-width: 100%;
      border-radius: 0;
      padding: 12px 16px;
      box-sizing: border-box; /* important to prevent overflow */
      box-shadow: none;
    }

    .store-hours-widget::before {
      top: -8px;
      left: -8px;
      right: -8px;
      bottom: -8px;
      border-radius: 12px;
    }

    .widget-title {
      font-size: 1rem;
    }

    #current-day-time {
      font-size: 1.2rem;
    }

    .status {
      font-size: 0.85rem;
      padding: 4px 8px;
    }

    .full-hours li {
      font-size: 0.8rem;
      padding: 4px 3px;
    }
  }

  @media (max-width: 480px) {
    .store-hours-widget {
      width: 100%;
      max-width: 100%;
      overflow: hidden; /* THIS FIXES IT */
    }

      .store-hours-widget::before {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
      }
  }

  @media (max-width: 390px) {
    .full-hours li {
      font-size: clamp(1rem, 2vw, 1.2rem) !important;
    }
  }

  @media (max-width: 340px) {
    .full-hours li {
      font-size: clamp(0.80rem, 2vw, 1rem) !important;
    }
  }


  /* ==============================================================================================================================
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                         reviews.css
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
================================================================================================================================= */



  .reviews-section-light {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 24px;
    background: radial-gradient(1200px 600px at 10% 10%, rgba(255,255,255,0.95), transparent 15%), linear-gradient(180deg, #e6ebf1 0%, #dbe2ea 100%);
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #1b1b1b;
    position: relative;
    overflow: hidden;
  }
  /* /////////// Card Golden Shimmer ///////////// */
  .review-card-light {
    position: relative;
    overflow: hidden;
  }

    .review-card-light::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient( 120deg, rgba(246, 223, 190, 0.05), rgba(246, 223, 190, 0.15), rgba(246, 223, 190, 0.05) );
      transform: rotate(25deg);
      pointer-events: none;
      animation: shimmerSlide 6s linear infinite;
      border-radius: 22px;
    }

  /* Shimmer animation */
  @keyframes shimmerSlide {
    0% {
      transform: translateX(-100%) rotate(25deg);
    }

    100% {
      transform: translateX(100%) rotate(25deg);
    }
  }
  /* Actions */
  .action-area {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 260px;
    align-items: stretch;
  }

  .google-g-icon {
    padding-right: 10px;
  }
  /* ===== Card ===== */
  .review-card-light {
    width: 100%;
    max-width: 820px;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(22px) saturate(130%);
    border-radius: 22px;
    padding: 36px 40px;
    box-shadow: 0 32px 80px rgba(0,0,0,0.15), 0 8px 24px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    position: relative;
    transform: translateY(28px);
    opacity: 0;
    animation: cardIn 800ms cubic-bezier(.2,.9,.3,1) forwards;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
  }

    .review-card-light:hover {
      transform: translateY(-6px) scale(1.02);
      box-shadow: 0 40px 100px rgba(0,0,0,0.18), 0 12px 32px rgba(0,0,0,0.12);
    }

  /* ///////// Ribbon ///////// */
  .ribbon-light {
    position: absolute;
    top: -10px;
    right: -40px;
    transform: rotate(22deg);
    background: linear-gradient(90deg, #f6d36b, #ffdd88);
    color: #4a2e00;
    font-weight: 800;
    padding: 6px 56px;
    border-radius: 6px;
    box-shadow: 0 8px 30px rgba(246,211,107,0.2);
    letter-spacing: 1px;
    font-size: 0.95rem;
    z-index: 3;
    text-transform: uppercase;
    animation: ribbonBounce 1.4s ease-in-out infinite alternate;
  }

  /* ===== Header ===== */
  .card-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
  }

  .header-title {
    font-size: 1.95rem;
    font-weight: 800;
    color: #1b1b1b;
    margin: 0;
    text-shadow: 0 2px 6px rgba(0,0,0,0.05);
  }

  .subtle-line {
    width: 64px;
    height: 4px;
    border-radius: 4px;
    background: linear-gradient(90deg, #f6d36b, #ffeaa3);
    box-shadow: 0 4px 12px rgba(246,211,107,0.2);
    animation: shimmer 2s infinite linear;
  }

  /* ===== Rating ===== */
  .rating-content {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: space-between;
  }

  .rating-left {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .rating-score {
    font-size: 4.5rem;
    font-weight: 900;
    color: #1b1b1b;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.05);
  }

  .star-display {
    display: flex;
    gap: 6px;
    margin-top: 0;
  }


  .star-icon {
    font-size: 2rem;
    color: #ffd86b;
    text-shadow: 0 0 8px rgba(255,216,107,0.5);
    transform-origin: center;
    transition: transform 220ms ease, text-shadow 220ms ease;
  }

    .star-icon:nth-child(1) {
      animation: starPulse 2.6s infinite 0s;
    }

    .star-icon:nth-child(2) {
      animation: starPulse 2.6s infinite 0.15s;
    }

    .star-icon:nth-child(3) {
      animation: starPulse 2.6s infinite 0.3s;
    }

    .star-icon:nth-child(4) {
      animation: starPulse 2.6s infinite 0.45s;
    }

    .star-icon:nth-child(5) {
      animation: starPulse 2.6s infinite 0.6s;
    }

  @keyframes starPulse {
    0%,100% {
      transform: scale(1);
      filter: drop-shadow(0 0 0 rgba(255,216,107,0));
    }

    50% {
      transform: scale(1.08);
      filter: drop-shadow(0 6px 18px rgba(255,216,107,0.25));
    }
  }


  /* /////////// Animations /////// */
  @keyframes cardIn {
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes ribbonBounce {
    0% {
      transform: rotate(22deg) translateY(0);
    }

    100% {
      transform: rotate(25deg) translateY(-2px);
    }
  }

  @keyframes shimmer {
    0% {
      background-position: -72px;
    }

    100% {
      background-position: 72px;
    }
  }

  /* /////////// Responsive //////////// */
  @media (max-width: 600px) {
    .rating-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 28px;
    }

    .action-area {
      min-width: 100%;
      width: 100%;
    }

    .review-card-light {
      padding: 28px;
    }

    .ribbon-light {
      right: -28px;
      top: -8px;
      padding: 5px 44px;
      transform: rotate(18deg);
    }
  }

  @media (max-width: 600px) {

    .review-card-light, .action-area {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 12px;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }
  }



  /* =============================================================================================================================
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
                                                 error-message.css
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
================================================================================================================================= */


  .rs-error-message {
    position: fixed !important;
    display: none;
    color: #dc3545;
    font-size: 0.85em;
    font-weight: 500;
    margin-top: 5px;
    padding: 0 5px;
    width: 100%;
    box-sizing: border-box;
    line-height: 1.4;
  }

  #error_message {
    position: relative;
    top: 20px;
    background-color: red;
    color: white !important;
    font-size: 14px;
    font-weight: bold;
  }

  .success {
    background-color: green !important;
    color: white !important;
    font-size: 14px;
    font-weight: bold;
  }
  /*///////////////////////
    error message*/
  @keyframes spin {
    0% {
      transform: rotate(0deg);
    }

    100% {
      transform: rotate(360deg);
    }
  }


  /* 3. Style for the Input/Textarea within the Error Container */
  .rs-field.rs-input-error input,
  .rs-field.rs-input-error textarea {
    /* Gives the actual input element a distinct red border */
    border-color: #dc3545 !important;
  }

    /* 4. Ensure the input area maintains error highlighting on focus */
    .rs-field.rs-input-error input:focus,
    .rs-field.rs-input-error textarea:focus {
      border-color: #dc3545;
      box-shadow: 0 0 10px rgba(220, 53, 69, 0.5);
    }
  /* 4. Ensure the input area maintains error highlighting on focus */
  .rs-field.rs-input-error,
  .rs-field.rs-input-error {
    margin-bottom: 20px;
  }

  @keyframes fadeInError {
    from {
      opacity: 0;
      transform: translateY(-3px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
