:root {
    --site-theme: #77221e;
    --new-color: #ffffff;
    --new-dark: #1a1a1a;
    --new-light: #ececec;
    --black: #ffffff;
    --white: #ffffff;


}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 99;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Header */
.mobile-header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 999;
}

.mobile-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 0px 20px; */
    width: 100%;
    background-color: #ffffff36;
    position: fixed;
    backdrop-filter: blur(8px);
    margin: 7px;
}

.mobile-navbar .Mobile-logo img {
    width: 90px;
    padding: 5px;
}

/* .cart-item-model-container,
.apple-sidebar::-webkit-scrollbar { */
    /* width: thin; */
    /* background-color: transparent; */
/* } */

/* Burger Icon */
/* .burger {
    width: 30px;
    cursor: pointer;
} */

.hamburger {
    font-size: 40px;
    /* padding: 8px 15px; */
    margin-right: 10px;
    cursor: pointer;
    z-index: 101;
    top: 10px;
    left: 10px;
    color: var(--site-theme);
    /* border: 1px solid #ddd; */
    border-radius: 6px;
}

.close-btn {
    border: none;
    font-size: 24px;
    margin: 10px 25px 0px 20px;
    color: red;
    font-weight: bolder;
    background-color: transparent;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    margin: 6px 0;
    transition: 0.3s ease;
}

/* Mobile Menu – New Style */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    height: 100vh;
    background: var(--white);
    /* backdrop-filter: blur(12px); */
    /* -webkit-backdrop-filter: blur(12px); */
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.4);
    transition: right 0.4s ease;
    z-index: 99999999;
}

/* Active */
.mobile-menu.active {
    right: 0;
}

/* Menu List */
.mobile-menu ul {
    list-style: none;
    padding: 40px 25px 25px;
    margin: 0;
}

.mobile-menu ul li {
    margin-bottom: 22px;
}

.mobile-menu ul li a {
    color: #000000;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu ul li a:hover {
    color: var(--text-hover);
    transform: translateX(6px);
}

/* :root {
    --site-theme: #77221e;
    --new-color: #fff1f1;
    --new-dark: #e49e9e;

} */

@font-face {
    font-family: 'rubik';
    src: url('../fonts/rubik/rubik-variablefont_wght.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'inter';
    src: url('../fonts/inter/Inter-VariableFont_opsz\,wght.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

.header-card-text {
    font-family: "rubik";
}

h1,
h2 {
    color: var(--site-theme);
}

h1,
h2 {
    color: rgb(0, 0, 0);
}

.machine-herosection {
    color: var(--site-theme);
}



body {
    margin: 0px;
    overflow-y: scroll;
    scroll-behavior: auto;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    background-image: url('../img/watermark/engineering-line-art.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 60%;
    background-attachment: fixed;
}

body::-webkit-scrollbar {
    display: none;
}

/* html,
body {
    pointer-events: auto;
}

body {
    overflow: hidden;
}

.lenis,
.lenis-smooth {
    pointer-events: auto !important;
}

button,
a {
    touch-action: manipulation;
} */


.navitems a i {
    color: #000000;
    padding-left: 2px;
}




.header {
    position: sticky;
    z-index: 9999999;
    top: 0;
}

.nav {
    display: flex;
    justify-content: center;

}

.navbar {
    display: grid;

    /* background: #e5e5e5; */
    background: linear-gradient(180deg, #f4f4f4, #ededed);

    height: 74px;
    color: #000000;
    width: 100%;
    position: top;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;

}

#navbackimg {
    height: 100px;
    width: 152px;

    background: white;
    position: absolute;
    left: -36%;
    top: -15%;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.logo {
    height: 60px;
    width: 60px;
    position: absolute;
    left: 4.4%;
}

.navitems {

    height: 40px;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    justify-items: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    right: 7%;
    padding-left: 5px;

}

.navitems a {
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    text-align: center;
    font-style: initial;

    color: black;
}

#home {
    display: inline-block;
    transition: transform 0.3s ease;
}

#home:hover {
    transform: scale(1.2);

}

#about {
    display: inline-block;

    transition: transform 0.3s ease;
}

#about:hover {
    transform: scale(1.2);

}

#contact {
    display: inline-block;

    transition: transform 0.3s ease;
}

#contact:hover {
    transform: scale(1.2);

}

#product {
    display: inline-block;

    transition: transform 0.3s ease;
}

#product:hover {
    transform: scale(1.2);

}


.btn-primary:hover {

    background-color: var(--site-theme);
    color: #ffffff;

}

/* ===============================
   MOBILE FIX — <= 768px (FINAL)
   =============================== */

