* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: var(--font-inter);
}

body {
    line-height: 1.5;
}

:root {
    --color-blue: #2B3990;
    --color-lightblue: #353eba;
    --color-black: #262A2E;
    --color-grey: #4D545C;

    --font-inter: "Inter";
    --font-urbanist: "Urbanist";
    --font-liter: "Liter";
}

a {
    text-decoration: none;
}

/* fonts */

@font-face {
    font-family: "Inter";
    src: url(assets/fonts/inter/Inter_24pt-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;

}

@font-face {
    font-family: "Urbanist";
    src: url(assets/fonts/urbanist/Urbanist-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Liter";
    src: url(assets/fonts/liter/Liter-Regular.ttf) format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* btn-styles */
.btn-blue {
    padding: 10px 15px;
    border: 2px solid var(--color-blue);
    background-color: var(--color-blue);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    border-radius: 11px;
    font-family: var(--font-inter);
}

.btn-blue:hover {
    border: 2px solid var(--color-lightblue);
    background-color: var(--color-lightblue);
}

.btn-transparent {
    padding: 10px 15px;
    border: 1px solid var(--color-blue);
    color: var(--color-black);
    background-color: #fff;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    border-radius: 11px;
    font-family: var(--font-inter);
}

.btn-transparent:hover {
    border: 1px solid var(--color-blue);
    background-color: #0d0d0d15;
}

.btn-white {
    padding: 10px 15px;
    border: 1px solid #fff;
    color: #fff;
    background-color: transparent;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    border-radius: 11px;
    font-family: var(--font-inter);
}

.btn-white:hover {
    border: 1px solid #fff;
}

/* common-styles */
.wrapper {
    max-width: 1240px;
    margin: 0 auto;
}

.section {
    padding: 100px;
}

.default-padding {
    padding-block: 5rem;
}

.section-title {
    font-family: var(--font-urbanist);
    font-weight: 700;
    font-style: Bold;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0px;
}

.section-text {
    color: var(--color-grey);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: -0.6%;

}

.noise-bg {
    background: url(assets/images/noise-bg.png);
    background-size: 10%;
    overflow: hidden;
}

/* common-styles-end */


/* header-styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    transform: translateY(0);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    font-family: var(--font-inter);
    border-bottom: 1px solid #ddd;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
}

/* hide on scroll-down */
.header.hide {
    transform: translateY(-100%);
    box-shadow: none;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo-fit {
    display: block;
    width: 109px;
    height: 45px;
}

.logo-fit img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    display: flex;
    gap: .5rem;
    align-items: center;
}

/* hamburger button — hidden on desktop */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    width: 36px;
    height: 36px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--color-black);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

/* animated X state */
.mobile-menu-btn.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* mobile nav drawer — hidden by default */
.mobile-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: #fff;
    border-top: 1px solid #e8e8e8;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
}

.mobile-nav.open {
    max-height: 400px;
    padding: 12px 0 16px;
}

.mobile-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    font-family: var(--font-inter);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 20px;
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s;
}

.mobile-nav-link:hover {
    background: #f5f7ff;
}

.mobile-nav-link img {
    width: 12px;
    opacity: 0.7;
}

.mobile-nav-cta {
    margin: 14px 20px 0;
    width: calc(100% - 40px);
    text-align: center;
    display: block;
    border-radius: 11px;
}

/* header-styles-end */

.page-first-section {
    margin-top: 4rem;
}

/* hero-section */
.hero-section {
    /* margin-top: 0; */
    position: relative;
    overflow: hidden;
    padding-top: 3rem;
}

.hero-vector {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}

.hero-section .container {
    z-index: 1;
    position: relative;
}

.breadcrumb {
    display: flex;
    gap: 1rem;
    align-items: center;
    font-size: 14px;
}

.breadcrumb span:first-child {
    color: var(--color-grey);
}

.hero-row {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.hero-row>div {
    flex: 1;
    width: 50%;
}

/* hero-left */
.hero-section .carousel {
    position: relative;
}

.hero-section .main-img {
    width: 100%;
    border-radius: 20px;
    height: 570px;
    object-fit: cover;
    border: 3px solid #fff;
    box-shadow: 0px 20px 40px -8px #585C5F33;

}

.hero-section .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
}

