.slider-hold {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    overflow: hidden;
}

.slider-container {
    display: flex;
    width: 500%;
    transition: transform 0.5s ease;
}

.main-hero {
    border-radius: 20px 20px 0px 0px;
    width: 20%;
    margin: 40px;
    /* min-height: 500px; */
    display: flex;
    align-items: center;
    justify-content: left;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-texts-and {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    margin: 24px;
    position: relative;
    z-index: 2;
}

.hero-texts-and::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(1, 123, 192, 1) 0%, rgba(1, 192, 165, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
}

.texts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-wrapper {
    font-family: var(--ERP-BOLD-9-font-family);
    font-weight: var(--ERP-BOLD-9-font-weight);
    color: #001926;
    font-size: var(--ERP-BOLD-9-font-size);
    letter-spacing: var(--ERP-BOLD-9-letter-spacing);
    line-height: var(--ERP-BOLD-9-line-height);
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}

.div {
    font-family: var(--ERP-REG-5-font-family);
    font-weight: var(--ERP-REG-5-font-weight);
    color: #001926;
    font-size: var(--ERP-REG-5-font-size);
    letter-spacing: var(--ERP-REG-5-letter-spacing);
    line-height: var(--ERP-REG-5-line-height);
    /* text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3); */
}

.CDN-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background-color: var(--cdn-primary-10);
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.CDN-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.buy-now {
    font-family: var(--ERP-REG-5-font-family);
    font-weight: var(--ERP-REG-5-font-weight);
    color: var(--erp-white-3);
    font-size: var(--ERP-REG-5-font-size);
    letter-spacing: var(--ERP-REG-5-letter-spacing);
    line-height: var(--ERP-REG-5-line-height);
}

.img {
    width: 24px;
    height: 24px;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: var(--erp-white-3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background-color 0.2s;
}

.nav-button:hover {
    background-color: #f0f0f0;
}

.prev-button {
    left: 16px;
}

.next-button {
    right: 16px;
}

.nav-button img {
    width: 24px;
    height: 24px;
}

.dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: var(--erp-white-3);
}

@media (max-width: 768px) {
    .main-hero {
        min-height: 400px;
    }

    .text-wrapper {
        font-size: 32px;
        line-height: 40px;
    }

    .div {
        font-size: 16px;
        line-height: 24px;
    }

    .hero-texts-and {
        margin: 16px;
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .main-hero {
        min-height: 300px;
    }

    .text-wrapper {
        font-size: 24px;
        line-height: 32px;
    }

    .div {
        font-size: 14px;
        line-height: 20px;
    }

    .nav-button {
        width: 40px;
        height: 40px;
    }

    .nav-button img {
        width: 20px;
        height: 20px;
    }
}

/* //end of the slider */
.more-about-us {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    padding: 64px 80px;
    position: relative;
    background-color: rgba(255, 255, 255, 1.0);
    background: linear-gradient(180deg, rgba(1, 123, 192, 1) 0%, rgba(1, 192, 165, 1) 100%);
}

.more-about-us .frame {
    gap: 4px;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    align-items: center;
    position: relative;
    width: 100%;
    flex: 0 0 auto;
}

.more-about-us .text-wrapper {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: var(--ERP-BOLD-4-font-family);
    font-weight: var(--ERP-BOLD-4-font-weight);
    color: var(--erp-white-3);
    font-size: var(--ERP-BOLD-4-font-size);
    letter-spacing: var(--ERP-BOLD-4-letter-spacing);
    line-height: var(--ERP-BOLD-4-line-height);
    white-space: nowrap;
    font-style: var(--ERP-BOLD-4-font-style);
}

.more-about-us .div {
    position: relative;
    width: fit-content;
    font-family: var(--ERP-BOLD-6-font-family);
    font-weight: var(--ERP-BOLD-6-font-weight);
    color: var(--erp-white-3);
    font-size: var(--ERP-BOLD-6-font-size);
    letter-spacing: var(--ERP-BOLD-6-letter-spacing);
    line-height: var(--ERP-BOLD-6-line-height);
    white-space: nowrap;
    font-style: var(--ERP-BOLD-6-font-style);
}

.more-about-us .frame-2 {
    gap: 24px;
    display: flex;
    flex-direction: column;
    max-width: 800px;
    align-items: center;
    position: relative;
    width: 100%;
    flex: 0 0 auto;
}

.more-about-us .p,
.more-about-us .text-wrapper-2 {
    position: relative;
    align-self: stretch;
    font-family: var(--ERP-REG-5-font-family);
    font-weight: var(--ERP-REG-5-font-weight);
    color: var(--erp-white-3);
    font-size: var(--ERP-REG-5-font-size);
    text-align: center;
    letter-spacing: var(--ERP-REG-5-letter-spacing);
    line-height: var(--ERP-REG-5-line-height);
    font-style: var(--ERP-REG-5-font-style);
}

.more-about-us .numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 64px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    flex-wrap: wrap;
    /* Allow items to wrap on smaller screens */
}

.more-about-us .numbers::-webkit-scrollbar {
    width: 0;
    display: none;
}

.more-about-us .element {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    flex: 0 0 auto;
}

.more-about-us .text-wrapper-3 {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: #f3f4f6;
    font-size: 72px;
    text-align: center;
    letter-spacing: 0;
    line-height: 48px;
    white-space: nowrap;
}

.more-about-us .text-wrapper-4 {
    position: relative;
    width: fit-content;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: #f3f4f6;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: 16px;
    white-space: nowrap;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .more-about-us {
        padding: 32px 16px;
        /* Reduced padding for mobile */
        gap: 32px;
        /* Smaller gap between elements */
    }

    .more-about-us .frame,
    .more-about-us .frame-2 {
        max-width: 100%;
        /* Full width on mobile */
        padding: 0 16px;
        /* Add padding to prevent content from touching edges */
    }

    .more-about-us .text-wrapper,
    .more-about-us .div {
        font-size: calc(var(--ERP-BOLD-4-font-size) * 0.8);
        /* Scale down font size */
        white-space: normal;
        /* Allow text to wrap */
    }

    .more-about-us .p,
    .more-about-us .text-wrapper-2 {
        font-size: calc(var(--ERP-REG-5-font-size) * 0.9);
        /* Slightly smaller font */
        line-height: 1.5;
        /* Improve readability */
    }

    .more-about-us .numbers {
        flex-direction: column;
        /* Stack items vertically */
        gap: 32px;
        /* Smaller gap for mobile */
        align-items: center;
    }

    .more-about-us .element {
        width: 100%;
        /* Full width for each number item */
        max-width: 200px;
        /* Limit width for better appearance */
    }

    .more-about-us .text-wrapper-3 {
        font-size: 48px;
        /* Reduced font size for large numbers */
        line-height: 40px;
    }

    .more-about-us .text-wrapper-4 {
        font-size: 14px;
        /* Slightly smaller font */
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .more-about-us {
        padding: 24px 12px;
        /* Further reduced padding for smaller screens */
        gap: 24px;
    }

    .more-about-us .text-wrapper,
    .more-about-us .div {
        font-size: calc(var(--ERP-BOLD-4-font-size) * 0.7);
        /* Further scale down */
    }

    .more-about-us .p,
    .more-about-us .text-wrapper-2 {
        font-size: calc(var(--ERP-REG-5-font-size) * 0.8);
    }

    .more-about-us .text-wrapper-3 {
        font-size: 36px;
        /* Further reduced for very small screens */
        line-height: 36px;
    }

    .more-about-us .text-wrapper-4 {
        font-size: 12px;
        line-height: 18px;
    }
}

/* //end of more about us */



.BG-IMAGE {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 64px 80px;
    position: relative;
    background-image: url(../../assets/images/cdn-bg.png);
    background-size: cover;
    /* background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 100%); */
}

.BG-IMAGE .frame {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    align-self: stretch;
    width: 100%;
    position: relative;
    flex: 0 0 auto;
}

.BG-IMAGE .solution,
.BG-IMAGE .solution-2,
.BG-IMAGE .solution-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    position: relative;
    flex: 1;
    padding: 0;
}


.image-wrapper {
    width: 100%;
    max-width: 320px;

    overflow: hidden;
    border-radius: 16px;
    position: relative;
}

.BG-IMAGE .image,
.BG-IMAGE .image-2,
.BG-IMAGE .image-3,
.BG-IMAGE .image-4 {
    width: 100%;
    max-width: 320px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.BG-IMAGE .image:hover,
.BG-IMAGE .image-2:hover,
.BG-IMAGE .image-3:hover,
.BG-IMAGE .image-4:hover {
    transform: scale(1.2);
}


.BG-IMAGE .image {
    height: 480px;
    background-image: url(../../assets/images/information.png);
}

.BG-IMAGE .image-2 {
    height: 360px;
    background-image: url(../../assets/images/audio.png);
}

.BG-IMAGE .image-3 {
    height: 270px;
    background-image: url(../../assets/images/unified.png);
}

.BG-IMAGE .image-4 {
    height: 360px;
    background-image: url(../../assets/images/cyber.png);
}

.BG-IMAGE .div,
.BG-IMAGE .frame-2,
.BG-IMAGE .frame-3,
.BG-IMAGE .frame-4 {
    width: 100%;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: relative;
}

.BG-IMAGE .text-wrapper {
    align-self: stretch;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    color: var(--cdn-primary-10);
    font-size: 24px;
    letter-spacing: 0;
    line-height: normal;
}

.BG-IMAGE .p {
    align-self: stretch;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: var(--cdn-primary-10);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

.BG-IMAGE .shop-now {
    display: flex;
    width: 97px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    cursor: pointer;
}

.BG-IMAGE .text-wrapper-2 {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: var(--cdn-primary-6);
    font-size: 16px;
    letter-spacing: 0;
    line-height: normal;
}

@media (max-width: 768px) {
    .BG-IMAGE {
        padding: 32px 20px;
    }

    .BG-IMAGE .frame {
        flex-direction: column;
        align-items: center;
        gap: 48px;
    }

    .BG-IMAGE .solution,
    .BG-IMAGE .solution-2,
    .BG-IMAGE .solution-3 {
        width: 100%;
        max-width: 400px;
        align-items: center;
    }

    .BG-IMAGE .image,
    .BG-IMAGE .image-2,
    .BG-IMAGE .image-3,
    .BG-IMAGE .image-4 {
        width: 100%;
        max-width: 400px;
    }

    .BG-IMAGE .div,
    .BG-IMAGE .frame-2,
    .BG-IMAGE .frame-3,
    .BG-IMAGE .frame-4 {
        width: 100%;
        max-width: 400px;
        align-items: center;
        text-align: center;
    }
}

/* //end of bg image */


/* start of reseller  */
.partner-with-us {

    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 40px;
    line-height: 48px;

    color: #F3F4F6;

}

@media (max-width: 768px) {
    .partner-with-us {
        font-size: 28px;
        line-height: 40px;
    }
    .resellers-section .text-wrapper {
        position: relative;
        align-self: stretch;
        font-family: var(--ERP-REG-5-font-family);
        color: #001926;
        letter-spacing: var(--ERP-REG-5-letter-spacing);
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 24px;
    }
}

.resellers-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px 40px;
    padding: 120px 80px;
    position: relative;
    background-color: var(--cdn-primary-10);
}

.resellers-section .frame {
    display: flex;
    flex-direction: column;
    min-width: 320px;
    max-width: 800px;
    align-items: flex-start;
    gap: 24px;
    position: relative;
    flex: 1;
    flex-grow: 1;
}

.resellers-section .text-wrapper {
    position: relative;
    align-self: stretch;
    font-family: var(--ERP-REG-5-font-family);
    font-weight: var(--ERP-REG-5-font-weight);
    color: var(--erp-white-3);
    font-size: var(--ERP-REG-5-font-size);
    letter-spacing: var(--ERP-REG-5-letter-spacing);
    line-height: var(--ERP-REG-5-line-height);
    font-style: var(--ERP-REG-5-font-style);
}

.resellers-section .shop-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.resellers-section .SHOP-NOW {
    position: relative;
    flex: 1;
    margin-top: -1.00px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: var(--cdn-primary-1);
    font-size: 24px;
    letter-spacing: 0;
    line-height: normal;
}

.resellers-section .hero-texts-and {
    display: flex;
    flex-direction: column;
    min-width: 360px;
    align-items: flex-start;
    gap: 24px;
    padding: 16px;
    position: relative;
    flex: 1;
    flex-grow: 1;
    background-color: #ffffff33;
    border-radius: 16px;
    border: none;
    backdrop-filter: blur(7.5px) brightness(100%);
    -webkit-backdrop-filter: blur(7.5px) brightness(100%);
}

.resellers-section .hero-texts-and::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(1, 123, 192, 1) 0%, rgba(1, 192, 165, 1) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: 1;
    pointer-events: none;
}

.resellers-section .IMG {
    position: relative;
    align-self: stretch;
    width: 100%;
    height: 392.05px;
    object-fit: cover;
}

/* end of reseller  */

/* start categories section  */
.featured-products {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding: 80px 5%;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.featured-products .text-wrapper {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #1e293b;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-align: center;
}

.featured-products .products-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    width: 100%;
    max-width: 1400px;
    justify-items: center;
}

.featured-products .VC {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 260px;
    transition: transform 0.3s ease;
}

.featured-products .VC:hover {

    /* transform: translateY(-8px); */

}

.featured-products .frame {
    width: 100%;
    aspect-ratio: 1;
    background-color: #e6f0fa;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: box-shadow 0.3s ease;
    
}

.featured-products .VC:hover .frame {
    box-shadow: 0px 12px 32px rgba(0, 0, 0, 0.15);
    /* border: 2px solid transparent;
    border-image: linear-gradient(90deg, rgba(1, 123, 192, 1), rgba(1, 192, 165, 1));
    border-image-slice: 1; */

  

}

.featured-products .category-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
    transition: transform 0.3s ease;
}