@media (max-width: 453px) {.apple-panel-img-cont-mob img {
    margin-top: 0px !important;
}}
@media (max-width: 768px) {

    /* ---- HARD STOP OVERFLOW ---- */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden !important;
        position: relative;
    }

    * {
        max-width: 100vw;
        box-sizing: border-box;
    }

    /* ---- IMAGES / MEDIA ---- */
    img,
    video,
    iframe,
    model-viewer {
        /* max-width: 100% !important; */
        /* height: auto !important; */
        display: block;
    }

    #canadaimgunq {
        height: 100% !important;
    }

    #brazilimgunq {
        height: 55% !important;
    }

    #australiaimgunq {
        height: 100% !important;
    }

    #unitedstatesimgunq {
        height: 100% !important;
    }

    #arabimgunq {
        height: 100% !important;
    }

    .carousel-item img {
        height: 217px !important;
    }

    .carousel {
        padding-top: 78px !important;
    }

    .Rectangular-Gasketsh1 {
        color: #000;
    }


    /* ---- SECTIONS / CONTAINERS ---- */
    section,
    div,
    .container,
    .containerw,
    .containerr,
    .product-container,
    .products-showcase,
    .about-section,
    .contact-section,
    .footer {
        /* width: 100% !important; */
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* ---- GRIDS → SINGLE COLUMN ---- */
    .product-card,
    .about-content-inner,
    .diff-grid,
    .certificates,
    .groupp,
    .footer-container,
    .global-content,
    .timeline {
        grid-template-columns: 1fr !important;
    }

    /* ---- ABSOLUTE ELEMENT SAFETY ---- */
    [style*="left"],
    [style*="right"] {
        left: auto !important;
        right: auto !important;
    }

    /* ---- PRODUCT CARD FIX ---- */
    .product-card {
        margin: 0 auto !important;
        padding: 15px !important;
        min-height: auto !important;
    }

    .product-media {
        justify-self: center !important;
        margin: 20px auto 0 !important;
        transform: none !important;
    }

    /* ---- KILL DECOR ELEMENTS ---- */
    .product-style,
    .product-arrow,
    .inside-content {
        display: none !important;
    }


    /* ---- TEXT SAFE ---- */
    h1,
    h2,
    h3,
    h4,
    p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .homeh1 {
        font-size: 13px !important;
        width: 100%;
        text-align: left;
    }

    .g-recaptcha {
        height: 100px !important;
        width: 350px !important;
        overflow-y: hidden !important;
    }

    .rc-anchor-logo-portrait {
        margin: 12px 0 0 -8px !important;
    }

    .homeh4 {
        font-size: 12.9px !important;
        width: 100%;
        text-align: left;
        color: #0000008f;
    }

    .homep {
        font-size: 13px !important;
    }

    /* ---- NAV ---- */
    .navbar {
        display: none !important;
    }

    /* ---- FOOTER ---- */
    .footer {
        padding: 40px 20px !important;
    }

    .fot-add-new {
        color: white !important;
        font-size: 17px !important;
        font-weight: 500 !important;
    }

    .global-reach {
        height: auto !important;
        padding: 20px 10px !important;
    }

    .about-title {
        font-size: 28px !important;
        text-align: center !important;
    }

    /* 
    .paraG {
        background-image: url(../img/about/globe.png);
        background-repeat: no-repeat !important;
        height: 40vh !important;
        width: 100% !important;
        background-size: contain !important;
        background-attachment: none !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;

    } */

    .para {
        height: 28vh !important;
        background-attachment: scroll !important;
        background-position: center !important;
        background-size: cover !important;
        padding: 0 16px !important;
        text-align: center !important;
    }

    .about-title {
        font-size: 26px !important;
        letter-spacing: 2px !important;
    }

    /* ===============================
       ABOUT CONTENT WRAPPER
    =============================== */
    .about-content-start {
        padding: 14px 16px !important;
    }

    .sc-section-heading:hover .sc-heading-title {
        padding-bottom: 33px !important;
    }

    .about-content-inner {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        align-items: center !important;
        padding: 10px !important;
    }

    /* ===============================
       IMAGE
    =============================== */
    .about-inner {
        width: 100% !important;
        max-width: 360px !important;
        margin: 0 auto !important;
    }

    .about-inner img {
        width: 100% !important;
        height: auto !important;
        border-radius: 14px !important;
        display: block !important;
    }

    /* ===============================
       CONTENT
    =============================== */
    .about-inner-c {
        width: 100% !important;
        text-align: center !important;
    }

    .about-inner-c h6 {
        font-size: 20px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }

    .about-inner-c p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: justify !important;
    }

    .global-new-content {
        display: flex !important;
        height: 87vh !important;
        padding: 20px !important;
        gap: 20px !important;
        overflow-x: auto !important;
    }

    .global-content-box {
        flex: 0 0 100vw !important;
        height: 60vh !important;
        background-size: contain !important;
    }

    .global-new-content::scroll-button(left),
    .global-new-content::scroll-button(right) {
        display: none !important;
    }

    /* ===============================
       ICON (IF USED)
    =============================== */
    .about-inner-c i {
        display: block !important;
        margin: 0 auto 10px !important;
    }

    .para div h1 {

        font-family: 'rubik' !important;
        color: white !important;
        left: 1% !important;
        z-index: 9999 !important;
        transform: none !important;
        /* position: n !important; */
        position: fixed;

    }

    .sc-contact-title {
        font-size: 28px !important;
    }

    .sc-contact-subtitle {
        font-size: 13px !important;

        margin-bottom: 0px !important;
    }

    .sc-contact-icon {
        font-size: 13px !important;

    }

    #home-intro-content h1 {

        font-size: 16px !important;
    }

    #home-intro-content h4 {

        font-size: 14px !important;
    }

    #home-intro-content p {

        font-size: 13px !important;
    }

    .logo-card img {
        max-height: 27% !important;
    }

    #sc-contact-section {
        padding: 10px !important;
    }

    .sc-submit-btn {
        width: 87%;
    }

    .sc-contact-details p {
        font-size: 12px;
    }

    /* ===============================
       GRID → SINGLE COLUMN
    =============================== */
    .global-content {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        padding: 0 !important;
        position: relative !important;
    }

    /* ===============================
       EACH CONTENT CARD
    =============================== */
    .global-each-content {
        width: 100% !important;
        height: auto !important;
        padding: 15px !important;
        position: relative !important;
        text-align: left !important;
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.1) !important;
    }

    /* ===============================
       REMOVE ABSOLUTE TEXT
    =============================== */
    .global-each-content p {
        position: static !important;
        padding: 0 !important;
        margin: 10px 0 !important;
        text-align: left !important;
        font-size: 14px !important;
        line-height: 1.6 !important;
    }

    /* ===============================
       COUNTRY TITLES
    =============================== */
    .global-each-content>div>p,
    .global-each-content>p:first-child {
        font-size: 22px !important;
        text-align: left !important;
        padding: 0 !important;
        margin-bottom: 8px !important;
    }

    /* ===============================
       BOOTSTRAP ROW/COL FIX
    =============================== */
    .row {
        margin: 0 !important;
        padding: 0 !important;
    }

    .col-lg-10,
    .col-lg-2 {
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        text-align: left !important;
    }

    /* ===============================
       SVG QUOTES
    =============================== */
    svg.bi-quote {
        width: 18px !important;
        height: 18px !important;
        vertical-align: middle !important;
    }

    /* ===============================
       GLOBE — HIDE ON MOBILE
    =============================== */
    .globe3D {
        display: none !important;
    }

    #product-company-section {
        padding: 80px 16px !important;
        gap: 56px !important;
    }

    /* ===============================
       INTRO
    =============================== */
    .products-intro {
        text-align: center !important;
        margin-bottom: -57px !important
    }

    .products-intro h1 {
        font-size: 19px !important;
    }

    .products-intro p {
        font-size: 14px !important;
    }

    /* ===============================
       PRODUCT ROW — FORCE SAME ORDER
    =============================== */
    .product-row,
    .product-row.reverse {
        display: flex !important;
        flex-direction: column !important;
        gap: 28px !important;
        max-width: 100% !important;
        transform: none !important;
    }

    /* ===============================
       IMAGE — ALWAYS FIRST
    =============================== */
    .product-row .product-image {
        order: 1 !important;
        width: 100% !important;
        height: 240px !important;
        background-size: contain !important;
        background-position: center !important;
        transform: none !important;
        animation: none !important;
    }

    .product-image::before,
    .product-image::after {
        display: none !important;
    }

    /* ===============================
       CONTENT — ALWAYS SECOND
    =============================== */
    .product-row .product-unit-content {
        order: 2 !important;
        max-width: 100% !important;
        transform: none !important;
        text-align: left !important;
    }

    /* ===============================
       TEXT CLEANUP
    =============================== */
    .product-unit-tag,
    .product-unit-title,
    .product-unit-features li {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .product-unit-title {
        font-size: 22px !important;
        margin-bottom: 12px !important;
    }

    .product-unit-divider {
        width: 60px !important;
        height: 3px !important;
        margin-bottom: 20px !important;
        transform: scaleX(1) !important;
        animation: none !important;
    }

    /* ===============================
       CTA
    =============================== */
    .view-product,
    .view-product.leftpv {
        margin-bottom: 20px !important;
    }

    /* ===============================
       FEATURES
    =============================== */
    .product-unit-features li {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 10px !important;
    }

    .about-timeline {
        padding: 80px 16px !important;
    }

    /* Container */
    .timeline-container {
        max-width: 100% !important;
    }

    /* Timeline vertical line */
    .timeline-line {
        left: 16px !important;
        transform: none !important;
    }

    /* Timeline rows → single column */
    .timeline-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-bottom: 80px !important;
        padding-left: 40px !important;

        /* ❌ Disable animation */
        animation: none !important;
        transform: none !important;
        opacity: 1 !important;
    }

    /* Remove connector */
    .timeline-connector {
        display: none !important;
    }

    /* Image wrapper */
    .timeline-img {
        width: 100% !important;
        justify-self: stretch !important;

        /* ❌ Disable hover / transitions */
        animation: none !important;
        transform: none !important;
        transition: none !important;
    }

    /* Parallax OFF (important for mobile) */
    #time-line-1975-parallex,
    #time-line-1978-parallex,
    #time-line-1990-parallex {
        height: 220px !important;
        background-attachment: scroll !important;
        border-radius: 14px !important;

        /* ❌ Ensure visibility */
        opacity: 1 !important;
        transform: none !important;
    }

    /* Text */
    .timeline-text {
        max-width: 100% !important;
        padding-left: 0 !important;

        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .timeline-text h6 {
        font-size: 20px !important;
        margin-bottom: 8px !important;
    }

    .timeline-text p {
        font-size: 14px !important;
        line-height: 1.7 !important;
        text-align: left !important;
    }

    /* Remove left/right behavior */
    .timeline-row.left .timeline-img,
    .timeline-row.right .timeline-img,
    .timeline-row.left .timeline-text,
    .timeline-row.right .timeline-text {
        justify-self: start !important;
    }

    /* ❌ Disable hover scale if exists */
    .timeline-row:hover img {
        transform: none !important;
    }

    /* Section heading */
    .certificate h6 {
        font-size: 22px !important;
        padding: 16px !important;
        line-height: 1.4 !important;
    }

    /* Certificates grid → single column */
    .certificates {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
        padding: 0 12px !important;
    }

    /* Certificate box */
    .certifacte-box {
        width: 100% !important;
        max-width: 280px !important;
        margin: auto !important;
        padding: 8px !important;
    }

    .certifacte-box div img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .product-single-banner-m {
        /* height: 50vh !important; */
        width: 100% !important;
        filter: brightness(0.5) !important;
        padding-top: 21%;
    }

    .product-single-banner-con-h6-m {
        color: white !important;
        font-size: 18px !important;
        font-family: 'rubik' !important;
        font-weight: 900 !important;
        position: absolute !important;
        top: 2% !important;
        left: 9% !important;
        animation: psbh6 both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }



    /* Modal overlay */
    .certificate-modal,
    .certificate-modal-open {
        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        padding: 20px !important;
        z-index: 999 !important;
    }

    /* Modal content */
    .certificates-modal {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    /* Modal image box */
    .certifacte-box-modal {
        width: 100% !important;
        max-width: 340px !important;
        margin: auto !important;
        padding: 0 !important;
    }

    .certifacte-box-modal div img {
        width: 100% !important;
        height: auto !important;
        max-height: 80vh !important;
        object-fit: contain !important;
    }

    /* Animation tuning for mobile */
    #certifacte-box1,
    #certifacte-box2,
    #certifacte-box3 {
        animation-duration: 1.2s !important;
        animation-delay: 0s !important;
    }

    .map-section {
        height: 30vh !important;
        width: 100% !important;
        display: flex;
        padding: 0px !important;
        gap: 0 !important;
    }

    .apple-page {
        grid-template-columns: 1fr !important;
    }

    /* SIDEBAR → STICKY TOP BAR */
    .apple-sidebar {
        display: none !important;
        /* position: fixed !important;
        top: -11px !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0px !important;
        padding: 14px 16px !important;
        height: auto !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        border-right: none !important;
        border-bottom: 1px solid #e5e5e5 !important;
        background: #fff !important; */
    }

    .sc-section-heading:hover .sc-heading-title {

        padding-bottom: 32px !important;

    }

    .joe {
        font-size: 10px;
    }

    .Mr.joe {
        font-size: 10px;
    }

    /* Hide sidebar heading */
    .side-head {
        display: none !important;
    }

    /* Sidebar links */
    .side-link {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;

        font-size: 12px !important;
        gap: 6px !important;
        min-width: 90px !important;

        text-align: center !important;
        white-space: normal !important;

        transform: none !important;
    }

    .cart-item {
        top: 25% !important;
    }

    .cart-items-each p {
        padding: 5px !important;
        width: 111px !important;
    }

    .cart-item-model {
        width: 270px !important;
    }

    .side-link:hover {
        transform: none !important;
    }

    .side-link.active {
        transform: none !important;
        font-weight: 600 !important;
        color: var(--brand) !important;
    }

    /* .executive-caption {
        display: block !important;
        width: 266px !important;
    }

    .executive-link-button:hover {
        display: block !important;
    }

    .executive-title {
        font-size: 1rem !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    .executive-link-button {
        width: 111px !important;
        background-color: var(--site-theme);
        height: 34px !important;
        display: flex !important;
        position: absolute !important;
        align-items: center !important;
        justify-content: center !important;
         padding: 31px; 
        bottom: 7% !important;
        right: 51% !important;
        color: white;
        border-radius: 35px !important;
        font-size: 9px !important;
    }

    .executive-link-button2 {
        width: 109px !important;
        height: 7px !important;
         padding: 24px !important; 
        font-size: 14px !important;
        position: absolute !important;
        bottom: 7% !important;
        right: 5% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background-color: transparent !important;
        border: 2px solid var(--site-theme) !important;
        color: white !important;
        border-radius: 35px !important;
    }

    .executive-description {
        font-size: 12px !important;
        color: whitesmoke;
        line-height: 1.65 !important;
        margin-bottom: 24px !important;
        text-align: left !important;
    } */

    /* Sidebar icons */
    .side-thumb {
        width: 28px !important;
        height: 28px !important;

        opacity: 1 !important;
        transform: none !important;
    }

    /* PANELS */
    .panel {
        min-height: auto !important;

        padding: 120px 18px 60px !important;

        justify-content: center !important;
        padding-top: 10px !important;
        background-position: center top !important;
        background-size: 85% !important;
        background-repeat: no-repeat !important;
    }

    /* Panel mask stays for GSAP */
    .panel-mask {
        background: #fff !important;
    }

    /* PANEL CONTENT */
    .panel-content {
        max-width: 100% !important;
        padding-top: 10px !important;
        text-align: left !important;

        /* padding-top: 220px !important; */
        /* space for hero image */
    }

    .panel-content h1 {
        font-size: 26px !important;
        line-height: 1.25 !important;
    }

    .panel-content p {
        font-size: 15px !important;
        line-height: 1.7 !important;
    }

    .mobile-timeline {
        margin-top: 12px !important;
    }

    .feature-list {
        padding-left: 16px !important;
    }

    .feature-list li {
        font-size: 14px !important;
    }

    .cta {
        padding: 12px 26px !important;
        font-size: 14px !important;
    }

    /* Hide horizontal scrollbar (mobile polish) */
    .apple-sidebar::-webkit-scrollbar {
        display: none !important;
    }

    .award-section {
        height: auto;
        padding: 60px 0;
        background-attachment: scroll;
    }

    .award-slider {
        width: 92%;
    }

    .award-container {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .award-img {
        width: 262px;
        height: 200px;
        margin: 0 auto;
    }

    .glass {
        /* padding: 24px; */
        max-width: 100%;
        text-align: center;
        height: 60vh;
        /* overflow-y:scroll; */
        background-color: none !important;
    }

    .hero-btn {
        padding: 7px 30px !important;
    }

    .mobile-navbar {
        height: 69px !important;
    }
/* 
    .glass {
        background: rgba(255, 255, 255, 0);

        background: linear-gradient(282deg, rgb(255 255 255 / 83%), rgba(255, 255, 255, 0.35));
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 35px;
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    } */

    .award-content h2 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    .award-content p {
        font-size: 14px;
        max-width: 100%;
    }

    .award-content ul li {
        font-size: 13px;
    }

    /* NAV BUTTONS INSIDE */
    .award-nav {
        top: auto;
        bottom: -20px;
        transform: none;
        width: 36px;
        height: 36px;
        font-size: 22px;
    }

    .award-nav.prev {
        left: 35%;
    }

    .award-nav.next {
        right: 35%;
    }

    /* ---------- PRODUCT WOW ---------- */
    /* .d-block { */
        /* margin-top: 25px !important; */
    /* } */

    .product-wow {
        display: none !important;
    }

    .product-wow-mobile {
        display: block;
        /* padding: 40px 16px; */
    }

    .product-card-mobile {
        background: #ffffff;
        border-radius: 16px;
        padding: 18px;
        margin-bottom: 24px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        text-align: center;
    }

    .product-card-mobile .mobile-img {
        height: 180px;
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        margin-bottom: 12px;
    }

    .product-card-mobile span {
        font-size: 14px;
        opacity: 0.6;
    }

    .clentimgmview {
        object-fit: fill !important;
    }

    .product-card-mobile h2 {
        font-size: 20px;
        margin: 6px 0;
    }

    .product-card-mobile p {
        font-size: 14px;
        line-height: 1.6;
    }

    /* ---------- DISABLE STEP NAV ---------- */

    .step-nav {
        display: none;
    }

    .ai-product-title,
    .ai-product-title2 {

        font-size: 19px !important;

    }

    .ai-product-container2 span {


        font-size: 29px !important;
    }

    .ai-product-container span {
        font-size: 29px !important;
    }

    .ai-product-content,
    .ai-product-content2 {

        font-size: 17px !important;
    }

    .hero-stats strong {
        font-size: 20px !important;
        font-weight: 700 !important;
    }

    #ux-industry-parallax {
        padding-top: 10px !important;
    }

    .hero-stats span {
        font-size: 14px !important;
        letter-spacing: 1px !important;
        font-weight: 900 !important;
        /* opacity: 0.7; */
    }

}