.hero-section .prev {
    left: 15px
}

.hero-section .next {
    right: 15px
}

.hero-section .thumbnails {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    overflow-x: auto;
}

.hero-section .thumb {
    width: 120px;
    height: 80px;
    background: #ddd;
    border-radius: 10px;
    cursor: pointer;
    object-fit: cover;
    opacity: 0.6;
    transition: 0.3s;
}

.hero-section .thumb.active {
    opacity: 1;
    border: 3px solid #000;
}

/* hero-right */

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-certified {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.certified-box {
    background-color: #fff;
    border-radius: 5px;
    padding: 6px 8px;
    font-size: 14px;
    color: #4B5563;
    display: flex;
    gap: .5rem;
    align-items: center;
    border: 1px solid #ddd;
    box-shadow: 0px 1px 2px 0px #0000000D;
    text-wrap-mode: nowrap;
}

.certified-box img {
    width: 20px;
}

.hero-section .section-title {
    font-size: 56px;
    font-weight: 700;
    font-style: Bold;
    line-height: 120%;
    letter-spacing: 1px;
}

.hero-list {
    padding: 0px;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-list li {
    position: relative;
    padding-left: 25px;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.6%;

}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    background-image: url('assets/images/icons/check-circle.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.price-range-box {
    border-radius: 10px;
    background-color: #fff;
    border: 1px solid var(--Colors-Neutral-200, #CFD1D4);
    padding: 16px 20px;
}

.pr-title {
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.6%;
    color: var(--color-grey);
}

.pr-num {
    font-weight: 600;
    font-size: 20px;
    line-height: 140%;
    letter-spacing: -0.6%;
    color: #0D0D0D;
    margin-block: 1rem;
}

.price-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.price-info span {
    background: #FEF3C7;
    color: #92400E;
    opacity: 1;
    font-size: 14px;
    border-radius: 6px;
    padding-top: 6px;
    padding-right: 12px;
    padding-bottom: 6px;
    padding-left: 12px;

}

.price-info span:last-child {
    background-color: #F3F4F6;
    color: #000F;
}

.hero-right-btns {
    display: flex;
    gap: 1rem;
}

.hero-right-btns .btn-transparent:hover i {
    transform: translateX(5px);
}

/* trusted-img-section */
.trusted-img-section {
    margin-top: 3rem;

}

.trusted-img-section p {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.6%;
    color: var(--color-grey);
    text-align: center;
}

.trusted-img-row {
    display: flex;
    gap: 5rem;
    justify-content: space-between;
    margin-top: 2rem;
}

.trusted-img-fit {
    width: 20%;
}

.trusted-img-fit img {
    width: 100%;
    object-fit: contain;
}

/* hero-section-end */

/* tech-spec-section */
.tech-spec-section {
    background: #111827;
}

.tech-spec-section .section-title {
    color: #fff;
    margin-bottom: 1rem;
}

.tech-spec-table {
    width: 100%;
    margin-block: 2rem 3rem;
    border-radius: 5px;
    overflow: hidden;
    background: #374151;
}

.tech-spec-table tr {
    display: flex;
}

.tech-spec-table tr th {
    background: #374151;
    font-size: 14px;
}

.tech-spec-table tr th,
.tech-spec-table tr td {
    width: 50%;
    text-align: left;
    padding: 10px 10px;
    font-weight: 500;
    color: #ffffff;
}

.tech-spec-table tr td {
    background: #1F2937;
    border-bottom: 1px solid #374151;
    font-size: 16px;
    padding: 13px;
}

.tech-spec-section .btn-white {
    display: block;
    margin-inline: auto;
    width: fit-content;
}

.tech-spec-section .btn-white:hover img {
    margin-right: 5px;
}

.dl_modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 20px;
}

.dl_modal.active {
    display: flex;
}

.dl_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
}

.dl_box {
    position: relative;
    max-width: 480px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    animation: modalSlideIn 0.3s ease;
}

/* ─── rq_modal ─── */
.rq_modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1100;
    padding: 20px;
}

.rq_modal.active {
    display: flex;
}

.rq_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(6px);
}

.rq_box {
    position: relative;
    max-width: 480px;
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    animation: modalSlideIn 0.3s ease;
}

