@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&display=swap');

:root {
    --color-white: #ffffff;
    --color-dark-bg: #151515;
    --color-card-dark: #202020;
    --color-primary-green: #64BF7F;
    --color-indigo-blue: #2E3159;
    --color-accent-yellow: #E5B744;
    --color-light-green: #E8F5EC;
    --color-light-blue: #EAEAEE;
    --color-gray-666: #666666;
    --color-gray-100: #f5f5f7;
    --nav-text: #2E3159;
    --text-opaque-70: rgba(255, 255, 255, 0.7);
    --text-opaque-40: rgba(255, 255, 255, 0.4);
    --black-opaque-80: rgba(0, 0, 0, 0.8);
    --black-opaque-10: rgba(0, 0, 0, 0.1);
    --black-opaque-5: rgba(0, 0, 0, 0.05);

    --font-headings: 'Oswald', sans-serif;
    --font-body: 'Montserrat', sans-serif;

    --tab-height-sm: 20px;
    --tab-height-lg: 30px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-white);
}

.container {
    padding-inline: clamp(16px, 2.5vw, 24px);
}

.section-padding {
    padding-block: 80px;
}

@media (min-width: 768px) {
    .container {
        padding-inline: clamp(24px, 3.5vw, 64px);
    }
}

@media (min-width: 1024px) {
    .container {
        padding-inline: clamp(64px, 8vw, 140px);
    }
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: var(--font-headings);
    font-weight: 500;
    line-height: 1.1;
    margin: 0 0 0.6em;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.5rem, 2.6vw, 1.8rem);
}

h4 {
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
}

h5 {
    font-size: clamp(1.1rem, 1.8vw, 1.25rem);
}

h6 {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
}

p {
    font-size: clamp(14px, 1.1vw, 18px);
    font-family: var(--font-body);
}

.section-heading h5 {
    font-weight: 400;
    color: var(--color-primary-green);
}

.section-heading h2 {
    text-transform: uppercase;
}

.hero-section {
    position: relative;
    width: 100%;
    top: 12px;
    padding-inline: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    z-index: -1;
}

.hero-model-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: end;
    justify-content: center;
    z-index: 11;
    pointer-events: none;
}