/* foooter section start */


.carousel {
    margin: 0 auto;

    overflow: hidden;
    display: flex;
    padding-bottom: 18px;
}

.card {

    margin-right: 15px;

}

.card img {
    height: 80px;
    width: 100px;
    border-radius: 10px;
}

.group {
    will-change: transform;
    animation: scrolling 19s linear infinite;
    display: flex;
}

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.footer {

    background: black;
    color: #000000;
    padding: 60px 80px;
    font-family: "Segoe UI", sans-serif;

}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    position: relative;
}

/* COMPANY */
.brand {
    font-size: 21px;
    font-weight: bolder;
    letter-spacing: 2px;
    color: var(--black);
}

.brand span {

    color: rgb(0, 0, 0);
    color: var(--black);
    font-family: "rubik";
}

.footer-col p {
       font-size: clamp(13px, 1.5vw, 14px);
    line-height: 1.6;
    margin-top: 10px;
    color: var(--black);
    /*text-align: justify;*/
    /*font-family: "rubik";*/
}
@media (max-width: 414px) {
  .footer-col p{
   font-size: 0.7rem !important;
  }
 
}

/* HEADINGS */
.footer-col h3 {
    font-size: 15px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    font-weight: bolder;
    color: var(--black);
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
    color: var(--black);
}

