body {
    font-family: "Inter", sans-serif;
    overflow-x: hidden;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    margin-bottom: 0;
    color: #262A2E;
    background: #F8F9FB;
}

img {
    max-width: 100%;
}

/* navbar styling */

header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #FFFFFF;
    border-bottom: 1px solid #E8EBF1;
}

.sticky-topbar {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    z-index: 40;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    background: #2B3990;
    color: #FFFFFF;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: top 0.35s ease;
}

.sticky-topbar.show {
    top: 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
    padding: 12px 100px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav ul li a {
    text-decoration: none;
    color: #262A2E;
    font-size: 14px;
    font-weight: 500;
}

nav ul li a button {
    background-color: #2B3990;
    color: white;
    border: none;
    padding: 10px 16px;
    cursor: pointer;
    border-radius: 10px;
    font-size: 14px;
}

.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 3px;
}

.dropdown img {
    cursor: pointer;
    width: 13px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(9, 17, 35, 0.12);
    list-style: none;
    display: none;
    padding: 8px 0;
    min-width: 150px;
    gap: 0;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    font-size: 13px;
}

.logo img {
    width: 100px;
}

/*Website background css*/
.sectionMain.noiseBgimage {
    background-image: url(assets/images/noise-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

/*fold-one css*/

.fold-one {
    background: #FFFFFF;
    padding: 28px 0 38px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 100px;
}

.hero-breadcrumb {
    margin: 0 0 16px;
    font-size: 13px;
    color: #767E8E;
}

.hero-breadcrumb .breadcrumb-light {

    font-weight: 400;
    font-style: Regular;
    font-size: 14px;
    color: #4D545C;
}

.hero-breadcrumb .breadcrumb-dark {
    font-weight: 400;
    color: #0D0D0D;
    font-size: 14px;
}

.hero-breadcrumb span {
    margin: 0 8px;
}

.hero-showcase {
    padding: 20px;
    display: grid;
    grid-template-columns: 1fr 0.95fr;
    gap: 50px;
}

.hero-showcase .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-gallery {
    min-width: 0;
}

.hero-track-wrap {
    position: relative;
    border-radius: 18px;
}

.hero-track .carousel-card img {
    height: 560px;
}

.carousel-track-wrap {
    overflow: hidden;
    border-radius: 22px;
}

.carousel-track {
    display: flex;
    transition: transform 0.45s ease;
}

.carousel-card {
    min-width: 100%;
    border-radius: 18px;
    overflow: hidden;
}

.carousel-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
}

.carousel-control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #D9DDE6;
    background: #FFFFFF;
    cursor: pointer;
    font-size: 18px;
    color: #262A2E;
}

.hero-prev,
.hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-prev {
    left: 12px;
}

.hero-next {
    right: 12px;
}

.carousel-control:hover {
    background: #2B3990;
    color: #FFFFFF;
    border-color: #2B3990;
}

.hero-thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.hero-thumb {
    min-height: 52px;
    border: 1px solid #D9DEE7;
    border-radius: 8px;
    background: #F2F4F8;
    cursor: pointer;
}

.hero-thumb.is-active {
    border-color: #2B3990;
    background: #E9EDFF;
}

.hero-info h1 {
    margin: 12px 0 14px;
    font-size: 56px;
    line-height: 1.08;
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
}

.hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 10px;
    padding: 3px 12px;
    font-weight: 500;
    border: 1px solid #E1E3E8;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    background-color: #F7F8F9;
}

.badge-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.hero-badges span {
    border-radius: 6px;
    /* padding: 6px 10px; */
    font-size: 12px;
    color: #4E596B;
}

.hero-info ul {
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}

.hero-info li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 16px;
    font-weight: 400;
    color: #0D0D0D;
}


.hero-price-card {
    background: #fff;
    border: 1px solid #D9DEE8;
    border-radius: 12px;
    padding: 14px 12px;
    margin-bottom: 14px;
}

.hero-price-card .label {
    margin: 0;
    color: #646E7A;
    font-size: 14px;
    font-weight: 500;
}

.hero-price-card .value {
    margin: 6px 0 10px;
    font-size: 20px;
    font-weight: 600;
}

