/* Fonts */

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Medium.woff2') format('woff2'),
        url('../fonts/Outfit-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Bold.woff2') format('woff2'),
        url('../fonts/Outfit-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-Regular.woff2') format('woff2'),
        url('../fonts/Outfit-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit-SemiBold.woff2') format('woff2'),
        url('../fonts/Outfit-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

*,
body {
    padding: 0;
    margin: 0;
    font-family: 'Outfit';
    font-weight: normal;
}

/* Header */

.header {
    background-color: #fff;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo svg {
    height: 100px;
    width: 200px;
}

.header .logo {
    flex-shrink: 0;
}


/* Navigation */

.header .navigation {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header .menu {
    display: flex;
    align-items: center;
    gap: 60px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.header .menu-item {
    margin: 0;
}

.header .menu-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #0A2040;
    font-size: 18px;
    font-weight: 400;
    padding: 35px 0;
    transition: .3s;
}

/* .header .menu-link.active::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    transform: translateX(-50%);
    width: 55px;
    height: 3px;
    background: #22657E;
    border-radius: 50px;
} */

.header .menu-link.active {
    font-weight: 600;
}

.header .menu-link:hover,
.header .menu-link.active {
    color: #22657E;
}

.header .menu-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -3px;
    width: 55px;
    height: 3px;
    background: linear-gradient(to right,
            transparent 0%,
            #22657E 20%,
            #22657E 80%,
            transparent 100%);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(143, 184, 200, 0.4);

    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.35s ease;
}

.header .menu-link:hover::after,
.header .menu-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* .header .menu-link:hover::after,
.header .menu-link.active::after {
    transform: scaleX(1);
} */

/* Right Side */

.header .header-action {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-shrink: 0;
}

/* Explore */

.header .explore-link {
    text-decoration: none;
    color: #0A2040;
    font-size: 16px;
    font-weight: 500;
}

.header .arrow-icon {
    margin-left: 5px;
}

.header .email {
    display: none;
    align-items: center;
    gap: 5px;
    justify-content: center;
    text-align: center;
    width: 100%;
    background-color: #3a7d8840;
    padding: 10px;
    padding-bottom: 12px;
    border-radius: 4px;
    margin-top: 15px;
}

.header .email:first-child {
    margin-top: 30px;
}

.header .email span:first-of-type {
    font-weight: 600;
}

.header .email span a {
    color: #000;
    text-decoration: none;
}

/* Demo Button */

.header .demo-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 26px;
    border-radius: 6px;
    background: #3A7D88;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.header .demo-btn:hover {
    background: #2d6872;
}

.header-right {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: space-between;
}

.header-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
}

.header-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    /* Only when active */
}

.menu-toggle {
    width: 30px;
    height: 30px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    z-index: 999;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background: #0A2040;
    border-radius: 30px;
    transition: .3s;
}

/* Footer */

.footer {
    padding: 20px 0;
    background-color: #F7FAFD;
    /* position: fixed;
    width: 100%;
    bottom: 0; */
    font-family: 'Outfit', sans-serif;
}

/* .footer .footer-logo {
    margin-bottom: 40px;
} */

.footer h5 {
    font-size: 26px;
    text-transform: capitalize;
    color: #0A2040;
    margin-bottom: 15px;
}

/* .footer svg {
    width: 250px;
    height: 120px;
} */

.footer .footer-menu {
    margin-top: 30px;
    margin-left: 30px;
}

.footer p {
    color: #000000;
    /* font-weight: 500; */
    margin: 10px 0;
    font-size: 18px;
    color: #0A2040;
}

.footer ul li {
    margin: 8px 0;
}

.footer li a {
    text-decoration: none;
    color: #101010;
    font-size: 16px;
}

.footer li a:hover {
    color: #22657E;
}

.footer hr {
    background-color: #92A7AA;
    height: 2px;
}

.footer-copyright {
    padding-top: 5px;
    color: #1f1f1f;
}

#goTopBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    background: #3a7d88;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 998;
    opacity: 0.8;
}

#goTopBtn:hover {
    background: #3a7d88;
    opacity: 1;
    transform: translateY(-3px);
}


/* Common Css */

.subtitle {
    font-size: 26px;
    font-weight: 600;
    color: #22657E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.title {
    font-size: 54px;
    line-height: 1.3;
    font-weight: 600;
    color: #0A2040;
}

.description {
    color: #0A2040;
    font-size: 20px;
    line-height: 1.6;
}

.explore-btn {
    border: 1px solid #22657E;
    background-color: #fff;
    color: #0A2040;
    font-size: 16px;
    padding: 10px 30px;
    font-weight: 500;
    transition: .3s;
    text-decoration: none;
    border-radius: 0px 25px 5px 0px;
    position: relative;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    margin-left: 15px;
    letter-spacing: 0.6px;
}

.explore-btn .explore-icon {
    position: absolute;
    left: -25px;
    top: -6px;
}

.explore-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 30px rgba(34, 101, 126, 0.15),
        0 6px 10px rgba(0, 0, 0, 0.10);
}

.explore-btn:hover .explore-icon svg {
    animation: rotateIcon .6s ease;
    /* filter: drop-shadow(0 8px 18px rgba(58, 125, 136, 0.45)); */
}

@keyframes rotateIcon {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #bdbdbd;
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: #888;
}


/* =============== Home Page CSS ============== */

.home-page .genomic-intelligence {
    background: url('../images/home/home-banner.webp');
    position: relative;
    overflow: hidden;
    padding: 45px 0;
    background-size: cover;
    padding-bottom: 60px;
}

.home-page .home-tab-banner {
    display: none;
}

.home-page .explore-mobile {
    display: none;
}

.home-page .header-right-banner {
    width: 100%;
}

.home-page .description {
    margin-top: 10px;
}

.home-page .genomic-intelligence .description {
    margin-bottom: 35px;
}

.home-page .genomic-intelligence .features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 25px 0;
    margin-bottom: 40px;
}

.home-page .genomic-intelligence .feature-item {
    color: #28415c;
    font-weight: 600;
    font-size: 16px;
    border-right: 1px solid #cad2da;
    padding-right: 10px;
}

.home-page .genomic-intelligence .feature-item:last-of-type {
    border-right: none;

}

.home-page .genomic-intelligence .feature-item div {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 5px;
}

.home-page .genomic-intelligence .feature-item p {
    margin: 0;
    color: #0A2040;
}

.home-page .genomic-intelligence .feature-item span {
    color: #384a65;
    font-size: 14px;
    font-weight: 400;
}




.home-page .therealbottleneck {
    padding: 40px 0;
    background: linear-gradient(179deg, rgba(255, 255, 255, 1) 0%, rgba(234, 245, 250, 1) 100%);
    position: relative;
}

.home-page .therealbottleneck .bottom-right-img {
    position: absolute;
    bottom: 0;
    right: 0;
}

.home-page .feature-header {
    margin-bottom: 35px;
    color: #0A2040;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.home-page .therealbottleneck .feature {
    display: flex;
    gap: 50px;
}

.home-page .therealbottleneck .feature-column {
    flex: 1;
}

.home-page .therealbottleneck .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 15px;
    color: #000;
    line-height: 1.6;
}

.home-page .therealbottleneck .title {
    font-size: 40px;
    margin: 10px 0;
}

.home-page .therealbottleneck .description {
    margin-top: 15px;
    margin-bottom: 35px;
    width: 90%;
}

.home-page .therealbottleneck .bottom-banner {
    background-color: #3A7D88;
    color: white;
    text-align: center;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    border-left: 3px solid #a8cde7;
    border-right: 3px solid #a8cde7;
    width: 70%;
    margin: auto;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}




.home-page .building-section {
    background: url('../images/home/what-we-are-building.webp');
    padding: 40px 0;
    margin: 40px 0;
    background-size: cover;
}

.home-page .building-section .title {
    font-size: 40px;
    margin-top: 10px;
}

.home-page .building-section .description p {
    margin-top: 50px;
}

.home-page .feature-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 35px 25px;
    margin-top: 30px;
}

.home-page .feature-card {
    text-align: center;
    position: relative;
}

/* .home-page .feature-card:not(:first-of-type):not(:nth-child(6))::before {
    content: "";
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 110px;
    background: linear-gradient(to bottom,
            transparent 0%,
            #9FC6C8 20%,
            #9FC6C8 80%,
            transparent 100%);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(143, 184, 200, 0.4);
} */

.home-page .feature-icon {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: .3s;
}

.home-page .feature-card:hover .feature-icon {
    /* background: #e8f4fb; */
    transform: translateY(-5px);
}

.home-page .feature-card h4 {
    font-size: 18px;
    color: #000;
    line-height: 1.5;
    font-weight: 400;
}

.home-page .section-button {
    margin-top: 55px;
    text-align: center;
}

.home-page .introducing-seq2Clin {
    padding: 40px 0;
    background: radial-gradient(circle, rgba(221, 243, 255, 1) 0%, rgba(255, 255, 255, 1) 45%);
}

.home-page .introducing-seq2Clin .left-details {
    padding-bottom: 35px;
}

.home-page .introducing-seq2Clin .title {
    font-size: 40px;
    margin-top: 10px;
}

.home-page .introducing-seq2Clin .description {
    margin-top: 15px;
    margin-bottom: 20px;
}

.home-page .introducing-seq2Clin .feature {
    display: flex;
    gap: 50px;
    margin-bottom: 20px;
}

.home-page .introducing-seq2Clin .feature-column {
    flex: 1;
}

.home-page .introducing-seq2Clin .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 18px;
    color: #000;
    line-height: 1.6;
}

.home-page .introducing-seq2Clin-banner {
    display: flex;
    align-items: end;
    justify-content: center;
    height: 100%;
}



.home-page .scale-genomic {
    margin: 40px 0;
    margin-top: 0;
}

.home-page .scale-genomic .scale-details {
    background: url(../images/home/cta.webp);
    padding: 30px 40px 50px;
    border-radius: 25px;
    background-size: cover;
    /* padding-bottom: 60px; */
}

.home-page .scale-genomic .title {
    font-size: 40px;
}

.home-page .scale-details .description {
    width: 70%;
    margin-bottom: 30px;
    margin-top: 10px;
}

.home-page .insights-section {
    background: linear-gradient(4deg, rgba(255, 255, 255, 1) 0%, rgba(239, 248, 249, 1) 100%);
    padding: 50px 0;
    padding-bottom: 120px;
    position: relative;
}

.insights-section-bg {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 600px;
    height: 300px;
}