#foot-link {
    position: absolute;
    top: 0%;
    left: 52%;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--black);
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--black);
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: white;
}

/* BADGES */
.badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.badges img {
    width: 105px;
    height: inherit;
    border-radius: 7px;

    background: transparent;
}

.badges div {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    justify-content: space-between;
    text-align: center;
    position: relative;
    width: 99px;
    height: 65px;


}

.badges span {

    font-family: "rubik";
    font-size: 11px;

    border-radius: 20px;

    color: var(--black);
    position: absolute;
    top: 79%;

}

.iso {
    position: absolute;
    top: 0%;
    left: 0%;
}

.industry-section {

    position: relative;
    padding-top: 50px;
    max-height: 350px !important;

    overflow: hidden;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #ececec;
    margin-top: 40px;
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--black);
    text-decoration: none;
}

.footer-bottom a {

    padding-top: 11.5px;
    color: var(--black) !important;
}

/* product page */
.product-container {
    max-width: 1200px;
    margin: 80px auto;
    display: grid;
    gap: 120px;

}

/* CARD */
.product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    position: relative;
    min-height: 380px;

    padding: 15px;

}

/* TEXT */
.product-content {
    max-width: 420px;
    font-size: 16px;
    line-height: 1.7;
    color: #333;


}

/* TRIANGLE */
.product-style {
    position: absolute;
    right: 0;
    width: 280px;
    height: 280px;
    background: var(--site-theme);
    clip-path: polygon(100% 0, 0 100%, 100% 100%);
    z-index: 1;


}

/* 3D MODEL */
.product-media {
    position: relative;
    z-index: 2;
    justify-self: end;


}


model-viewer {
    width: 320px;
    height: 260px;
    border-radius: 14px;
    background: transparent;
}

.product-content,
.product-style,
.product-media {
    opacity: 1;
}

/* LEFT */
.product-content {

    transition: all 0.4s ease;
}

/* RIGHT */
.product-style {
    transform: translateX(0px);
    transition: all 0.4s ease;
}

/* SCALE */
.product-media {
    transform: scale(0.85);
    transition: all 0.4s ease;
}

/* SHOW */
.product-card.show .product-content {
    opacity: 1;
    transform: translateX(0);
}

.product-card.show .product-style {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.8s;
}

.product-card.show .product-media {
    opacity: 1;
    transform: scale(1);
    transition-delay: 1.2s;
}

.product-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.product-card:nth-child(even) .product-content {
    order: 2;
}

.product-card:nth-child(even) .product-media {
    justify-self: start;
}

.product-card:nth-child(even) .product-style {
    left: 0;
    right: auto;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
}

.view-product {
    color: white;
    background-color: black;
    height: 33px;
    width: 139px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    text-decoration: none;
    font-weight: normal;
    font-size: 15px;
    position: absolute;
    top: 21%;
    left: 30%;
    font-family: 'rubik';
}

.leftpv {
    top: 21% !important;
    left: 39% !important;
}


