  :root {
        --brand-blue: #61b5c9;
        --grey-bg: #efeeee;
        --section-grey: #f2f2f2;
        --text-dark: #1a1f36;
        --text-muted: #4f566b;
        --text-light: #999;
        --container-width: 1200px;
        --symb-primary: #61b5c9;
        --symb-dark: #1a1f36;
        --symb-muted: #425466;
        --symb-bg: #efeeee;
        --symb-success: #00d66b;
        --symb-anim-bezier: cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
        box-sizing: border-box;
    }

    .qc-text-col {
        position: relative;
        top: -12%;
    }

    .sym-main-container {
        max-width: var(--container-width);
        margin: 0 auto;
        padding: 0 20px;
    }

    /* --- HERO SECTION  */
    .sym-hero-wrapper {
        padding: 200px 0 120px;
        background: var(--grey-bg);
        position: relative;
      
    }

    .sym-hero-wrapper::after {
        content: "";
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 100%;
        height: 150px;
        background: white;
        transform: skewY(-3deg);
        z-index: 1;
    }

    .sym-hero-grid-layout {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        align-items: center;
        position: relative;
        z-index: 2;
    }

    .sym-hero-heading-main {
        font-size: 32px;
        font-weight: 700;
        color: #1a1f36;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .sym-hero-body-text {
        font-size: 16px;
        color: var(--text-muted);
        max-width: 85%;
        text-align: justify;
    }

    .sym-hero-media-holder {
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        margin-bottom: -230px;
        /* Overlap effect */
    }

    .sym-hero-media-holder img {
        width: 100%;
        display: block;
    }

    /* --- MANUFACTURING SECTION*/
    .sym-api-segment {
        padding: 0px 0;
        /* Extra top padding for hero overlap */
        background-color: #ffffff;
        margin-top: -35px;
    }

    .sym-fade-slider {
        position: absolute;
        inset: 0;
    }

    .sym-fade-slider img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .sym-fade-slider img.active {
        opacity: 1;
    }

    .sym-top-box {
        max-width: 900px;
        margin-bottom: 60px;
    }

    .sym-label-small {
        color: var(--brand-blue);
        font-weight: 700;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        display: block;
        margin-bottom: 12px;
    }

    .sym-title-large {
        font-size: 32px;
        font-weight: 700;
        color: #1a1f36;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .sym-text-para {
        font-size: 17px;
        line-height: 1.7;
        color: var(--text-muted);
        margin-bottom: 15px;
    }

    /* Perfected Grid Layout */
    .sym-layout-grid {
        display: grid;
        grid-template-columns: 1.1fr 1fr;
        gap: 60px;
        align-items: stretch;
    }

    .sym-left-column {
        display: flex;
        flex-direction: column;
    }

    .sym-stats-stack {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }

    .sym-stat-row {
        border-left: 3px solid var(--brand-blue);
        padding-left: 20px;
    }

    .sym-stat-big {
        display: block;
        font-size: 20px;
        font-weight: 600;
        color: var(--brand-blue);
        line-height: 1;
        margin-bottom: 6px;
    }

    .sym-stat-info {
        font-size: 15px;
        color: var(--text-muted);
        font-weight: 500;
    }

    .sym-list-head {
        font-size: 18px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 20px;
        display: block;
    }

    .sym-list-item {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        font-size: 15px;
        color: var(--text-muted);
        margin-bottom: 15px;
    }

    .sym-list-bullet {
        width: 8px;
        height: 8px;
        background: var(--brand-blue);
        border-radius: 50%;
        margin-top: 7px;
        flex-shrink: 0;
    }

    /* Right Column Image */
    .sym-image-card {
        position: relative;
        height: 100%;
        min-height: 450px;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    }

    .sym-image-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .sym-overlay-box {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(0deg, rgba(0, 43, 73, 0.95) 0%, rgba(0, 43, 73, 0.6) 50%, transparent 100%);
        padding: 40px;
        color: white;
    }

    .sym-overlay-text {
        font-size: 18px;
        font-weight: 400;
        line-height: 1.6;
    }

    /* --- DUAL INFORMATION ROW DESIGN --- */
    .sym-dual-row {
        padding: 80px 0;
        background: #fff;
    }

    .sym-grid-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: stretch;
        border-bottom: 2px solid #d8d6d6;
        padding-bottom: 70px;
    }

    /* Info Cards */
    .sym-info-card {
        /*padding: 40px;*/
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        overflow: hidden;
    }


    .sym-card-tag {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--brand-blue);
        padding: 6px 0px;
        display: inline-block;
        margin-bottom: 15px;
    }

    .sym-card-title {
        font-size: 32px;
        font-weight: 700;
        color: #1a1f36;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    /* Stats Grid for API Section */
    .sym-api-stats-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin: 25px 0;
    }

    .sym-stat-box {
        text-align: center;
        padding: 15px;
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 15px;
    }

    .sym-stat-perc {
        display: block;
        font-size: 22px;
        font-weight: 800;
        color: var(--brand-blue);
    }

    .sym-stat-label {
        font-size: 11px;
        color: #777;
        text-transform: uppercase;
        font-weight: 600;
    }

    /* R&D List Styling */
    .sym-rd-list {
        list-style: none;
        padding: 0;
        margin: 5px 0;
    }

    .sym-rd-item {
        padding: 12px 0;
        border-bottom: 1px dashed #e0e0e0;
        font-size: 15px;
        color: var(--text-muted);
        display: flex;
        align-items: center;
    }

    .sym-rd-item:last-child {
        border: none;
    }

    .sym-rd-item::before {
        content: "→";
        margin-right: 12px;
        color: var(--brand-blue);
        font-weight: bold;
    }

    /* Highlight Text Box */
    .sym-highlight-box {
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid #d8d6d6;
        font-size: 14px;
        color: #444;
        line-height: 1.6;
    }

    /* --- REGULATORY EXCELLENCE STYLES (From Code 1) --- */
    .symb-reg-main-section {
        display: flex;
        justify-content: center;
        align-items: center;
        /*min-height: 100vh;*/
        padding: 60px 20px 0px;
        background-color: var(--symb-bg);
        margin-top: 55px;
    }

    .symb-reg-grid-layout {
        max-width: 1160px;
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 100px;
        align-items: flex-start;
    }

    .symb-reg-label-tag {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-weight: 800;
        font-size: 0.8rem;
        background: linear-gradient(90deg, var(--symb-primary), #54b4d3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 15px;
        display: inline-block;
    }

    .symb-reg-hero-title {
        font-size: 32px;
        font-weight: 700;
        color: #1a1f36;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .symb-reg-lead-text {
        font-size: 1.2rem;
        line-height: 1.7;
        color: var(--symb-muted);
        margin-bottom: 40px;
    }

    .symb-reg-metrics-board {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .symb-reg-metric-tile {
        padding: 10px;
        border-left: 3px solid #61b5c9;
        display: flex;
        align-items: center;
        gap: 15px;
        transition: all 0.4s var(--symb-anim-bezier);
    }

    .symb-reg-icon-frame {
        width: 38px;
        height: 38px;
        color: var(--symb-primary);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: 0.3s;
    }

    .symb-reg-metric-tile h4 {
        margin: 0;
        font-size: 0.95rem;
        font-weight: 700;
        color: #1a1f36;
        line-height: 1.2;
    }

    .symb-reg-metric-tile p {
        margin: 2px 0 0 0;
        font-size: 0.8rem;
        color: var(--symb-muted);
    }

    .symb-reg-text-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .symb-reg-compliance-badge {
        margin-top: 45px;
        display: inline-flex;
        align-items: center;
        gap: 15px;
        font-size: 0.85rem;
        color: #6a7c92;
        font-weight: 600;
    }

    .symb-reg-status-dot {
        width: 10px;
        height: 10px;
        background: var(--symb-success);
        border-radius: 50%;
        box-shadow: 0 0 12px var(--symb-success);
        animation: symbPulseAnim 2s infinite;
    }

    @keyframes symbPulseAnim {
        0% {
            transform: scale(0.9);
            opacity: 0.6;
        }

        50% {
            transform: scale(1.3);
            opacity: 1;
        }

        100% {
            transform: scale(0.9);
            opacity: 0.6;
        }
    }

    .symb-reg-timeline-header {
        font-size: 1.5rem;
        font-weight: 800;
        color: var(--symb-dark);
        margin-bottom: 35px;
        letter-spacing: -0.02em;
    }

    .symb-reg-stack-engine {
        position: relative;
        height: 452px;
        width: 100%;
    }

    .symb-reg-story-card {
        position: absolute;
        width: 100%;
        height: 65px;
        background: white;
        border-radius: 14px;
        display: flex;
        align-items: center;
        box-shadow: 0 15px 35px rgba(50, 50, 93, 0.06), 0 5px 15px rgba(0, 0, 0, 0.03);
        border: 1px solid rgba(230, 235, 241, 0.9);
        transition: all 0.9s var(--symb-anim-bezier);
        overflow: hidden;
        transform-origin: center top;
    }

    .symb-reg-story-aside {
        width: 80px;
        height: 100%;
        background: #f8f9fa;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        transition: background 0.6s ease;
    }

    .symb-reg-story-body {
        padding: 0 25px;
        flex: 1;
    }

    .symb-reg-story-body p {
        margin: 0;
        font-size: 0.9rem;
        color: var(--symb-muted);
        line-height: 1.4;
    }

    .symb-reg-story-card.symb-active-tile {
        border-left: 6px solid var(--symb-primary);
    }

    .symb-reg-story-card.symb-active-tile .symb-reg-story-aside {
        background: var(--symb-primary);
        color: white;
    }

    .symb-reg-tile-incoming {
        transform: translateY(-60px) scale(0.92);
        opacity: 0;
    }
    
    

    /* Global Responsive */
    @media (max-width: 1024px) {

        .sym-hero-grid-layout,
        .sym-layout-grid,
        .sym-grid-container,
        .symb-reg-grid-layout {
            grid-template-columns: 1fr;
            gap: 40px;
        }

        .sym-hero-media-holder {
            margin-bottom: 0;
        }

        .sym-api-segment {
            padding-top: 80px;
        }

        .sym-hero-heading-main,
        .symb-reg-hero-title {
            font-size: 32px;
        }

        .sym-image-card {
            min-height: 400px;
        }

        .symb-reg-grid-layout {
            padding: 20px;
            gap: 60px;
        }
    }

    /* --- NEW STYLES: SUSTAINABILITY (TEXT ONLY) --- */
    .sym-sust-text-section {
        padding: 48px 0 0;
        background-color: #ffffff;
        text-align: center;
    }

    .sym-sust-header-box {
        max-width: 800px;
        margin: 0 auto 60px;
    }

    .sym-sust-grid-modern {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
        margin-top: 40px;
    }

    /* Card styling with centering and premium hover */
    .sym-sust-item-card {
        padding: 40px 20px;
        background: #fff;
        border: 1px solid #f0f0f0;
        border-radius: 24px;
        /* Halka sa zyada round for modern look */
        transition: all 0.5s var(--symb-anim-bezier);
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Horizontally centers content */
        text-align: center;
        /* Centers heading and paragraph text */
    }

    /* Icon Box centering logic */
    .sym-sust-icon-box {
        width: 50px;
        height: 50px;
        background: rgba(97, 181, 201, 0.08);
        /* Light brand tint */
        border-radius: 16px;
        display: flex;
        align-items: center;
        /* Centers SVG vertically */
        justify-content: center;
        /* Centers SVG horizontally */
        margin-bottom: 25px;
        transition: all 0.4s var(--symb-anim-bezier);
    }

    /* Heading update */
    .sym-sust-item-card h4 {
        font-size: 19px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 12px;
    }

    /* Paragraph update */
    .sym-sust-item-card p {
        font-size: 15px;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0;
    }

    /* --- HOVER EFFECTS --- */

    .sym-sust-item-card:hover {
        border-color: var(--brand-blue);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
        transform: translateY(-12px);
        /* Slightly higher lift */
    }

    /* Hover par Icon Box ko highlight karein */
    .sym-sust-item-card:hover .sym-sust-icon-box {
        background: var(--brand-blue);
        transform: scale(1.1) rotate(8deg);
        /* Modern pop-out effect */
    }

    /* Hover par SVG icon ka color white karein */
    .sym-sust-item-card:hover .sym-sust-icon-box svg {
        stroke: #ffffff;
    }

    .sym-sust-footer-msg {
        margin: 25px auto;
        padding: 25px;
        border-radius: 15px;
        font-size: 16px;
        font-weight: 500;
        color: var(--text-dark);
        display: inline-block;
        max-width: 900px;
    }

    /* --- REFINED PREMIUM LEADERSHIP SECTION --- */
    .stc-elite-leader-wrapper {
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #efeeee;
    }

    .stc-elite-leader-container {
        max-width: 1100px;
        width: 100%;
        margin: 0 auto;
        padding: 0 40px;
        position: relative;
        z-index: 1;
    }

    .stc-elite-leader-layout-grid {
        display: grid;
        grid-template-columns: 310px 1fr;
        gap: 70px;
        align-items: center;
        background: #efeeee;

    }

    /* Portrait Side */
    .stc-elite-leader-visual-box {
        position: relative;
        width: 100%;
    }

    .stc-elite-leader-portrait-frame {
        position: relative;
        z-index: 2;
        background-color: #efeeee;
        left: 20%;
    }

    .stc-elite-leader-portrait-frame img {
        width: 80%;
        height: 329px;
        border-radius: 8px;
        display: block;
        filter: grayscale(5%) contrast(1.02);
    }

    .stc-elite-leader-decorative-accent {
        position: absolute;
        top: -20px;
        left: 27px;
        width: 84%;
        height: 100%;
        border: 2px solid #61b5c9;
        border-radius: 8px;
        z-index: 1;
    }

    /* Content Side */
    .stc-elite-leader-info-block {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .stc-elite-leader-label-tag {
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 5px;
        color: #61b5c9;
        font-weight: 800;
        margin-bottom: 15px;
    }

    .stc-elite-leader-headline-name {
        font-size: 30px;
        font-weight: 500;
        color: #1a1f36;
        margin: 0;
        line-height: 1;
        letter-spacing: -2px;
    }

    .stc-elite-leader-designation-role {
        font-size: 14px;
        color: #4f566b;
        margin-top: 10px;
        font-weight: 500;
    }

    .stc-elite-leader-bio-summary {
        font-size: 14.7px;
        line-height: 1.7;
        color: #425466;
        margin-bottom: 40px;
        max-width: 550px;
        text-align: justify;
    }

    /* Magnitude Stats */
    .stc-elite-leader-metrics-row {
        display: grid;
        grid-template-columns: repeat(3, auto);
        justify-content: center;
        gap: 184px;
        margin-bottom: 165px;
        margin-top: 80px;
    }

    .stc-elite-leader-metric-item {
        display: flex;
        flex-direction: column;
        padding-left: 25px;
        border-left: 3px solid #61b5c9;
    }

    .stc-elite-leader-metric-value {
        font-size: 32px;
        font-weight: 800;
        color: #1a1f36;
        line-height: 1;
    }

    .stc-elite-leader-metric-caption {
        font-size: 10px;
        text-transform: uppercase;
        color: #61b5c9;
        letter-spacing: 1.2px;
        margin-top: 6px;
        font-weight: 700;
    }

    /* Investor Section */
    .stc-elite-leader-investor-group {
        padding-top: 30px;
        position: relative;
    }

    .stc-elite-leader-investor-group::before {
        content: "";
        width: 671px;
        height: 1px;
        background: rgba(0, 0, 0, 0.15);
        position: absolute;
        top: 0;
        left: 33%;
        transform: translateX(-50%);
    }

    .stc-elite-leader-investor-heading {
        font-size: 10px;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #999;
        font-weight: 800;
        margin-bottom: 20px;
        display: block;
    }

    .stc-elite-leader-investor-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 19px;
    }

    .stc-elite-leader-partner-tag {
        font-size: 13px;
        font-weight: 700;
        color: #1a1f36;
        position: relative;
        padding-bottom: 3px;
    }

    .stc-elite-leader-partner-tag::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(97, 181, 201, 0.3);
    }

    /* Responsive Fixes */
    @media (max-width: 1024px) {
        .stc-elite-leader-wrapper {
            padding: 60px 0;
            min-height: auto;
        }

        .stc-elite-leader-layout-grid {
            grid-template-columns: 1fr;
            gap: 50px;
            text-align: center;
        }

        .stc-elite-leader-visual-box {
            max-width: 340px;
            margin: 0 auto;
        }

        .stc-elite-leader-portrait-frame img {
            height: 450px;
        }

        .stc-elite-leader-headline-name {
            font-size: 32px;
        }

        .stc-elite-leader-metrics-row {
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 30px;
        }

        .stc-elite-leader-investor-flex {
            justify-content: center;
        }

        .stc-elite-leader-bio-summary {
            margin-left: auto;
            margin-right: auto;
        }

        .symb-reg-metrics-board {
            display: flex;
            flex-direction: column;
        }
    }

    .meet-board-btn {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.04em;
        color: #5b5b5b;
        text-decoration: none;
        text-transform: uppercase;
        position: relative;
        top: -29px;
        /* bottom: 49%; */
        left: 65%;
    }

    /* FONT AWESOME ARROW */
    .meet-board-btn .arrow {
        font-size: 0.9rem;
        display: inline-block;
        animation: arrow-bounce 1.6s ease-in-out infinite;
    }

    /* LEFT ↔ RIGHT BOUNCE */
    @keyframes arrow-bounce {
        0% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(6px);
        }

        100% {
            transform: translateX(0);
        }
    }
    
    
    /* --- MOBILE & TABLET RESPONSIVE --- */