.insights-section h1.title {
    font-size: 40px;
    margin-bottom: 40px;
    margin-top: 10px;
}

.home-page .eyebrow {
    color: var(--teal);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.home-page h1.heading {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.2;
    margin: 0 0 48px;
    color: var(--navy);
    font-weight: 800;
    max-width: 800px;
}

.home-page .content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.home-page .blog-list {
    display: flex;
    flex-direction: column;
}

.home-page .blog-list div:has(.explore-btn) {
    margin-top: 40px;
}

.home-page .blog-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--card-border);
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s ease;
    position: relative;
}

.home-page .blog-item::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: linear-gradient(to left,
            transparent 0%,
            #9FC6C8 20%,
            #9FC6C8 80%,
            transparent 100%);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(143, 184, 200, 0.4);
}

.home-page .blog-item:first-child {
    padding-top: 0;
}

.home-page .blog-item:last-child {
    margin-bottom: 40px;
}

.home-page .blog-item:hover {
    transform: translateX(4px);
}

.home-page .blog-number {
    font-size: 28px;
    font-weight: 700;
    color: #3A7D88;
    min-width: 48px;
    flex-shrink: 0;
}

.blog-title-section {
    display: flex;
    align-items: center;
    width: 80%;
}

.home-page .blog-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    color: #0A2040;
    flex-grow: 1;
}

.home-page .blog-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.home-page .read-time {
    font-size: 14px;
    color: var(--text-body);
    white-space: nowrap;
}

.home-page .arrow-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #3a7e881c;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3A7D88;
    font-size: 24px;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.home-page .blog-item:hover .arrow-circle {
    background: #3A7D88;
    color: #fff;
}

/* Feature card */
.home-page .feature-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    box-shadow: 0 10px 30px rgba(15, 42, 61, 0.06);
    text-align: left;
}

.home-page .feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3A7D88;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 20px;
}

.home-page .feature-tag img {
    width: 30px;
    height: 30px;
}

.home-page .feature-card .title {
    margin: 0 0 10px;
    font-size: 30px;
}

.home-page .feature-card .description {
    margin: 0 0 24px;
    line-height: 1.4;
    font-size: 18px;
}

.home-page .feature-link {
    color: #3A7D88;
    font-weight: 600;
    font-size: 18px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* =============== Home Page CSS ============== */



/* =============== Blog Page CSS ============== */

/* HERO SECTION */
.blog-page .blog-banner {
    background: url('../images/blog/blog-banner.webp');
    padding: 80px 0 60px 0;
    background-size: cover;
}

.blog-page .blog-banner .row {
    align-items: center;
}

.blog-page .blog-banner .description {
    margin-top: 12px;
}



/* Category */

.blog-page .blog-categories {
    padding: 70px 0;
    background: #fff;
    padding-bottom: 30px;
}

.blog-page .blog-categories .subtitle {
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 35px;
    text-align: center;
}

.blog-page .category-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    background: #f8f9fc;
    border: 2px solid #ddecfb;
    padding: 18px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
}

.blog-page .category-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    text-decoration: none;
    color: #163b5c;
    transition: .3s ease;
}

.blog-page .category-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, .08);
    border-color: #28a7a0;
}

.blog-page .category-name {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
}

/* FEATURED BLOG SECTION */
.blog-page .featured-blog-section {
    padding-top: 70px;
}

.blog-page .featured-blog-section .subtitle {
    margin-bottom: 30px;
}

.blog-page .featured-blog-section .row {
    display: flex;
    flex-wrap: wrap;
}

.blog-page .blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.blog-page .blog-card {
    background-color: #fff;
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    position: relative;
    transition: all .35s ease;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid rgba(34, 101, 126, .15);
}

.blog-page .blog-card:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 18px 40px rgba(115, 147, 196, 0.12);
    border-color: rgba(34, 101, 126, .15);
}

.blog-page .blog-card .blog-card-img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.blog-page .blog-card .blog-card-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.blog-page .blog-card:hover .blog-card-img {
    transform: scale(1.1);
}

.blog-card-image {
    position: relative;
    transition: opacity 0.5s ease;

}

.blog-page .blog-card:hover .blog-card-image::before {
    opacity: 1;
    transform: scale(1.1);
}

.blog-page .blog-card-img {
    width: 100%;
    height: 250px;
    /* padding: 10px; */
    object-fit: cover;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    /* background: #f7f7f7; */
}

.blog-page .blog-card-body {
    padding: 20px;
    /* border: 1px solid #3A7D88; */
    border-radius: 0 0 30px 30px;
}

.blog-card-details {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 10px;
    color: #000;
}

.blog-page .blog-card-title {
    color: #0A2040;
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-page .blog-card-desc {
    color: #000;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 45px;
}

.blog-page .blog-card-meta-row {
    position: absolute;
    left: 10px;
    right: 10px;
    top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1;
}

.blog-page .blog-card-meta {
    font-size: 15px;
    color: #3A7D88;
    font-weight: 600;
    background-color: #fff;
    border-radius: 20px;
    padding: 5px 10px;

}

.blog-page .blog-card-meta svg {
    margin-right: 5px;
}

.blog-page .blog-card-readtime {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-readmore {
    position: absolute;
    bottom: 12px;
    display: flex;
    color: #3A7D88;
}

.blog-readmore svg {
    transform: rotate(-130deg);
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-readmore svg {
    transform: rotate(-90deg);
}

/* NEWSLETTER SECTION */
.blog-page .newsletter-section {
    padding: 40px 0;

}

.blog-page .newsletter-box {
    background: url('../images/blog/cta.webp');
    border-radius: 16px;
    padding: 30px 40px 50px;
    overflow: hidden;
    background-size: cover;
}

.blog-page .newsletter-box .title {
    font-size: 40px;
}

.blog-page .newsletter-box .row {
    align-items: center;
}

/* .newsletter-box .title{
    font-size: 40px;
} */

.blog-page .newsletter-box p {
    margin-bottom: 30px;
    margin-top: 10px;
}

/* =============== Blog Page CSS ============== */


/* =============== Contact Us Page CSS ============== */

.contact-page .contact-banner {
    background: url('../images/contact/contact-banner.webp');
    background-size: cover;
    padding: 80px 0 60px 0;
}

.contact-page .contact-banner-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    align-items: center;
}

.contact-page .contact-banner h1 {
    margin-bottom: 20px;
}

.contact-page .contact-banner p {
    margin-bottom: 18px;
}

/* CONTACT INFO + FORM SECTION */
.contact-page .contact-main-section {
    padding: 60px 0;
}

.contact-page .contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 40px;
    align-items: start;
}

.contact-page .contact-label {
    color: #2f7d76;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    margin-bottom: 15px;
}

.contact-page .contact-heading {
    color: #0d2a3d;
    font-weight: 800;
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 30px;
}

.contact-page .contact-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.contact-page .contact-info-card {
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid #d6e4e5;
    border-radius: 10px;
    padding: 20px 30px;
    position: relative;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 10px;
    background: linear-gradient(to right, transparent 15%, #112d4a 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 3;
}

.contact-info-card:hover {
    box-shadow: 0 0 12px #112d4a38;
}

.contact-page .contact-info-dot {
    /* width: 50px;
    height: 50px; */
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.83) 0%, rgba(234, 248, 255, 1) 100%);
    flex-shrink: 0;
    position: absolute;
    left: -15px;
    top: -15px;
    padding: 10px;
    border: 1px solid #3A7D88;
}

.contact-page .contact-info-card a {
    text-decoration: none;
    color: #000;
}

.contact-page .contact-info-card p {
    margin: 0;
    color: #000;
    font-weight: 400;
    text-align: center;
    flex: 1;
    font-size: 18px;
}