.rq_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.rq_header h3 {
    font-size: 18px;
    font-weight: 500;
    font-family: var(--font-inter);
    color: var(--color-black);
}

.rq_close {
    border: none;
    background: #f1f1f1;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 16px;
    line-height: 1;
}

.rq_close:hover {
    background: #e4e4e4;
}

.rq_body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.rq_input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    font-family: var(--font-inter);
    color: var(--color-black);
    transition: border-color 0.2s;
}

.rq_input:focus {
    border-color: var(--color-blue);
}

.rq_phone {
    display: flex;
    gap: 8px;
}

.rq_code {
    padding: 12px 10px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
    font-family: var(--font-inter);
    color: var(--color-black);
    background: #fff;
    cursor: pointer;
}

.rq_code:focus {
    border-color: var(--color-blue);
}

.rq_footer {
    padding: 16px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.rq_btn {
    background: var(--color-blue);
    color: #fff;
    padding: 12px 24px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font-inter);
    font-weight: 500;
    transition: background 0.2s;
}

.rq_btn:hover {
    background: var(--color-lightblue);
}

/* shared modal entrance animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.dl_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
}

.dl_header h3 {
    font-size: 18px;
    font-weight: 500;
}

.dl_close {
    border: none;
    background: #f1f1f1;
    border-radius: 6px;
    width: 28px;
    height: 28px;
    cursor: pointer;
}

.dl_body {
    padding: 20px;
}

.dl_body label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #555;
}

.dl_body input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 16px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
}

.dl_footer {
    padding: 16px 20px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.dl_btn {
    background: #dcdcdc;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    cursor: not-allowed;
}

/* RESPONSIVE — modals */
@media (max-width: 768px) {

    .dl_header h3,
    .rq_header h3 {
        font-size: 16px;
    }
}

/* tech-spec-section-end */
/* build-section */

.build-section {
    border-bottom: 1px solid #ddd;

}

.build-section .section-text {
    margin-top: 1rem;
}

.build-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.build-box {
    border: 1px solid var(--Colors-Neutral-200, #CFD1D4);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0px 2px 4px 0px #1B1C1D0A;
}

.build-box h1 {
    font-family: var(--font-urbanist);
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-block: 0.9rem;
}

.build-box .section-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.6%;

}

.build-section .btn-blue {
    margin-top: 2rem;
    display: block;
    width: fit-content;
    margin-inline: auto;
}

/* build-section-end */
/* faq-section */
.faq-section {
    border-bottom: 1px solid #ddd;

}

.faq-section .section-title span {
    color: var(--color-blue);
}

.faq {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-block: 3rem;
}

.faq-item {
    border: 1px solid #E1E3E8;
    background: #fff;
    border-radius: 14px;
    padding: 18px 20px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0px 1px 2px 0px #0000000D;

}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    gap: 10px;
}

.faq-header span {
    flex: 1;
}

.faq-item .faq-icon {
    transition: 0.3s;
    font-size: 11px;
    width: 20px;
    height: 20px;
    background: #e5e5e5;
    border-radius: 50%;
    line-height: 20px;
    color: #000;
    font-weight: 600;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--color-lightblue);
    color: #fff;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--color-grey);
    margin-top: 10px;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 200px;
}

/* email-catelogue */
.email-catelogue-section {
    margin-top: 40px;
    background: #F7F8F9;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border: 1px solid #CFD1D4;
    box-shadow: 0px 2px 4px 0px #1B1C1D0A;

}

.ec-left h2 {
    margin-bottom: 8px;
    font-family: var(--font-liter);
    font-weight: 600;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0px;

}

.ec-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 330px;
}

.ec-right input {
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
}

/* faq-section-end */
/* industries-section */

.industries-section {
    border-bottom: 1px solid #ddd;
}

.industries-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.industries-section .section-header>div {
    width: 50%;
}

/* .title h2 {
    font-size: 40px;
    margin-bottom: 12px
}

.title p {
    color: #666;
    max-width: 520px;
    line-height: 1.6
} */

.industries-section .i-arrows {
    display: flex;
    gap: 12px;
    justify-content: end;
}

.industries-section .i-arrow {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid #dcdcdc;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    transition: 0.industries-section .3s;
}

