/* BMR Diagnostic Centre - Custom Styles */

:root {
    --primary-red: #E53935;
    --secondary-red: #B71C1C;
    --light-red: #FFEBEE;
    --dark-red: #C62828;
    --white: #FFFFFF;
    --black: #333333;
    --grey: #666666;
    --light-grey: #F5F5F5;
    --healthcare-blue: #1976D2;
    --soft-gray: #F5F5F5;
    --positive-green: #43A047;
    --charcoal-gray: #333333;
}

/* User Avatar Styles */
.user-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.user-avatar i {
    font-size: 14px;
    color: var(--white);
}

.user-avatar:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Navigation User Dropdown Styles */
.navbar-nav .nav-item.dropdown .nav-link {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav .nav-item.dropdown .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.navbar-nav .nav-item.dropdown .nav-link:focus {
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

/* Dropdown Menu Enhancements */
.dropdown-menu {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background-color: var(--light-red);
    color: var(--primary-red);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
}

/* Doctor Name Styles */
.doctor-name {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    gap: 8px;
}

.doctor-name i {
    font-size: 1rem;
    color: var(--primary-red);
    opacity: 0.9;
}

/* Global Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--black);
}

.bg-red {
    background-color: var(--primary-red) !important;
}

.text-red {
    color: var(--primary-red) !important;
}

/* Header Styles */
.header {
    background: var(--white);
    border-bottom: 3px solid var(--primary-red);
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.doctor-info p {
    font-size: 14px;
    color: var(--grey);
    margin: 0;
}

.brand-title {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 28px;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.contact-info p {
    font-size: 14px;
    color: var(--grey);
    margin: 0;
}

.blessing {
    font-style: italic;
    color: var(--primary-red);
    font-weight: bold;
}

/* Navigation */
.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover {
    background-color: var(--secondary-red);
    border-radius: 5px;
}

/* New Hero Section Design */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 120px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-red), var(--healthcare-blue));
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 5%;
    animation-delay: 7s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--white);
    color: var(--primary-red);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--light-red);
}

.badge-text {
    font-size: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.1;
}

.title-line-1 {
    color: var(--charcoal-gray);
    display: block;
    font-size: 0.8em;
}

.title-line-2 {
    color: var(--primary-red);
    display: block;
    font-size: 1.2em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.title-line-3 {
    color: var(--charcoal-gray);
    display: block;
    font-size: 0.8em;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--grey);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--charcoal-gray);
}

.feature-icon {
    font-size: 1.2rem;
}

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

.hero-actions .btn {
    padding: 18px 40px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-icon {
    font-size: 1.2rem;
}

.btn-text {
    font-weight: 600;
}

.pulse-btn {
    animation: pulse 2s infinite;
}

.hero-visual {
    position: relative;
    z-index: 2;
    text-align: center;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.medical-illustration {
    position: relative;
    width: 400px;
    height: 400px;
}

.main-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-red), var(--healthcare-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
}

.pulse-ring.delay-1 {
    animation-delay: 1s;
}

.pulse-ring.delay-2 {
    animation-delay: 2s;
}

.center-icon {
    font-size: 4rem;
    color: var(--white);
    animation: heartbeat 2s ease-in-out infinite;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.element {
    position: absolute;
    background: var(--white);
    color: var(--primary-red);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    animation: float 8s ease-in-out infinite;
}

.element-1 { top: 15%; left: 15%; animation-delay: 0s; }
.element-2 { top: 10%; right: 20%; animation-delay: 1.3s; }
.element-3 { bottom: 25%; left: 10%; animation-delay: 2.6s; }
.element-4 { bottom: 15%; right: 15%; animation-delay: 3.9s; }
.element-5 { top: 50%; left: 5%; animation-delay: 5.2s; }
.element-6 { top: 50%; right: 5%; animation-delay: 6.5s; }

.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

.btn-primary:hover {
    background-color: var(--secondary-red);
    border-color: var(--secondary-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(229, 57, 53, 0.3);
}

.btn-outline-light:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-3px);
}

.btn-outline-primary {
    border-color: var(--healthcare-blue);
    color: var(--healthcare-blue);
}

.btn-outline-primary:hover {
    background-color: var(--healthcare-blue);
    border-color: var(--healthcare-blue);
    color: var(--white);
}

/* New Section Styles */
.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: var(--light-red);
    color: var(--primary-red);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 2px solid var(--light-red);
}