.hero-price-card .chips {
    margin: 0 0 10px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-price-card .chips span {
    background: #FEF3C7;
    color: #92400E;
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 500;
}

.hero-price-card .cert {
    margin: 0;
    font-size: 14px;
    color: #0D0D0D;
    background-color: #F3F4F6;
    border-radius: 6px;
    padding: 6px 12px;
    display: inline-block;
}

.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-actions a {
    text-decoration: none;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
}

.hero-actions .primary {
    background: #2B3990;
    color: #FFFFFF;
}

.hero-actions .secondary {
    border: 1px solid #2B3990;
    color: #262A2E;
    gap: 8px;
}

.hero-brand-strip {
    margin-top: 18px;
    text-align: center;
    padding: 8px 10px 12px;
}

.hero-brand-strip p {
    margin: 0 0 8px;
    color: #8A93A2;
    font-size: 14px;
}

.hero-brand-strip div {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    align-items: center;
}

.hero-brand-strip img {
    width: 100%;
    max-width: 120px;
    justify-self: center;
}

.section {
    padding: 72px 0;
}

.section-heading {
    margin-bottom: 28px;
}

.section-heading h2 {
    margin: 10px 0 0;
    font-size: 36px;
    line-height: 1.2;
    font-family: "Urbanist", sans-serif;
    margin-bottom: 20px;
}

.technical-specs {
    background: #081427;
    color: #E9EEF9;
}

.technical-heading h2 {
    color: #F8FAFF;
    margin: 0 0 8px;
}

.technical-heading p {
    margin: 0;
    max-width: 780px;
    color: #B5C1D6;
    line-height: 1.5;
}

.tech-table-wrap {
    margin-top: 18px;
    border: 1px solid #2A3950;
    border-radius: 10px;
    overflow: hidden;
    background: #16253A;
}

.tech-table {
    width: 100%;
    border-collapse: collapse;
}

.tech-table th,
.tech-table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid #2A3950;
}

.tech-table th {
    background: #374151;
    color: #EAF0FA;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

.tech-table td {
    color: #fff;
}

.tech-table tbody tr:last-child td {
    border-bottom: none;
}

.tech-datasheet-cta {
    display: flex;
    justify-content: center;
    margin-top: 24px;
}

.tech-datasheet-cta a {
    display: inline-flex;
    min-height: 42px;
    padding: 0 18px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid #fff;
    color: #EAF0FB;
    text-decoration: none;
    font-weight: 500;
    background: transparent;
    gap: 10px;
}

.spec-card img,
.industry-card img,
.portfolio-card img {
    width: 100%;
    border-radius: 12px;
    height: 160px;
    object-fit: cover;
}

.spec-card h3,
.industry-card h3,
.portfolio-card h3,
.resource-card h3 {
    margin: 14px 0 8px;
    font-size: 20px;
}

.spec-card p,
.industry-card p,
.resource-card p,
.result-card p,
.applications-header p {
    margin: 0;
    color: #646E7A;
    line-height: 1.6;
}

.process {
    background: #FFFFFF;
}

.process-heading {
    text-align: center;
    padding: 24px 20px 20px;
    margin-bottom: 18px;
}

.process-heading h2 {
    margin: 0 0 8px;
}

.process-heading p {
    margin: 0 auto;
    max-width: 760px;
    color: #646E7A;
    line-height: 1.45;
}

.process-panel {
    border: 1px solid #DDE2EA;
    padding: 18px 20px;
    background-color: #FFFFFF;
    border-radius: 20px;
}

.process-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.process-tab {
    border: 1px solid #D4D9E2;
    border-radius: 999px;
    background: #F7F8FA;
    color: #3A4253;
    min-height: 34px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.process-tab.is-active {
    background: #2B3990;
    border-color: #2B3990;
    color: #FFFFFF;
}

.process-tabs {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 12px;
    position: relative;
    z-index: 1;
}

.process-tabs::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;

    top: 20px;
    transform: translateY(-65%);

    height: 2px;
    background: #dbe1ea;
    z-index: -1;
}

.process-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
}

.process-content-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.process-content-grid .feature-item p {
    margin-bottom: 0px;
}

.process-copy h3 {
    margin: 0 0 12px;
    font-size: 28px;
    line-height: 1.15;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
}

.process-copy p {
    margin: 0 0 14px;
    color: #5C6674;
    line-height: 1.55;
}

.process-copy ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.process-copy li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 8px;
}


.process-media {
    display: grid;
    align-items: center;
    position: relative;
    width: 100%;
}