.featured-products .VC:hover .category-image {
    transform: scale(1.15);
}

.featured-products .category-title {
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #1e293b;
    text-align: center;
    line-height: 1.4;
}

/* Mobile View */
@media (max-width: 768px) {
    .featured-products {
        padding: 40px 5%;
    }

    .featured-products .text-wrapper {
        font-size: 28px;
    }

    .featured-products .products-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 16px;
        padding: 0 16px;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .featured-products .VC {
        flex: 0 0 160px;
        scroll-snap-align: center;
    }

    .featured-products .frame {
        border-radius: 12px;
    }

    .featured-products .category-title {
        font-size: 16px;
    }

    /* Disable image zoom on mobile to avoid touch issues */
    .featured-products .VC:hover .category-image {
        transform: none;
    }

    /* Hide scrollbar but keep functionality */
    .featured-products .products-row::-webkit-scrollbar {
        display: none;
    }

    .featured-products .products-row {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* //end of categores  */

/* //start of why buy from us   */

.categories-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 32px 16px;
    position: relative;
    background-color: #000626;
    border-bottom: 1px solid var(--cdn-primary-1);
    min-height: 100vh;
}

.categories-section .texts {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.categories-section .text-wrapper {
    font-family: var(--ERP-BOLD-6-font-family);
    font-weight: var(--ERP-BOLD-6-font-weight);
    color: #ffffff;
    font-size: var(--ERP-BOLD-6-font-size);
    text-align: center;
    letter-spacing: var(--ERP-BOLD-6-letter-spacing);
    line-height: var(--ERP-BOLD-6-line-height);
    white-space: nowrap;
    font-style: var(--ERP-BOLD-6-font-style);
}

.categories-section .outer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding: 0 8px;
    width: 100%;
}

.categories-section .image,
.categories-section .frame-wrapper,
.categories-section .div-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    height: 480px;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.categories-section .image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.categories-section .zoomable-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.categories-section .zoomable-image:hover {
    transform: scale(1.2);
}

.categories-section .frame {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    width: 100%;
    z-index: 1;
}

.categories-section .div {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 32px;
    text-align: center;
    letter-spacing: 0;
    line-height: 40px;
}

.categories-section .p {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: 24px;
}

.categories-section .CDN-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 24px;
    border-radius: 240px;
    border: 1px solid #ffffff;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.categories-section .buy-now {
    font-family: var(--ERP-REG-5-font-family);
    font-weight: var(--ERP-REG-5-font-weight);
    color: #ffffff;
    font-size: var(--ERP-REG-5-font-size);
    letter-spacing: var(--ERP-REG-5-letter-spacing);
    line-height: var(--ERP-REG-5-line-height);
    white-space: nowrap;
    font-style: var(--ERP-REG-5-font-style);
}