.industries-section .i-arrow:hover {
    background: #f5f5f5
}

.industries-section .i-carousel-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.industries-section .i-carousel-container::-webkit-scrollbar {
    display: none
}

.industries-section .i-carousel-track {
    display: flex;
    gap: 24px;
}

.industries-section .i-card {
    flex: 0 0 calc(25% - 18px);
    height: 380px;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
}

.industries-section .i-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left;
}

.industries-section .i-card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1)); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.579217) 40.23%, rgba(0, 0, 0, 0.8) 75.96%);

}

.industries-section .i-card-content {
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 22px;
    z-index: 2;
}

.industries-section .i-card-content h3 {
    margin-bottom: 8px;
    font-family: var(var(--font-urbanist));
    font-weight: 500;
    font-style: Medium;
    font-size: 26px;
    line-height: 120%;
    letter-spacing: 0px;

}

.industries-section .i-card-content p {
    font-size: 14px;
    color: #ddd;
    line-height: 1.5
}

/* industries-section-end */
/* manufacturing-section */
.manufacturing-section {
    border-bottom: 1px solid #ddd;
}

.manufacturing-top {
    width: 70%;
    margin: 0 auto;
}

.manufacturing-section .section-title,
.manufacturing-section .section-text {
    text-align: center;
}

.manufacturing-section .section-title {
    margin-bottom: 1rem;
}

.mf_shell {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    border: 1.25px solid #CFD1D4;
    box-shadow: 0px 16px 32px -12px #585C5F1A;
}

.mf_tabs {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
    justify-content: space-between;
    overflow: hidden;

}

.mf_tab {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #d6d6d6;
    background: #f1f1f1;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    min-width: 110px;
    text-align: center;
    position: relative;
}

.mf_tab::after {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 100vw;
    height: 1.5px;
    background-color: #ddd;
    content: "";
}

.mf_tab.mf_active {
    background: #2f3e8f;
    color: #fff;
    border-color: #2f3e8f
}

.mf_tab:last-child::after {
    content: none;
}

.mf_card {

    display: flex;
    gap: 48px;
    align-items: center
}

.mf_content {
    flex: 1
}

.mf_step {
    display: none;
    background: #2f3e8f;
    color: #fff;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 14px
}

.mf_heading {
    margin-bottom: 16px;
    color: #111;
    font-family: var(--font-urbanist);
    font-weight: 600;
    font-size: 28px;
    line-height: 160%;
    letter-spacing: -0.6%;

}

.mf_text {
    color: #666;
    line-height: 1.7;
    margin-bottom: 18px;
    font-size: 15px
}

.mf_points {
    list-style: none;
}

.mf_points li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #222;
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.mf_points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url('assets/images/icons/check-circle.png');
    background-size: contain;
    background-repeat: no-repeat;
}

.mf_visual {
    flex: 1;
    position: relative
}

.mf_image {
    width: 100%;
    height: 300px;
    border-radius: 18px;
    object-fit: cover;
    transition: opacity .4s ease
}

.mf_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15)
}

.mf_btn_prev {
    left: 12px
}

.mf_btn_next {
    right: 12px
}

/* manufacturing-section-end */
/* results-section */
.result-section {
    border-bottom: 1px solid #ddd;
}

.result-top {
    width: 62%;
    margin: 0 auto;
    text-align: center;
}

.result-top .section-title {
    margin-bottom: 15px;
}

.rs_wrap {
    margin-top: 60px
}

.rs_scroller {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

/* Hide scrollbar */
.rs_scroller::-webkit-scrollbar {
    display: none
}

.rs_scroller {
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-top: 3rem;
}

.rs_card {
    min-width: 320px;
    max-width: 340px;
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    flex: 0 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.rs_quote {
    margin-bottom: 1.5rem;
}

.rs_quote img {
    width: 25px;
}

.rs_title {
    font-family: var(--font-urbanist);
    font-weight: 600;
    font-size: 21px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-bottom: 10px;


}

.rs_desc {
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.6%;
    color: var(--color-grey);
    margin-bottom: 1rem;

}

.rs_user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rs_avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ccc;
}

.rs_name {
    font-weight: 600;
    font-size: 14px
}

.rs_role {
    font-size: 12px;
    color: #777
}

/* results-section-end */
/* portfolio-section */


.portfolio-section {
    border-bottom: 1px solid #ddd;
}

.portfolio-section .result-top {
    margin: 0 auto 4rem;
}

.pf_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pf_card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border: 1.25px solid #CFD1D4;
    box-shadow: 0px 2px 4px 0px #1B1C1D0A;

}