.process-media-track-wrap {
    overflow: hidden;
    border-radius: 14px;
    width: 100%;
}

.process-media-track {
    display: flex;
    transition: transform 0.35s ease;
}

.process-media-track img {
    width: 100%;
    min-width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.process-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid #D7DCE6;
    border-radius: 50%;
    background: #FFFFFF;
    color: #262A2E;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-arrow img {
    width: 19px;
    height: 19px;
}

.process-arrow.next {
    position: absolute;
    right: 20px
}

.process-arrow.prev {
    position: absolute;
    left: 20px;
    z-index: 9;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.result-card {
    background: #FFFFFF;
    border-radius: 16px;
    border: 1px solid #E3E8F3;
    padding: 24px;
}

.result-card h3 {
    margin: 0 0 6px;
    font-size: 40px;
    color: #2B3990;
}

.build-last {
    background: #FFFFFF;
}

.performance-benefits {
    background: #FFFFFF;
}

.performance-panel {
    padding: 30px 22px 26px;
}

.performance-header h2 {
    margin: 0 0 10px;
    font-size: 44px;
    line-height: 1.08;
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
}

.performance-header p {
    margin: 0;
    max-width: 780px;
    color: #616A79;
    line-height: 1.5;
    font-size: 18px;
}

.performance-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.performance-card {
    border: 1px solid #CFD1D4;
    border-radius: 14px;
    padding: 14px 14px 12px;
    background: #FFFFFF;
}

.perf-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: #2B3990;
    font-size: 16px;
    margin-bottom: 8px;
}

.performance-card h3 {
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 1.25;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
}

.performance-card p {
    margin: 0;
    color: #5E6876;
    line-height: 1.55;
}

.performance-cta {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.performance-cta a {
    display: inline-flex;
    min-height: 40px;
    padding: 8px 20px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #2B3990;
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
}

.faq-catalogue {
    background: #FFFFFF;
    border-top: 1px solid #EAEDF2;
}

.faq-catalogue-panel {
    margin-bottom: 16px;
}

.faq-catalogue-panel h2 {
    margin: 0;
    padding: 24px 20px 18px;
    font-size: 44px;
    line-height: 1.1;
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
}

.faq-catalogue-panel h2 span {
    color: #2B3990;
}

.faq-rows {
    display: grid;
    gap: 10px;
}

.faq-row {
    border-bottom: 1px solid #EAEDF2;
}

.faq-row:last-child {
    border-bottom: none;
}

.faq-q-btn {
    width: 100%;
    background: #FFFFFF;
    border: none;
    text-align: left;
    min-height: 58px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
    color: #1F2532;
    cursor: pointer;
    border-radius: 12px;
    border: 1px solid #E1E3E8;
}

.faq-icon {
    color: #8A93A3;
    font-size: 16px;
    background-color: #F1F2F3;
    border-radius: 50%;
    padding: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq-icon.closeIcon {
    background-color: #FFF1F2;
    padding: 6px;
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
}

.faq-a p {
    margin: 0;
    padding: 0 14px 14px;
    color: #5F6876;
    line-height: 1.45;
}

.faq-row.is-open .faq-a {
    max-height: 120px;
}

.faq-icon img {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.faq-row.is-open .faq-icon img {
    transform: rotate(180deg);
}

.faq-icon.closeIcon img {
    width: 12px;
    height: 12px;
    object-fit: contain;
}

.catalogue-strip {
    border: 1px solid #CFD1D4;
    padding: 16px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-radius: 10px;
}

.catalogue-strip h3 {
    margin: 0 0 4px;
    font-size: 26px;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
}

.catalogue-strip p {
    margin: 0;
    color: #5F6876;
}

.catalogue-form {
    width: 100%;
    max-width: 380px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.catalogue-form input {
    min-height: 38px;
    border: 1px solid #D8DDE7;
    border-radius: 8px;
    padding: 0 12px;
    background: #FFFFFF;
    box-sizing: border-box;
}

.catalogue-form button {
    min-height: 38px;
    border: none;
    border-radius: 10px;
    background: #2B3990;
    color: #FFFFFF;
    font-weight: 500;
    cursor: pointer;
}

.applications-panel {
    padding: 18px 0 0;
}

.applications-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding: 0 20px 18px;
}

.applications-header h2 {
    margin: 0 0 8px;
    font-size: 38px;
    line-height: 1.08;
    max-width: 660px;
    font-family: "Urbanist", sans-serif;
}

.applications-header p {
    max-width: 760px;
}

.applications-controls {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

.applications-controls button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid #D7DCE5;
    background: #FFFFFF;
    color: #2F3440;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.applications-controls button img {
    width: 19px;
    height: 19px;
}

.applications-track-wrap {
    overflow: hidden;
}

.applications-track {
    display: flex;
    gap: 14px;
    transition: transform 0.35s ease;
    padding: 0 20px 20px;
}

.application-card {
    position: relative;
    min-width: calc((100% - 28px) / 3);
    border-radius: 22px;
    overflow: hidden;
}

.application-card img {
    width: 100%;
    height: 390px;
    object-fit: cover;
    display: block;
}

.application-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 22px 18px 18px;
    background: linear-gradient(180deg, rgba(10, 17, 35, 0) 0%, rgba(10, 17, 35, 0.9) 70%);
    color: #FFFFFF;
}

.application-overlay h3 {
    margin: 0 0 8px;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 500;
    font-family: "Urbanist", sans-serif;
}

.application-overlay p {
    margin: 0;
    color: #DCE3F3;
    line-height: 1.45;
}

.industry-grid,
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.industry-card,
.portfolio-card,
.resource-card {
    background: #FFFFFF;
    border: 1px solid #E3E8F3;
    border-radius: 16px;
    padding: 16px;
}

.testimonials .section-heading {
    text-align: center;
}

.testimonials-subtitle {
    margin: 0 auto;
    max-width: 760px;
    color: #646E7A;
    line-height: 1.45;
}

.testimonial-carousel-wrap {
    overflow: hidden;
    margin-top: 10px;
}

.testimonial-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: testimonials-scroll 28s linear infinite;
}

.testimonial-carousel-wrap:hover .testimonial-track {
    animation-play-state: paused;
}

.testimonial-card {
    width: 360px;
    min-height: 320px;
    background: #F7F8F9;
    border: 1px solid #E2E5EC;
    border-radius: 18px;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.quote-mark {
    color: #2B3990;
    font-size: 58px;
    line-height: 0.7;
    font-weight: 700;
    margin-bottom: 10px;
}

.testimonial-card h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.1;
    font-family: "Urbanist", sans-serif;
}

.testimonial-card p {
    margin: 0;
    color: #5D6675;
    line-height: 1.5;
}

.testimonial-author {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 18px;
}

.author-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #E5E8EF;
    display: inline-block;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 14px;
}

