.healthcare-hero, 
.healthcare-stats, 
.healthcare-marketing, 
.why-choose-harvee, 
.healthcare-cta, 
.healthcare-sectors, 
.healthcare-process {
    font-family: var(--regular);
}

/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
} */

.healthcare-hero {
    display: flex;
    min-height: 80vh;
    flex-wrap: wrap;
}

.healthcare-hero-left {
    flex: 1;
    background: radial-gradient(circle, rgba(203, 230, 255, 0.4) 0%, #F7F9FB 70%); /* #CBE6FF at 40% opacity to #F7F9FB at 100% opacity */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
}

.healthcare-hero-content {
    max-width: 600px;
}

.healthcare-hero-content h1 {
    font-size: 3rem;
    font-family: var(--bold);
    color: #004264; /* Exact dark blue from selection colors */
    margin-bottom: 20px;
    line-height: 1.2;
}

.healthcare-hero-content p {
    font-size: 1.125rem;
    color: #5F6C7B;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    background-color: #FBB43C; /* Golden/Orange */
    color: #000;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-family: var(--bold);
    font-size: 1rem;
    transition: transform 0.2s ease, background-color 0.2s ease;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background-color: #F0A52A;
    transform: translateY(-2px);
}

.healthcare-hero-right {
    flex: 1;
    background-color: #004264; /* Exact dark blue from selection colors */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    position: relative;
}

.healthcare-hero-image {
    width: 100%;
    max-width: 550px;
}

.healthcare-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 992px) {
    .healthcare-hero {
        flex-direction: column;
    }
    .healthcare-hero-left, .healthcare-hero-right {
        flex: none;
        width: 100%;
    }
    .healthcare-hero-content h1 {
        font-size: 2.2rem;
    }
    .healthcare-stats {
        flex-wrap: wrap;
    }
    .stat-item {
        width: 50%;
        margin-bottom: 30px;
    }
}

.healthcare-stats {
    background-color: #004264;
    padding: 50px 0;
    color: #fff;
    text-align: center;
}

.healthcare-stats .healthcare-stats-inner {
    display: flex;
    justify-content: space-around;
}

.stat-item {
    flex: 1;
    padding: 0 20px;
}

.stat-item h3, .stat-item h3 span {
    font-size: 2.5rem;
    font-family: var(--bold);
    margin: 0 0 10px 0;
    color: #ffffff;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.healthcare-marketing {
    padding: 80px 0;
    background-color: #ffffff;
}

.healthcare-marketing-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.marketing-content {
    flex: 1;
}

.marketing-content h2 {
    font-size: 3rem;
    color: #004264;
    font-family: var(--bold);
    margin-bottom: 30px;
    line-height: 1.2;
}

.marketing-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.marketing-image {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.marketing-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

@media (max-width: 991px) {
    .healthcare-marketing-inner {
        flex-direction: column;
    }
    .healthcare-marketing {
        padding: 60px 0;
    }
    
    .marketing-content h2 {
        font-size: 2.5rem;
    }
}

.why-choose-harvee {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: center;
}

.why-choose-header {
    margin-bottom: 60px;
}

.why-choose-header h2 {
    color: #004264;
    font-size: 2.5rem;
    font-family: var(--bold);
    margin-bottom: 15px;
}

.why-choose-header p {
    color: #555;
    font-size: 1.1rem;
}

.why-choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px 30px;
}

.why-choose-item {
    text-align: center;
    padding: 10px;
    width: calc(25% - 22.5px);
}

.why-choose-icon {
    margin-bottom: 25px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.why-choose-icon svg {
    width: 65px;
    height: 65px;
}

.why-choose-item h3 {
    color: #333;
    font-size: 1.25rem;
    font-family: var(--bold);
    margin-bottom: 15px;
    line-height: 1.4;
}

.why-choose-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1199px) {
    .why-choose-grid {
        gap: 50px 30px;
    }
    .why-choose-item {
        width: calc(33.333% - 20px);
    }
}

@media (max-width: 991px) {
    .why-choose-item {
        width: calc(50% - 15px);
    }
    .why-choose-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .why-choose-item {
        width: 100%;
    }
}

.healthcare-cta {
    padding: 80px 0;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
}

/* .cta-container {
    width: 100%;    
    max-width: 1000px;
} */

.cta-card {
    background-color: #f9fbfd;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.cta-card h2 {
    color: #004264;
    font-size: 2.5rem;
    font-family: var(--bold);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-card p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 35px;
}

.btn-secondary {
    display: inline-block;
    background-color: #fca835;
    color: #000000;
    font-family: var(--semibold);
    font-size: 1.1rem;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #e59325;
}

@media (max-width: 991px) {
    .cta-card {
        padding: 40px 20px;
    }
    .cta-card h2 {
        font-size: 2rem;
    }
}

.healthcare-sectors {
    padding: 80px 0;
    background-color: #e5edf3;
    text-align: center;
}