.pf_title {
    margin-bottom: 8px;
    font-family: var(--font-urbanist);
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: 0px;

}

.pf_desc {
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.6%;

}

.pf_img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 16px;
}

.pf_btn {
    border: 1px solid #ccc;
    background: #f3f3f3;
    color: var(--color-blue);
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
}

.pf_cta {
    margin-top: 3rem;
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #CFD1D4;
    box-shadow: 0px 2px 4px 0px #1B1C1D0A;
}

.pf_cta_title {
    font-family: var(--font-liter);
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-bottom: 5px;

}

.pf_cta_title span {
    color: var(--color-blue);
}

.pf_cta_desc {
    color: #666;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.6%;

}

/* portfolio-section-end */
/* download-section */
.download-section {
    border-bottom: 1px solid #ddd;

}

.dl_card {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid #CFD1D4;
    box-shadow: 0px 2px 4px 0px #1B1C1D0A;
    margin-top: 2rem;

}

.dl_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dl_row:not(:last-child) {
    /* border-bottom: 1px solid #d0d0d0; */
    padding-bottom: 15px;
}

.dl_text {
    font-size: 16px;
    color: #333;
}

.dl_link {
    font-size: 15px;
    color: #2f3e8f;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.dl_link i {
    font-size: 16px;
}

/* download-section-end */
/* request-section */

.request-section {
    border-bottom: 1px solid #ddd;

}

.ctf_container {
    background: #2f3e8f;
    border-radius: 28px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    color: #fff;
}

/* LEFT */
.ctf_left {
    max-width: 55%;
    align-self: center;
}

.ctf_title {
    margin-bottom: 20px;
    font-family: var(--font-urbanist);
    font-weight: 600;
    font-style: Bold;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0px;

}

.ctf_desc {
    color: #dcdcdc;
    margin-bottom: 20px;
    font-family: var(--font-inter);
    font-weight: 400;
    font-size: 18px;
    line-height: 160%;
    letter-spacing: -0.6%;

}

.ctf_divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.ctf_contact {
    font-size: 14px;
    color: #cfcfcf;
    font-family: var(--font-inter);
    font-weight: 500;
    line-height: 20px;

}

.ctf_contact a {
    color: #fff;
    text-decoration: underline;
}

/* FORM */
.ctf_form_card {
    background: #F7F8F9;
    border-radius: 20px;
    padding: 30px;
    width: 390px;
    color: #000;
}

.ctf_form_title {
    margin-bottom: 16px;
    font-size: 18px;
}

.ctf_input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
}

.ctf_phone .ctf_input {
    margin-bottom: 0;
}

.ctf_phone {
    display: flex;
    gap: 10px;
}

.ctf_code {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.ctf_btn {
    width: 100%;
    padding: 14px;
    background: #222;
    color: #fff;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    margin-top: 10px;
}

.ctf_btn:hover {
    background-color: #333;
}


/* MODAL BASE */
.rq_modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 999;
}

.rq_modal.active {
    display: block;
}

/* OVERLAY */
.rq_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(6px);
}

/* BOX */
.rq_box {
    position: relative;
    max-width: 500px;
    width: 92%;
    margin: 100px auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    z-index: 2;
    animation: rqFade 0.25s ease;
}

@keyframes rqFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HEADER */
.rq_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-bottom: 1px solid #eee;
}

.rq_header h3 {
    font-size: 18px;
    font-weight: 500;
}

.rq_close {
    border: none;
    background: #f1f1f1;
    border-radius: 6px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 16px;
}

/* BODY */
.rq_body {
    padding: 20px 22px;
}

.rq_input {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 14px;
}

.rq_phone {
    display: flex;
    gap: 10px;
}

.rq_phone .rq_input {
    margin-bottom: 0px;
}