.categories-section .img {
    width: 24px;
    height: 24px;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .categories-section {
        padding: 24px 16px;
        gap: 24px;
    }

    .categories-section .text-wrapper {
        font-size: calc(var(--ERP-BOLD-6-font-size) * 0.8);
        width: 100%;
    }

    .categories-section .outer {
        flex-direction: column;
        gap: 16px;
    }

    .categories-section .image,
    .categories-section .frame-wrapper,
    .categories-section .div-wrapper {
        width: 100%;
        max-width: 100%;
        height: 360px;
    }

    .categories-section .div {
        font-size: 24px;
        line-height: 32px;
    }

    .categories-section .p {
        font-size: 14px;
        line-height: 20px;
    }

    /* Touch zoom effect for mobile */
    .categories-section .zoomable-image:active {
        transform: scale(1.2);
    }
}

/* start of oems section */ 

.OEMS {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 64px 80px;
    position: relative;
    background-color: var(--cdn-primary-10);
}

.OEMS .text-wrapper {
    font-family: var(--ERP-BOLD-6-font-family);
    font-weight: var(--ERP-BOLD-6-font-weight);
    color: #ffffff;
    font-size: var(--ERP-BOLD-6-font-size);
    letter-spacing: var(--ERP-BOLD-6-letter-spacing);
    line-height: var(--ERP-BOLD-6-line-height);
    white-space: nowrap;
    font-style: var(--ERP-BOLD-6-font-style);
}

