/* VeroHealth Medical Equipment - Complete Stylesheet */
/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
body {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

/* Header styles */
header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.utility-nav {
    background: #2c3e50;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.utility-nav-left, .utility-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.utility-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}

.utility-link:hover {
    color: #3498db;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    color: white;
    font-size: 13px;
}

.main-header {
    padding: 7px 0;
}

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

.logo img {
    height: 65px;
    width: auto;
}

/* Navigation styles */
.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #1cabd5;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 5px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
    z-index: 1000;
    padding-left: 0px;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    list-style: none;
}

.dropdown a {
    display: block;
    padding: 8px 16px;
    color: #333;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown a:hover {
    background: #f8f9fa;
    color: #3498db;
}

/* Hero sections */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

/*.page-hero {*/
/*    background: linear-gradient(135deg, #2c3e50f2 0%, #20a8d1 100%);*/
/*    color: white;*/
/*    padding: 80px 0;*/
/*    text-align: center;*/
/*}*/


.page-hero {
    background: linear-gradient(135deg, #2c3e50f2, #20a8d1, #2b5797, #1998be);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1, .page-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero p, .page-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
/*.btn {*/
/*    display: inline-block;*/
/*    padding: 12px 30px;*/
/*    border-radius: 25px;*/
/*    text-decoration: none;*/
/*    font-weight: 600;*/
/*    transition: all 0.3s;*/
/*    border: 2px solid transparent;*/
/*    cursor: pointer;*/
/*    font-size: 16px;*/
/*}*/

/*.btn-primary {*/
/*    background: #3498db;*/
/*    color: white;*/
/*}*/

/*.btn-primary:hover {*/
/*    background: #2980b9;*/
/*    transform: translateY(-2px);*/
/*}*/

/*.btn-secondary {*/
/*    background: transparent;*/
/*    color: white;*/
/*    border-color: white;*/
/*}*/

/*.btn-secondary:hover {*/
/*    background: white;*/
/*    color: #3498db;*/
/*}*/

/*.btn-outline {*/
/*    background: transparent;*/
/*    color: #3498db;*/
/*    border-color: #3498db;*/
/*}*/

/*.btn-outline:hover {*/
/*    background: #3498db;*/
/*    color: white;*/
/*}*/

/* Content sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background: #f8f9fa;
    padding: 80px 0;
}

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

.content-text h2, .content-text h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-text h2 {
    font-size: 2.5rem;
}

.content-text h3 {
    font-size: 1.8rem;
    /*margin-top: 40px;*/
}

.content-text p {
    margin-bottom: 20px;
    color: #666;
}

.service-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Grid layouts */
.services-grid, .features-grid, .steps-grid, .therapy-grid, .support-grid,
.symptoms-grid, .diagnosis-grid, .treatment-grid, .lifestyle-grid, .delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card, .feature-card, .step, .therapy-card, .support-item,
.symptom-card, .diagnosis-card, .treatment-card, .lifestyle-card, .delivery-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    text-align: center;
}

.service-card:hover, .feature-card:hover, .step:hover, .therapy-card:hover, .support-item:hover,
.symptom-card:hover, .diagnosis-card:hover, .treatment-card:hover, .lifestyle-card:hover, .delivery-card:hover {
    transform: translateY(-5px);
}

.service-icon, .feature-icon, .therapy-icon, .support-icon, .symptom-icon,
.diagnosis-icon, .treatment-icon, .lifestyle-icon, .delivery-icon {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 20px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1996bc;
    color: white;
    border-radius: 50%;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.service-card h3, .feature-card h3, .step h3, .therapy-card h3, .support-item h3,
.symptom-card h3, .diagnosis-card h3, .treatment-card h3, .lifestyle-card h3, .delivery-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p, .feature-card p, .step p, .therapy-card p, .support-item p,
.symptom-card p, .diagnosis-card p, .treatment-card p, .lifestyle-card p, .delivery-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Section headings */
.section h2, .section-alt h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 40px;
}

/* User paths */
.user-paths {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    /*margin-top: 40px;*/
}

.path-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.path-card:hover {
    transform: translateY(-5px);
}

.path-icon {
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 20px;
}

.path-card h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
}