.rq_code {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

/* FOOTER */
.rq_footer {
    padding: 16px 22px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: flex-end;
}

.rq_btn {
    background: #2f3e8f;
    color: #fff;
    padding: 12px 22px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .rq_box {
        margin: 60px auto;
    }

    .rq_header h3 {
        font-size: 16px;
    }
}

/* request-section-end */
/* footer-section */
footer {
    border-bottom: 1px solid #ddd;
}

.ft_banner {
    margin: auto;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: #FFFFFF;
    box-shadow: 0px 2px 4px 0px #1B1C1D0A;

}

.ft_logo {
    width: 9%;
}

.ft_logo img {
    width: 100%;
    object-fit: contain;
}

.ft_tagline {
    font-family: var(--font-urbanist);
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0px;
    width: 29%;
}

.ft_tagline span {
    color: var(--color-blue);
}

/* GRID */
.ft_grid {
    max-width: 1240px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.ft_col h4 {
    margin-bottom: 12px;
    font-size: 14px;
}

.ft_col p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: .5rem;
}

.ft_col p img {
    width: 16px;
    object-fit: contain;
    margin-top: 3px;
}

.ft_social {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
}

.ft_social img {
    object-fit: contain;
}

/* BOTTOM */
.ft_bottom_section {
    padding: 10px 0;
}

.ft_bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #666;
}

.ft_links {
    display: flex;
    gap: 20px;
}


/* footer-section-end */
/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {
    .default-padding {
        padding: 80px;
    }

    .mf_tab {
        min-width: 20%;
    }

    .ft_tagline {
        font-size: 20px;
    }

    .ft_bottom_section.default-padding {
        padding: 20px 40px;
    }
}

@media (max-width: 1080px) {
    .default-padding {
        padding: 80px 60px;
    }

    /* hero-section */
    .hero-row>div {
        width: 50%;
    }

    /* hero-section-end */
    /* footer-section */
    .ft_banner {
        padding: 20px;
    }

    .ft_logo {
        width: 15%;
    }

    .ft_tagline {
        width: 40%;
    }



    /* footer-section-end */
}

@media (max-width: 1024px) {
    .section {
        padding: 60px 40px;
    }

    .pf_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ctf_container {
        flex-direction: column;
        padding: 40px;
    }

    .ctf_left {
        max-width: 100%;
    }

    .ctf_form_card {
        width: 100%;
    }

    .ft_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:800px) {
    .default-padding {
        padding: 80px 40px;
    }

    .hero-row {
        flex-direction: column-reverse;
    }

    .hero-row>div {
        width: 100%;
    }

    .hero-certified {
        gap: .5rem;
        flex-wrap: wrap;
    }

    .hero-section .thumbnails {
        justify-content: space-between;
    }

    .trusted-img-row {
        gap: 2rem;
    }

    /* tech-spec-section */
    .tech-spec-table tr th,
    .tech-spec-table tr td {
        width: 100%;
    }

    .tech-spec-table tr th:first-child,
    .tech-spec-table tr td:first-child {
        width: 45%;
    }

    /* tech-spec-section-end */
    /* biiuld-section */
    .build-row {
        grid-template-columns: repeat(2, 1fr);
    }

    /* biiuld-section-end */
    /* faq-section */
    .email-catelogue-section {
        flex-direction: column;
    }

    .email-catelogue-section>div {
        width: 100%;
    }

    .ec-right {
        flex-direction: row;
    }

    .ec-right input {
        width: 70%;
    }

    /* faq-section-end */
    /* industry-section */
    .industries-section .section-header>div {
        width: unset;
    }

    .industries-section .i-card {
        flex: 0 0 48%;
    }

    /* industry-section-end */
    /* manufacturing-section */
    .mf_tabs {
        display: none;
    }

    .mf_step {
        display: inline-block;
    }

    .mf_card {
        flex-direction: column;
    }

    .mf_card>div {
        width: 100%;
    }

    /* manufacturing-section-end */
    /* result-section */
    .result-top {
        width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .rs_card {
        min-width: 400px;
        max-width: 400px;
    }

    /* result-section-end */
    /* portfolio-section */
    .pf_grid {
        grid-template-columns: repeat(1, 1fr);
    }

    /* portfolio-section-end */
    /* footer */
    .ft_logo {
        width: 15%;
    }

    .ft_tagline {
        width: 52%;
    }

    .ft_grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;

    }

    .ft_bottom_section.default-padding {
        padding: 10px 40px;
    }

    /* footer-end */

}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 40px 20px;
    }

    .container {
        /* flex-direction: column; */
        gap: 10px;
    }


    .hero-section .main-img {
        height: 250px
    }


    .hero-section .thumb {
        width: 80px;
        height: 60px
    }

    .faq-item {
        padding: 16px
    }

    .faq-header {
        font-size: 14px
    }

    .faq-content {
        font-size: 13px
    }

    .email-catelogue-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .ec-left h2 {
        font-size: 20px;
    }

    .ec-right {
        width: 100%;
    }

    .ec-right input,
    .ec-right button {
        width: 100%;
    }

    .industries-section .i-card {
        flex: 0 0 80%
    }

    .mf_tabs {
        display: none;
    }

    .mf_card {
        flex-direction: column;
        padding: 20px;
        gap: 20px
    }

    .mf_heading {
        font-size: 22px
    }

    .mf_image {
        height: 240px
    }

    .mf_step {
        display: inline-block
    }

    .rs_card {
        min-width: 260px
    }

    .pf_grid {
        grid-template-columns: 1fr;
    }

    .pf_cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .dl_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .dl_text {
        font-size: 14px;
    }

    .dl_link {
        font-size: 14px;
    }

    .ctf_title {
        font-size: 28px;
    }

    .ctf_section {
        padding: 20px;
    }

    .ft_banner {
        flex-direction: column;
        gap: 10px;
    }

    .ft_banner>div {
        width: 100%;
    }

    .ft_logo {
        width: 30% !important;
    }

    .ft_tagline {
        text-align: center;
        font-size: 20px;
    }

    .ft_grid {
        grid-template-columns: 1fr;
    }

    .ft_bottom {
        flex-direction: column;
        gap: 10px;
    }

    .ft_bottom>div {
        text-align: center;
    }

    .ft_links {
        justify-content: space-between;
    }
}