.OEMS .logos {
    display: flex;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.OEMS .logos::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.OEMS .oem-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
}

.OEMS .oem-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.OEMS .oem-logo img {
    max-width: 140px;
    max-height: 60px;
    object-fit: contain;
}

.OEMS .scroll-indicator {
    width: 100%;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    overflow: hidden;
    display:none;
}

.OEMS .scroll-bar {
    height: 100%;
    background-color: #ffffff;
    border-radius: 4px;
    transition: width 0.3s ease, transform 0.3s ease;
}

@media (max-width: 768px) {
    .OEMS {
        padding: 32px 16px;
    }

    .OEMS .text-wrapper {
        font-size: 24px;
        line-height: 32px;
    }

    .OEMS .oem-logo {
        width: 120px;
        height: 60px;
    }

    .OEMS .oem-logo img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 480px) {
    .OEMS {
        padding: 24px 12px;
    }

    .OEMS .text-wrapper {
        font-size: 20px;
        line-height: 28px;
    }

    .OEMS .oem-logo {
        width: 100px;
        height: 50px;
    }

    .OEMS .oem-logo img {
        max-width: 80px;
        max-height: 40px;
    }
}
/* end of oems  */

/* start of all tenets */
.all-tenets {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 10px 10px;
    padding: 20px 20px;
    position: relative;
}