.badge-icon {
    font-size: 1.2rem;
    margin-right: 8px;
}

.badge-text {
    font-weight: 600;
}

.section-title {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-subtitle {
    color: var(--grey);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-red);
}

/* New Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    position: relative;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    border: 1px solid var(--soft-gray);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px 20px 30px;
    position: relative;
}

.service-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--healthcare-blue));
}

.service-icon {
    font-size: 3rem;
    color: var(--healthcare-blue);
    transition: all 0.3s ease;
}

.service-number {
    font-size: 2rem;
    font-weight: 800;
    color: #dc3545;
    /* opacity: 0.5; */
}

.service-card:hover .service-icon {
    transform: scale(1.2);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    color: var(--charcoal-gray);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-content p {
    color: var(--grey);
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--charcoal-gray);
}

.feature i {
    color: var(--positive-green);
    font-size: 1rem;
}

/* Enhanced Package Cards */
.package-card.enhanced {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
    position: relative;
    border: 2px solid var(--light-red);
}

.package-card.enhanced.featured {
    border: 3px solid var(--primary-red);
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 0, 0.2);
}

.package-card.enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.package-card.enhanced.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-red);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.package-badge.popular {
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-red));
    animation: pulse 2s infinite;
}

.package-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 30px 20px;
    text-align: center;
    position: relative;
}

.package-header h4 {
    margin: 0;
    font-weight: bold;
    font-size: 1.6rem;
}

.package-price {
    margin-top: 15px;
}

.package-price .currency {
    font-size: 1.2rem;
    vertical-align: top;
}

.package-price .amount {
    font-size: 2.5rem;
    font-weight: bold;
}

.package-body {
    padding: 30px 25px;
}

.package-description {
    color: var(--grey);
    margin-bottom: 25px;
    text-align: center;
    font-style: italic;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.package-features li {
    padding: 8px 0;
    color: var(--grey);
    display: flex;
    align-items: center;
}

.package-features li i {
    color: var(--positive-green);
    margin-right: 10px;
    font-size: 0.9rem;
}

.package-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--light-red);
}

.bv-info {
    background: var(--light-red);
    color: var(--primary-red);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.bv-info i {
    margin-right: 5px;
}

/* Dashboard Styles */
.dashboard-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-red);
}

.dashboard-card h5 {
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 15px;
}

.stats-card {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
}

.stats-card h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0;
}

/* Responsive font sizing for stats cards */
@media (min-width: 576px) {
    .stats-card h3 {
        font-size: 2rem;
    }
}

@media (min-width: 768px) {
    .stats-card h3 {
        font-size: 2.2rem;
    }
}

@media (min-width: 992px) {
    .stats-card h3 {
        font-size: 2.4rem;
    }
}

@media (min-width: 1200px) {
    .stats-card h3 {
        font-size: 2.6rem;
    }
}

@media (min-width: 1400px) {
    .stats-card h3 {
        font-size: 2.8rem;
    }
}

.stats-card p {
    margin: 5px 0 0 0;
    opacity: 0.9;
}

/* Tree Styles */
.tree-container {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.tree-node {
    background: var(--light-red);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    text-align: center;
    display: inline-block;
    min-width: 150px;
}

.tree-node.active {
    background: var(--primary-red);
    color: var(--white);
}

.tree-node h6 {
    margin: 0 0 5px 0;
    font-weight: bold;
}

.tree-node small {
    opacity: 0.8;
}

/* Form Styles */
.form-control:focus {
    border-color: var(--primary-red);
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.25);
}

.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 0, 0, 0.5);
}

/* Table Styles */
.table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.table thead th {
    background: var(--primary-red);
    color: var(--white);
    border: none;
    font-weight: 600;
}

.table tbody tr:hover {
    background-color: var(--light-red);
}

/* Footer */
.footer {
    background: var(--black) !important;
    color: var(--white);
    padding: 30px 0;
    margin-top: 50px;
}