/* FORM BOX */
.contact-page .form-box {
    background: linear-gradient(180deg, #6fa3a0, #ffffff 60%);
    border-radius: 20px;
    padding: 25px 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.contact-page .form-box-inner {
    background-color: #fff;
    border-radius: 18px;
    padding: 40px;
}

.contact-page .form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-page .form-field label {
    display: block;
    color: #0A2040;
    font-weight: 400;
    margin-bottom: 8px;
    font-size: 16px;
}

.contact-page .form-field input,
.contact-page .form-field select,
.contact-page .form-field textarea {
    width: 100%;
    border: 1px solid #d6dde0;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    color: #546379;
    outline: none;
    background: transparent;
}

.contact-page .form-field .dropdown-field {
    width: 100%;
    border: 1px solid #d6dde0;
    border-radius: 4px;
    padding: 12px 15px;
    font-size: 14px;
    color: #546379;
    outline: none;
    background: transparent;
    padding-bottom: 0;
    cursor: pointer;
    position: relative;
}

.contact-page .form-field select {
    cursor: pointer;
}

.contact-page .form-field .dropdown-field select {
    border: none;
    padding: 0;
    padding-bottom: 12px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.contact-page .dropdown-field::after {
    font-family: 'Outfit';
    content: "⌄";
    position: absolute;
    top: 42%;
    right: 15px;
    transform: translateY(-50%);
    font-size: 20px;
    color: #555;
    pointer-events: none;
}

.contact-page .form-field textarea {
    resize: none;
    min-height: 100px;
}

.contact-page .phone-field {
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 10px;
    border: 1px solid #d6dde0;
    border-radius: 4px;
}

.contact-page .phone-field input,
.contact-page .phone-field select {
    border: none;
    border-radius: 0;
}

.contact-page .phone-field input {
    border-top-right-radius: 4px !important;
    border-bottom-right-radius: 4px !important;
    border-left: 1px solid #d6dde0;
    padding: 8px 15px;
    margin: 4px 0;
}

.contact-page .submit-btn {
    background-color: #2f7d76;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 35px;
    font-weight: 600;
    margin-top: 10px;
}

/* WHO SHOULD CONTACT US SECTION */
.contact-page .who-contact-section {
    background: url('../images/contact/who-should-contact-us.webp');
    padding: 70px 0;
    background-size: cover;
}

.contact-page .who-contact-section .title {
    text-align: center;
    font-size: 40px;
    margin-bottom: 40px;
}

.contact-page .who-contact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.contact-page .who-card {
    color: #0A2040;
    background: linear-gradient(180deg, rgba(151, 175, 186, 0.83) 70%, #c0d5d9 100%);
    backdrop-filter: blur(19px);
    border-radius: 12px;
    position: relative;
    padding: 30px;
    flex: 1 1 30%;
    min-width: 280px;
}

.contact-page .who-card::after {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1px;
    border-radius: 10px;
    background: linear-gradient(to bottom, transparent 75%, #ffffffaf 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 3;
}

.contact-page .who-contact-grid .who-card:nth-child(4),
.contact-page .who-contact-grid .who-card:nth-child(5) {
    max-width: 400px;
}


.contact-page .who-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-page .who-card h3 {
    font-weight: 600;
    margin: 0;
    font-size: 28px;
    letter-spacing: 0.6px;
}

.contact-page .who-card-icon {
    /* width: 40px;
    height: 40px; */
    /* background-color: rgba(255, 255, 255, 0.25); */
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-page .who-card p {
    margin: 0;
    color: #0A2040;
    font-size: 18px;
    line-height: 1.8;
}

/* CTA SECTION */
.contact-page .cta-section {
    padding: 40px 0;
}

.contact-page .cta-box {
    /* background-color: #eef2fb; */
    background: url('../images/contact/cta.webp');
    background-size: cover;
    border-radius: 16px;
    padding: 30px 40px 50px;
    overflow: hidden;
}

.contact-page .cta-box .title {
    font-size: 40px;
}

.contact-page .cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
}

.contact-page .cta-box .title {
    margin-bottom: 10px;
}

.contact-page .cta-box p {
    margin-bottom: 30px;
}

.contact-page .cta-btn {
    background-color: #2f7d76;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
}

.contact-page .form-box-inner .explore-btn {
    padding: 8px 30px;
}

.ajax-response {
    display: none;
    margin-top: 15px;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 30px;
}

.ajax-response.success {
    background: #e8f8ee;
    color: #1b7a3a;
    border: 1px solid #b7e4c7;
}

.ajax-response.error {
    background: #fdeaea;
    color: #c62828;
    border: 1px solid #f5b5b5;
}

.g-recaptcha {
    margin-bottom: 20px;
}


.contact-page .multi-select {
    position: relative;
    width: 100%;
    font-family: inherit;
}

.contact-page .select-box {
    min-height: 47px;
    border: 1px solid #d9d9d9;
    border-radius: 4px;
    padding: 2px 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: .3s;
    font-size: 14px;
    color: rgb(84, 99, 121);
    margin-bottom: 20px;
}

.contact-page .selected-text {
    /* color: #666; */
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-page .arrow {
    transition: .3s;
}

.contact-page .multi-select.active .arrow {
    transform: rotate(180deg);
}

.contact-page .options {
    position: absolute;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .1);
    margin-top: -10px;
}

.contact-page .multi-select.active .options {
    display: block;
}

.contact-page .options label {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: .25s;
}

.contact-page .options label:hover {
    background: #f4f8fb;
}

.contact-page .options input[type="checkbox"] {
    accent-color: #22657E;
    width: 18px;
    height: 18px;
}

.contact-page .registeredsection .address {
    color: #0A2040;
}

.contact-page .registeredsection .phoneNum {
    color: #0A2040;
    margin-top: -8px;
}

.contact-page .registeredsection .phoneNum a {
    color: #0A2040;
    text-decoration: none;
    pointer-events: none;
}

/* =============== Contact Us Page CSS ============== */


/* =============== Seq2Clin css start ============== */



/* Seq2clin start */
.seq2clin_mainsection {
    background-color: hsl(0deg 0% 99.22%);
    overflow-x: hidden;
}

.seq2clin_backgroundimage {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/seq2clin/seq2clin_banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.seq2clin_mainsection .ai_native {
    /* text-align: center; */
    margin: 20px 0;
}

.seq2clin_mainsection .ai_native p {
    /* color: hsl(215.56deg 72.97% 14.51%);
    font-size: 50px;
    font-weight: bold;
    text-align: start; */
}

.seq2clin_mainsection .center-content img {
    width: 100%;
    max-width: 700px;
}

.seq2clin_mainsection .left-content p,
.seq2clin_mainsection .right-content p {
    font-size: 20px;
    /* line-height: 1.7; */
    color: hsl(215.56deg 67.5% 15.69%);
}

.seq2clin_mainsection .left-content p {
    margin-bottom: 20px;
}

.seq2clin_mainsection .right-content {
    width: 95%;

}

.seq2clin_mainsection .problem_section {
    /* padding: 50px 0; */
    background: #fff;
    margin-top: 50px;
}

.seq2clin_mainsection .problem_badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #FFE8E6;
    color: hsl(196deg 53.57% 32.94%);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 20px;
    font-weight: 600;
    background-color: hsl(198.26deg 37.7% 88.04%);
}

.seq2clin_mainsection .problem_section .title {
    font-size: 48px;
    margin-bottom: 20px;
}

.seq2clin_mainsection .problem_badge img {
    width: 25px;
    height: 25px;
}

.seq2clin_mainsection .title {
    font-size: 52px;
    /* margin-bottom: 25px; */
}

.seq2clin_mainsection .problem_list ul {
    list-style: none;
    padding: 0;
}

.seq2clin_mainsection .problem_list .col-lg-4,
.col-md-4,
.col-sm-4,
.col-xs-4 {
    padding-right: 0px !important;

}

.seq2clin_mainsection .problem_section .problemrightsection {
    display: none;
}

.seq2clin_mainsection .problem_section .problemright {
    display: block;
}

.seq2clin_mainsection .problem_list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 25px;
    font-size: 15px;
    color: hsl(0deg 0% 12.55%);
    font-weight: 600;
}

/* .seq2clin_mainsection .problem_list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    width: 16px;
    height: 16px;
    background-image: url("../images/seq2clin/manfurating.png");
    background-size: contain;
} */
.seq2clin_mainsection .problem_list li::before {
    content: "";
    position: absolute;
    left: 0;
    /* top: 50%;
    transform: translateY(-50%); */
    /* centers the icon vertically */
    width: 25px;
    height: 25px;
    background-image: url("../images/seq2clin/manfurating.svg");
    background-size: contain;
    background-repeat: no-repeat;
}

.seq2clin_mainsection .problem_rightsection .description {
    margin-bottom: 40px;
    margin-top: 55px;
    /* line-height: 1.2; */
}

.seq2clin_mainsection .problem_image {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
}

.seq2clin_mainsection .problem_image::before {
    content: "";
    position: absolute;
    width: 264px;
    height: 190px;
    background-color: #3a7d8854;
    border-radius: 50%;
    filter: blur(55px);
    z-index: 0;
    /* box-shadow: 0 0 100px 50px #FFBEBE; */
}


/* .seq2clin_mainsection .problem_image img {
    width: 416px;
    height: 450px;
    background-color: #FFBEBE;
    border-radius: 50%;
    opacity: 0.47;
    box-shadow: 0 0 100px 50px #FFBEBE;
    filter: blur(20px);
} */

.seq2clin_mainsection .problem_image img {
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;

}

.seq2clin_mainsection .address_this_challenges {
    margin: 20px auto;
    width: 800px;
}

.seq2clin_mainsection .address_this_challenges p {
    padding: 18px 0;
    border-radius: 8px;
    background-color: hsl(188.46deg 40.21% 38.04%);
    text-align: center;
    font-size: 22px;
    color: hsl(0deg 0% 100%);
    font-weight: 600;
    border-left: 3px solid #a8cde7;
    border-right: 3px solid #a8cde7;
}

.seq2clin_mainsection .what_does_seq2clin .what_does_section {
    border-radius: 26px;
    display: inline-flex;
    padding: 12px 18px;
    background-color: hsl(198.26deg 37.7% 88.04%);
}

.seq2clin_mainsection .what_does_seq2clin {
    margin-top: 50px;
    /* background-color: hsl(197.65deg 58.62% 94.31%); */
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/seq2clin/what_seq2clin.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.seq2clin_mainsection .what_does_leftsection {
    margin-top: 30px;
}

.seq2clin_mainsection .platform_post p {
    font-size: 40px;
    font-weight: 700;
    color: hsl(215.56deg 72.97% 14.51%);

}

.seq2clin_mainsection .platform_post div {
    /* font-size: 20px; */
    color: hsl(215.56deg 72.97% 14.51%);
    /* font-weight: 500; */
}

.seq2clin_mainsection .platform_post img {
    margin: 30px 0;
    width: 400px;
    height: 100%;
}

.seq2clin_mainsection .what_does_rightsection {
    margin-top: 35px;
}

.seq2clin_mainsection .what_does_section img {
    width: 140px;
}

.seq2clin_mainsection .what_does_rightsection .seq2clin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
}

.seq2clin_mainsection .what_does_rightsection .seq2clin-item {
    border-radius: 10px;
    padding: 16px 12px;
    text-align: center;
}

.seq2clin_mainsection .what_does_rightsection .seq2clin-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}

.seq2clin_mainsection .what_does_rightsection .seq2clin-icon img {
    width: 60px;

}

.seq2clin_mainsection .what_does_rightsection .seq2clin-icon svg {
    width: 60px;
    height: auto;
}

.seq2clin_mainsection .what_does_rightsection .seq2clin-item p {
    font-size: 15px;
    color: hsl(0deg 0% 5.88%);
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.seq2clin_mainsection .what_does_rightsection .seq2clin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

.seq2clin_mainsection .what_does_rightsection .seq2clin-grid::before {
    content: "";
    position: absolute;
    top: 75px;
    bottom: 0;
    left: 33.33%;
    width: 2px;
    height: 500px;
    /* border-left: 2px solid #d9e2ec; */
    background: linear-gradient(to bottom, transparent 0%, #9FC6C8 20%, #9FC6C8 80%, transparent 100%);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(143, 184, 200, 0.4);
}


.seq2clin_mainsection .what_does_rightsection .seq2clin-grid::after {
    content: "";
    position: absolute;
    top: 75px;
    bottom: 0;
    left: 66.66%;
    width: 2px;
    height: 500px;
    /* border-left: 2px solid #d9e2ec; */
    background: linear-gradient(to bottom, transparent 0%, #9FC6C8 20%, #9FC6C8 80%, transparent 100%);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(143, 184, 200, 0.4);
}

.seq2clin_mainsection .what_does_rightsection .seq2clin-item {
    /* padding: 25px 15px; */
    text-align: center;
    padding-bottom: 0px;
}

.seq2clin_mainsection .what_does_rightsection .seq2clin-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.seq2clin_mainsection .what_does_section p {
    color: hsl(196deg 53.57% 32.94%);
    font-weight: 600;
    font-size: 22px;
    margin-bottom: 0px;

}

.seq2clin_mainsection .platform_post {
    margin-top: 20px;

}

.seq2clin_mainsection .rawgenomic_mainsection {
    /* margin: 50px 0 0 0; */
    background: #DDF3FF;
    background: radial-gradient(circle, rgba(221, 243, 255, 1) 0%, rgba(255, 255, 255, 1) 33%);
}

.seq2clin_mainsection .rawgenomic_textsection {
    text-align: center;
    padding-top: 20px;

}

.seq2clin_mainsection .howdoes_wrk {
    color: hsl(196.3deg 57.5% 31.37%);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;

}

.seq2clin_mainsection .fromraw_data {
    color: hsl(215.56deg 72.97% 14.51%);
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 20px;

}

.seq2clin_mainsection .description {
    margin-bottom: 30px;
}

/* 12345 start */
.seq2clin_mainsection .rawgenomic_mainsection .seq2clin-steps {
    width: 100%;
}

.seq2clin_mainsection .rawgenomic_mainsection .step-right .image-box {
    display: none;
}

.seq2clin_mainsection .rawgenomic_mainsection .imagebox_section {
    display: block;
}

.seq2clin_mainsection .rawgenomic_mainsection .step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 14px 0;
    padding-bottom: 0px;
}

.seq2clin_mainsection .rawgenomic_mainsection .step-left {
    width: 52px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.seq2clin_mainsection .rawgenomic_mainsection .step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid hsl(0deg 0% 20.78%);
    background: #fff;
    color: hsl(213.21deg 59.57% 18.43%);
    font-size: 22px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s;
}

.seq2clin_mainsection .rawgenomic_mainsection .step.active .step-number {
    /* background: #1f5d89;
    border-color: #1f5d89; */
    background: #07224A;
    background: linear-gradient(134deg, rgba(7, 34, 74, 1) 0%, rgba(58, 125, 136, 1) 100%);
    color: #fff;
    border: none;
}

.seq2clin_mainsection .rawgenomic_mainsection .step-line {
    display: none;
}

.seq2clin_mainsection .rawgenomic_mainsection .step.active .step-line {
    display: block;
    width: 2px;
    height: 85px;
    margin-top: 8px;
    border-left: 2px dashed #9fd6ff;
    position: relative;
}

/* Right Section */
.seq2clin_mainsection .rawgenomic_mainsection .step-right {
    flex: 1;
}

/* Header */
.seq2clin_mainsection .rawgenomic_mainsection .step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* Title */
.seq2clin_mainsection .rawgenomic_mainsection .step-title {
    font-size: 22px;
    font-weight: bold;
    color: hsl(188.46deg 40.21% 38.04%);
    padding-top: 4px;
}

/* Content */
.seq2clin_mainsection .rawgenomic_mainsection .step-content {
    display: none;
    margin-top: 12px;
    color: hsl(0deg 0% 0%);
    font-size: 17px;
    max-width: 500px;
    font-weight: 500;

}

.seq2clin_mainsection .rawgenomic_mainsection .step.active .step-content {
    display: block;
}

.seq2clin_mainsection .rawgenomic_mainsection .step:not(.active) .step-right {
    /* border-bottom: 1px solid #d8d8d8; */
    padding-bottom: 18px;
    position: relative;
}

.seq2clin_mainsection .rawgenomic_mainsection .step:not(.active) .step-right::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(-50%);
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent 0%, #9FC6C8 20%, #9FC6C8 80%, transparent 100%);
    border-radius: 10px;
    box-shadow: 0 0 8px rgba(143, 184, 200, 0.4);
}

.seq2clin_mainsection .rawgenomic_mainsection .step-icon img {
    width: 24px;
    height: 24px;
}

.seq2clin_mainsection .rawgenomic_mainsection .image-box {
    /* width: 100%;
    height: 400px;
    border: 2px solid hsl(199.55deg 100% 74.12%); */
    /* border-radius: 24px; */
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.seq2clin_mainsection .rawgenomic_mainsection .image-box {
    text-align: center;
    border-radius: 12px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    height: 100%;
}

.seq2clin_mainsection .rawgenomic_mainsection .image-box img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.seq2clin_mainsection .rawgenomic_mainsection .step.active .step-line {
    display: block;
    width: 2px;
    height: 85px;
    margin-top: 8px;
    border-left: 2px dashed #9fd6ff;
}

.seq2clin_mainsection .rawgenomic_mainsection .step .step-line {
    display: none;
}

.seq2clin_mainsection .rawgenomic_mainsection .step:last-child .step-right {
    border-bottom: none !important;
}

.seq2clin_mainsection .rawgenomic_mainsection .step:last-child .step-line,
.seq2clin_mainsection .rawgenomic_mainsection .step:last-child.active .step-line {
    display: none !important;
    border-bottom: none !important;
}

/* clinical engine start */
.seq2clin_mainsection .clinical-enginemainsection {
    padding: 30px 0;
    margin-top: 50px;
    background:
        url("../images/seq2clin/core_intelligence_layers.webp") center/cover no-repeat;
    padding-bottom: 0px;
}


.seq2clin_mainsection .clinical-enginemainsection .heading .subtitle {
    margin-bottom: 12px;
}

.seq2clin_mainsection .clinical-enginemainsection .title-row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 25px;
}

.seq2clin_mainsection .clinical-enginemainsection .title-row .title {
    font-size: 40px;
}

.seq2clin_mainsection .clinical-enginemainsection .title-row .description {
    max-width: 50%;
}

.seq2clin_mainsection .clinical-enginemainsection .engine-grid {
    width: 100%;
}

.seq2clin_mainsection .clinical-enginemainsection .engine-grid .card-points {
    padding-left: 20px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
}

.seq2clin_mainsection .clinical-enginemainsection .engine-grid .card-points li {
    margin-bottom: 8px;
    line-height: 1.5;
    font-size: 15px;
    color: hsl(180deg 10% 3.92%);
    font-weight: 500;
}

.seq2clin_mainsection .clinical-enginemainsection .left-column {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}


.seq2clin_mainsection .clinical-enginemainsection .card {
    background: hsl(183.08deg 41.94% 81.76%);
    border-radius: 18px;
    padding: 15px;
    min-height: 200px;
    transition: .35s;
}

.seq2clin_mainsection .clinical-enginemainsection .card .icon {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.seq2clin_mainsection .clinical-enginemainsection .card .icon h3 {
    margin: 0;
    line-height: 1.3;
}

.seq2clin_mainsection .clinical-enginemainsection .card:hover {
    transform: translateY(-5px);
}

.seq2clin_mainsection .clinical-enginemainsection .icon img {
    width: 50px;
    height: 50px;
    /* border-radius: 12px; */
    /* background: hsl(215.82deg 82.72% 15.88%); */
    /* margin-bottom: 18px; */
}

.seq2clin_mainsection .clinical-enginemainsection .card h3 {
    color: hsl(215.56deg 72.97% 14.51%);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 10px;
    margin-left: 10px;
}

.seq2clin_mainsection .clinical-enginemainsection .card p {
    color: hsl(180deg 10% 3.92%);
    /* line-height: 1.8; */
    font-size: 15px;
    font-weight: 500;
}


.seq2clin_mainsection .clinical-enginemainsection .center-card {
    background: hsl(188.46deg 40.21% 38.04%);
    color: #fff;
    border-radius: 20px;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.seq2clin_mainsection .clinical-enginemainsection .center-card h3 {
    font-size: 26px;
}

.seq2clin_mainsection .clinical-enginemainsection .center-card p {
    /* line-height: 1.8; */
    margin-bottom: 15px;
    font-size: 15px;
}

.seq2clin_mainsection .clinical-enginemainsection .image-box {
    flex: 1;
    min-height: 217px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    /* background: #fff; */
}

.seq2clin_mainsection .clinical-enginemainsection .center-card .image-box img {
    width: 100%;
    max-height: 303px;
    border-radius: 12px;
}

/* clinical engine end */

/* product module start*/

.seq2clin_mainsection .product-modulemainsection {
    margin-top: 50px;
}


.seq2clin_mainsection .product-modulemainsection .subtitle {
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.seq2clin_mainsection .product-modulemainsection .product-module .title {
    text-align: center;
    margin-bottom: 15px;
    font-size: 40px;
}

.seq2clin_mainsection .product-modulemainsection .description {
    width: 70%;
    margin: auto;
    text-align: center;
    margin-bottom: 40px;
}

.seq2clin_mainsection .product-modulemainsection .tabs {
    display: flex;
    /* justify-content: center; */
    /* flex-wrap: wrap; */
    gap: 12px;
    background: #F5F5F5;
    padding: 10px;
    border-radius: 50px;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 40px;
}

.seq2clin_mainsection .product-modulemainsection .tab {
    border: none;
    background: none;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 18px;
    transition: .3s;
    color: hsl(215.45deg 27.85% 30.98%);
}

.seq2clin_mainsection .product-modulemainsection .tab.active {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    color: hsl(215.56deg 67.5% 15.69%);
    font-weight: 600;
}

.seq2clin_mainsection .product-modulemainsection .tab-content {

    display: none;
    background: hsl(225deg 40% 98.04%);
    border-radius: 20px;
    padding: 30px;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.seq2clin_mainsection .product-modulemainsection .line-img img {
    width: 22px;
    height: 120px;
    display: block;
}

.seq2clin_mainsection .product-modulemainsection .report_line {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    /* margin-bottom: 30px; */
}

.seq2clin_mainsection .product-modulemainsection .tab-content.active {
    display: grid;
}

.seq2clin_mainsection .product-modulemainsection .content-left h3 {
    font-size: 24px;
    /* color: hsl(215.56deg 72.97% 14.51%); */
    font-weight: 600;
    /* margin-bottom: 20px; */
    color: hsl(188.46deg 40.21% 38.04%);
}

.seq2clin_mainsection .product-modulemainsection .content-left .tabreportsubtitle {
    color: hsl(215.56deg 72.97% 14.51%) !important;
    font-size: 22px !important;
}

.seq2clin_mainsection .product-modulemainsection .content-left p {
    color: hsl(240deg 1.82% 10.78%);
    font-size: 17px;
    font-weight: 500;
}

.seq2clin_mainsection .product-modulemainsection .keyvalue_section {
    padding-left: 30px;
}

.seq2clin_mainsection .product-modulemainsection .content-left hr {
    margin: 10px 0;
    border: none;
    border-top: 2px solid hsl(196.36deg 12.36% 82.55%);
}

.seq2clin_mainsection .product-modulemainsection .content-left h4 {
    color: hsl(188.46deg 40.21% 38.04%);
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.seq2clin_mainsection .product-modulemainsection .image-box img {
    width: 550px;
    /* height: 340px; */
    /* background: #F8F9FC;
    background: linear-gradient(134deg, rgba(248, 249, 252, 1) 0%, rgba(189, 226, 228, 1) 100%);
    border-radius: 20px;
    position: relative; */
}

.seq2clin_mainsection .product-modulemainsection .stat-card {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: #fff;
    border-radius: 12px;
    display: flex;
    gap: 15px;
    align-items: center;
    padding: 14px 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
}

.seq2clin_mainsection .product-modulemainsection .icon {

    width: 40px;
    height: 40px;
    background: #0F7B8E;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 8px;
}

/* product module end */


/* tumar module start */
.seq2clin_mainsection .tumor_modulemainsection {
    margin-top: 50px;
}

.seq2clin_mainsection .tumor_modulemainsection .tumor-board-section {
    padding: 30px 0;
    background: url("../images/seq2clin/molecular_tumor.webp") center/cover no-repeat;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}


.seq2clin_mainsection .tumor_modulemainsection .subtitle {
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.seq2clin_mainsection .tumor_modulemainsection .tumor-board-section h2 {
    width: 80%;
    margin: 0 auto 45px;
    text-align: center;
}

.seq2clin_mainsection .tumor_modulemainsection .support-grid {
    /* display:grid;
    grid-template-columns:repeat(12,1fr); */
    gap: 18px;
    margin-top: 40px;

}

.seq2clin_mainsection .tumor_modulemainsection .support-grid .row {
    justify-content: center;
}

.seq2clin_mainsection .tumor_modulemainsection .support-grid .col-lg-3,
.seq2clin_mainsection .tumor_modulemainsection .support-grid .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
}

.seq2clin_mainsection .image-box .video_section {
    width: 100% !important;
    height: 100% !important;
}

.seq2clin_mainsection .tumor_modulemainsection .support-grid .support-row {
    display: grid;
    gap: 20px;
}

.seq2clin_mainsection .tumor_modulemainsection .support-card {
    background: #fff;
    border: 1px solid #79C9F4;
    border-radius: 8px;
    min-height: 150px;
    /* padding:20px; */

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
}

.seq2clin_mainsection .tumor_modulemainsection .support-card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.seq2clin_mainsection .tumor_modulemainsection .support-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px
}

.seq2clin_mainsection .tumor_modulemainsection .support-card h3 {
    font-size: 17px;
    color: hsl(215.56deg 72.97% 14.51%);
    line-height: 1.5;
    font-weight: 600;
}

.seq2clin_mainsection .tumor_modulemainsection .bottom-note {
    margin-top: 35px;
    background: hsl(188.46deg 40.21% 38.04%);
    color: #fff;
    padding: 22px;
    border-radius: 10px;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    border-left: 3px solid #a8cde7;
    border-right: 3px solid #a8cde7;
}


/* tumor module end */



/* stakeholder start */
.seq2clin_mainsection .stakeholder_mainsection {
    margin-top: 50px;
}

.seq2clin_mainsection .stakeholder_mainsection .stakeholder-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.seq2clin_mainsection .stakeholder_mainsection .stakeholder-wrapper {

    display: flex;
    gap: 12px;
    height: 420px;
}

.seq2clin_mainsection .stakeholder_mainsection .stake-card {

    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: .5s ease;
    background: #ACC8CD;
    background-size: cover;
    background-position: center;
    border-top-left-radius: inherit;
    border-bottom-right-radius: inherit;
}


.stakeholder_mainsection .stake-card.active {
    flex: 2.3;
    cursor: default;
}

.stakeholder_mainsection .stakeholder-wrapper:hover .stake-card {
    flex: 1;
}

.stakeholder_mainsection .stakeholder-wrapper:hover .stake-card:hover {
    flex: 2.3;
}

.seq2clin_mainsection .stakeholder_mainsection .overlay {
    position: relative;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 74, 145, 0.95) 18%, rgba(0, 74, 145, 0.75) 35%, rgba(0, 74, 145, 0.25) 70%, rgba(0, 74, 145, 0) 100%);
}

.seq2clin_mainsection .stakeholder_mainsection .numbercount {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 46px;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    transition: all .4s ease;
}

.seq2clin_mainsection .stakeholder_mainsection .overlay h3 {
    color: #fff;
    font-size: 26px;
    margin-bottom: 15px;
}

.seq2clin_mainsection .stakeholder_mainsection .overlay p {
    color: #fff;
    line-height: 1.7;
    font-size: 18px;
    /* max-width: 320px; */
}

.seq2clintexts {
    text-transform: capitalize;
}

.seq2clin_mainsection .stakeholder_mainsection .stake-card:not(.active) p {
    display: none;
}

.seq2clin_mainsection .stakeholder_mainsection .stakeholder-wrapper:hover .stake-card p {
    display: none;
}

.seq2clin_mainsection .stakeholder_mainsection .stakeholder-wrapper:hover .stake-card:hover p {
    display: block;
}

.seq2clin_mainsection .stakeholder_mainsection .stakeholder-wrapper:hover .stake-card:hover h3 {

    font-size: 26px;
}

/* stakeholder end */


/* Deplyomeny model start */

.seq2clin_mainsection .deploymentmodel_mainsection {
    margin-top: 50px;

}


.seq2clin_mainsection .deploymentmodel_mainsection .subtitle {
    text-align: center;
    margin-bottom: 30px;
}

.seq2clin_mainsection .deploymentmodel_mainsection .deployment-box {
    background: #fff;
    /* border: 1px solid #D8EAF6; */
    border-radius: 20px;
    /* padding: 20px; */
    /* display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .05); */
}

/* .seq2clin_mainsection .deploymentmodel_mainsection .deployment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    transition: .35s;
} */




.seq2clin_mainsection .deploymentmodel_mainsection .deployment-box {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ---------- First Row ---------- */

.seq2clin_mainsection .deploymentmodel_mainsection .deployment-box .deployment-row.row-1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.seq2clin_mainsection .deploymentmodel_mainsection .deployment-box .deployment-row.row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.seq2clin_mainsection .deploymentmodel_mainsection .deployment-box .deployment-card {
    background: #fff;
    border: 1px solid #D8EAF6;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.seq2clin_mainsection .deploymentmodel_mainsection .deployment-box .deployment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.seq2clin_mainsection .deploymentmodel_mainsection .deployment-box .deployment-header img {
    width: 52px;
    height: 52px;
}


.seq2clin_mainsection .deploymentmodel_mainsection .deployment-box .deployment-card p {
    font-size: 18px;
    line-height: 1.4;
    color: hsl(215.09deg 63.86% 16.27%);
}









.seq2clin_mainsection .deploymentmodel_mainsection .deployment-card:hover {

    transform: translateY(-8px);
}

.seq2clin_mainsection .deploymentmodel_mainsection .deployment-card img {

    width: 78px;
    height: 78px;
    object-fit: contain;
    margin-bottom: 10px;
}

.seq2clin_mainsection .deploymentmodel_mainsection .deployment-card h3 {
    font-size: 18px;
    line-height: 1.6;
    color: hsl(215.56deg 72.97% 14.51%);
    font-weight: 600;
}

/* Deployment model end */


/* whyseq2clin is different start */
.seq2clin_mainsection .whyseq2clin_different_mainsection {
    margin-top: 50px;
}

.seq2clin_mainsection .whyseq2clin_different_mainsection .why-seq2clin {
    padding: 30px 0;
    background: url("../images/seq2clin/whyseq2clin_is_different.webp") center center/cover no-repeat;
    position: relative;
}

.seq2clin_mainsection .whyseq2clin_different_mainsection .why-seq2clin::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(215, 239, 244, .90),
            rgba(110, 196, 208, .35));
}

.seq2clin_mainsection .whyseq2clin_different_mainsection .why-seq2clin .container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.seq2clin_mainsection .whyseq2clin_different_mainsection .title {
    text-align: center;
    margin-bottom: 45px;
    font-size: 40px;
}

.seq2clin_mainsection .whyseq2clin_different_mainsection .why-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 40px 45px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(151, 175, 186, 0.83) 70%, #c0d5d9 100%);
    /* background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .35);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, .12); */
}

.seq2clin_mainsection .whyseq2clin_different_mainsection .why-left {
    flex: 1;
}


.seq2clin_mainsection .whyseq2clin_different_mainsection .why-right {
    width: 30%;
    display: flex;
    justify-content: center;
}

.seq2clin_mainsection .whyseq2clin_different_mainsection .why-right img {
    width: 250px;
    max-width: 340px;
    display: block;
}

/* whyseq2clin is different end */

/* evaluate seq2clin start */
.seq2clin_mainsection .evaluate_seq2clin_mainsection {
    margin: 50px 0;
}

.seq2clin_mainsection .evaluate_seq2clin_mainsection .cta-section {
    /* padding: 90px 0; */
    background: #fff;
}

/* .evaluate_seq2clin_mainsection .cta-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    border-radius: 28px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background:
        url("../images/seq2clin/cta.webp") center/cover no-repeat,

        linear-gradient(90deg,
            #F6F9FF,
            #FFFFFF);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .06);
} */
.seq2clin_mainsection .evaluate_seq2clin_mainsection .cta-content {
    background:
        url("../images/seq2clin/cta.webp") center/cover no-repeat;
    border-radius: 15px;
    padding: 30px 40px 50px;
    padding-bottom: 60px;

}

.seq2clin_mainsection .evaluate_seq2clin_mainsection .cta-content .title {
    font-size: 40px;
}

.seq2clin_mainsection .evaluate_seq2clin_mainsection .cta-content .description {
    margin-bottom: 30px;
    margin-top: 10px;
    width: 50%;
}


.seq2clin_mainsection .evaluate_seq2clin_mainsection .cta-image {
    width: 42%;
    align-self: stretch;
}

.seq2clin_mainsection .evaluate_seq2clin_mainsection .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* evaluate seq2clin end */

/* Seq2clin start */


/* =============== Seq2Clin css end ============== */


/* ==================  ABOUT US START  ============================= */
.yukti_aboutus .genomics-block {
    background: url('../images/aboutus/aboutus-banner.webp') center center no-repeat;
    background-size: cover;
    /* or contain if you prefer */
    color: #fff;
    position: relative;
    overflow: hidden;
    /* height: 500px; */
}

.yukti_aboutus .genomics-block::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 500px;
    height: 500px;
    /* background: radial-gradient(circle, rgba(13, 124, 143, .2) 0%, transparent 70%); */
    pointer-events: none;
}

.yukti_aboutus .genomics-block-wrap {
    max-width: 1290px;
    height: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 60px;
    align-items: center;
    /* Vertically center content */
    box-sizing: border-box;
}

.yukti_aboutus .yukti-header {
    font-weight: 500;
    font-size: 31px;
    color: #23667f;
    margin-bottom: 10px;
}

.yukti_aboutus .yukti-h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 23px;
    color: #0A2040;
}

.yukti_aboutus .genomic-ai .description {
    width: 50%;
}

.genomic-ai {
    padding: 45px 0;
}

.yukti_aboutus .hero-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.yukti_aboutus .dna-ring {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 2px dashed rgba(23, 160, 181, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.yukti_aboutus .dna-ring::after {
    content: '';
    position: absolute;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    border: 1px solid rgba(23, 160, 181, .18);
}

.yukti_aboutus .dna-emoji {
    font-size: 68px;
    filter: drop-shadow(0 0 18px rgba(13, 160, 181, .5));
}

/* ─── SECTION SPACING ─── */
.yukti_aboutus .block {
    padding: 40px 0px 55px;
}

.yukti_aboutus .precision {
    padding: 20px 0px;
}

.yukti_aboutus .precisionmedicine {
    padding: 30px 50px;
    background: #3d7f8c;
    border-radius: 18px;
    width: 100%;
    box-sizing: border-box;
    border-left: 4px solid #BEDEFA;
    border-right: 4px solid #BEDEFA;
    text-align: center;
    margin: auto;
}

.yukti_aboutus .inner {
    max-width: 1290px;
    margin: 0 auto;
}

/* ─── TYPOGRAPHY ─── */

.yukti_aboutus .eyebrow-white {
    color: #17a0b5;
}

/* ─── COLUMNS ─── */
.yukti_aboutus .col-6 {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 51px;
    align-items: stretch; */
    width: 100%;
}

.yukti_aboutus .col-6>.mv-card {
    height: 100%;
}

.yukti_aboutus .col-2-wide {
    display: grid;
    grid-template-columns: 42% 58%;
    align-items: start;
    column-gap: 40px;
}

.yukti_aboutus .col-2-eq {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.yukti_aboutus .col-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    padding: 0 34px;
}

/* ─── MISSION / VISION CARDS ─── */
.yukti_aboutus .mv-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.yukti_aboutus .mv-card-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: #0a1628;
}

.yukti_aboutus .mv-card {
    background-color: #F7FAFD;
    border: 1px solid #A7C1CB;
    border-radius: 12px;
    padding: 14px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .2s;
    min-height: 270px;
    height: auto;
}

/* .yukti_aboutus .mv-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, .08);
} */

.yukti_aboutus .mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.yukti_aboutus .mv-icon {
    /* width: 70px;
    height: 70px;
    background: #e8f7f9; */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.yukti_aboutus .mv-card h3 {
    font-size: 31px;
    color: #23667f;
    margin-bottom: 6px;
    text-align: right;
}

.yukti_aboutus .mv-card p+p {
    margin-top: 10px;
}

/* ─── CAPABILITY CARDS ─── */
.yukti_aboutus .deeptech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 20px;
    padding-top: 15px;
    align-items: stretch;
}

.yukti_aboutus .deeptech-card {
    width: 100%;
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 45px 12px 14px;
    height: 165px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.yukti_aboutus .deeptech-card p {
    text-align: center;
    z-index: 1;
    margin: 0px;
    color: black;
    font-size: 18px;
    line-height: 1.4;
}

.yukti_aboutus .precision-icon {
    position: absolute;
    top: -23px;
    left: -11px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffffff 0%, #eef9ff 70%, #e3f5fc 100%);
    border: 1.5px solid #41838d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 2;
}

/* the fading border */
.yukti_aboutus .deeptech-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 1.5px solid #112D4A;
    border-radius: inherit;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at 12% 22%,
            transparent 0%,
            rgba(0, 0, 0, 0.05) 27%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.9) 74%,
            #000 90%);
    mask-image: radial-gradient(circle at 12% 22%,
            transparent 0%,
            rgba(0, 0, 0, 0.05) 27%,
            rgba(0, 0, 0, 0.55) 50%,
            rgba(0, 0, 0, 0.9) 74%,
            #000 90%);
}

.yukti_aboutus .deeptech-card:hover {
    border-color: #23667f;
    transform: translateY(-2px);
}

.yukti_aboutus .precision-icon {
    position: absolute;
    top: -14px;
    left: -8px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #ffffff 0%, #eef9ff 70%, #e3f5fc 100%);
    border: 1.5px solid #41838d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 2;
}

/* ─── DIFF LIST ─── */
.yukti_aboutus .diff-head {
    margin-bottom: 36px;
}

.yukti_aboutus .diff-intro {
    font-size: 23px;
    color: #0A2040;
}

.yukti_aboutus .diff-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 24px;
    align-items: start;
    padding: 22px 0;
    border-bottom: 1px solid #dce3ec;
}

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

.yukti_aboutus .diff-lbl {
    font-size: 13px;
    font-weight: 600;
    color: #0A2040;
}

.yukti_aboutus .diff-desc {
    font-size: 13.5px;
    color: #5a6478;
    line-height: 1.78;
}

/* ─── FOUNDER / ADVISORY CARDS ─── */
.yukti_aboutus .person-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, .07);
}