@media (max-width: 405px) {

    /* ---------- NAVBAR ---------- */
    body {
        overflow-x: scroll;
    }

    body::-webkit-scrollbar {
        display: none;
    }

    .navbar {
        width: 100%;
        border-radius: 0;
        grid-template-columns: 1fr auto;
        padding: 0 15px;
    }

    .logo {
        position: static;
        width: 45px;
        height: 45px;
    }

    .navitems {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding-top: 40px;
        transition: right 0.3s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .navitems a {
        font-size: 16px;
    }

    .navitems.active {
        right: 0;
    }


    .product-container {
        margin: 40px 15px;
        gap: 80px;
    }

    .why-choose-us {
        width: 100%;
        height: auto;
    }

    .product-card {

        text-align: center;
        min-height: auto;
        width: 499px;
        padding: 0%;
    }

    .product-content {

        max-width: 100%;
        font-size: 15px;
    }

    .product-media {

        justify-self: center;
        margin-top: 20px;
    }

    model-viewer {
        width: 260px;
        height: 220px;
    }




    .product-style {
        display: none;
    }

    .product-content,
    .product-media {
        transform: none;
    }

    .product-card.show .product-media {
        transition-delay: 0.4s;
    }

    .footer {
        padding: 40px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        position: relative;
    }

    .badges {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .ux-industry-title {
        font-size: 30px !important;
        margin-bottom: 24px !important;
    }
}

.ux-industry-title::before {
    content: "";
    position: absolute;
    left: 14px;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent,
            var(--new-color),
            transparent);
    opacity: 0.4;
}

.home-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(120deg, #000, #222);
    color: #fff;
    text-align: center;
    padding: 20px;
}

.home-section {

    height: auto;
    width: 100%;
    padding-bottom: 21px;
}



#home-intro-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}


.logo-item {
    opacity: 0;
    transition: transform 0.7s ease, opacity 0.7s ease;
}


.logo-item.top {
    transform: translateY(-60px);
}

.logo-item.bottom {
    transform: translateY(60px);
}

.logo-item.left {
    transform: translateX(-60px);
}

/* Visible state */
.logo-item.show {
    opacity: 1;
    transform: translate(0, 0);
}



.carousel-caption {
    background-color: #fdfdfd66;
    backdrop-filter: blur(3px);
    color: var(--new-color);
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    top: 45%;
    transform: translateY(-50%);
    left: 10%;
    height: 60%;
    width: 40%;
    text-align: center;
    border-radius: 30px;

    padding: 20px;
}

.carousel-caption h4 {

    font-weight: 900;
    font-size: 33px;
    color: var(--site-theme);
    position: absolute;
    top: 15%;
    left: 9%;
    text-align: left;
}



.home-features {
    position: relative;
    margin-top: 50px;
    margin-bottom: 50px;
}



.home-features {

    height: auto;
    /* background-image: url(../img/aboutback.jpg); */
    background-image: url(../img/product/schock-product.jpg);
    /* background-image: url(../img/product/rubber-prodruct.jpg); */
    /* background-image: url(../img/product/weight-product.jpg); */
    background-position: center;
    background-repeat: no-repeat;



    padding-bottom: 50px;
}

.carousell-home {

    padding: 50px 5px 50px 5px;


}




.feature-card {

    background: transparent;

    height: 100px;

    text-align: center;

}

.feature-card h3 {
    font-size: 20px;
}


.flip-card {

    height: 150px;
    perspective: 1000px;

}

.flip-card-inner {
    position: relative;
    width: 100%;


    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);

}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.flip-card-front {
    background-color: transparent;
    backdrop-filter: blur(12px);

    color: #79211f;

}

.flip-card-back {
    background-color: transparent;
    backdrop-filter: blur(12px);
    color: #79211f;
    transform: rotateY(180deg);
}

.groupp {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    justify-content: center;
    align-items: center;

    gap: 20px;

}




/* end why choose us */
/* roduct our */
#our-product {
    font-size: 41px;
}

/* Section */
.products-showcase {
    padding: 70px 8%;
    background: var(--new-color);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    color: #000;
}

.industries-content h4 {
    font-size: 30px;
    text-align: left;
    color: #000;
}

.industries-content p {

    color: #000;
}

.industries-content {

    text-align: left;
}

/* Card */
.product-card {
    background: #e5e5e5;
    border-radius: 18px;
    overflow: hidden;
    color: #000000;
    height: auto;
    min-height: 107%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.products-showcase .col-lg-4 {
    margin-bottom: 30px;
}

/* Media */
.product-media {
    height: 220px;
    overflow: hidden;
}

.product-media img,
.product-media model-viewer {
    width: 417px;
    height: 222px;
    object-fit: cover;
    border-radius: 30px 30px 0px 0px;
    object-fit: cover;
}

@media (max-width:405px) {

    body {
        overflow-x: scroll;
    }

    body::-webkit-scrollbar {
        display: none;
    }

    .product-media img,
    .product-media model-viewer {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 30px 30px 0px 0px;
        object-fit: cover;
    }

    .why-content h4 {
        position: absolute;
        top: 0%;
        left: 29.9%;
    }

    .products-showcase {
        width: 100%;
        height: fit-content;
        padding: 0%;
    }

    .product-card {
        width: 353px;
    }
}

/* ganesh */

/* Content */
.card-content {
    padding: 25px;
}

.cart-item {
    z-index: 999999999;
    position: fixed;
    right: 0%;
    color: white;
    border: none;
    top: 33%;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    /* background-color: #7f1007; */
    background-color: var(--site-theme);
    padding-bottom: .5em;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.9rem;
    margin-bottom: 10px;
    color: rgb(0, 0, 0);
}

.card-content p {
    font-size: 0.95rem;
    color: #000000;
    /* color: #ffffff; */
}

/* Hover Effect */
.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-media img {

    transition: transform 0.4s ease;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


#why-choose {
    position: relative;
}

/* underline */
#why-choose::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, red, orange, red);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

/* hover effect */
#why-choose:hover::after {
    width: 340px;
}

#Our-industry {
    position: relative;
}

/* underline */
#Our-industry::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, red, orange, red);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

/* hover effect */
#Our-industry:hover::after {
    width: 340px;
}

.about-content-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
    align-items: center;
    padding: 50px;
    padding-bottom: 82px;
    gap: 2em;
}

.abt-cnt-srt {
    padding-bottom: 20px;
}

.about-inner img {
    height: 330px;
    width: 333px;

    object-fit: cover;

    border-radius: 171px 171px 0px 0px;
    background-repeat: no-repeat;

}

.about-inner-c img {
    height: 95px;
    width: 95px;
}

.cart-item-model-container {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    height: 162px;
    overflow-y: auto;
}

.cart-item-model {
    height: 300px;
    /* padding: 3px; */
    width: 195px;
    display: flex;
    flex-direction: column;
    gap: 1em;
    border-radius: 20px;
    background-color: #ffffff;
    color: #000000;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 9;
    top: 20%;
    right: 9%;
}

.cart-items-each {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* flex: 0 0 20em; */
    gap: 3.5em;
}

.cart-items-each p {
    text-align: center;
    padding: 5px;
    font-family: 'rubik';
    margin-bottom: 0px;
    width: 71px;
}

.remove {
    background: transparent;
    border: none;
    transition: 0.4s;
}

.remove i:hover {
    color: red;
}

/* Scrollbar width */
.cart-item-model-container::-webkit-scrollbar {
    width: thin;
    background-color: transparent;
}

.cart-items-each img {
    height: 20px;
    width: 20px;
}



/* Track (background) */
.cart-item-model-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* border-radius: 1px; */
}

/* Thumb (scroll handle) */
/* .cart-item-model-container::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #555, #888);
    border-radius: 10px;
    border: 2px solid #f1f1f1;
} */

/* Hover effect */
/* .cart-item-model-container::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #333, #666);
} */


/* product our */
.product-btn {
    display: inline-block;
    padding: 12px 32px;
    background: black;
    color: #ffffff;
    border: none;
    border-radius: 60px 0px 0px 60px;
    text-decoration: none;
    transition: 0.3s ease;
    position: absolute;
    bottom: 4%;
    right: 0%;
}

/* Base hidden state */
.reveal {
    opacity: 0;
    transition: all 0.8s ease;
}

/* Directions */
.from-left {
    transform: translateX(-80px);
}

.from-right {
    transform: translateX(80px);
}

.fade-in {
    transform: scale(0.95);
}

/* Active state */
.reveal.active {
    opacity: 1;
    transform: translateX(0) scale(1);
}

#our-product {
    position: relative;
}

/* underline */
#our-product::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, red, orange, red);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

/* hover effect */
#our-product:hover::after {
    width: 340px;
}

.carousel-item img {
    /*width: 900px;*/
    height: 577px;
    object-fit: cover;
    padding-top: -1px;
    /* filter: brightness(0.8); */

}

.hero-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.hero-content span {
    color: var(--site-theme);
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.btn-primary {
    padding: 12px 30px;
    background: rgb(47, 59, 68);
    color: rgb(255, 255, 255);
    text-decoration: none;
    border-radius: 25px;

    font-weight: bold;
    border: none;
    position: absolute;
    bottom: 10%;
    left: 5%;
}

.carousel-caption::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    display: none;

    border-bottom: 6px solid black;
    border-left: 6px solid black;

}

