@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-color: #0e1b6a;
    /* --secondary-color: crimson; */
    --secondary-color: #9c27b0;
    --light-bg: #E0EAFF;
    --light-bg-2: #E0EAFF;
    --dark-purple: #4a1e8a;
    --text-color: #333;
    --light-text: #666;
    --white: #fff;
}

body {
    font-family: "Poppins", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

h2 {
    font-weight: 600;
    font-size: 32px !important;
}

h3 {
    font-size: 30px;
    font-weight: 600;
}

h5 {
    font-size: 20px !important
}

p {

    font-size: 15px !important;
}

/* Header Styles */
.navbar {
    padding: 15px 0;
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 60px;
}

.nav-link {
    color: var(--text-color);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .dropdown-toggle::after {
    margin-left: 8px;
    transition: transform var(--transition-speed);
}

.navbar-nav .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    padding: 0;
    border: none;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    min-width: max-content;
    transition: all var(--transition-speed);
    display: none;
    transform: translateY(10px);
}

.dropdown.show .dropdown-menu {
    opacity: 1;
    display: block;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    text-decoration: none;
    color: var(--text-color);
    transition: all var(--transition-speed);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown-menu li:last-child a {
    border-bottom: none;
}

.dropdown-menu li a:hover {
    background-color: var(--hover-color);
    color: var(--primary-color);
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-primary-alt {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    border-radius: 30px;
    padding: 8px 25px;
    font-weight: 600;
    transition: all 0.3s;
    color: white;
}

.btn-primary-alt:hover {
    background-color: white;
    border-color: white;
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* Hero Section */
.main-banner {
    /* background-image: url('../images/banner/banner.png'); */
    background-size: cover !important;
    background-position: center right;
    background-repeat: no-repeat !important;
    /* padding: 120px 0; */
    position: relative;
    overflow: hidden;
    background: var(--light-bg);
    padding-bottom: 0 !important;
}

/* Hero Section */
.hero {
    background-color: var(--light-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}


.main-banner .hero-content {
    position: relative;
    z-index: 10;
    color: white;
    background-repeat: no-repeat;
    background-position: center right;
    /* min-height: 500px; */
    display: flex;
    align-items: center;
    background-size: contain;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-content h1 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 14px;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
    z-index: 1;
    min-height: 400px;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(138, 43, 226, 0.1);
    z-index: 0;
}

.bubble-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    right: 10%;
}

.bubble-2 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    right: 20%;
}

.bubble-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 5%;
    opacity: 0.15;
}

/* Features Section */
.features {
    padding: 60px 0;
}

.feature-box {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    /* height: 100%; */
    transition: transform 0.3s;
    padding-bottom: 0;
}

.feature-box img {
    margin-top: 20px;
    display: block;
    width: 100%;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--light-bg-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 30px;
    color: var(--primary-color);
}

.feature-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
}

/* Mission Section */
.mission {
    padding: 60px 0;
    background-color: var(--light-bg);
}

.mission h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.mission p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--light-text);
}

/* Exome Sequencing Section */
.exome {
    padding: 80px 0;
}

.exome h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.stat-box {
    background-color: var(--light-bg-2);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Genomic Care Section */
.genomic-care {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.genomic-care h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.genomic-box {
    display: flex;
    margin-bottom: 20px;
}

.genomic-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.genomic-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.genomic-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Leaders Section */
.leaders {
    padding: 80px 0;
}

.leaders h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.leader-box {
    /* margin-bottom: 30px; */
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.leader-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.leader-box p {
    font-size: 14px !important;
}

.leader-box h4 {
    font-size: 17px !important;
}

.leader-icon {
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    float: left;
    padding: 12px;
}

.leader-icon i {
    font-size: 20px;
    color: var(--primary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    position: relative;
    cursor: pointer;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-text {
    font-style: italic;
    color: var(--light-text);
    margin-top: 15px;
}

/* Ordering Section */
.ordering {
    padding: 60px 0;
    background-color: var(--white);
}

.ordering h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.ordering-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 40px;
}

.step-box {
    background-color: var(--light-bg);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s;
}

.step-box:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.step-box h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    padding: 40px 0;
    margin: 0 50px 50px;
    border-radius: 20px;
}

.newsletter h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
}

.newsletter-input {
    flex-grow: 1;
    border-radius: 30px 0 0 30px;
    border: none;
    padding: 10px 20px;
}

.newsletter-btn {
    background-color: var(--secondary-color);
    border: none;
    color: var(--white);
    border-radius: 0 30px 30px 0;
    padding: 10px 20px;
    font-weight: 600;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 80px;
    filter: brightness(0) invert(1);
}

.footer-contact {
    margin-bottom: 20px;
}

.footer-contact i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--white);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.copyright p {
    margin-bottom: 0 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.4rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}


.col-lg-5 img,.col-lg-6 img {
    /* box-shadow: 3px 3px 17px 3px #eee; */
    BORDER-RADIUS: 10px;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    font-size: 30px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 600;
    font-size: 16px;
}

.light-bg {
    background-color: var(--light-bg);
}

.bg-2 {
    background-color: var(--light-bg-2);
}

.light-bg-2 {
    background-color: #f7f7f8;
}

/* Service Cards */
.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 0;
}