.hero-model-img {
    width: 41vw;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* Left-side hero content */
.hero-content {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    pointer-events: auto;
}

.hero-heading {
    font-family: Oswald, var(--font-headings);
    font-weight: 500;
    text-transform: uppercase;
    font-size: clamp(40px, 5vw, 88px);
    line-height: 1;
    margin: 0 0 16px 0;
    max-width: 450px;
    color: #ffffff;
    letter-spacing: -1px;
}

.hero-heading .beyond {
    display: inline-block;
    font-family: Oswald, var(--font-headings);
    font-weight: 700;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 3px #ffffff;
    text-stroke: 3px #ffffff;
    letter-spacing: 0.02em;
    line-height: 0.9;
    -webkit-font-smoothing: antialiased;
    position: relative;
    left: 70px;
    z-index: 1;
}

@media (max-width:900px) {
    .hero-heading .beyond {
        -webkit-text-stroke: 1.5px #ffffff;
        text-stroke: 1px #ffffff;
        font-size: inherit;
    }
}

.hero-heading .limits {
    display: inline-block;
    position: absolute;
    left: 60vw;
    z-index: 30;
    white-space: nowrap;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    width: fit-content;
    padding: 10px 10px 10px 15px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 500;
    color: var(--color-white);
    background-color: var(--color-primary-green);
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(100, 191, 127, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-button-icon {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 6px;
}

.hero-button-icon img {
    width: 16px;
    height: 16px;
}

.hero-button:hover {
    transform: translateY(-1px);
    background-color: #57a86a;
    box-shadow: 0 18px 30px rgba(100, 191, 127, 0.32);
}

.hero-text {
    font-family: var(--font-body);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    max-width: clamp(280px, 45vw, 300px);
}

.happy-clients {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.45);
    padding: 5px 11px;
    position: absolute;
    bottom: 30px;
    left: 114px;
    border-radius: 40px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.happy-clients .avatars {
    display: flex;
    align-items: center;
    margin-right: 6px
}

.happy-clients .avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid var(--color-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    margin-left: -12px
}

.happy-clients .avatars img:first-child {
    margin-left: 0
}

.happy-clients .hc-text {
    display: flex;
    align-items: center;
    gap: 8px
}

.happy-clients .badge {
    font-weight: 800;
    color: #F5D76E;
    font-size: 20px;
    margin-right: 8px
}

.happy-clients .label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px
}

@media (min-width: 1200px) {
    .hero-model-img {
        width: clamp(360px, 44vw, 900px);
    }
}

@media (min-width: 1920px) {
    .hero-heading {
        font-size: 112px;
    }

    .hero-text {
        font-size: 24px;
        max-width: 390px;
    }
}

@media (max-width: 1100px) {
    .hero-content {
        max-width: 420px;
    }

    .happy-clients {
        left: 34px;
    }
}

@media (max-width: 900px) {
    .hero-section {
        position: relative;
        min-height: auto;
        padding-top: 60px;
    }

    .hero-model-wrap {
        position: absolute;
        top: 80px;
        transform: none;
    }

    .hero-heading {
        font-size: 50px;
    }

    .hero-content {
        position: absolute;
        transform: none;
        top: 16%;
        margin-bottom: 12px;
        max-width: 300px;
    }

    .hero-model-wrap {
        margin-top: 12px;
    }

    .happy-clients {
        padding: 8px 12px;
        left: 24px;
    }

    .happy-clients .avatars img {
        width: 30px;
        height: 30px;
        margin-left: -10px
    }

    .happy-clients .badge {
        font-size: 16px
    }
}

@media (max-width: 758px) {
    .section-padding {
        padding-block: 60px;
    }

    .hero-heading {
        font-size: 44px;
    }

    .hero-heading .limits {
        position: static;
    }

    .happy-clients {
        display: none;
    }
}

@media (min-width: 1920px) {
    .hero-model-img {
        width: clamp(480px, 43vw, 1100px);
    }
}

.hero-section svg {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 758px) {

    .hero-section {
        display: block;
    }

    .hero-section svg,
    .hero-model-wrap {
        display: none;
    }

    .hero-section {
        background-color: var(--nav-text);
        padding-top: 80px;
        padding-bottom: 30px;
    }

    .hero-content.container {
        padding-inline: 0px;
    }

    .hero-content,
    .happy-clients {
        position: static;
        max-width: 100%;
    }

    .hero-heading .beyond {
        position: static;
    }
}

.main-benefits-cards {
    position: absolute;
    right: 0;
}

.card-list {
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.feature-card {
    position: relative;
    width: 100%;
    aspect-ratio: 284 / 151;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: scale(1.05);
}

.card-shape {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 4vw, 18px);
    padding: 0 clamp(14px, 5vw, 16px) 0 clamp(32px, 12vw, 35px);
}

.icon {
    flex-shrink: 0;
    width: clamp(24px, 7vw, 34px);
    height: clamp(24px, 7vw, 34px);
}

.icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.text h3 {
    color: #ffffff;
    font-size: clamp(1.2rem, 5.5vw, 1.5rem);
    font-weight: 800;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.1;
    white-space: nowrap;
    font-family: var(--font-headings);
}

.text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    line-height: 1.35;
    margin: 4px 0 0;
    font-family: var(--font-body);
}

@media (max-width: 758px) {
    .card-list {
        gap: 32px;
        margin-top: 30px;
    }

    .main-benefits-cards {
        position: static;
    }

    .text h3 {
        font-size: 24px;
    }

    .text p {
        font-size: 14px;
    }
}

@media (max-width: 1348px) and (min-width: 758px) {
    .card-list {
        max-width: 197px;
    }

    .text h3 {
        font-size: 16px;
    }

    .text p {
        font-size: 8px;
    }
}

@media (min-width: 1348px) {
    .card-list {
        max-width: 520px;
        gap: 36px;
    }
}

.category-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    z-index: 23;
    position: relative;
}

.category-heading {
    grid-column: 1 / 3;
    grid-row: 1;
}

.category-card {
    position: relative;
    width: fit-content;
    border-radius: 25px;
    transition: transform 0.3s ease-in-out;
}

.category-card:hover {
    transform: scale(103%)
}

.category-card::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 25px;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 29%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
}

.category-card:nth-child(4) {
    grid-column: 3 / 2;
    position: relative;
    bottom: 45px;
}

.category-card .product-img {
    max-width: 19vw;
}

.category-card .link-button {
    background: green;
    border-radius: 6px;
    width: 30px;
    position: absolute;
    top: 11px;
    right: 15px;
    height: 30px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform ease 0.4s;
}

.category-card .link-button:hover {
    transform: scale(105%);
}

.category-card h3 {
    position: absolute;
    bottom: 5px;
    left: 20px;
    z-index: 2;
    color: var(--color-white)
}