.carousel-caption::before {
    content: "";
    position: absolute;
    display: none;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
    border-top: 6px solid white;
    border-right: 6px solid white;
    border-top-right-radius: 25px;
}



@media (max-width: 768px) {
    body {
        overflow-x: scroll;
    }

    body::-webkit-scrollbar {
        display: none;
    }

    .about-section {
        padding: 70px 15px;
    }

    .about-container p {
        font-size: 15px;
    }

    .about-image {
        margin: 30px auto;
    }

    .why-content h4 {
        position: absolute;
        top: 0%;
        left: 29.9%;
    }
}


/* contact page */
.contact-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

/* ===== CONTAINER ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    width: 100%;
    padding: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(18px);
    position: relative;
    animation: fadeUp 1.2s ease;
}

/* Animated glowing border */
.contact-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(120deg, #fff, transparent, #fff);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: borderMove 4s linear infinite;
}

/* ===== INFO ===== */
.contact-info h2 {
    font-size: 38px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-info p {
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ===== FORM ===== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

/* Floating label input */
.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid #777;
    padding: 12px 0;
    color: #fff;
    font-size: 16px;
    outline: none;
}

.input-group textarea {
    resize: none;
    height: 90px;
}

.input-group label {
    position: absolute;
    left: 0;
    top: 12px;
    color: #aaa;
    font-size: 14px;
    pointer-events: none;
    transition: 0.3s ease;
}

/* Floating effect */
.input-group input:focus+label,
.input-group input:valid+label,
.input-group textarea:focus+label,
.input-group textarea:valid+label {
    top: -10px;
    font-size: 12px;
    color: #fff;
}

/* ===== BUTTON ===== */
.contact-form button {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 14px;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
}

/* Hover ripple glow */
.contact-form button::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.4s ease;
    z-index: -1;
}

.contact-form button:hover::before {
    transform: scaleX(1);
}

.contact-form button:hover {
    color: #000;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes borderMove {
    0% {
        background-position: 0%
    }

    100% {
        background-position: 200%
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    body {
        overflow-x: scroll;
    }

    body::-webkit-scrollbar {
        display: none;
    }

    .contact-container {
        grid-template-columns: 1fr;
        padding: 35px;
    }
}

@media (max-width: 480px) {

    body {
        overflow-x: scroll;
    }

    body::-webkit-scrollbar {
        display: none;
    }

    model-viewer {
        width: 220px;
        height: 200px;
    }

    .product-content {
        font-size: 14px;
    }

    .product-card {
        width: 100%;
    }


    .navitems a {
        font-size: 15px;
    }
}


.navbar {
    display: grid;
}

.navbar-mobile {
    display: none;
}


@media (max-width: 768px) {
    body {
        overflow-x: scroll;
    }

    body::-webkit-scrollbar {
        display: none;
    }


    /* HIDE DESKTOP NAV */
    .navbar {
        display: none;
    }

    /* SHOW MOBILE NAV */
    .navbar-mobile {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 60px;
        width: 100%;
        padding: 0 20px;
        background: #ffffff;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        border-radius: 0;
        position: relative;
    }

    /* LOGO */
    .logo img {
        height: 40px;
        width: 40px;


    }

    .logo {
        height: 40px;
        width: 40px;

    }

    .nav-active {
        color: #000000ff !important;
    }

    .nav-inactive {
        color: #d63a3a !important;
    }



    /* MENU ICON */
    .menu-toggle {
        font-size: 26px;
        cursor: pointer;

    }

    /* MOBILE MENU */
    .navitems-mobile {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background: #fff;
        display: none;
        flex-direction: column;
        text-align: center;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .navitems-mobile a {
        padding: 15px;
        text-decoration: none;
        color: #000;
        border-bottom: 1px solid #eee;
        font-size: 16px;
    }

    .navitems-mobile a:hover {
        background: var(--site-theme);
        color: #000;
    }

    /* ACTIVE STATE */
    .navitems-mobile.active {
        display: flex;
    }

    .container {
        /* border: 2px solid blue; */
        height: auto;
        width: auto;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        justify-items: center;
        align-items: center;
        position: relative;
    }

    .groupp {
        display: grid;

        grid-template-columns: repeat(1, 1fr);

        justify-content: center;
        align-items: center;
        gap: 20px;

    }



    .containerw {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
    }


    .serve-content {
        padding: 15px;
        margin: 15px;
        height: auto !important;
        border-radius: 10px;


    }

    .serve-content h4 {
        font-size: 14px;
    }

    .product-show-off {

        display: none;
    }


    /* footer */
    .footer-col h3 {
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-bottom: 15px;
        color: #fff;
        text-align: start;
    }

    .footer-col ul li {
        margin-bottom: 10px;
        font-size: 14px;
        text-align: start;
        color: white;
    }

    .containerr {
        display: flex;
        flex-direction: column;
    }

    .box {
        display: flex;
        flex-direction: column;
        text-align: left;
    }
}


@media (max-width: 721px) {
    body {
        overflow-x: scroll;
    }

    body::-webkit-scrollbar {
        display: none;
    }

    .feature-card {
        height: auto;
    }

    .why-content {
        margin-bottom: 40px;
        padding-right: 0px !important;
    }

    .why-content h4 {
        position: relative;
        top: 0%;
        left: 0%;
    }

    .why-content h2 {
        font-size: 34px;
    }

    .why-choose-us {
        width: 100%;
        height: auto;
    }

    .why-content h4 {

        position: relative;
        top: 0%;

    }

    .row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: calc(-1 * var(--bs-gutter-y));
        margin-right: calc(-.5 * var(--bs-gutter-x));
        margin-left: calc(-.5 * var(--bs-gutter-x));
    }

    #what-we-serve {
        padding-left: 0%;
        padding-right: 0%;
    }

    #wwsc {

        animation: my2 linear both;
        animation-timeline: view();
        animation-range: entry 0% cover 40%;
    }

    @keyframes my2 {
        from {
            opacity: 0;

        }

        to {
            opacity: 1;

        }
    }

    #product-m {
        width: 352px;
    }

    .navbar {
        width: 100%;
        border-radius: 0;
        grid-template-columns: 1fr auto;
        padding: 0 15px;
    }

    .logo {
        position: static;
        width: 45px;
        height: 45px;
    }

    .navitems {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 22px;
        padding-top: 40px;
        transition: right 0.3s ease;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .navitems a {
        font-size: 16px;
    }

    /* You can toggle this with JS later */
    .navitems.active {
        right: 0;
    }

    /* ---------- PRODUCT SECTION ---------- */
    .product-container {
        margin: 40px 15px;
        gap: 80px;
    }

    .why-choose-us {
        width: 100%;
        height: auto;
    }

    .product-card {
        /* grid-template-columns: 1fr; */
        text-align: center;
        min-height: auto;
        width: 499px;
        padding: 0%;
    }

    .product-content {
        /* order: 1; */
        max-width: 100%;
        font-size: 15px;
    }

    .product-media {
        /* order: 2; */
        justify-self: center;
        margin-top: 20px;
    }

    model-viewer {
        width: 260px;
        height: 220px;
    }




    /* Hide triangle on mobile (clean look) */
    .product-style {
        display: none;
    }

    /* Reset animations for mobile */
    .product-content,
    .product-media {
        transform: none;
    }

    .product-card.show .product-media {
        transition-delay: 0.4s;
    }

    /* ---------- FOOTER ---------- */
    .footer {
        padding: 40px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .badges {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    model-viewer {
        width: 220px;
        height: 200px;
    }

    .product-content {
        font-size: 14px;
    }

    .product-card {
        width: 100%;
    }


    .navitems a {
        font-size: 15px;
    }

    model-viewer {
        width: 220px;
        height: 200px;
    }

    .product-content {
        font-size: 14px;
    }

    .product-card {
        width: 100%;
    }


    .navitems a {
        font-size: 15px;
    }

    .about-section {
        padding: 70px 15px;
    }

    .about-container p {
        font-size: 15px;
    }

    .about-image {
        margin: 30px auto;
    }

    .why-content h4 {
        position: absolute;
        top: 0%;
        left: 29.9%;
    }
}


/* ABOUT US page
*/

#who-are-we {
    background-color: rgb(247, 193, 193);
}

#what-achieve {
    background-color: var(--new-dark);

}