.service-icon img {
    height: 100px;
    width: auto;
}

.service-content {
    padding: 20px;
    text-align: center;
}

.service-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* How to Order */
.step-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.step-card span {
    font-size: 1.6rem;
    background: var(--primary-color);
    /* padding: 10px 20px; */
    color: #fff;
    border-radius: 50%;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
}

.step-icon img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    /* filter: invert(1); */
}

.step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Disorders Grid */
.disorders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 0 15px;
    margin-bottom: 30px;
}

.disorder-item {
    display: flex;
    align-items: baseline;
    padding: 10px;
    font-size: 15px;
}

.disorder-item i {
    color: var(--secondary-color);
    margin-right: 10px;
}

/* CTA Section */
.cta-section {
    background-color: var(--primary-color);
    padding: 60px 0;
    color: var(--white);
    border-radius: 12px;
    margin: 40px 0;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 25px;
    transition: all 0.3s;
}

.btn-light:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


.info-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 60px 40px;
    /* margin-bottom: 30px; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--primary-color);
}

.stat-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: var(--white);
    border: 6px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-text {
    text-align: center;
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info-icon {
    width: 24px;
    height: 24px;
    background-color: var(--light-bg-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: var(--secondary-color);
}

.info-point {
    font-size: 0.9rem;
    color: var(--light-text);
    width: 90%;
}

.opportunity-text {
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 20px;
}

.opportunity-subtext {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.feature-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin: 10px;
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 10px;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--light-text);
}

.recommendation-title {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin: 40px 0 20px;
}

.finds-answers-title {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin: 40px 0 20px;
}

.finds-answers-description {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.comparison-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 30px 0;
}

.comparison-item {
    text-align: center;
    margin: 10px;
}

.comparison-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.comparison-text {
    font-size: 0.8rem;
    color: var(--light-text);
    max-width: 250px;
}

.diagnostic-title {
    text-align: center;
    font-weight: 600;
    color: var(--text-color);
    margin: 30px 0 20px;
}

.chart {
    margin: 30px auto;
    max-width: 700px;
}

.chart-row {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.chart-label {
    width: 150px;
    text-align: right;
    padding-right: 15px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.chart-bars {
    flex-grow: 1;
    display: flex;
}

.chart-bar {
    height: 20px;
    margin-right: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
}

.chart-values {
    display: flex;
    justify-content: space-between;
    margin-top: 5px;
    color: var(--light-text);
    font-size: 0.7rem;
}

.options-title {
    text-align: center;
    color: var(--primary-color);
    font-weight: 600;
    margin: 40px 0 20px;
}

.option-card {
    display: flex;
    align-items: flex-start;
    background-color: var(--white);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    gap: 20px;
}

.option-icon {
    width: 60px;
    margin-right: 15px;
    flex-shrink: 0;
}

.option-icon-bg {
    padding: 10px;
    border-radius: 15px;
    background-color: var(--secondary-color);
}

.option-icon-bg img {
    width: 47px;
    height: 50px;
}

.option-content {
    flex-grow: 1;
}

.option-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.option-description {
    font-size: 0.9rem;
    color: var(--light-text);
    font-weight: 400;
    margin-bottom: 0;
}

.person-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.percent-img {
    display: block;
    margin: 0 auto;
    width: 120px;
}

.content {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--black-color);
}



.products-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-align: center;
}

.products-subtitle {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.products-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.product-card {
    background-color: var(--primary-color);
    border-radius: 12px;
    padding: 20px;
    color: var(--white);
    flex: 1;
    min-width: 280px;
}

.product-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.product-feature {
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.product-subtitle {
    font-weight: 600;
    margin: 15px 0 10px;
    font-size: 1rem;
}

.btn-light {
    background-color: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 30px;
    padding: 8px 25px;
    display: block;
    width: 140px;
    margin: 20px auto;
    text-align: center;
    text-decoration: none;
    font-size: 0.9rem;
}

.difference-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.difference-text {
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 0.9rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 40px 0 20px;
    text-align: center;
}

.benefits-text {
    text-align: center;
    color: var(--light-text);
    margin-bottom: 30px;
    font-size: 0.9rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 30px 0 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.feature-icon {
    color: var(--primary-color);
    margin-right: 15px;
    font-size: 1.2rem;
}

.feature-text {
    font-size: 0.9rem;
    color: var(--text-color);
}

.color-primary {
    color: var(--primary-color);
}

.color-secondary {
    color: var(--secondary-color);
}

.counseling-title {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.counseling-subtitle {
    color: var(--text-color);
    margin-bottom: 30px;
    font-size: 1rem;
    line-height: 1.5;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    margin: 40px 0 0;
}

.step-box {
    flex: 1;
    min-width: 220px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.step-number {
    color: var(--primary-color);
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.step-text {
    text-align: center;
    color: var(--text-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.questions-box {
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    background: var(--light-bg-2);
}

.questions-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.questions-text {
    color: var(--text-color);
    font-size: 1rem;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    font-size: 12.5px;
}

.contact-link:hover {
    color: var(--dark-purple);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .section {
        padding: 30px 0 !important;
    }

    .steps-container {
        flex-direction: column;
    }

    .step-box {
        width: 100%;
    }

    .process-card,
    .percent-img,
    .result-card {
        margin-bottom: 20px;
    }

    .newsletter {
        margin: 0 0 30px !important;
        padding: 30px;
    }

    .navbar-nav {
        padding: 30px 0 !important;
    }

    .mission-section,
    .accreditation,
    .choose-us {
        padding: 20px !important;
    }

    .service-card,
    .step-card {
        height: unset !important;
    }

    .main-banner {
        padding: 80px 0 0 !important;
    }

    .hero-content {
        background-image: unset !important;
        min-height: 100% !important;
        flex-direction: column !important;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .col-lg-6, .hero-content .col-lg-7{
        padding-bottom: 50px !important;
    }
    .hero-image {
        min-height: 80px !important;
    }

    .hero {
        padding: 60px 0;
    }

    .calendar-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-btn {
        border-radius: 30px;
    }

    .patient-advocacy {
        padding: 40px 20px;
    }

    .resources-title {
        font-size: 20px;
    }
    img.w-75 {
        width: 100% !important;
    }
    .values-container{
        column-count: 1 !important;
    }
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.result-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.result-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.result-icon.positive,
.result-icon.secondary {
    background-color: #e6f0ff;
    color: #4285f4;
}

.result-icon.negative {
    background-color: #e6e6ff;
    color: #5d2d91;
}

.result-icon.vus {
    background-color: #e6e6ff;
    color: #6c757d;
}

.result-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.result-description {
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .results-grid {
        grid-template-columns: 1fr;
    }
}

/* Patient Advocacy Section Styles */
.patient-advocacy {
    padding: 60px 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
}