.footer h5 {
    color: var(--primary-red);
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .brand-title {
        font-size: 20px;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-5px);
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide-in-left {
    animation: slideInLeft 0.5s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.slide-in-right {
    animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Star Level Cards */
.star-level-card {
    background: var(--white);
    border: 2px solid var(--light-red);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.star-level-card.active {
    border-color: var(--primary-red);
    background: var(--light-red);
    transform: scale(1.05);
}

.star-level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.star-level-card.active:hover {
    transform: scale(1.05) translateY(-5px);
}

.star-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 15px;
}

.star-level-card h4 {
    color: var(--black);
    font-weight: bold;
    margin-bottom: 10px;
}

.star-level-card .percentage {
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.star-level-card .fund {
    color: var(--grey);
    margin-bottom: 10px;
}

.star-level-card .requirement {
    background: var(--light-red);
    color: var(--primary-red);
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pool Cards */
.pool-card {
    background: var(--white);
    border: 2px solid var(--light-red);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.pool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.pool-header {
    background: var(--primary-red);
    color: var(--white);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
}

.pool-header h4 {
    margin: 0;
    font-weight: bold;
}

.pool-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.pool-stat {
    text-align: center;
    padding: 15px;
    background: var(--light-red);
    border-radius: 8px;
}

.pool-stat h5 {
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 5px;
}

.pool-stat p {
    margin: 0;
    color: var(--grey);
    font-size: 0.9rem;
}

/* Tree Styles */
.tree-level {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 20px 0;
}

.tree-node {
    background: var(--light-red);
    border: 2px solid var(--primary-red);
    border-radius: 8px;
    padding: 15px;
    margin: 10px;
    text-align: center;
    display: inline-block;
    min-width: 150px;
    transition: all 0.3s ease;
}

.tree-node:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tree-node.active {
    background: var(--primary-red);
    color: var(--white);
}

.tree-node h6 {
    margin: 0 0 5px 0;
    font-weight: bold;
}

.tree-node small {
    opacity: 0.8;
    display: block;
    margin: 2px 0;
}

/* Contact Page Styles */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-icon {
    background: var(--primary-red);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-details h5 {
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: var(--grey);
}

/* Services Page Styles */
.services-section {
    background: var(--light-grey);
}

.service-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--black);
    font-weight: bold;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--grey);
    margin: 0;
}

/* Utility Classes */
.min-vh-75 {
    min-height: 75vh;
}

.text-shadow {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.border-red {
    border-color: var(--primary-red) !important;
}

.bg-light-red {
    background-color: var(--light-red) !important;
}

/* Why Choose Us Section */
.why-choose-us-section {
    background: var(--soft-gray);
}

.benefit-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid var(--soft-gray);
}

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

.benefit-icon {
    font-size: 3rem;
    color: var(--healthcare-blue);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-card h5 {
    color: var(--primary-red);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--grey);
    margin: 0;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--white);
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border-left: 4px solid var(--primary-red);
}

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

.testimonial-content {
    margin-bottom: 25px;
}

.quote-icon {
    color: var(--primary-red);
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.8;
}

.testimonial-content p {
    color: var(--grey);
    font-style: italic;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.2rem;
}

.author-info h5 {
    margin: 0;
    color: var(--black);
    font-weight: bold;
}

.author-info span {
    color: var(--grey);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: var(--primary-red);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                      radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons .btn {
    margin: 5px;
    padding: 15px 35px;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

/* Enhanced Footer */
.footer {
    background: var(--secondary-red) !important;
    color: var(--white);
    padding: 50px 0 20px 0;
}

.footer-section {
    margin-bottom: 30px;
}

.footer-title {
    color: var(--white);
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer h5 {
    color: #080b01;
    font-weight: bold;
}

.footer-description {
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #f6f0af;
}

.footer-contact .contact-item i {
    color: var(--white);
    margin-right: 10px;
    width: 20px;
}

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

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #fde7e7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--secondary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    color: var(--white);
}

.footer-blessing {
    color: var(--white);
    font-weight: bold;
    font-size: 1.1rem;
}

.footer-divider {
    border-color: var(--grey);
    margin: 30px 0 20px 0;
}

.footer-copyright {
    color: #fffbfb;
}

.footer-links-inline {
    display: flex;
    gap: 20px;
}

.footer-links-inline a {
    color: #f5f1f1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links-inline a:hover {
    color: var(--white);
}

/* New Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        gap: 10px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .medical-illustration {
        width: 300px;
        height: 300px;
    }
    
    .main-circle {
        width: 150px;
        height: 150px;
    }
    
    .center-icon {
        font-size: 3rem;
    }
    
    .element {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-header {
        padding: 20px 20px 15px 20px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .footer-links-inline {
        flex-direction: column;
        gap: 10px;
    }
}