.yukti_aboutus .person-card-alt {
    background: #f7f9fc;
    border: 1px solid #dce3ec;
    border-radius: 12px;
    overflow: hidden;
}

.yukti_aboutus .person-photo {
    height: 400px;
    background: linear-gradient(135deg, #c8d8e8, #a0b8cc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
}

.yukti_aboutus .person-photo-lg {
    height: 180px;
    font-size: 54px;
}

.yukti_aboutus .person-info {
    padding: 14px 16px;
}

.yukti_aboutus .person-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: #0A2040;
    margin-bottom: 2px;
}

.yukti_aboutus .person-info span {
    font-size: 11.5px;
    color: #23667f;
    font-weight: 500;
}

.yukti_aboutus .person-info-center {
    text-align: center;
}

.yukti_aboutus .adv-row2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 810px;
    margin: 20px auto 0;
}

.yukti_aboutus .founders-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.yukti_aboutus .founders-top-left .title {
    margin-top: 8px;
}

.yukti_aboutus .founders-top-left {
    width: 100%;
}

.yukti_aboutus .founders-top-right {
    display: flex;
    align-items: start;
    /* aligns paragraph to bottom of left title */
    height: 100%;
    width: 100%;
}

.yukti_aboutus .founders-top-right .body-text {
    margin-top: 70px;
    font-size: 20px;
    color: #0A2040;
    line-height: 1.4;
    text-align: left;
}