#what-we-have {
    background-color: rgb(255, 162, 162);

}

#what-we-future {
    background-color: rgb(240, 96, 96);

}

.about-page-sections {

    height: 1000px;

    animation: abt-scrl linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 40%;

}

@keyframes abt-scrl {
    from {
        opacity: 0;
        transform: translateX(0);
    }

    to {
        opacity: 1;
        transform: translateX(-420);
    }
}

.container-abt {
    /* border: 2px solid black; */
    display: flex;
    height: auto;
    width: 100%;

    justify-content: center;
    align-items: center;


}

.text,
.img-abt {
    /* background-color: #000; */
    height: 400px;
    width: 100%;
    /* border: 2px solid black; */
}


.about-intro {
    /* padding: 100px 0; */
    background: var(--new-color);
}

.about-title {
    font-size: 42px;
    color: black;
    margin-bottom: 20px;
}

.about-text {
    max-width: 800px;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.about-journey {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    font-size: 36px;
    color: black;
    /* color: var(--site-theme); */
    margin-bottom: 50px;
}

.timeline {
    display: flex;
    gap: 40px;
}

.timeline-item {
    background: var(--new-color);
    padding: 30px;
    border-left: 5px solid var(--site-theme);
}

.timeline-item span {
    font-size: 28px;
    font-weight: bold;
    color: var(--site-theme);
}

.about-different {
    padding: 100px 0;
    background: var(--new-dark);
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.diff-card {
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
}

.about-expertise {
    padding: 100px 0;
    background: #fff;
}

.industry-list {
    margin-top: 30px;
    list-style: none;
    padding: 0;
}

.industry-list li {
    padding: 10px 0;
    font-weight: 500;
}

.about-quality {
    padding: 100px 0;
    background: var(--new-color);
}

.cert-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.cert-grid span {
    padding: 15px 25px;
    background: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.about-cta {
    padding: 100px 0;
    background: var(--site-theme);
    color: #fff;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 30px;
    background: #fff;
    color: var(--site-theme);
    font-weight: bold;
    border-radius: 30px;
}

.product-pin {
    height: 100vh;
    position: relative;
    background-image: url(../img/about/abtsecback.png);
    background-position: cover;
}

.productt {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    opacity: 0;
    pointer-events: none;
}

.productt img {
    width: 40%;
}

.content {
    width: 40%;
}

.inside-content {
    font-size: xx-large;
    position: absolute;
    top: 26%;
    left: 41%;
}

/*  */
.para {
    background-image: url(../img/about/industry.jpg);
    background-repeat: no-repeat;
    height: 40vh;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}

.para::after {
    background-color: #00000054;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
}

.para div h1 {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-family: 'rubik';
    color: white;
    left: -3%;
    z-index: 9999 !important;
    transform: translateY(-50%);
}

.para div p {
    position: absolute;
    bottom: 11%;
    right: 3%;

    font-family: 'rubik';
    font-size: 25px;
    color: white;

    padding: 12px 18px;
    border-radius: 12px;

    background: rgba(255, 255, 255, 0.15);

    backdrop-filter: blur(12px);



    border: 1px solid rgba(255, 255, 255, 0.25);
}


.about-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}



.certificate {
    position: relative
}

.certificates {
    display: flex;
    /* display: grid; */
    /* grid-template-columns: repeat(5, 1fr); */
    overflow-x: scroll;
    height: auto;
    width: 100%;
    justify-items: center;
    align-items: center;
    position: relative;
    scroll-behavior: smooth;
    anchor-name: --certificates;
}

.certificates::-webkit-scrollbar {
    display: none;
}

.certificates::scroll-button(right),
.certificates::scroll-button(left) {
    content: ">";
    border: none;
    background-color: #77221e;
    font-size: 1.5rem;
    color: white;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    padding-bottom: .1em;
    cursor: pointer;
    position-anchor: --certificates;
    position-area: right center;
    translate: 2110%;
    margin-bottom: 10px;
}

.certificates::scroll-button(left) {
    content: "<";
    position-area: left center;
    translate: 2100%;
}

.certificates::scroll-button(right):disabled,
.certificates::scroll-button(left):disabled {
    opacity: 0.5;
    cursor: auto;
}

.certifacte-box {
    flex: 0 0 27em;
    height: auto;
    padding: 10px;
    margin: 10px;
    width: 300px;


}

.certifacte-box div img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.certificate-modal {
    display: none;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 100%;
    top: -2%;
    z-index: 1;
    background-color: #00000069;

}

.certificate-modal-open {
    display: flex;
    position: absolute;
    justify-content: center;
    align-items: center;
    width: 100%;
    top: -2%;
    z-index: 1;
    background-color: #00000069;

}

.certifacte-box-modal {
    height: auto;
    padding: 10px;
    margin: 10px;
    width: auto;

}

.certifacte-box-modal div img {
    height: 674px;
    width: 600px;
    object-fit: contain;
}

#certifacte-box1 {
    animation: cer 2s linear both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

#certifacte-box2 {
    animation: cer 2s linear both;
    animation-delay: 2.5s;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

#certifacte-box3 {
    animation: cer 2s linear both;
    animation-delay: 3.5s;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

@keyframes cer {
    from {
        opacity: 0;
        transform: translateY(400px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }
}

/* .modal-parallex {
 
} */

.paraG {
    background-image: url(../img/about/globe.png);
    background-repeat: no-repeat;
    height: 40vh;
    width: 100%;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}

.paraGM {
    background-image: url(../img/about/globe.png);
    background-repeat: no-repeat;
    height: 40vh;
    width: 100%;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;

}

.paraG::after {
    background-color: #00000054;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
}

.paraG div h1 {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-family: 'rubik';
    color: white;
    left: 1%;
    z-index: 9999 !important;
    transform: translateY(-50%);
}

.paraGM::after {
    background-color: #00000054;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
}

.paraGM h1 {
    position: absolute;
    top: 50%;
    width: 100%;
    text-align: center;
    font-family: 'rubik';
    color: white;
    left: 1%;
    z-index: 9999 !important;
    transform: translateY(-50%);
}

.global-reach {
    height: 40vh;
    width: 100%;

    display: flex;
    flex-direction: column;
}

.global-content {
    height: 100%;
    width: 100%;
    display: grid;

    padding: 15px;
    gap: 1em;
    justify-items: center;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    animation-name: globe;
    animation-duration: 1s;
    animation-timing-function: ease-out;
    animation-fill-mode: both;
    animation-timeline: view();
    animation-range: entry 0% cover 30%;
}

@keyframes globe {
    from {
        opacity: 0;
        transform: translateY(-400px);
    }

    to {
        opacity: 1;
        transform: translateY(0px);
    }

}

.global-each-content {

    /* border-radius: inset 0px 0px 60px 0px; */
    width: 641px;
    height: 176px;
    position: relative;
    background-color: #1111111c;
    /* box-shadow: 12px -4px 14px #1111111c; */

}

.globe3D {
    position: absolute;
    top: 22%;
    left: 41.7%;
    height: 243px;
    width: 243px;
    background-color: white;
    border-radius: 50%;

    background-image: url(../company_logo/earth2k-removebg-preview.png);
    background-size: cover;

    object-fit: contain;
    animation: earth 29s linear infinite;

}

.c-sym {
    height: 100%;
    width: 50px;
}


.sc-section-heading {
    margin: 80px 0 -35px;
    position: relative;
}


.sc-heading-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 46px;
    font-weight: 700;
    letter-spacing: 0.4px;
    color: #111;

    display: inline-block;
    position: relative;
    padding-bottom: 14px;
    cursor: default;
    width: 100%;
    text-align: center;
}

/* 
.sc-heading-title::before,
.sc-heading-title::after {
    content: "";
    position: absolute;
    height: 3px;
    background: var(--site-theme);
    bottom: 0;
    transition: all 0.5s cubic-bezier(.19, 1, .22, 1);
} */

/* LEFT LINE */
/* .sc-heading-title::before {
    left: 0;
    width: 0;
} */

/* RIGHT LINE */
/* .sc-heading-title::after {
    right: 0;
    width: 18px;
    opacity: 0.5;
} */

/* 
.sc-section-heading:hover .sc-heading-title::before {
    width: 80%;
}

.sc-section-heading:hover .sc-heading-title::after {
    width: 100%;
    opacity: 1;
} */


.sc-section-heading:hover .sc-heading-title {
    /* letter-spacing: 1px;
    transition: letter-spacing 0.4s ease; */
}

.sc-contact-mail {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sc-contact-mail:hover {
    color: #7f1007;
    /* brand color */
}

.sc-contact-icon {
    font-size: 16px;
    line-height: 1;
}

.sc-contact-text {
    font-size: 15px;
}

/* MOBILE PRODUCT SECTION */
.product-wow-mobile {
    background: #fff;
    /* padding: 60px 16px; */
}

.product-card-mobile {
    margin-bottom: 40px;
}

.mobile-img {
    height: 220px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    margin-bottom: 16px;
}

.fot-add-new {
    color: white;
    font-size: 17px;
    font-weight: 500;
}

.product-card-mobile span {
    font-size: 64px;
    font-weight: 800;
    color: rgb(0 0 0 / 20%);
    display: block;
}

.product-card-mobile h2 {
    font-family: rubik;
    font-size: 22px;
    margin: 10px 0;
}

.product-card-mobile p {
    font-size: 14.5px;
    line-height: 1.7;
    opacity: 0.85;
    text-align: justify;
}
























.apple-panel-cont-mob {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity .8s ease, transform .8s ease;
}

.apple-panel-cont-mob.active {
    opacity: 1;
    transform: translateY(0);
}

/* image */
.apple-panel-img-cont-mob img {
    opacity: 0;
    transform: translateY(40px) scale(.96);
    transition: .8s ease;
}

.apple-panel-cont-mob.active .apple-panel-img-cont-mob img {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* content stagger */
.apple-panel-content-mob>* {
    opacity: 0;
    transform: translateY(30px);
    transition: .6s ease;
}

.apple-panel-content-mob {
    padding: 15px;
}

.apple-panel-content-mob span {
    font-size: 8px;
}

.apple-panel-content-mob h1 {
    font-size: 21px;
    font-family: 'rubik';
    font-weight: 600;
}

.apple-panel-content-mob p {
    font-size: 14px;
}

.apple-panel-content-mob ul li {
    font-size: 13px !important;
}

.apple-panel-cont-mob.active .apple-panel-content-mob>* {
    opacity: 1;
    transform: translateY(0);
}

/* stagger delays */
.apple-panel-cont-mob.active .eyebrow {
    transition-delay: .2s;
}

.apple-panel-cont-mob.active h1 {
    transition-delay: .35s;
}

.apple-panel-cont-mob.active p {
    transition-delay: .5s;
}

.apple-panel-cont-mob.active ul {
    transition-delay: .65s;
}

.apple-panel-cont-mob.active .cta {
    transition-delay: .8s;
}

/* list stagger */
.apple-panel-content-mob ul li {
    opacity: 0;
    transform: translateY(20px);
    transition: .4s ease;
}

.apple-panel-cont-mob.active ul li {
    opacity: 1;
    transform: translateY(0);
}

.apple-panel-cont-mob.active ul li:nth-child(1) {
    transition-delay: .7s;
}

.apple-panel-cont-mob.active ul li:nth-child(2) {
    transition-delay: .8s;
}

.apple-panel-cont-mob.active ul li:nth-child(3) {
    transition-delay: .9s;
}

.apple-panel-cont-mob.active ul li:nth-child(4) {
    transition-delay: 1s;
}

.apple-panel-cont-mob.active ul li:nth-child(5) {
    transition-delay: 1.1s;
}

:root {
    --brand: #7f1007;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
    background: #fff;
    color: #000;
}



.side-link {
    display: flex;
    align-items: center;
    color: #000;
    gap: 12px;
    font-size: 15px;
    transform: scale(1);
}

.side-link.active {
    transform: scale(1.1);
    color: var(--brand);
    font-weight: 600;
}

.side-thumb {
    width: 34px;
    height: 34px;
    object-fit: contain;
    opacity: 0;
    transform: scale(0.6);
    transition: .35s ease;
}

.side-link.active .side-thumb {
    opacity: 1;
    transform: scale(1);
}

.apple-page {
    display: grid;
    grid-template-columns: 260px 1fr;
}


.apple-sidebar {
    position: sticky;
    top: 76px;
    height: 100vh;
    background: #fff;
    overflow-y: scroll;
    border-right: 1px solid #eee;
    padding: 60px 40px !important;
    justify-content: center;
    /* display: flex;
    flex-direction: column; */
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
}

.side-head {
    font-size: 11px;
    letter-spacing: .35em;
    color: #999;
}

.side-link {
    text-decoration: none;
    /* color: #555;
    font-size: 15px;
    transition: .3s; */
}

.side-link:hover {
    color: var(--brand);
    transform: translateX(6px);
}


.panel {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end;

    background-repeat: no-repeat;
    background-position: right 5% center;
    background-size: contain;
    overflow: hidden;
}

.panel-mask {
    position: absolute;
    inset: 0;
    background: #fff;
    z-index: 3;
}

.panel-content {
    position: relative;
    z-index: 2;
    max-width: 580px;
    padding-right: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.panel-content * {
    opacity: 0;
    transform: translateY(40px);
}

.eyebrow {
    color: var(--brand);
    font-size: 12px;
    letter-spacing: .3em;
    font-weight: 600;
}

.panel-content h1 {

    margin: 18px 0;
    font-weight: 800;
}

.panel-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.feature-list {
    margin-top: 20px;
    padding-left: 18px;
}

.feature-list li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #555;
}

.cta {
    display: inline-block;
    margin-top: 30px;
    /* background: var(--brand); */
    background-color: var(--site-theme);
    color: #fff;
    padding: 14px 36px;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 900px) {
    .apple-page {
        grid-template-columns: 1fr;
    }

    .apple-sidebar {
        flex-direction: row;
        height: auto;
        padding: 20px;
        overflow-x: auto;
    }

    .panel {
        padding: 60px 24px;
        background-position: center bottom;
        background-size: 80%;
    }
}