.all-tenets .tenets {
    display: flex;
    flex-direction: column;
    width: 334px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 8px 16px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 4px 4px #00000040;
    background: linear-gradient(180deg, rgba(1, 123, 192, 1) 0%, rgba(1, 192, 165, 1) 100%);
}

.all-tenets .airplane-and {
    position: relative;
    width: 204px;
    height: 120px;
    object-fit: cover;
}

.all-tenets .frame {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
}

.all-tenets .text-wrapper {
    position: relative;
    align-self: stretch;
    margin-top: -1.00px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.all-tenets .div {
    position: relative;
    align-self: stretch;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    color: #ffffff;
    font-size: 16px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.all-tenets .cashback {
    position: relative;
    width: 120px;
    height: 120px;
    object-fit: cover;
}

.all-tenets .discount-coupon {
    position: relative;
    width: 121px;
    height: 120px;
    object-fit: cover;
}

.all-tenets .time {
    position: relative;
    width: 126px;
    height: 120px;
    object-fit: cover;
}


/* //.newsletter */

.newsletter {
    display: flex;
    flex-direction: column;
    height: 298px;
    align-items: center;
    justify-content: center;
    gap: 24px;
    padding: 64px 80px;
    position: relative;
    background-color: var(--cdn-primary-10);
}

.newsletter .frame {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    flex: 0 0 auto;
    align-items: center;
    position: relative;
}

.newsletter .text-wrapper {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.newsletter .title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    flex: 0 0 auto;
}

.newsletter .div {
    position: relative;
    width: fit-content;
    margin-top: -1.00px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 24px;
    text-align: center;
    letter-spacing: 0;
    line-height: normal;
}

.newsletter .newsletter-area {
    display: flex;
    min-width: 343px;
    max-width: 560px;
    height: 50px;
    align-items: center;
    position: relative;
    width: 100%;
    border-radius: 8px;
    border: 1px solid;
    border-color: var(--cdn-primary-1);
}

.newsletter .div-wrapper {
    display: flex;
    height: 48px;
    gap: 10px;
    padding: 16px 24px;
    flex: 1;
    flex-grow: 1;
    background-color: #ffffff;
    border-radius: 8px 0px 0px 8px;
    overflow: hidden;
    align-items: center;
    position: relative;
}

.newsletter .email-input {
    position: relative;
    width: 100%;
    border: none;
    outline: none;
    font-family: var(--ERP-REG-2-font-family);
    font-weight: var(--ERP-REG-2-font-weight);
    color: var(--erp-gray-4);
    font-size: var(--ERP-REG-2-font-size);
    letter-spacing: var(--ERP-REG-2-letter-spacing);
    line-height: var(--ERP-REG-2-line-height);
    font-style: var(--ERP-REG-2-font-style);
    background: transparent;
}

.newsletter .email-input::placeholder {
    color: var(--erp-gray-4);
}

.newsletter .frame-2 {
    display: inline-flex;
    height: 48px;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    flex: 0 0 auto;
    background-color: var(--cdn-primary-1);
    border-radius: 0px 8px 8px 0px;
    overflow: hidden;
    align-items: center;
    position: relative;
}

.newsletter .text-wrapper-3 {
    position: relative;
    width: fit-content;
    margin-top: -4.00px;
    margin-bottom: -2.00px;
    font-family: var(--ERP-REG-2-font-family);
    font-weight: var(--ERP-REG-2-font-weight);
    color: #ffffff;
    font-size: var(--ERP-REG-2-font-size);
    letter-spacing: var(--ERP-REG-2-letter-spacing);
    line-height: var(--ERP-REG-2-line-height);
    white-space: nowrap;
    font-style: var(--ERP-REG-2-font-style);
}