.testimonial-author small {
    color: #778093;
    font-size: 12px;
}

@keyframes testimonials-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 8px));
    }
}

.resources {
    background: #FFFFFF;
}

.portfolio-heading {
    text-align: center;
    padding: 24px 20px 20px;
}

.portfolio-heading h2 {
    margin: 0 0 8px;
    font-family: "Urbanist", sans-serif;
}

.portfolio-heading p {
    margin: 0 auto;
    max-width: 780px;
    color: #646E7A;
    line-height: 1.45;
}

.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.portfolio-showcase-card {
    background: #FFFFFF;
    border: 1px solid #DDE2EA;
    border-radius: 14px;
    padding: 16px;
}

.portfolio-showcase-card h3 {
    margin: 0 0 8px;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    font-family: "Urbanist", sans-serif;
}

.portfolio-showcase-card p {
    margin: 0 0 14px;
    color: #525D6C;
    line-height: 1.5;
    height: 90px;
}

.portfolio-showcase-card img {
    width: 100%;
    height: 160px;
    border-radius: 10px;
    object-fit: cover;
    display: block;
    margin-bottom: 14px;
}

.portfolio-showcase-card a {
    display: inline-flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 44px;
    border-radius: 10px;
    border: 1px solid #D5D9E1;
    color: #2B3990;
    text-decoration: none;
    font-weight: 500;
    background: #F4F6FA;
}

.portfolio-help-strip {
    margin-top: 18px;
    border: 1px solid #DDE2EA;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 18px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.portfolio-help-strip h3 {
    margin: 0 0 6px;
    font-size: 26px;
    line-height: 1.1;
}

.portfolio-help-strip p {
    margin: 0;
    color: #646E7A;
}

.portfolio-help-strip a {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 10px;
    text-decoration: none;
    background: #253489;
    color: #FFFFFF;
    font-weight: 500;
    gap: 5px;
}