@media (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-card:nth-child(4) {
        grid-column: 1 / 1;
        bottom: 0;
    }

    .category-card .product-img {
        max-width: 100%;
    }
}

@media (max-width: 456px) {
    .categories-section {
        display: flex;
        justify-content: center;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .category-heading {
        grid-column: 1 / 1;
    }
}

/* why choose zorlink section */

.why-section {
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.eyebrow {
    color: #3fae6c;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.why-heading {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #14142b;
    margin-bottom: 40px;
}

.feature-row {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row .badge {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 8.39px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-row .badge img {
    width: 100%;
    height: 100%;
}

.badge.navy {
    background: #1e1b4b;
}

.badge.green {
    background: #3fae6c;
}

.badge svg {
    width: 20px;
    height: 20px;
}

.feature-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 6px;
    text-transform: uppercase;
    color: var(--color-card-dark);
}

.feature-text p {
    font-size: 0.88rem;
    line-height: 1.5;
    font-weight: 500;
    color: var(--color-gray-666);
}

.why-image {
    position: relative;
    width: 95%;
    object-fit: contain;
}

.why-image svg {
    width: 100%;
    height: auto;
    display: block;
}

/* fallback img for browsers/tools that don't render SVG <image> well;
     also used so you can swap the photo from plain HTML if preferred */
.why-image img.shape-fallback {
    display: none;
}

@media (max-width: 900px) {
    .why-grid {
        gap: 40px;
    }

    .why-section {
        padding-block: 60px;
    }
}

@media (max-width: 860px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image {
        order: -1;
        max-width: 480px;
        width: 100%;
        margin: 0 auto 8px;
    }

    .why-section::before {
        top: 0;
        bottom: auto;
        height: 60px;
    }
}

@media (max-width: 420px) {

    .why-heading {
        margin-bottom: 28px;
    }

    .feature-row {
        gap: 12px;
        margin-bottom: 24px;
    }
}

/* CTA Section style */

.cta-section {
    position: relative;
    padding-inline: 12px;
}

.cta-content {
    position: absolute;
    z-index: 9;
    top: 0;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6cqw 8cqw 5cqw;
    gap: 0px;
}

.cta-heading {
    text-transform: uppercase;
    color: var(--color-white);
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.cta-subtext {
    color: var(--color-white);
    font-size: clamp(0.68rem, 1.6cqw, 0.95rem);
    line-height: 1.5;
    max-width: 46ch;
    margin-top: -10px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2cqw;
    margin-top: 35px;
}

.cta-buttons .white-button {
    background-color: var(--color-white);
    color: var(--color-card-dark);
}

.cta-buttons .white-button .hero-button-icon {
    background-color: var(--color-indigo-blue);
}

.cta-buttons .white-button .hero-button-icon img {
    filter: brightness(0) invert(1);
}

@media (max-width: 1302px) {
    .cta-background svg {
        height: 300px;
        width: 100%;
    }

    .cta-heading {
        font-size: 34px;
    }

    .cta-buttons {
        margin-top: 20px;
    }

    .cta-buttons .hero-button {
        font-size: 14px;
        margin-top: 0px;
    }
}

@media (max-width: 700px) {
    .cta-section {
        padding-block: 60px;
        background-color: var(--color-indigo-blue);
    }

    .cta-background {
        display: none;
    }

    .cta-content {
        position: static;
        transform: translateX(0%);
        padding: 0;
    }
}

/* trusted brands section */

.brands-section h3 {
    text-align: center;
    margin-bottom: 38px;
    text-transform: uppercase;
}

.brands-section h3 span {
    color: var(--color-primary-green);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    gap: 40px;
}

.brand-item img {
    width: 100%;
    max-width: 150px;
    max-height: 55px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: .8;
    transition: .3s;
}

.brand-item:hover img {
    filter: none;
    opacity: 1;
    transform: scale(1.05);
}

@media (max-width:992px) {
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 35px;
    }
}

@media (max-width:768px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .brand-item img {
        max-width: 120px;
    }
}

@media (max-width:576px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .brand-item img {
        max-width: 110px;
    }

    .cta-buttons {
        gap: 10px;
    }

    .cta-buttons .hero-button {
        width: 100%;
        max-width: 230px;
        justify-content: center;
    }
}

@media (max-width:380px) {
    .brands-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Setup solution style */

.setup-solution {
    padding-inline: 12px;
    position: relative;
}

.solution-bg img {
    width: 100%;
}

.setup-solution .container {
    position: absolute;
    top: 10%;
    width: 100%;
    left: 0;
}

.solution-heading h2 {
    text-transform: uppercase;
    color: var(--color-white);
}

.setup-solution .card-stage {
    position: relative;
    z-index: 2;
    width: fit-content;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    row-gap: 30px;
    margin-top: 50px;
}

.setup-solution .card {
    isolation: isolate;
    transition: transform .3s ease, filter .3s ease;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.6));
    width: min(100%, 364px);
    aspect-ratio: 364 / 260;
    height: auto;
    transition: transform 0.3s ease;
}

.setup-solution .card:hover {
    transform: translateY(-5px);
}

.setup-solution .card-office {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.setup-solution .card-gaming {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.setup-solution .card-enterprise {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.setup-solution .card-workstation {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.setup-solution .card-laptop {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
}

.setup-solution .card-image,
.setup-solution .card-content,
.setup-solution .card-overlay {
    clip-path: url(#card-shape-clip);
}

.setup-solution .card-enterprise .card-image,
.setup-solution .card-enterprise .card-content,
.setup-solution .card-enterprise .card-overlay {
    clip-path: url(#card-shape-clip-rot180);
}

.setup-solution .card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 73%);
    z-index: 1;
}

.setup-solution .card-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.setup-solution .card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: start;
    padding: 5% 9% 6%;
    color: var(--color-white);
}

.setup-solution .card-enterprise .card-content {
    padding: 5% 15% 6%;
}

.setup-solution .card-label {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: var(--font-headings);
}

.setup-solution .card-desc {
    font-size: 12px;
    line-height: 1.5;
    color: var(--color-white);
    max-width: 85%;
}

.setup-solution .img-office {
    background-image: url(../images/young-happy-successful-business-woman.webp);
}

.setup-solution .img-gaming {
    background-image: url(../images/female-online-gamer-playing-video.webp);
}

.setup-solution .img-enterprise {
    background-image: url(../images/business-people-work-together-1.webp);
}

.setup-solution .img-workstation {
    background-image: url(../images/caucasian-male-process-engineer-1.webp);
}

.setup-solution .img-laptop {
    background-image: url(../images/desktop-screen.webp);
}

@media (max-width: 1469px) {
    .setup-solution .card {
        width: 304px;
    }
}

@media (max-width: 1276px) {
    .setup-solution .card {
        width: 280px;
    }
}

@media (max-width: 1200px) {
    .setup-solution {
        background-image: url(../images/solution-bg.webp);
        background-size: cover;
        padding-block: 60px;
    }

    .setup-solution .solution-bg {
        display: none;
    }

    .setup-solution .container {
        position: static;
    }
}

@media (max-width: 758px) {

    .setup-solution .card-stage {
        aspect-ratio: auto;
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .setup-solution .card {
        position: relative;
        left: auto !important;
        top: auto !important;
        width: 100% !important;
        height: 220px !important;
    }
}

/* Performance section style */

.perf-stage {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 30px;
}

.perf-stage .right-cards,
.perf-stage .left-cards {
    position: relative;
    width: 100%;
}

.perf-stage .right-cards svg {
    transform: rotate(90deg);
}

.perf-card-content {
    position: absolute;
    padding: 31px 33px;
    max-width: 342px;
}

.perf-card-content img {
    width: 64px;
}

.perf-card-content h3 {
    text-transform: uppercase;
    margin-top: 26px;
    font-size: 1.5rem;
}

.perf-card-content p {
    color: var(--color-indigo-blue);
    font-weight: 500;
    margin-top: 20px;
    font-size: 16px;
}

.perf-stage .feature-card--top-left {
    top: 0;
}

.perf-stage .feature-card--bottom-left {
    bottom: 0;
    left: 46%;
}

.perf-stage .feature-card--bottom-right {
    bottom: 0;
}

.perf-stage .feature-card--top-right {
    top: 0;
    right: 0;
}

@media (max-width: 1496px) {

    .perf-card-content {
        max-width: 300px;
    }

    .perf-card-content img {
        width: 47px;
    }

    .perf-card-content h3 {
        font-size: 20px;
    }

    .perf-card-content p {
        font-size: 14px;
    }
}

@media (max-width: 1312px) {

    .perf-card-content {
        max-width: 273px;
        padding: 20px 33px;
    }

    .perf-card-content .br {
        display: none;
    }

    .perf-card-content h3 {
        margin-top: 13px;
    }
}

@media (max-width: 1145px) {

    .perf-card-content {
        max-width: 240px;
        padding: 20px 21px;
    }

    .perf-card-content h3 {
        font-size: 18px;
    }

    .perf-card-content p {
        font-size: 13px;
        margin-top: 10px;
    }
}

@media (max-width: 944px) {
    .perf-stage svg {
        display: none;
        flex-wrap: wrap;
    }

    .left-cards {
        margin-bottom: 20px;
    }

    .perf-card-content {
        position: static;
        border-radius: 25px;
        transition: transform 0.3s ease-in-out;
        max-width: 100%;
        padding: 30px 31px;
    }

    .perf-card-content:hover {
        transform: translateY(-5px);
    }

    .left-cards .perf-card-content {
        background-color: var(--color-gray-100);
    }

    .right-cards .perf-card-content {
        background-color: #E8F5EC;
    }

    .feature-card--top-left,
    .feature-card--bottom-right {
        margin-bottom: 20px;
    }

    .perf-card-content img {
        width: 64px;
    }

    .perf-card-content h3 {
        font-size: 24px;
        margin-top: 30px;
    }

    .perf-card-content p {
        font-size: 16px;
        margin-top: 20px;
    }

    .perf-card-content .br {
        display: block;
    }
}

@media (max-width: 568px) {
    .perf-stage {
        display: block;
    }
}

@media (min-width: 1706px) {

    .perf-card-content {
        padding: 32px 40px;
        max-width: 400px;
    }

    .perf-card-content h3 {
        font-size: 2rem;
    }

    .perf-card-content img {
        width: 70px;
    }

    .perf-card-content p {
        font-size: 18px;
    }
}

@media (min-width: 1880px) {
    .perf-card-content {
        padding: 50px 40px;
    }

    .perf-card-content img {
        width: 90px;
    }

    .perf-card-content h3 {
        margin-top: 40px;
        font-size: clamp(1.5rem, 2.6vw, 2.3rem);
    }
}

/* Featured Product style */

.featured-products {
    padding-inline: 12px;
    position: relative;
}

.featured-product-bg {
    position: relative;
}

.featured-product-bg img {
    width: 100%;
}

.featured-product-bg svg {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.4;
}

.featured-products .container {
    position: absolute;
    top: 10%;
    width: 100%;
    left: 0;
}

.featured-prod-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.featured-prod-header .section-heading {
    min-width: 310px;
}

.featured-prod-header h2 {
    color: var(--color-white);
}

.category-tabs-container {
    display: flex;
    gap: 35px;
}

.category-tabs-container .category-tab {
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    text-transform: uppercase;
    transition: color 0.3s ease-in-out;
}

.category-tabs-container .category-tab:hover {
    color: var(--color-primary-green);
}

.category-tabs-container .category-tab.active {
    color: var(--color-primary-green);
}

.category-tabs-container .category-tab.active::before {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 8px;
    border-radius: 50%;
    background-color: var(--color-primary-green);
}

.category-tabs-container .explore-more-button {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background-color: var(--color-primary-green);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.category-tabs-container .explore-more-button:hover {
    transform: scale(105%);
}

.product-grid-wrapper {
    display: none;
}

.product-grid-wrapper:first-of-type {
    display: block;
}

.category-product {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 30px;
    row-gap: 50px;
}

.category-product .product-card {
    position: relative;
    width: fit-content;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

.category-product .prod-card-bg {
    width: 100%;
    aspect-ratio: 110 / 100;
}

.category-product .product-card:hover .product-img {
    transform: translate(-50%, -50%) scale(1.1);
}

.category-product .product-card .product-img {
    position: absolute;
    left: 50%;
    width: 80%;
    border-radius: 18px;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease-in-out;
}

.product-card .product-content {
    color: var(--color-white);
    margin-top: 10px;
}

.product-card .product-content h4 {
    text-transform: uppercase;
    font-size: clamp(1.25rem, 2.2vw, 1.2rem);
}

.product-card .product-content p {
    font-size: 14px;
}

@media (max-width: 1496px) {

    .featured-product-bg svg,
    .featured-product-bg img {
        height: 160vh;
    }
}

@media (max-width: 1120px) {

    .featured-product-bg svg,
    .featured-product-bg img {
        height: 146vh;
    }
}

@media (max-width: 900px) {

    .featured-product-bg {
        display: none;
    }

    .featured-products .container {
        background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../images/hero-background.webp);
        padding-block: 60px;
        border-radius: 25px;
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: top;
    }

    .category-product {
        grid-template-columns: repeat(auto-fit, minmax(240px, 320px));
    }

    .category-tabs-container {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .category-tabs-container::-webkit-scrollbar {
        display: none;
    }
}