/* founder image start  */
.yukti_aboutus .founder-card {
    position: relative;
    width: 350px;
    height: 440px;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    background: radial-gradient(circle,
            rgba(221, 243, 255, 1) 0%,
            rgba(255, 255, 255, 1) 100%);
}

.yukti_aboutus .led-founder {
    width: 100%;
    height: 100%;
}

.yukti_aboutus .scientificprofile-founder {
    width: 100%;
    height: 100%;
}

.yukti_aboutus .led-founder img.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* shows full person */
    object-position: center top;
    display: block;
    cursor: pointer;
}

.yukti_aboutus .scientificprofile-founder img.founder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* shows full person */
    object-position: center top;
    display: block;
    cursor: pointer;
}

.yukti_aboutus .deeptech-section .title,
.yukti_aboutus .clinicalgenomics .title,
.yukti_aboutus .founderprofile .title,
.yukti_aboutus .scientificprofile .title,
.yukti_aboutus .partner-section .title {
    font-size: 40px;
}

/* Quick View Button */
.yukti_aboutus .quick-view-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    border: none;
    background: none;
    font-size: 14px;
    cursor: pointer;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.yukti_aboutus .quick-view-btn img {
    width: 80%;
}

/* Show button on hover */
.yukti_aboutus .led-founder:hover .quick-view-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.yukti_aboutus .scientificprofile-founder:hover .quick-view-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