.resources-heading {
    text-align: center;
    padding: 24px 20px 20px;
}

.resources-heading h2 {
    margin: 0 0 8px;
}

.resources-heading p {
    margin: 0 auto;
    max-width: 760px;
    color: #646E7A;
    line-height: 1.45;
}

.resources-list {
    border: 1px solid #DDE2EA;
    padding: 10px 16px;
    display: grid;
    gap: 6px;
    background-color: #FFFFFF;
    border-radius: 10px;
}

.resources-list .downloadPdf {
    display: flex;
    align-items: center;
    gap: 5px;
}

.resource-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 44px;
}

.resource-row p {
    margin: 0;
    color: #303643;
}

.resource-row a {
    color: #2B3990;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.cta {
    background: #F8F9FB;
}

.cta-box {
    background: #253489;
    border-radius: 20px;
    padding: 34px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 30px;
    align-items: center;
    color: #FFFFFF;
    box-shadow: 0 14px 34px rgba(20, 34, 98, 0.18);
}

.cta-box h2 {
    margin: 0 0 12px;
    font-size: 48px;
    line-height: 1.12;
    letter-spacing: -0.01em;
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
}

.cta-left {
    max-width: 780px;
}

.cta-lead {
    margin: 0 0 22px;
    color: #D8E0FF;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 400;
}

.cta-help {
    margin: 0;
    padding-top: 14px;
    border-top: 1px solid rgba(208, 218, 255, 0.35);
    color: #C8D2FF;
    font-size: 14px;
    line-height: 1.55;
}

.cta-help strong {
    color: #FFFFFF;
    font-weight: 500;
}

.cta-form-wrap {
    display: flex;
    justify-content: flex-end;
}

.cta-form {
    width: 100%;
    max-width: 370px;
    background: #ECECEC;
    border-radius: 16px;
    padding: 32px 25px;
}

.cta-form h3 {
    margin: 2px 0 12px;
    color: #262A2E;
    font-size: 16px;
    font-weight: 500;
}

.cta-form input {
    width: 100%;
    border: 1px solid #E1E3E8;
    border-radius: 8px;
    background: #F7F8F9;
    min-height: 42px;
    padding: 0 12px;
    font-size: 14px;
    color: #333846;
    box-sizing: border-box;
    margin-bottom: 10px;
}

.phone-field {
    display: flex;
    align-items: baseline;
    border: 1px solid #E1E3E8;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    height: 42px;
    margin-bottom: 10px;
}

.country-code {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0px 14px;
    border-right: 1px solid #d9dce3;
    font-size: 16px;
    color: #1f2532;
}

.phone-field input {
    border: none;
    outline: none;
    width: 100%;
    padding: 10px 14px;
    font-size: 14px;
    background: transparent;
}

.cta-form .cta-button {
    width: 100%;
    border: none;
    min-height: 44px;
    border-radius: 10px;
    background: #22252D;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}

.site-footer {
    background: #F5F5F7;
    color: #2F3440;
    border-top: 1px solid #DFE3EA;
    padding: 54px 0 0;
}

.footer-logo {
    width: 140px;
}

.footer-brand-strip {
    border: 1px solid #D5D9E1;
    border-radius: 14px;
    background: #FFFFFF;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 34px;
}

.footer-brand-strip p {
    margin: 0;
    color: #2B3990;
    font-weight: 600;
    line-height: 1.35;
    font-size: 24px;
    text-align: right;
    font-family: "Urbanist", sans-serif;
}

.footer-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.25fr 1.35fr;
    gap: 28px;
    padding-bottom: 22px;
    border-bottom: 1px solid #DDE1E8;
}

.footer-col h3 {
    margin: 0 0 12px;
    font-size: 12px;
    color: #0D0D0D;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 10px;
    line-height: 1.35;
}

.footer-col a {
    color: #535A61;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.footer-contact a {
    font-size: 13px;
    line-height: 1.5;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-list {
    border-bottom: 1px solid #E1E3E8;
    margin-bottom: 25px;
}

.contact-info-item p {
    font-weight: 500;
    color: #535A61;
    font-size: 14px
}

.contact-icon.otherIcons img {
    width: 20px;
    height: 20px;
}

.footer-socials {
    margin-top: 14px;
    display: flex;
    gap: 12px;
}

.footer-socials img {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 45px;
}

.footer-bottom p {
    margin: 0;
    color: #535A61;
    font-size: 12px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.footer-bottom-links a {
    color: #535A61;
    font-size: 12px;
    text-decoration: none;
}

/* ---- Mobile card styles ---- */
.process-mobile-wrap {
    display: none;
}

.process-mobile-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px 20px 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    max-width: 480px;
    margin: 0 auto;
}

.process-mobile-badge {
    display: inline-block;
    background: #1a237e;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 14px;
    margin-bottom: 16px;
}

.process-mobile-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
    color: #111;
}