.sectors-header {
    margin-bottom: 50px;
}

.sectors-header h2 {
    color: #004264;
    font-size: 2.2rem;
    font-family: var(--bold);
    margin-bottom: 10px;
}

.sectors-header p {
    color: #555;
    font-size: 1.1rem;
}

.sectors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.sector-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.sector-icon {
    margin-bottom: 15px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sector-icon svg {
    width: 40px;
    height: 40px;
}

.sector-card h3 {
    color: #004264;
    font-size: 1.1rem;
    font-family: var(--bold);
    margin: 0;
}

@media (max-width: 991px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .sectors-grid {
        grid-template-columns: 1fr;
    }
}

.healthcare-process {
    padding: 80px 0;
    background-color: #f4f7f9;
    text-align: center;
}

.process-header {
    margin-bottom: 50px;
}

.process-header h2 {
    color: #004264;
    font-size: 2.2rem;
    font-family: var(--bold);
    margin-bottom: 10px;
}

.process-header p {
    color: #555;
    font-size: 1.1rem;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

.process-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: left;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.process-icon {
    width: 40px;
    height: 40px;
    background-color: #004264;
    color: #ffffff;
    font-size: 1.2rem;
    font-family: var(--bold);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    margin-bottom: 20px;
}

.process-card h3 {
    color: #333;
    font-size: 1.1rem;
    font-family: var(--semibold);
    margin-bottom: 10px;
}

.process-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1199px) {
    .process-grid, .process-grid1 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .process-grid, .process-grid1 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .process-grid, .process-grid1 {
        grid-template-columns: 1fr;
    }
}

/* Healthcare Marketing Section */
.healthcare-marketing {
    padding: 80px 0;
    background-color: #f5f7f9;
}

.healthcare-marketing-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.healthcare-marketing .marketing-image {
    flex: 1;
}

.healthcare-marketing .marketing-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.healthcare-marketing .marketing-content {
    flex: 1;
}

.marketing-content h2 {
    font-size: 2.2rem;
    color: #002c4b;
    font-family: var(--bold, sans-serif);
    margin-bottom: 20px;
    line-height: 1.3;
}

.marketing-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.marketing-features {
    margin-top: 40px;
}

.marketing-features h3 {
    font-size: 1.4rem;
    color: #002c4b;
    font-family: var(--bold, sans-serif);
    margin-bottom: 25px;
}

.marketing-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.feature-item {
    background: #fff;
    padding: 25px 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.feature-item svg {
    margin-bottom: 15px;
    width: 32px;
    height: 32px;
}

.feature-item span {
    font-size: 0.95rem;
    color: #002c4b;
    font-family: var(--bold, sans-serif);
    line-height: 1.4;
}

@media (max-width: 991px) {
    .healthcare-marketing-inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .marketing-features-grid {
        grid-template-columns: 1fr;
    }
}


.marketing-image1{
    box-shadow: 0 0 0 0;
}

/* How We Grow Section */
.how-we-grow {
    padding: 80px 0;
    background-color: #fafcfc;
}

.how-we-grow-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.how-we-grow-header h2 {
    font-size: 2.2rem;
    color: #002c4b;
    font-family: var(--bold, sans-serif);
    margin-bottom: 20px;
}

.how-we-grow-header p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.how-we-grow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.grow-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.grow-card-icon {
    width: 50px;
    height: 50px;
    background-color: #f0f6fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.grow-card h3 {
    font-size: 1.3rem;
    color: #002c4b;
    font-family: var(--bold, sans-serif);
    margin-bottom: 15px;
    line-height: 1.3;
}

.grow-card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 70px;
}

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

.grow-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 15px;
}

.grow-list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    width: 12px;
    height: 12px;
}

@media (max-width: 1199px) {
    .how-we-grow-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .grow-card-desc {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .how-we-grow-grid {
        grid-template-columns: 1fr;
    }
    .how-we-grow-header h2 {
        font-size: 1.8rem;
    }
}

/* Healthcare Digital Marketing Services */
.healthcare-services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-header h2 {
    font-size: 2.2rem;
    color: #002c4b;
    font-family: var(--bold, sans-serif);
    margin-bottom: 20px;
    line-height: 1.3;
}

.services-header p {
    font-size: 1.05rem;
    color: #666;
    line-height: 1.6;
}

.services-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 20px;
}

.service-card {
    text-align: center;
    padding: 10px;
}

.service-card .service-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    font-size: 1.15rem;
    color: #002c4b;
    font-family: var(--bold, sans-serif);
    margin-bottom: 15px;
    line-height: 1.4;
}

.service-card p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
}

.service-card.bottom-card {
    grid-column: span 2;
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .services-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .service-card.bottom-card {
        grid-column: span 1;
        max-width: none;
    }
}

@media (max-width: 575px) {
    .services-grid-wrapper {
        grid-template-columns: 1fr;
    }
}