@media (max-width: 992px) {
    /* Hero Adjustments */
    .sym-hero-wrapper {
        padding: 120px 0 60px;
    }

    .sym-hero-grid-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .sym-hero-body-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .sym-hero-media-holder {
        margin-bottom: 0;
        margin-top: 30px;
    }

    /* Dual Row / Info Cards */
    .sym-grid-container {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
    }

    /* Manufacturing Section */
    .sym-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sym-image-card {
        min-height: 300px;
    }

    /* Regulatory Section */
    .symb-reg-grid-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Leadership Section */
    .stc-elite-leader-layout-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stc-elite-leader-visual-box {
        margin: 0 auto;
    }

    .stc-elite-leader-portrait-frame {
        left: 0;
        text-align: center;
    }

    .stc-elite-leader-portrait-frame img {
               width: 100%;
        max-width: 343px;
        margin: auto 12px;
    }

    .stc-elite-leader-decorative-accent {
        left: -3px;
        width: 100%;
    }

    /* Resetting the absolute positioned button */
    .meet-board-btn {
        position: static;
        display: inline-flex;
        justify-content: center;
        margin-top: 20px;
    }

    /* Metrics Row */
    .stc-elite-leader-metrics-row {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    /* Font size adjustments for mobile */
    .sym-hero-heading-main, 
    .sym-title-large, 
    .symb-reg-hero-title, 
    .sym-card-title {
        font-size: 26px !important;
    }

    .sym-hero-body-text, .sym-text-para {
        font-size: 15px;
    }

    /* Regulatory Timeline adjustment */
    .symb-reg-stack-engine {
        height: 400px;
    }

    .symb-reg-story-card {
        height: auto;
        padding: 10px 0;
    }

    .symb-reg-story-aside {
        width: 60px;
        font-size: 16px;
    }

    /* Sustainability Grid */
    .sym-sust-grid-modern {
        grid-template-columns: 1fr;
    }

    /* Metrics Row Gap Fix */
    .stc-elite-leader-metrics-row {
        gap: 50px;
        justify-content: center;
        align-items: flex-start;
        /* margin: 0 auto; */
        margin: 40px;
    }

    .stc-elite-leader-metric-item {
        padding-left: 15px;
    }

    .stc-elite-leader-metric-value {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .sym-main-container {
        padding: 0 15px;
    }

    /* Regulatory Icons Grid */
    .symb-reg-metrics-board {
        grid-template-columns: 1fr;
    }

    .sym-overlay-box {
        padding: 20px;
    }

    .sym-overlay-text {
        font-size: 15px;
    }

    /* Footer message in sustainability */
    .sym-sust-footer-msg {
        font-size: 14px;
        line-height: 1.5;
    }
}

    /* HOVER POLISH */
    .meet-board-btn:hover {
        color: #000;
    }

    .meet-board-btn:hover .arrow {
        animation-play-state: paused;
        transform: translateX(8px);
    }