.process-mobile-card>p {
    font-size: 14px;
    color: #555;
    margin: 0 0 14px;
    line-height: 1.6;
}

.process-mobile-points {
    margin-bottom: 16px;
}

.process-mobile-points .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #222;
}

.process-mobile-points .feature-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.process-mobile-img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.process-mobile-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.hero-info.mobile-tablet-hero{
    display: none;
}

/* ---- Process section: show/hide by breakpoint ---- */

/* Mobile: show card, hide desktop tabs */
@media (max-width: 768px) {
    .process-desktop-wrap {
        display: none !important;
    }

    .process-mobile-wrap {
        display: block !important;
    }
    .hero-info.mobile-tablet-hero{
    display: block !important;
}
   .hero-badges.desktop-only,
    .hero-info.desktop-hero h1,
   .features-list.desktop-only {
    display: none;
   }

   .hero-info.mobile-tablet-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
   }
  .nav-links.desktop-nav {
    display: none;
   }

}

/* Tablet: show card (slightly wider), hide desktop tabs */
@media (min-width: 769px) and (max-width: 1024px) {
    .process-desktop-wrap {
        display: none !important;
    }

    .process-mobile-wrap {
        display: block !important;
    }

    .hero-info.mobile-tablet-hero{
    display: block !important;
}
    .hero-badges.desktop-only,
    .hero-info.desktop-hero h1,
   .features-list.desktop-only {
    display: none;
   }

   .hero-info.mobile-tablet-hero .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
   }
}

/* Desktop: show tabs, hide mobile card */
@media (min-width: 1025px) {
    .process-mobile-wrap {
        display: none !important;
    }

    .process-desktop-wrap {
        display: block !important;
    }
}


@media (max-width: 1024px) {
    nav {
        padding: 12px 40px;
    }

    .container {
        padding: 0 40px;
    }

    .hero-showcase {
        grid-template-columns: 1fr;
    }

    .hero-info h1 {
        font-size: 48px;
    }

    .hero-track .carousel-card img {
        height: 440px;
    }

    .hero-brand-strip div {
        grid-template-columns: repeat(3, 1fr);
    }

    .spec-grid,
    .results-grid,
    .industry-grid,
    .portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-content-grid {
        grid-template-columns: 1fr;
    }

    .process-copy h3 {
        font-size: 28px;
    }

    .testimonial-card {
        width: 320px;
    }

    .testimonial-card h3 {
        font-size: 24px;
    }

    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-help-strip h3 {
        font-size: 28px;
    }

    .section-heading h2,
    .process-copy h3 {
        font-size: 28px;
    }

    .applications-header {
        flex-direction: column;
    }

    .applications-header h2 {
        font-size: 42px;
    }

    .faq-catalogue-panel h2 {
        font-size: 40px;
    }

    .performance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .performance-header h2 {
        font-size: 42px;
    }

    .catalogue-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalogue-form {
        max-width: 100%;
    }

    .application-card {
        min-width: calc((100% - 14px) / 2);
    }

    .application-card img {
        height: 320px;
    }

    .application-overlay h3 {
        font-size: 26px;
    }

    .cta-box {
        grid-template-columns: 1fr;
    }

    .cta-box h2 {
        font-size: 40px;
    }

    .cta-lead {
        font-size: 18px;
    }

    .cta-help {
        font-size: 14px;
    }

    .footer-brand-strip p {
        font-size: 22px;
    }

    .footer-main-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 12px 0;
    }

    .process-mobile-img-wrap img {
        height: 280px;
    }

    .process-mobile-card {
        max-width: 640px;
        padding: 32px 28px 28px;
    }

    .process-mobile-card h3 {
        font-size: 26px;
    }

    .process-mobile-nav {
        display: flex;
        justify-content: space-between;
    }

    .process-mobile-btn {
        background: transparent;
        border: 1.5px solid #ccc;
        border-radius: 24px;
        padding: 9px 22px;
        font-size: 14px;
        font-weight: 500;
        cursor: pointer;
        color: #333;
        transition: border-color 0.2s, color 0.2s;
    }

    .process-mobile-btn:hover {
        border-color: #1a237e;
        color: #1a237e;
    }

}