.yukti_aboutus .popup {
    display: none;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.yukti_aboutus .popup.active {
    display: flex;
}

.yukti_aboutus .popup-content {
    position: relative;
    top: 7%;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    width: 90%;
    max-width: 870px;
    max-height: 80vh;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.yukti_aboutus .close-btn {
    position: absolute;
    top: 1px;
    right: 1px;
    cursor: pointer;
    z-index: 10;
    /* padding: 10px; */
    border-radius: 10px;
    background: #fff;
    transform: scale(1.1);
}

.yukti_aboutus .popup-body {
    max-height: 90vh;
    /* overflow-y: auto; */
}

.yukti_aboutus .popup-frame {
    display: flex;
    max-height: 480px;
    overflow-y: auto;
}

/* LEFT - 40% */
.yukti_aboutus .popup-left {
    flex: 0 0 40%;
    max-width: 40%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #0d2438;
}

.yukti_aboutus .popup-left img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.yukti_aboutus .popup-left::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 55%, rgba(13, 36, 56, 0.85) 78%, #0d2438 100%);
    z-index: 1;
}

.yukti_aboutus .popup-left h2,
.yukti_aboutus .popup-left p,
.yukti_aboutus .popup-left .linkedin-link {
    position: relative;
    z-index: 2;
}

.yukti_aboutus .popup-left h2 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    padding: 0 16px;
    margin-bottom: 10px;
}

.yukti_aboutus .popup-left p {
    color: #e7edf3;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    margin: 0 0 14px;
}

.yukti_aboutus .popup-left .linkedin-link {
    display: flex;
    justify-content: center;
    padding-bottom: 24px;
}

.yukti_aboutus .popup-left .linkedin-link img,
.yukti_aboutus .popup-left .linkedin-link svg {
    width: 28px;
    height: 28px;
    position: static;
}

/* RIGHT - 60% */
.yukti_aboutus .popup-right {
    flex: 0 0 60%;
    max-width: 60%;
    background: #ffffff;
    padding: 18px 25px;
    overflow-y: auto;
}

.yukti_aboutus .popup-right h3 {
    font-size: 22px;
    font-weight: 600;
    color: #0d2438;
    margin: -6px 0 18px;
}

.yukti_aboutus .popup-right p {
    font-size: 15px;
    line-height: 1.75;
    color: #384656;
    margin: 0 0 18px;
}