.path-card p {
    color: #666;
    margin-bottom: 25px;
}

/* Why choose us section */
.why-choose {
    background: #f8f9fa;
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.testimonial {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #3498db;
}

.testimonial blockquote {
    font-style: italic;
    margin-bottom: 20px;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.testimonial-role {
    color: #666;
    font-size: 0.9rem;
}

/* Call to action */
.cta-section {
    /*background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);*/
    /*color: white;*/
    padding: 0 0;
    text-align: center;
}

.cta-section h2 {
    /*color: white;*/
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Forms */
.form-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Tracking results */
.tracking-results {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 30px;
    display: none;
}

.tracking-timeline {
    position: relative;
    padding-left: 30px;
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
    padding-left: 30px;
}

/*.timeline-item::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: -8px;*/
/*    top: 5px;*/
/*    width: 16px;*/
/*    height: 16px;*/
/*    border-radius: 50%;*/
/*    background: #e0e0e0;*/
/*}*/

.timeline-item.completed::before {
    background: #27ae60;
}

.timeline-item.current::before {
    background: #3498db;
    box-shadow: 0 0 0 4px rgba(52, 152, 219, 0.2);
}

.timeline-content h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #666;
    margin-bottom: 5px;
}

.timeline-date {
    font-size: 0.9rem;
    color: #999;
}

/* Statistics section */
.stats-section {
    background: #2c3e50;
    color: white;
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    color: #3498db;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.1rem;
}

/* Checklist styles */
.checklist {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.checklist h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 20px;
}

.checklist-items {
    list-style: none;
}

.checklist-items li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.checklist-items li:last-child {
    border-bottom: none;
}

.checklist-items li i {
    color: #3498db;
    font-size: 1.2rem;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    margin-bottom: 15px;
    color: white;
}

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

.footer-col ul li {
    margin-bottom: 5px;
    font-size: 14px;
}

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-col h3 {
    font-size: 22px;
}

.footer-logo img {
    height: 70px;
    margin-bottom: 10px;
}

.footer-social {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.footer-social a {
    color: #bdc3c7;
    font-size: 1.2rem;
}
.footer-col p {
    font-size: 14px;
}

.footer-social a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .hero h1, .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .utility-nav .container {
        flex-direction: column;
        gap: 10px;
    }
    
    .main-header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .hero h1, .page-hero h1 {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .services-grid, .features-grid, .steps-grid, .therapy-grid, .support-grid,
    .symptoms-grid, .diagnosis-grid, .treatment-grid, .lifestyle-grid, .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .user-paths {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero, .page-hero {
        padding: 60px 0;
    }
    
    .section, .section-alt {
        padding: 60px 0;
    }
    
    .service-card, .feature-card, .step, .therapy-card, .support-item,
    .symptom-card, .diagnosis-card, .treatment-card, .lifestyle-card, .delivery-card {
        padding: 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Print styles */
@media print {
    .utility-nav, .dropdown, .hero-cta, .btn {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero, .page-hero {
        background: none;
        color: #000;
        padding: 20px 0;
    }
    
    .service-card, .feature-card, .step, .therapy-card, .support-item {
        box-shadow: none;
        border: 1px solid #ddd;
        break-inside: avoid;
    }
}



/* NIV Types Section Styles */
.niv-types-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.niv-therapy-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
}

.therapy-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 5px solid #3498db;
}

.therapy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.therapy-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.therapy-icon {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.therapy-header h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 0;
}

.therapy-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.therapy-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.therapy-features h4,
.therapy-conditions h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.therapy-features h4 i {
    color: #27ae60;
}

.therapy-conditions h4 i {
    color: #e74c3c;
}

.therapy-features ul,
.therapy-conditions ul {
    list-style: none;
    padding: 0;
}

.therapy-features li,
.therapy-conditions li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    padding: 8px 0;
    color: #555;
}

.therapy-features li i {
    color: #27ae60;
    font-size: 0.9rem;
}

.therapy-conditions li i {
    color: #3498db;
    font-size: 0.9rem;
}

.niv-cta {
    background: white;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 2px solid #3498db;
}

.niv-cta h3 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.niv-cta p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

/* Responsive design for NIV section */
@media (max-width: 768px) {
    .therapy-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .therapy-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .therapy-icon {
        margin-right: 0;
    }
    
    .therapy-card {
        padding: 30px 20px;
    }
    
    .niv-cta {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .therapy-header h3 {
        font-size: 1.5rem;
    }
    
    .therapy-description {
        font-size: 1rem;
    }
    
    .therapy-features h4,
    .therapy-conditions h4 {
        font-size: 1rem;
    }
}


.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #2c3e50;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    /*text-transform: uppercase;*/
}
.section-title::after {
    content: '';
    display: block;
    margin: 0.9rem auto 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #1eabd4, #2c3e50);
    border-radius: 2px;
}

.section-title-white {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    /*text-transform: uppercase;*/
}
.section-title-white::after {
    content: '';
    display: block;
    margin: 0.9rem auto 0;
    width: 100px;
    height: 4px;
    background: #ffffff;
    border-radius: 2px;
}


.animate-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.animate-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: #1996bc;
    border-color: #1996bc;
    color: #fff;
    transition: all 0.3s ease;
}
.bg-primary{
    background: #1996bc !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background: #147fa1; /* slightly darker shade for hover */
    border-color: #147fa1;
    color: #fff;
    /*box-shadow: 0 0.5rem 1rem rgba(25, 150, 188, 0.3);*/
    transform: translateY(-2px);
}

.text-vero, .text-primary{
   color: #1996bc !important;
}

.border-primary{
    --bs-border-opacity: null;
   color: #1996bc !important;
}

.testimonials .rounded-circle {
    object-fit: cover;
}
.vero-list li {
    position: relative;
    padding-left: 2px;
    margin-bottom: 10px;
}

.vero-list li::before {
    content: "✔";
    color: #2c3e50;
    margin-right: 7px;
    font-size: 14px;
}

  .faq-section {
    /*background-color: #f9fbfd;*/
    padding: 60px 0;
  }

  .faq-section h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #0d3c61;
    text-align: center;
  }



  #faqAccordion {
    max-width: 900px;
    margin: 0 auto;
  }

  .accordion-item {
    border: 1px solid #d0e4f4;
    /*border-radius: 8px;*/
    overflow: hidden;
    background-color: #ffffff;
    margin-bottom: 1px;
  }

  .accordion-button {
    background-color: #e6f2fa; /* lighter than #1996bc */
    color: #0d3c61;
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }

  .accordion-button:not(.collapsed) {
    background-color: #1996bc9c;
    color: #0d3c61;
    box-shadow: none;
  }

  .accordion-button:focus {
    box-shadow: none;
    border-color: #1996bc;
  }

  .accordion-body {
    padding: 1rem 1.5rem;
    background-color: #fff;
    color: #333;
    font-size: 0.95rem;
  }

  @media (max-width: 576px) {
    .accordion-button {
      font-size: 0.95rem;
    }

    .faq-section h2 {
      font-size: 1.75rem;
    }
  }
  
  .carousel-indicators {
    margin-bottom: -1.5rem !important;
}

    .gradient-purple {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
    .gradient-blue {
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    }
    .gradient-teal {
        background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    }
    .gradient-success {
        background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    }
    .gradient-info {
        background: linear-gradient(135deg, #17a2b8 0%, #138496 100%);
    }
    /* New Vibrant Gradients */
    .gradient-red {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    }
    .gradient-orange {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    }
    .gradient-pink {
        background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    }
    .gradient-coral {
        background: linear-gradient(135deg, #ff7675 0%, #fd63a3 100%);
    }
    .gradient-yellow {
        background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    }
    .gradient-lime {
        background: linear-gradient(135deg, #2ecc71 0%, #00b894 100%);
    }
    .gradient-cyan {
        background: linear-gradient(135deg, #00cec9 0%, #0984e3 100%);
    }
    .gradient-indigo {
        background: linear-gradient(135deg, #6c5ce7 0%, #5f3dc4 100%);
    }
    .gradient-violet {
        background: linear-gradient(135deg, #a29bfe 0%, #6c5ce7 100%);
    }
    .gradient-emerald {
        background: linear-gradient(135deg, #00b894 0%, #00a085 100%);
    }
    
    /* Warm Gradients */
    .gradient-sunset {
        background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
    }
    .gradient-fire {
        background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    }
    .gradient-peach {
        background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    }
    .gradient-gold {
        background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
    }
    
    /* Cool Gradients */
    .gradient-ocean {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }
    .gradient-mint {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    }
    .gradient-sky {
        background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
    }
    .gradient-lavender {
        background: linear-gradient(135deg, #fd79a8 0%, #fdcb6e 100%);
    }
    
    /* Professional Medical Gradients */
    .gradient-medical-blue {
        background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    }
    .gradient-medical-green {
        background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    }
    .gradient-medical-purple {
        background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    }
    .gradient-medical-teal {
        background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    }
    
    /* Dark Professional Gradients */
    .gradient-dark-blue {
        background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    }
    .gradient-dark-purple {
        background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    }
    .gradient-dark-teal {
        background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
    }
    .gradient-dark-red {
        background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    }
    
    /* Multi-Color Gradients */
    .gradient-rainbow {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    }
    .gradient-tropical {
        background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #4facfe 100%);
    }
    .gradient-aurora {
        background: linear-gradient(135deg, #a8edea 0%, #fed6e3 50%, #d299c2 100%);
    }
    
    /* Text Color Classes for Gradients */
    .text-gradient-blue {
        background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .text-gradient-red {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .text-gradient-orange {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    .text-gradient-purple {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    /* Border Gradient Classes */
    .border-gradient-blue {
        border: 3px solid;
        border-image: linear-gradient(135deg, #3498db 0%, #2980b9 100%) 1;
    }
    .border-gradient-red {
        border: 3px solid;
        border-image: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) 1;
    }
    .border-gradient-orange {
        border: 3px solid;
        border-image: linear-gradient(135deg, #f39c12 0%, #e67e22 100%) 1;
    }
    .border-gradient-purple {
        border: 3px solid;
        border-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%) 1;
    }
    
    /* Button Gradient Classes */
    .btn-gradient-teal {
        background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
        border: none;
        color: white;
        transition: all 0.3s ease;
    }
    .btn-gradient-teal:hover {
        background: linear-gradient(135deg, #16a085 0%, #1abc9c 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgb(189 236 227);
        color: white;
    }
    .btn-gradient-red {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        border: none;
        color: white;
        transition: all 0.3s ease;
    }
    .btn-gradient-red:hover {
        background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
        color: white;
    }
    
    .btn-gradient-orange {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        border: none;
        color: white;
        transition: all 0.3s ease;
    }
    .btn-gradient-orange:hover {
        background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
        color: white;
    }
    
    .btn-gradient-pink {
        background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
        border: none;
        color: white;
        transition: all 0.3s ease;
    }
    .btn-gradient-pink:hover {
        background: linear-gradient(135deg, #e84393 0%, #fd79a8 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(253, 121, 168, 0.3);
        color: white;
    }
    
    .btn-gradient-cyan {
        background: linear-gradient(135deg, #00cec9 0%, #0984e3 100%);
        border: none;
        color: white;
        transition: all 0.3s ease;
    }
    .btn-gradient-cyan:hover {
        background: linear-gradient(135deg, #0984e3 0%, #00cec9 100%);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(0, 206, 201, 0.3);
        color: white;
    }
    
    /* Icon Gradient Classes */
    .icon-gradient-red {
        background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .icon-gradient-orange {
        background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .icon-gradient-pink {
        background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .icon-gradient-cyan {
        background: linear-gradient(135deg, #00cec9 0%, #0984e3 100%);
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .symptom-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        color: white;
        margin: 0 auto 1rem;
    }
    
    .symptom-start-icon {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        margin: 0 0rem;
    }