@media (max-width: 768px) {
    nav {
        padding: 12px 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    nav ul {
        width: 100%;
        gap: 10px 14px;
        flex-wrap: wrap;
        justify-content: flex-start;
        margin: 0;
        padding: 0;
    }

    nav ul li a {
        font-size: 13px;
    }

    nav ul li a button {
        padding: 8px 12px;
    }

    .container {
        padding: 0 18px;
    }

    .fold-one {
        padding: 22px 0 28px;
    }

    .hero-showcase {
        padding: 14px;
    }

    .hero-info h1 {
        font-size: 34px;
    }

    .hero-badges {
        gap: 6px;
    }

    .hero-badges span {
        font-size: 11px;
        padding: 5px 8px;
    }

    .hero-track .carousel-card img {
        height: 300px;
    }

    .carousel-control,
    .hero-prev,
    .hero-next {
        width: 36px;
        height: 36px;
    }

    .hero-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-brand-strip div {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-price-card .value {
        font-size: 18px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .section {
        padding: 54px 0;
    }

    .section-heading h2,
    .process-copy h3 {
        font-size: 26px;
    }

    .tech-table-wrap {
        overflow-x: auto;
    }

    .tech-table {
        min-width: 640px;
    }

    .applications-panel {
        padding-top: 14px;
    }

    .applications-header {
        padding: 0 14px 14px;
    }

    .applications-header h2 {
        font-size: 32px;
    }

    .faq-catalogue-panel h2 {
        font-size: 30px;
        padding: 18px 14px 14px;
    }

    .performance-panel {
        padding: 18px 14px;
    }

    .performance-grid {
        grid-template-columns: 1fr;
    }

    .performance-header h2 {
        font-size: 32px;
    }

    .applications-controls button {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

    .applications-track {
        padding: 0 14px 14px;
    }

    .application-card {
        min-width: 100%;
    }

    .application-card img {
        height: 280px;
    }

    .application-overlay h3 {
        font-size: 22px;
    }

    .footer-brand-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-brand-strip p {
        font-size: 18px;
        text-align: left;
    }

    .spec-grid,
    .results-grid,
    .industry-grid,
    .portfolio-grid,
    .footer-main-grid {
        grid-template-columns: 1fr;
    }

    .process-panel {
        padding: 14px;
    }

    .process-copy h3 {
        font-size: 26px;
    }



    .process-arrow {
        width: 34px;
        height: 34px;
    }

    .process-media-track img {
        height: 230px;
    }

    .testimonial-card {
        width: 280px;
        min-height: 290px;
    }

    .testimonial-card h3 {
        font-size: 20px;
    }

    .portfolio-help-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .portfolio-help-strip h3 {
        font-size: 24px;
    }

    .resource-row {
        flex-direction: column;
        align-items: flex-start;
        padding: 8px 0;
    }

    .resource-row a {
        white-space: normal;
    }

    .cta-box {
        padding: 20px;
        border-radius: 16px;
        gap: 18px;
    }

    .cta-box h2 {
        font-size: 30px;
    }

    .cta-lead {
        font-size: 16px;
        margin-bottom: 14px;
    }

    .cta-help {
        font-size: 14px;
    }

    .cta-form {
        max-width: 100%;
    }

    .footer-bottom-links {
        gap: 14px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .section {
        padding: 42px 0;
    }

    .sticky-topbar p {
        padding: 0 10px;
        text-align: center;
        font-size: 11px;
    }

    .hero-info h1 {
        font-size: 36px;
    }

    .cta-box h2 {
        font-size: 36px;
    }

    .hero-info h1,
    .applications-header h2,
    .performance-header h2,
    .faq-catalogue-panel h2,
    .cta-box h2 {
        font-size: 28px;
    }

    .hero-track .carousel-card img {
        height: 240px;
    }

    .process-tabs {
        gap: 6px;
    }

    .process-tab {
        font-size: 12px;
        min-height: 30px;
        padding: 0 10px;
    }

    .testimonial-card {
        width: 250px;
    }

    .testimonial-card h3 {
        font-size: 18px;
    }
}