.yukti_aboutus .popup-right p:last-child {
    margin-bottom: 0;
}

/* Quick View Button end */


/* Blue overlay */
.yukti_aboutus .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /* height: 45%; */
    /* display: flex; */
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 0 10px 25px;

    background: linear-gradient(to top,
            rgba(0, 74, 145, 0.95) 20%,
            rgba(0, 74, 145, 0.75) 35%,
            rgba(0, 74, 145, 0.25) 70%,
            rgba(0, 74, 145, 0) 100%);
}

.yukti_aboutus .overlay h3 {
    margin: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-top: 43px;
}

.yukti_aboutus .overlay p {
    margin: 0px;
    color: #fff;
    font-size: 19px;
    font-weight: 400;
    text-align: center;
}

/* founder image start  */

.yukti_aboutus .deeptech-section {
    background-image: url('../images/aboutus/our_deeptech_thesis_bg.webp');
    background-position: bottom;
    background-repeat: no-repeat;
    padding: 40px 0px;
    color: #fff;
    position: relative;
}

.yukti_aboutus .founderprofile {
    background-image: url('../images/aboutus/founders_profilebg.webp');
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0px;
    color: #fff;
    position: relative;
}

.yukti_aboutus .scientificprofile {
    background-image: url('../images/aboutus/scientific_advisory_board.webp');
    background-position: center;
    background-repeat: no-repeat;
    padding: 40px 0px;
    color: #fff;
    position: relative;
}

/* ─── QUOTE BLOCK ─── */
.yukti_aboutus .quote-text {
    margin: 0 auto;
    color: #ffffff;
    font-weight: 600;
    font-size: 26px;
    max-width: 75ch;
}

/* talk with us btn start */
.yukti_aboutus .talk-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: 226px;
    height: 56px;
    background: #fff;
    border: 2px solid #4D98A8;
    border-radius: 0 30px 0 0;
    padding: 0 0px 0 35px;
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    margin: 0px 42px;
}

.yukti_aboutus .talk-icon {
    position: absolute;
    left: -41px;
    /* Move circle outside */
    top: 50%;
    transform: translateY(-50%);

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}

.yukti_aboutus .talk-icon svg {
    display: block;
    width: 60px;
    height: 60px;
}

.yukti_aboutus .talk-text {
    color: #16345C;
    font-size: 20px;
    font-weight: 600;
    white-space: nowrap;
}

/* talk with us btn end */

.yukti_aboutus .partner-section {
    background-image: url('../images/aboutus/partnerwithus_bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 40px 50px;
    color: #fff;
    position: relative;
    border-radius: 20px;
    text-align: left;
}

.yukti_aboutus .partner-section .description {
    margin-bottom: 30px;
    margin-top: 10px;
    width: 60%;
}

/* what happy */
.yukti_aboutus .clinicalgenomics {
    padding: 50px 0px;
    background: radial-gradient(circle, rgba(221, 243, 255, 1) -52%, rgba(255, 255, 255, 1) 99%);
}

.yukti_aboutus .clinical-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 45px;
}

.yukti_aboutus .clinical-left {
    flex: 0 0 48%;
}

.yukti_aboutus .clinical-right {
    flex: 0 0 52%;
    margin-top: 60px;
}

.yukti_aboutus .clinicalgenomics .description {
    margin-top: 15px;
}

.yukti_aboutus .founders-top-right p {
    margin-top: 70px;
}

/*genomics-box  */
.yukti_aboutus .wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    position: relative;
    margin-top: 20px;
}

.yukti_aboutus .wrap .row {
    display: flex;
    align-items: stretch;
    position: relative;
    min-height: 130px;
    border-bottom: 1px solid #edf2f5;
}

.yukti_aboutus .left,
.yukti_aboutus .right {
    position: relative;
}

.yukti_aboutus .left {
    min-width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 0 20px;
    font-size: 21px;
    text-align: center;
    color: #0a2040;
    font-weight: 500;
    line-height: 1.3;
}

.yukti_aboutus .left::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 30px;
    background: linear-gradient(to left, transparent 15%, #112d4a 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 3;
}

.yukti_aboutus .right {
    background: #fff;
    border-radius: 30px;
    padding: 0px 40px 0px 60px;
    color: #0a2040;
    font-size: 20px;
    line-height: 1.3;
    min-width: 100%;
}

.yukti_aboutus .right::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: 30px;
    background: linear-gradient(to right, transparent 15%, #112d4a 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 3;
}

.yukti_aboutus .left .item:last-child,
.right .item:last-child {
    border-bottom: none;
}

/* Middle Timeline */
.yukti_aboutus .mid {
    position: absolute;
    top: 0;
    left: 34%;
    transform: translateX(-50%);
    width: 80px;
    height: 100%;
    display: grid;
    grid-template-rows: repeat(6, 1fr);
    z-index: 10;
}

.yukti_aboutus .mid::before {
    content: "";
    position: absolute;
}

.yukti_aboutus .node {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.yukti_aboutus .circle img {
    width: 80px;
    height: 80px;
}

.yukti_aboutus .left .item,
.yukti_aboutus .right .item {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 130px;
    justify-content: center;
}

.yukti_aboutus .left .item::after,
.yukti_aboutus .right .item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            #a0c4c6 35%,
            #a0c4c6 65%,
            transparent 100%);
}

.yukti_aboutus .left .item:last-child::after,
.yukti_aboutus .right .item:last-child::after {
    display: none;
}

/* genomics-box end */
.yukti_aboutus .clinicalgenomics .desktop-view {
    display: block;
}

.yukti_aboutus .clinicalgenomics .mobile-view {
    display: none;
}

.yukti_aboutus .row.founder-row {
    /* column-gap: 80px; */
    justify-content: center;
}

.yukti_aboutus .led-founder {
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 24px;
    /* background: radial-gradient(circle,
            rgba(221, 243, 255, 1) 0%,
            rgba(255, 255, 255, 1) 100%); */
    background: radial-gradient(circle, #3a7d884f 0%, rgba(255, 255, 255, 1) 100%);
    min-height: 350px;
}

.yukti_aboutus .scientificprofile-founder {
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 24px;
    background: radial-gradient(circle,
            rgba(221, 243, 255, 1) 0%,
            rgba(255, 255, 255, 1) 100%);
    min-height: 350px;
}

#popupDescription {
    color: #454545;
    margin-top: 10px;
    font-size: 17px;
    line-height: 1.6;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 10px;
}

#popupDescription p {
    color: #454545;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 8px !important;
}

#popupDescription::-webkit-scrollbar {
    width: 3px;
}

#popupDescription::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#popupDescription::-webkit-scrollbar-thumb {
    background: #9aa4b2;
    border-radius: 10px;
}

#popupDescription::-webkit-scrollbar-thumb:hover {
    background: #9aa4b2;
}

#popupHeading {
    display: block;
    color: #0D2438;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* visionmission start  */
.yukti_aboutus .mission-vision-card {
    margin-top: 20px;
    overflow: visible;
}

/* Top notch */
.yukti_aboutus .mission-vision-card::before {
    content: "";
    position: absolute;
    top: -5px;
    left: 89%;
    transform: translateX(-50%);
    width: 105px;
    height: 58px;
    background: #fff;
    /* Page background */
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
    z-index: 1;
}

.mission-visionbg {
    background: radial-gradient(circle, rgba(58, 125, 136, 1) 32%, rgba(10, 32, 64, 1) 100%);
    border-radius: 50%;
    filter: blur(55px);
    content: "";
    position: absolute;
    top: 55%;
    left: 89%;
    transform: translateX(-50%);
    width: 127px;
    height: 70px;
}

/* Circular icon */
.yukti_aboutus .mission-vision-card .mv-icon {
    position: absolute;
    top: -41px;
    left: 89%;
    transform: translateX(-50%);
    width: 95px;
    height: 95px;
    background: #fff;
    /* border: 2px solid #b7d5ef; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    /* box-shadow: 0 6px 18px rgba(0,0,0,.08); */
}

.yukti_aboutus .mission-vision-card .mv-icon img {
    width: 80px;
    height: 80px;
}

.yukti_aboutus .mission-vision-card h3 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: left;
}

.yukti_aboutus .mission-vision-card .description {
    margin-bottom: 10px;
    line-height: 1.8;
}

/* visionmission end  */


/* linkedin profile start */
.yukti_aboutus .popup-linkedin {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 24px;
}

.yukti_aboutus .popup-linkedin h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #1F2937;
}

.yukti_aboutus .popup-linkedin a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.yukti_aboutus .popup-linkedin img {
    width: 24px;
    height: 24px;
    transition: transform .3s ease;
}

.yukti_aboutus .popup-linkedin a:hover img {
    transform: scale(1.1);
}

.yukti_aboutus .mobile-linkedin {
    position: absolute;
    top: 2px;
    margin-left: 12px;
}

.yukti_aboutus #popupName img {
    width: 25px;
    height: 25px;
    position: absolute;
    right: 0;
}

.yukti_aboutus .popup-linkedin {
    display: none;
}

/* end */

.yukti_aboutus .popup-heading {
    font-size: 28px;
    font-weight: 700;
    color: #082B49;
    margin-bottom: 20px;
    line-height: 1.2;
}

.yukti_aboutus #popupDesc {
    font-size: 18px;
    line-height: 1.8;
    color: #4A4A4A;
}

.founder-popuptitle {
    width: 100%;
    color: #082B49;
}

.founder-popuptitle td {
    vertical-align: top;
    margin-right: 5px;
    font-weight: 600;
    font-size: 23px;
    line-height: 1.4;
}

.titlesub {
    width: 70%;
}

.popuprow {
    display: flex;
    gap: 2px;
}

.yukti_aboutus .mission {
    padding: 40px 0px;
}

.yukti_aboutus .scientificprofile .subtitle {
    margin-bottom: 9px;
}

.yukti_aboutus .vision {
    padding: 30px 0px;
}

.yukti_aboutus .scientificprofile .subtitle {
    margin-bottom: 9px;
}


/* .yukti_aboutus .displaycss {
    display: none;
} */

.yukti_aboutus .scientificprofile-founder .overlay {
    height: 34%;
}

.mobile-gap {
    display: block;
}

/*==============================   ABOUT US END   =================================*/