@media (max-width: 480px) {

    /* mobile header */

    /* always visible by default — JS handles hide on scroll-down */
    .header {
        transform: translateY(0);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    }

    /* hide on scroll-down */
    .header.hide,
    .header.scrolled.hide {
        transform: translateY(-100%);
        box-shadow: none;
    }

    .nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

    .header .container {
        padding: 14px 16px;
    }

    /* mobile header end */
    .default-padding {
        padding: 48px 16px;
    }

    .section-title {
        font-size: 36px;
    }

    /* hero-section */
    .hero-right-btns {
        flex-direction: column;
    }

    .hero-right-btns>a {
        text-align: center;
    }

    .trusted-img-row .trusted-img-fit:nth-child(even) {
        display: none;
    }

    .trusted-img-fit {
        width: 100%;
    }

    /* hero-section-end */

    /* tech-spec-section */
    .tech-spec-table tr th:first-child,
    .tech-spec-table tr td:first-child {
        width: unset;
    }

    .tech-spec-table tr th,
    .tech-spec-table tr td {
        width: 50% !important;
    }

    /* tech-spec-section-end */
    /* build-section */
    .build-row {
        grid-template-columns: repeat(1, 1fr);
    }

    /* build-section-end */
    /* faq-section */
    .ec-right {
        flex-direction: column;
        min-width: 100%;
    }

    /* faq-section-end */
    /* industry-section */
    .industries-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .industries-section .i-card {
        flex: 0 0 88%;
    }

    /* industry-section-end */
    /* manufacturing-section */
    .manufacturing-top {
        width: 100%;
    }

    .mf_shell {
        padding: 1rem;
    }

    .mf_card {
        padding: 10px;
    }

    /* manufacturing-section-end */

    .result-top {
        width: 98%;
    }

    /* pportfolio-section */
    .portfolio-section .btn-blue {
        width: 100%;
    }

    /* pportfolio-section-end */
    /* download-section */
    .dl_row:not(:first-child) {
        padding-top: 15px;
    }

    .dl_row:not(:last-child) {
        border-bottom: 1px solid #d0d0d0;
    }

    /* download-section-end */
}

@media (max-width:360px) {}