.advocacy-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 30px;
}

.advocacy-email {
    color: #5d2d91;
    font-weight: 500;
    text-decoration: none;
}

.advocacy-email:hover {
    text-decoration: underline;
}

.additional-resources {
    margin-top: 40px;
}

.resources-title {
    color: #333;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.resources-text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 25px;
}

.resources-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.resource-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 18px;
}

.video-icon {
    background-color: #f0e6fa;
    color: #5d2d91;
}

.pdf-icon {
    background-color: #e6f0fa;
    color: #2d5d91;
}

.resource-link {
    color: #444;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
}

.resource-link:hover {
    color: #5d2d91;
    text-decoration: underline;
}

/* Minimal additional styles, assuming these classes are already available */
.billing-info {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.process-card {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.process-step {
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
}

.process-icon img {
    max-width: 100%;
    height: 50px;
}

.process-text {
    color: #444;
    font-size: 15px;
    line-height: 1.5;
}

.purple-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0e6fa;
    color: #5d2d91;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-methods {
    margin-left: 20px;
}

.document-icon {
    width: 60px;
    height: 60px;
}

.process-section {
    background-color: var(--light-bg-2);
    padding: 40px 0;
}

.purple-pill {
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.purple-circle {
    width: 12px;
    height: 12px;
    background-color: var(--primary-purple);
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

.process-step {
    margin-bottom: 20px;
}

.purple-btn {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 600;
}

.purple-btn:hover {
    background-color: #4a2275;
    color: white;
}

.testimonial-section {
    padding: 60px 0;
    background-color: white;
}

.testimonial-image {
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-quote {
    background-color: var(--primary-purple);
    color: white;
    border-radius: 10px;
    padding: 20px;
    position: relative;
    /* margin-top: -60px; */
    margin-right: 30px;
    z-index: 1;
    position: absolute;
    max-width: 300px;
    background: var(--primary-color);
    /* top: 0; */
    right: 20px;
    bottom: 20px;
    min-height: max-content;
}

.faq-section {
    background-color: var(--light-bg);
    padding: 60px 0;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.inquiry-btn {
    background-color: var(--primary-purple);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
}


.contact-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f0e6ff;
}

.form-control,
.form-select {
    padding: 0.75rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.form-control:focus,
.form-select:focus {
    border-color: #5D2D91;
    box-shadow: 0 0 0 0.25rem rgba(93, 45, 145, 0.25);
}

.form-check-input:checked {
    background-color: #5D2D91;
    border-color: #5D2D91;
}

.contact-method {
    margin-bottom: 2rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-info-container {
        padding-left: 0;
        margin-top: 2rem;
    }
}




/* GENOMICS  PAGES  */
/* .hero {
    background: linear-gradient(135deg, var(--primary-color), #9c27b0);
    color: white;
    padding: 80px 0;
    border-radius: 0 0 20px 20px;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  
  .hero-text h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
  } */

.mission-section {
    background-color: white;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 60px 30px;
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.mission-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 2.8rem;
    font-weight: 600;
}

/* .values-section {
    text-align: center;
}

.values-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
}

.values-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.value-card {
    background-color: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex: 1;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card h3 {
    color: var(--primary-color);
    margin: 15px 0;
    font-size: 1.4rem;
}

.value-card span {
    font-size: 1rem;
    background: var(--primary-color);
    padding: 8px 0;
    color: #fff;
    border-radius: 50%;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    transform: rotate(-30deg);
    transition: transform 0.3s ease;
}

.value-card:hover span {
    transform: rotate(0deg);
} */

.values-section {
    text-align: center;
}

.values-section h2 {
    color: var(--primary-color);
    margin-bottom: 40px;
}

.values-container {
    column-count: 3;
    column-gap: 20px;
}

.value-card {
    background-color: white;
    display: inline-block;
    margin: 0 0 20px;
    width: 100%;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card h3 {
    color: var(--primary-color);
    margin: 15px 0;
    font-size: 1.4rem;
}

.value-card span {
    font-size: 1rem;
    background: var(--primary-color);
    padding: 8px 0;
    color: #fff;
    border-radius: 50%;
    display: block;
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    transform: rotate(-30deg);
    transition: transform 0.3s ease;
}

.value-card:hover span {
    transform: rotate(0deg);
}


.choose-us {
    background-color: var(--primary-color);
    color: white;
    border-radius: 20px;
    padding: 40px;
}

.choose-us h2 {
    margin-bottom: 30px;
    font-size: 2.8rem;
}

.performance-section {
    margin: 40px 0;
}

.performance-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.performance-bar {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #9c27b0);
    border-radius: 10px;
}

.performance-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.accreditation {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #f5f0fa;
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
}

.accreditation h2 {
    color: var(--primary-color);
    margin-bottom: 2.8rem;
}


.circle-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    margin: auto;
}

li {
    font-size: 14px !important;
}

.social-icon {
    display: flex;
    align-items: baseline;
    gap: 10px;
    color: var(--primary-color);
    transition: all 3s
}

.social-icon i {
    font-size: 20px;
}

.social-icon:hover {
    color: var(--secondary-color);
}

.social-icon:hover i {
    transform: scale(1.1)
}


.hero-content .col-lg-6,
.hero-content .col-lg-7 {
    padding: 50px 0 100px;
}