/* Blog details page start */
.blog-detailsmainsection .precisiononcology {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/blog/what-makes-a-genomic-report-useful-oncologists_bannerimage.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-detailsmainsection .blog_backgroundimage .container {
    position: relative;
    z-index: 2;
    height: 500px;
    display: flex;
    align-items: flex-end;
}


.blog-detailsmainsection .backgroundimage_text {
    max-width: 760px;
    padding-bottom: 60px;
}

.blog-detailsmainsection .backgroundimage_text p {
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
}

.blog-detailsmainsection .backgroundimage_text span {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
}

.blog-detailsmainsection .hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 50px;
}

.blog-detailsmainsection .category {
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

.blog-detailsmainsection .hero-overlay h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.25;
    max-width: 700px;
    margin: 0;
}

.blog-detailsmainsection .blog-content-section {
    padding-top: 0px !important;
    padding: 40px 0;
    background: #fff;
}

.blog-detailsmainsection .blog-content-wrapper {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 60px;
}

/* Sidebar */

.blog-detailsmainsection .sidebar-item {
    margin-bottom: 40px;
}

.blog-detailsmainsection .sidebar-item span {
    display: block;
    font-size: 16px;
    color: hsl(215.56deg 72.97% 14.51%);
    margin-bottom: 8px;
}

.blog-detailsmainsection .sidebar-item h5 {
    font-size: 16px;
    color: hsl(216.23deg 67.09% 15.49%);
    font-weight: 600;
}

/* Article */

.blog-detailsmainsection .blog-article h2 {
    font-size: 24px;
    color: #0A2040;
    line-height: 1.5;
    font-weight: 600;
    margin-bottom: 35px;
}

.blog-detailsmainsection .blog-article h3 {
    font-size: 22px;
    color: #0A2040;
    margin: 35px 0 15px;
}

.blog-detailsmainsection .blog-article .description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.blog-detailsmainsection .sub-list li {
    font-size: 21px;
    /* margin-bottom: 10px; */
    color: #0a2040;
    font-weight: 600;
}


.blog-detailsmainsection .sequencing {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/blog/sequencing-has-scaled-interpretation-has-not-details.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-detailsmainsection .raredisease {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/blog/rare-disease-interpretation_innerbanner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-detailsmainsection .blog_backgroundimage .container {
    position: relative;
    z-index: 2;
    height: 500px;
    display: flex;
    align-items: flex-end;
}

.detail-image {
    text-align: center;
}

.detail-image img {
    height: 500px;
    margin: 10px auto;
}

.detail-image .description {
    font-style: italic;
    font-size: 14px !important;
    margin-top: 10px;
    text-align: left;
}

/* Blog details page end  */

/* From VCF to Clinical Insight: The Missing Layer in Genomic Medicine */
.blog-detailsmainsection .vcf_clinicalinsight {
    background-image: url('../images/blog/sequencing-has-scaled-interpretation-has-not-details.webp');
}

.blog-detailsmainsection .intelligence-ecosystem {
    background-image: url('../images/blog/india-genomic-intelligence-ecosystem-details.webp');
    background-position: center;
    background-size: cover;

}

/* From VCF to Clinical Insight: The Missing Layer in Genomic Medicine end*/

.blog-detailsmainsection .responsible {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('../images/blog/responsible_ai_banner_blogpage.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;

    /* background-color: #2f7d76 !important; */
}


/* Terms Page */

.terms-backgroundimage {
    position: relative;
    width: 100%;
    background: #7FC9BB;
    overflow: hidden;
}

.terms-backgroundimage img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.terms-backgroundimage .title {
    position: absolute;
    top: 50%;
    left: 80px;
    /* Adjust as needed */
    transform: translateY(-50%);
    color: #0b2453;
    font-size: 50px;
    font-weight: 700;
    z-index: 2;
}


.terms-page .terms-content-section {
    margin: 20px 0;
}

.terms-page .terms-article {
    margin-top: 20px;
}

/* Privacy */
.privacy-backgroundimage {
    position: relative;
    width: 100%;
    background: #7FC9BB;
    overflow: hidden;
}

.privacy-backgroundimage img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.privacy-backgroundimage .title {
    position: absolute;
    top: 50%;
    left: 80px;
    /* Adjust as needed */
    transform: translateY(-50%);
    color: #FFF;
    font-size: 50px;
    font-weight: 700;
    z-index: 2;
}

.privacy-page .privacy-content-section {
    margin: 30px 0;
}

.privacy-page .privacy-article {
    margin-top: 20px;
}

.privacy-page .privacy-article h3 {
    font-size: 22px;
    color: #0A2040;
    margin: 35px 0 15px;
}

.privacy-page .privacy-article .description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.privacy-page .privacy-article .bulletpointtext .description {
    margin-bottom: 0 !important;
}

.seq2clin_mainsection .what_does_seq2clin .platfrom_sequencing {
    padding: 20px 0px;
}


.bulletpointtext .description {
    margin-bottom: 0px !important;
}

/* ===========================================
   HERO TABLET INTERACTION
=========================================== */

.home-desktop-banner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-mockup {
    position: relative;
    display: inline-block;
    border-radius: 26px;
    overflow: hidden;
    cursor: pointer;
    animation: heroFloat 3.8s ease-in-out infinite;
}

/* Floating Animation */

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    animation: none;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* Overlay */

.hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    padding: 30px;
    opacity: 0;
    transition: 1.35s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

/* Button */

.hero-request-btn {
    text-decoration: none;
    background: #fff;
    color: #0A2040;
    padding: 12px 18px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: 600;
    margin: 28px 0px;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, .12);
    transform: translateY(20px);
    opacity: 0;
    transition: .35s ease;
}

/* Hover */

.hero-mockup:hover .hero-overlay {
    opacity: 1;
}

.hero-mockup:hover .hero-request-btn {
    opacity: 1;
    transform: translateY(0);
}


/* back btn start */
/* Back Button */
.back-btn {
    position: absolute;
    top: 30px;
    left: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    z-index: 2;
    transition: .3s;
}

.back-btn img {
    width: 23px;
    height: 23px;
    display: block;
}

.back-btn:hover {
    color: #cde9ff;
}

.blog-detailsmainsection .blog-content-section .blog-content-wrapper {
    display: grid !important;
    grid-template-columns: 1fr 380px !important;
    gap: 60px !important;
}

.blog_innerpage_details {
    display: flex;
    gap: 10px;
    margin: 0;
    /* remove all margins */
    padding: 30px 0;
    /* use padding instead */
    align-items: flex-start;
    flex-wrap: wrap;
}

.blog-detailsmainsection .blog_innerpage_details .sidebar-item {
    margin-bottom: 0px;
    border: 1px solid hsl(225deg 11.11% 92.94%);
    border-radius: 20px;
    padding: 6px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}


.blog-detailsmainsection .blog_innerpage_details .sidebar-item span {
    display: flex;
    align-items: center;
    margin-bottom: 0px;
}

.blog-detailsmainsection .blog_innerpage_details .sidebar-item h5 {
    margin-bottom: 0px;
    color: hsl(0deg 0% 5.1%);
    font-weight: 400;
}

.blog-detailsmainsection .blog_innerpage_details .name {
    background-color: hsl(184.29deg 70% 96.08%);
}

.blog-detailsmainsection .blog_innerpage_details .name h5 {
    color: hsl(188.7deg 29.61% 45.69%) !important;
}


/* .back-btn i {
    font-size: 18px;
}
.blog_backgroundimage {
    position: relative;
}

.blog_backgroundimage .container {
    position: relative;
    height: 100%;
} */
/* back btn end */


/* Other Blogs */

.other-blogs {
    background: #fff;
    border-radius: 10px;
    overflow-y: auto;
    scrollbar-gutter: stable;
}

.other-blogs h2.title {
    padding: 30px 0;
    padding-bottom: 10px;
    font-size: 26px;
    font-weight: 600;
    color: #3A7D88;
    position: sticky;
    top: 0;
    background-color: #fff;
}

.other-blogs .tabs {
    display: flex;
    background: #F5F5F5;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 26px;
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    margin: 0 10px;
}

.other-blogs .tabs button {
    flex: 1;
    border: none;
    background: transparent;
    padding: 11px 0;
    font-size: 15px;
    font-weight: 600;
    border-radius: 15px;
    cursor: pointer;
    color: hsl(215.45deg 27.85% 30.98%);
    font-family: inherit;
    transition: background .2s ease, color .2s ease;
}

.other-blogs .tabs button.active {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
    color: #3A7D88;
}

.other-blogs .post {
    padding: 18px 0;
    border-bottom: 1px solid #bec5c6;
    margin: 0 10px;
}

.other-blogs .post a {
    text-decoration: none;
}

.other-blogs .post:last-child {
    border-bottom: none;
}

.other-blogs .category {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #3A7D88;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.other-blogs .category .icon {
    font-size: 14px;
    line-height: 1;
}

.other-blogs .post h3 {
    margin: 0 0 12px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    color: #0A2040;
}

.other-blogs .date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #515151;
}

.other-blogs .date .cal {
    font-size: 14px;
    opacity: .75;
}

.other-blogs .date span:last-of-type {
    position: relative;
    top: 2px;
}

/* end */

/* other Blogs  */
/* other Blogs  */






.imagebox_section .image-box {
    position: relative;
}

.desktop-video {
    display: none;
    width: 100%;
    height: auto;
}

.desktop-video.active {
    display: block;
}

/* 
.insightnav_web {
    display: block;
}

.insightnav_mobile {
    display: none;
} */

.insight-nav {
    display: flex;
    gap: 12px;
}

.backtoinsights {
    text-align: end;
    margin-bottom: 35px;
    margin-right: 50px;
}

.backtoinsights-mobile {
    display: none;
}

.contact-main-section .registeredsection .registerd {
    color: #22657E;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
}

.contact-main-section .registeredsection .privatelimited {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 600;
    color: #0A2040;
    margin-bottom: 8px;
}

.contact-main-section .registeredsection {
    margin-top: 80px;
}

.blog-detailsmainsection .genomicsfoundation {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url(../images/blog/genomics_isthe_foundation_innerpage.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}



/* 404 Page */

.error-page {
    height: 100%;
    background: #F3FAF9;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
}

.error-page .banner-section {
    position: relative;
    width: 100%;
    max-width: 1600px;
    aspect-ratio: 1600 / 695;
    background-image: url('../images/404-banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.error-page .banner-content {
    position: relative;
    z-index: 2;
    width: 44%;
    max-width: 560px;
    padding: 0 0 0 5.5%;
}

.error-page p.description {
    margin: 20px 0;
    max-width: 460px;
    margin-bottom: 45px;
}