:root {
    --primary: #2667f0;
    --primary-dark: #1a52cc;
    --primary-light: #e6ecff;
    --accent: #4ade80;
    --text-dark: #1a2347;
    --text-light: #2d3748;
    --background: #f9fbff;
    --white: #fff;
    --shadow: rgba(38, 103, 240, 0.2)
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--background);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden
}

.medeasy-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background) 0, #f9fafc 100%);
    padding: 40px 20px
}

.medeasy-3d-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden
}

.medeasy-3d-shape {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 103, 240, 0.15) 0, transparent 70%);
    box-shadow: 0 10px 20px var(--shadow);
    animation: float3d 18s infinite ease-in-out;
    opacity: .7;
    transform-style: preserve-3d
}

.medeasy-3d-shape:nth-child(1) {
    width: 350px;
    height: 350px;
    top: -100px;
    left: -100px;
    animation-delay: 0
}

.medeasy-3d-shape:nth-child(2) {
    width: 250px;
    height: 250px;
    bottom: 50px;
    right: 50px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.15) 0, transparent 70%);
    animation-delay: -3s;
    animation-duration: 22s
}

.medeasy-3d-shape:nth-child(3) {
    width: 180px;
    height: 180px;
    top: 25%;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.25) 0, transparent 70%);
    animation-delay: -6s;
    animation-duration: 20s
}

.medeasy-3d-shape:nth-child(4) {
    width: 450px;
    height: 450px;
    bottom: -150px;
    left: -150px;
    animation-delay: -9s;
    animation-duration: 25s
}

@keyframes float3d {
    0 {
        transform: translate(0, 0) rotate(0) translateZ(0)
    }

    33% {
        transform: translate(60px, 60px) rotate(10deg) translateZ(20px)
    }

    66% {
        transform: translate(-40px, 80px) rotate(-10deg) translateZ(10px)
    }

    100% {
        transform: translate(0, 0) rotate(0) translateZ(0)
    }
}

.medeasy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 40%, rgba(38, 103, 240, 0.1) 0, transparent 60%);
    z-index: 0
}

.medeasy-container {
    max-width: 1250px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    position: relative;
    z-index: 1
}

.medeasy-hero-content {
    flex: 1;
    max-width: 600px;
    padding-right: 60px;
    animation: slideInLeft 1.2s ease-out;
    z-index: 1000 !important
}

.medeasy-badge {
    display: inline-flex;
    align-items: center;
    background-color: var(--primary-light);
    color: var(--primary);
    font-weight: 600;
    font-size: .9rem;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    animation: fadeIn 1s ease-out .3s both
}

.medeasy-badge i {
    margin-right: 8px;
    transition: transform .3s ease
}

.medeasy-badge:hover i {
    transform: scale(1.2)
}

.medeasy-hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 24px;
    animation: fadeInUp 1s ease-out .4s both
}

.medeasy-highlight {
    color: var(--primary);
    position: relative;
    z-index: 100 !important
}

.medeasy-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    z-index: -1;
    transform: translateY(2px) skewX(-5deg);
    transition: transform .3s ease
}

.medeasy-highlight:hover::after {
    transform: translateY(0) skewX(0)
}

.medeasy-hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
    animation: fadeInUp 1s ease-out .5s both
}

.medeasy-hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out .6s both;
    z-index: 500 !important
}

.medeasy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d
}

.medeasy-btn i {
    margin-right: 10px;
    transition: transform .3s ease
}

.medeasy-btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: 0;
    box-shadow: 0 10px 25px var(--shadow);
    transform: translateZ(0)
}

.medeasy-btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-4px) translateZ(10px) scale(1.05);
    box-shadow: 0 15px 30px var(--shadow);
    color: var(--white)
}

.medeasy-btn-primary:hover i {
    transform: translateX(6px)
}

.medeasy-btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: left .3s ease
}

.medeasy-btn-primary:hover::after {
    left: 100%
}

.medeasy-btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary-light)
}

.medeasy-btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-4px) translateZ(10px) scale(1.05)
}

.medeasy-btn-secondary:hover i {
    transform: scale(1.2)
}

.medeasy-hero-social-proof {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 12px;
    max-width: 90%;
    box-shadow: 0 8px 24px var(--shadow);
    animation: fadeInUp 1s ease-out .7s both;
    transition: transform .3s ease;
    transform-style: preserve-3d
}

.medeasy-hero-social-proof:hover {
    transform: translateY(-6px) translateZ(15px)
}

.medeasy-social-proof-title {
    font-size: .9rem;
    color: var(--text-light);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px
}

.medeasy-testimonial {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 12px
}

.medeasy-testimonial-author {
    font-size: .9rem;
    color: var(--text-light)
}

.medeasy-hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out .8s both
}

.medeasy-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.8);
    padding: 10px 15px;
    border-radius: 50px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all .3s ease;
    transform-style: preserve-3d
}

.medeasy-feature-item:hover {
    transform: translateY(-4px) translateZ(10px);
    box-shadow: 0 8px 20px rgba(74, 222, 128, 0.25)
}

.medeasy-feature-item i {
    color: var(--accent);
    font-size: 1.2rem;
    transition: transform .3s ease
}

.medeasy-feature-item:hover i {
    transform: scale(1.3) rotate(5deg)
}

.medeasy-hero-visual {
    flex: 1;
    max-width: 570px !important;
    position: relative;
    animation: slideInRight 1.2s ease-out;
    perspective: 1200px
}

.medeasy-medical-illustration {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 40px var(--shadow);
    transition: transform .5s ease, box-shadow .5s ease;
    transform-style: preserve-3d;
    transform: rotateY(-8deg) rotateX(4deg) translateZ(20px)
}

.medeasy-medical-illustration:hover {
    transform: rotateY(0) rotateX(0) translateY(-12px) translateZ(30px) scale(1.03);
    box-shadow: 0 30px 60px var(--shadow)
}

.medeasy-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 100
}

.medeasy-floating-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 30px var(--shadow);
    color: var(--primary);
    animation: float3dIcon 7s ease-in-out infinite;
    transition: all .4s ease;
    transform-style: preserve-3d;
    transform: translateZ(25px)
}

.medeasy-floating-icon:hover {
    transform: translateZ(40px) scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px var(--shadow)
}

.medeasy-floating-icon i {
    font-size: 2rem;
    transition: transform .4s ease
}

.medeasy-floating-icon:hover i {
    transform: rotate(20deg) scale(1.3)
}

@keyframes float3dIcon {
    0 {
        transform: translateZ(25px) translateY(0) rotate(0)
    }

    50% {
        transform: translateZ(40px) translateY(-25px) rotate(8deg)
    }

    100% {
        transform: translateZ(25px) translateY(0) rotate(0)
    }
}

.medeasy-floating-icon:nth-child(1) {
    top: 8%;
    left: -8%;
    animation-delay: 0;
    background: rgba(74, 222, 128, 0.2);
    color: var(--accent)
}

.medeasy-floating-icon:nth-child(2) {
    bottom: 12%;
    left: -5%;
    animation-delay: -2.5s;
    background: rgba(255, 255, 255, 0.95)
}

.medeasy-floating-icon:nth-child(3) {
    top: 15%;
    right: -8%;
    animation-delay: -1.5s;
    background: rgba(38, 103, 240, 0.2)
}

.medeasy-floating-icon:nth-child(4) {
    bottom: 20%;
    right: -10%;
    animation-delay: -3.5s;
    background: rgba(255, 255, 255, 0.95)
}

.medeasy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.medeasy-particle {
    position: absolute;
    background-color: rgba(38, 103, 240, 0.15);
    border-radius: 50%;
    animation: particle-float linear infinite;
    box-shadow: 0 0 10px rgba(38, 103, 240, 0.2)
}

@keyframes particle-float {
    0 {
        transform: translateY(0) rotate(0);
        opacity: 0
    }

    10% {
        opacity: .8
    }

    90% {
        opacity: .8
    }

    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

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

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@media(max-width:1200px) {
    .medeasy-hero-title {
        font-size: 3rem
    }

    .medeasy-hero-content {
        padding-right: 40px
    }
}

@media(max-width:1024px) {
    .medeasy-container {
        flex-direction: column;
        text-align: center;
        padding: 20px
    }

    .medeasy-hero-content {
        max-width: 100%;
        padding: 0;
        margin-bottom: 40px
    }

    .medeasy-hero-visual {
        max-width: 80%
    }

    .medeasy-hero-title {
        font-size: 2.6rem
    }

    .medeasy-hero-subtitle,
    .medeasy-hero-social-proof {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto
    }

    .medeasy-hero-buttons {
        justify-content: center
    }

    .medeasy-hero-features {
        justify-content: center
    }

    .medeasy-floating-icon {
        width: 55px;
        height: 55px
    }

    .medeasy-floating-icon i {
        font-size: 1.8rem
    }
}

@media(max-width:768px) {
    .medeasy-hero-title {
        font-size: 2.2rem
    }

    .medeasy-hero-subtitle {
        font-size: 1.1rem
    }

    .medeasy-btn {
        padding: 14px 28px;
        font-size: 1rem
    }

    .medeasy-hero-buttons {
        flex-direction: column;
        gap: 16px
    }

    .medeasy-hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px
    }

    .medeasy-hero-visual {
        max-width: 100%
    }

    .medeasy-floating-icon {
        width: 45px;
        height: 45px
    }

    .medeasy-floating-icon i {
        font-size: 1.5rem
    }

    .medeasy-medical-illustration {
        transform: rotateY(-5deg) rotateX(2deg) translateZ(10px)
    }

    .medeasy-medical-illustration:hover {
        transform: rotateY(0) rotateX(0) translateY(-8px) translateZ(15px) scale(1.02)
    }
}

@media(max-width:480px) {
    .medeasy-hero-title {
        font-size: 1.8rem
    }

    .medeasy-container {
        padding: 15px
    }

    .medeasy-3d-shape:nth-child(1) {
        width: 250px;
        height: 250px
    }

    .medeasy-3d-shape:nth-child(4) {
        width: 300px;
        height: 300px
    }
}

@keyframes particle-float {
    0 {
        transform: translateY(0) rotate(0);
        opacity: 0
    }

    10% {
        opacity: .8
    }

    50% {
        transform: translateY(-60vh) rotate(180deg)
    }

    90% {
        opacity: .8
    }

    100% {
        transform: translateY(-120vh) rotate(360deg);
        opacity: 0
    }
}

@keyframes float3dIcon {
    0 {
        transform: translateZ(25px) translateY(0) rotate(0)
    }

    50% {
        transform: translateZ(40px) translateY(-25px) rotate(360deg)
    }

    100% {
        transform: translateZ(25px) translateY(0) rotate(0)
    }
}

@keyframes rotate3dShape {
    0 {
        transform: rotate(0)
    }

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

.medeasy-3d-shape {
    animation: float3d 18s infinite ease-in-out, rotate3dShape 3=10s infinite linear
}

.medeasy-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: width .4s ease, height .4s ease, opacity .4s ease
}

.medeasy-btn:hover::before {
    width: 200%;
    height: 200%;
    opacity: 0
}

.medeasy-hero-content {
    animation: slideInLeft 1.2s ease-out, fadeIn 1.5s ease-out
}

.medeasy-hero-visual {
    animation: slideInRight 1.2s ease-out, fadeIn 1.5s ease-out
}

.trusted-by {
    padding: 3rem 0;
    background-color: var(--lighter-gray) !
}

.trusted-by .section-label {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    font-size: .875rem;
    text-transform: uppercase;
    letter-spacing: 1px
}

.trusted-by .logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem
}

.trusted-by .logos img {
    width: 120px;
    height: 70px;
    object-fit: contain;
    opacity: .7;
    transition: opacity .3s ease;
    margin: 0 auto;
    display: block
}

.trusted-by .logos img:hover {
    opacity: 1
}

@media(max-width:992px) {
    .trusted-by .logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem
    }
}

@media(max-width:576px) {
    .trusted-by .logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem
    }

    .trusted-by .logos img {
        width: 100px;
        height: 25px
    }
}

.solutions {
    padding: 80px 0;
    background-color: #f9fafc
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px
}

.section-header h2 span {
    color: #286efb
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: -1;
    border-radius: 3px
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px
}

.solution-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.03);
    transition: all .3s ease;
    border: 1px solid #e2e8f0;
    position: relative
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(40, 110, 251, 0.1);
    border-color: rgba(40, 110, 251, 0.3)
}

.solution-card.featured {
    border-color: #286efb;
    box-shadow: 0 4px 15px rgba(40, 110, 251, 0.15)
}

.recommended-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #286efb;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 2px 5px rgba(40, 110, 251, 0.3)
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background-color: rgba(40, 110, 251, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: #286efb;
    font-size: 24px
}

.solution-card.featured .card-icon {
    background-color: rgba(40, 110, 251, 0.2)
}

.solution-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px
}

.solution-card p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px
}

.solution-card ul {
    margin-bottom: 25px;
    padding-left: 0
}

.solution-card ul li {
    margin-bottom: 10px;
    color: #475569;
    font-size: 15px;
    display: flex;
    align-items: flex-start
}

.solution-card ul li i {
    color: #286efb;
    margin-right: 10px;
    font-size: 14px;
    margin-top: 3px
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all .2s ease;
    text-decoration: none
}

.btn-primary {
    background-color: #286efb;
    color: white;
    border: 1px solid #286efb
}

.btn-primary:hover {
    background-color: #1d5ed8;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(40, 110, 251, 0.3)
}

.btn-outline {
    color: #286efb;
    border: 1px solid #cbd5e1
}

.btn-outline:hover {
    background-color: rgba(40, 110, 251, 0.05);
    border-color: rgba(40, 110, 251, 0.3);
    transform: translateY(-2px)
}

.btn i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform .2s ease
}

.btn:hover i {
    transform: translateX(3px)
}

@media(max-width:992px) {
    .solutions {
        padding: 60px 0
    }

    .solutions-grid {
        gap: 20px
    }
}

@media(max-width:768px) {
    .section-header {
        margin-bottom: 40px
    }

    .section-header h2 {
        font-size: 28px
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto
    }
}

@media(max-width:480px) {
    .solutions {
        padding: 50px 0
    }

    .section-header h2 {
        font-size: 24px
    }

    .solution-card {
        padding: 25px
    }
}

.ai-features {
    padding: 80px 0;
    background-color: white;
    position: relative
}

.ai-features::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    z-index: 0
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px
}

.section-header h2 span {
    color: #286efb
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: -1;
    border-radius: 3px
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px
}

.ai-feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.7);
    z-index: 1
}

.ai-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 110, 251, 0.03) 0, rgba(40, 110, 251, 0.01) 100%);
    z-index: -1
}

.ai-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(40, 110, 251, 0.1);
    border-color: rgba(40, 110, 251, 0.3)
}

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(40, 110, 251, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    transition: all .3s ease
}

.feature-icon i {
    font-size: 32px;
    color: #286efb;
    z-index: 2
}

.icon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(40, 110, 251, 0.2);
    border-radius: 50%;
    z-index: 1;
    opacity: 0;
    transform: scale(0.8);
    animation: pulse 3s infinite
}

@keyframes pulse {
    0 {
        transform: scale(0.8);
        opacity: 0
    }

    50% {
        opacity: .4
    }

    100% {
        transform: scale(1.4);
        opacity: 0
    }
}

.ai-feature-card:hover .feature-icon {
    background-color: rgba(40, 110, 251, 0.2);
    transform: scale(1.1)
}

.ai-feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
    text-align: center;
    transition: all .3s ease
}

.ai-feature-card p {
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.6;
    font-size: 15px;
    text-align: center;
    transition: all .3s ease
}

.feature-hover-content {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px 30px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, white 100%);
    opacity: 0;
    transition: all .4s ease
}

.ai-feature-card:hover .feature-hover-content {
    bottom: 0;
    opacity: 1
}

.feature-link {
    display: inline-flex;
    align-items: center;
    color: #286efb;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease
}

.feature-link i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform .3s ease
}

.feature-link:hover {
    color: #1d5ed8
}

.feature-link:hover i {
    transform: translateX(4px)
}

@media(max-width:1024px) {
    .ai-features {
        padding: 70px 0
    }

    .ai-features-grid {
        gap: 20px
    }
}

@media(max-width:768px) {
    .ai-features {
        padding: 60px 0
    }

    .section-header {
        margin-bottom: 40px
    }

    .section-header h2 {
        font-size: 28px
    }
}

@media(max-width:480px) {
    .ai-features {
        padding: 50px 0
    }

    .section-header h2 {
        font-size: 24px
    }

    .ai-feature-card {
        padding: 25px
    }

    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px
    }

    .feature-icon i {
        font-size: 28px
    }
}

.case-studies {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg0MCwgMTEwLCAyNTEsIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: .3;
    z-index: 0
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px
}

.section-header h2 span {
    color: #286efb;
    position: relative
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: -1;
    border-radius: 3px
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

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

.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(40, 110, 251, 0.15)
}

.card-hover-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 75% 30%, rgba(40, 110, 251, 0.08) 0, transparent 50%);
    opacity: 0;
    transition: all .4s ease;
    z-index: -1
}

.case-study-card:hover .card-hover-effect {
    opacity: 1
}

.case-study-image {
    position: relative;
    height: 250px;
    overflow: hidden
}

.case-study-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

.case-study-card:hover .case-study-image img {
    transform: scale(1.1)
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0, rgba(0, 0, 0, 0.4) 100%)
}

.results-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px;
    display: flex;
    justify-content: space-around;
    color: white;
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2
}

.case-study-card:hover .results-overlay {
    transform: translateY(0)
}

.result-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s ease;
    transition-delay: .1s
}

.case-study-card:hover .result-item {
    opacity: 1;
    transform: translateY(0)
}

.result-item h4 {
    font-size: 20px;
    margin-bottom: 5px;
    color: white;
    font-weight: 600
}

.result-item p {
    font-size: 12px;
    margin: 0;
    opacity: .8;
    font-weight: 500
}

.case-study-content {
    padding: 25px;
    position: relative
}

.case-study-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1e293b;
    font-weight: 600
}

.practice-type {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
    display: block
}

.challenge {
    font-style: italic;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 15px;
    position: relative;
    padding-left: 20px
}

.challenge::before {
    content: '"';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    color: #286efb;
    opacity: .3;
    line-height: 1
}

.solution-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px
}

.solution-highlights span {
    background-color: rgba(40, 110, 251, 0.1);
    color: #286efb;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all .3s ease;
    text-decoration: none
}

.btn-primary {
    background-color: #286efb;
    color: white;
    border: 1px solid #286efb
}

.btn-primary:hover {
    background-color: #1d5ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 110, 251, 0.3)
}

.btn-outline {
    color: #286efb;
    border: 1px solid #cbd5e1
}

.btn-outline:hover {
    background-color: rgba(40, 110, 251, 0.05);
    border-color: rgba(40, 110, 251, 0.3);
    transform: translateY(-2px)
}

.btn i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform .3s ease
}

.btn:hover i {
    transform: translateX(3px)
}

.case-studies-cta {
    text-align: center;
    margin-top: 50px
}

.case-studies-cta p {
    margin-bottom: 15px;
    color: #64748b;
    font-size: 16px
}

@media(max-width:1024px) {
    .case-studies {
        padding: 70px 0
    }

    .case-studies-grid {
        gap: 25px
    }
}

@media(max-width:768px) {
    .case-studies {
        padding: 60px 0
    }

    .section-header {
        margin-bottom: 40px
    }

    .section-header h2 {
        font-size: 28px
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0
    }
}

@media(max-width:480px) {
    .case-studies {
        padding: 50px 0
    }

    .section-header h2 {
        font-size: 24px
    }

    .case-study-image {
        height: 220px
    }

    .results-overlay {
        flex-direction: column;
        gap: 15px;
        padding: 15px
    }

    .result-item {
        text-align: left
    }

    .case-study-content {
        padding: 20px
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.case-study-card:nth-child(1) {
    animation: fadeInUp .6s ease forwards
}

.case-study-card:nth-child(2) {
    animation: fadeInUp .6s ease .1s forwards
}

.case-study-card:nth-child(3) {
    animation: fadeInUp .6s ease .2s forwards
}

.testimonials {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg0MCwgMTEwLCAyNTEsIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: .3;
    z-index: 0
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px
}

.section-header h2 span {
    color: #286efb;
    position: relative
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: -1;
    border-radius: 3px
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 0 40px
}

.glide__slides {
    padding: 20px 0
}

.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all .4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.7)
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(40, 110, 251, 0.1)
}

.testimonial-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(40, 110, 251, 0.1);
    font-size: 60px;
    line-height: 1;
    z-index: 0
}

.testimonial-rating {
    color: #f59e0b;
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    z-index: 1
}

.testimonial-rating i {
    margin-right: 3px
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #475569;
    margin-bottom: 30px;
    line-height: 1.7;
    position: relative;
    z-index: 1
}

.testimonial-author {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid rgba(40, 110, 251, 0.1)
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 5px
}

.author-info span {
    font-size: 14px;
    color: #64748b
}

.glide__arrows {
    position: absolute;
    top: 50%;
    width: calc(100%+80px);
    left: -40px;
    display: flex;
    justify-content: space-between;
    z-index: 2
}

.glide__arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #286efb;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s ease;
    display: flex;
    align-items: center;
    justify-content: center
}

.glide__arrow:hover {
    background: #286efb;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(40, 110, 251, 0.3)
}

.glide__bullets {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px
}

.glide__bullet {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #cbd5e1;
    border: 0;
    cursor: pointer;
    transition: all .3s ease;
    padding: 0
}

.glide__bullet:hover,
.glide__bullet--active {
    background-color: #286efb;
    transform: scale(1.2)
}

@media(max-width:1024px) {
    .testimonials {
        padding: 70px 0
    }

    .testimonial-slider {
        padding: 0 30px
    }

    .testimonial-card {
        padding: 30px
    }
}

@media(max-width:768px) {
    .testimonials {
        padding: 60px 0
    }

    .section-header {
        margin-bottom: 40px
    }

    .section-header h2 {
        font-size: 28px
    }

    .testimonial-text {
        font-size: 16px
    }

    .glide__arrow {
        width: 40px;
        height: 40px;
        font-size: 14px
    }
}

@media(max-width:480px) {
    .testimonials {
        padding: 50px 0
    }

    .section-header h2 {
        font-size: 24px
    }

    .testimonial-slider {
        padding: 0 15px
    }

    .testimonial-card {
        padding: 25px
    }

    .testimonial-text {
        font-size: 15px;
        margin-bottom: 20px
    }

    .glide__arrows {
        display: none
    }
}

#pricing {
    background-color: #f9fafc;
    position: relative
}

.integrations {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden
}

.integrations::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSg0MCwgMTEwLCAyNTEsIDAuMDMpIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI3BhdHRlcm4pIi8+PC9zdmc+');
    opacity: .3;
    z-index: 0
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px
}

.section-header h2 span {
    color: #286efb;
    position: relative
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(40, 110, 251, 0.15);
    z-index: -1;
    border-radius: 3px
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

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

.integration-card {
    perspective: 1000px;
    height: 140px
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .6s;
    transform-style: preserve-3d;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 232, 240, 0.7)
}

.integration-card:hover .card-inner {
    transform: rotateY(180deg)
}

.integration-card img {
    height: 40px;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(0.8);
    opacity: .8;
    transition: all .3s ease;
    backface-visibility: hidden
}

.integration-card span {
    font-weight: 500;
    color: #334155;
    font-size: 14px;
    text-align: center;
    backface-visibility: hidden
}

.integration-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #286efb 0, #1d5ed8 100%);
    color: white;
    border-radius: 12px;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    text-align: center
}

.integration-hover p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0
}

.integrations-cta {
    text-align: center;
    margin-top: 40px
}

.integrations-cta p {
    margin-bottom: 15px;
    color: #64748b;
    font-size: 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all .3s ease;
    text-decoration: none
}

.btn-outline {
    color: #286efb;
    border: 1px solid #cbd5e1
}

.btn-outline:hover {
    background-color: rgba(40, 110, 251, 0.05);
    border-color: rgba(40, 110, 251, 0.3);
    transform: translateY(-2px)
}

.btn i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform .3s ease
}

.btn:hover i {
    transform: translateX(3px)
}

@media(max-width:1024px) {
    .integrations {
        padding: 70px 0
    }

    .integrations-grid {
        gap: 20px
    }
}

@media(max-width:768px) {
    .integrations {
        padding: 60px 0
    }

    .section-header {
        margin-bottom: 40px
    }

    .section-header h2 {
        font-size: 28px
    }

    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr))
    }
}

@media(max-width:480px) {
    .integrations {
        padding: 50px 0
    }

    .section-header h2 {
        font-size: 24px
    }

    .integrations-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px
    }

    .card-inner {
        padding: 15px
    }

    .integration-card img {
        height: 30px;
        margin-bottom: 10px
    }

    .integration-card span {
        font-size: 12px
    }
}

.integrations {
    padding: 80px 0;
    background-color: #fff;
    position: relative
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px
}

.section-header h2 span {
    color: #286efb;
    position: relative
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    z-index: -1;
    border-radius: 3px
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px
}

.integration-card {
    perspective: 1000px;
    height: 140px
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all .4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(226, 232, 240, 0.7)
}

.integration-card:hover .card-inner {
    transform: translateY(-10px) rotateY(180deg);
    box-shadow: 0 15px 30px rgba(40, 110, 251, 0.1)
}

.integration-card img {
    height: 40px;
    margin-bottom: 15px;
    filter: grayscale(100%) brightness(0.8);
    opacity: .8;
    transition: all .3s ease;
    backface-visibility: hidden
}

.integration-card span {
    font-weight: 500;
    color: #334155;
    font-size: 14px;
    text-align: center;
    backface-visibility: hidden
}

.integration-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #286efb 0, #1d5ed8 100%);
    color: white;
    border-radius: 12px;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    text-align: center;
    opacity: 0;
    transition: opacity .3s ease
}

.integration-card:hover .integration-hover {
    opacity: 1
}

.integration-hover p {
    font-size: 14px;
    line-height: 1.5;
    margin: 0
}

.integrations-cta {
    text-align: center;
    margin-top: 40px
}

.integrations-cta p {
    margin-bottom: 15px;
    color: #64748b;
    font-size: 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    transition: all .3s ease;
    text-decoration: none
}

.btn-outline {
    color: #286efb;
    border: 1px solid #cbd5e1
}

.btn-outline:hover {
    background-color: rgba(40, 110, 251, 0.05);
    border-color: rgba(40, 110, 251, 0.3);
    transform: translateY(-2px)
}

.btn i {
    margin-left: 8px;
    font-size: 12px;
    transition: transform .3s ease
}

.btn:hover i {
    transform: translateX(3px)
}

@media(max-width:1024px) {
    .integrations {
        padding: 70px 0
    }

    .integrations-grid {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:768px) {
    .integrations {
        padding: 60px 0
    }

    .section-header {
        margin-bottom: 40px
    }

    .section-header h2 {
        font-size: 28px
    }

    .integrations-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .integrations {
        padding: 50px 0
    }

    .section-header h2 {
        font-size: 24px
    }

    .integrations-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .card-inner {
        padding: 15px
    }

    .integration-card img {
        height: 30px;
        margin-bottom: 10px
    }

    .integration-card span {
        font-size: 12px
    }
}

.faq {
    padding: 80px 0;
    background-color: #fff;
    position: relative
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f9fafc;
    opacity: .3;
    z-index: 0
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px
}

.section-header h2 span {
    color: #286efb;
    position: relative
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background-color: rgba(40, 110, 251, 0.15);
    z-index: -1;
    border-radius: 3px
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.7);
    transition: all .3s ease
}

.faq-item:hover {
    box-shadow: 0 10px 25px rgba(40, 110, 251, 0.1)
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: 0;
    border: 0;
    font-weight: 600;
    font-size: 18px;
    color: #1e293b;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all .3s ease
}

.faq-question:hover {
    color: #286efb
}

.faq-question span {
    flex: 1;
    text-align: left
}

.faq-icon {
    width: 24px;
    height: 24px;
    margin-left: 15px;
    position: relative
}

.faq-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #286efb;
    transition: all .3s ease
}

.faq-icon i.fa-minus {
    opacity: 0
}

.faq-question.active .faq-icon i.fa-plus {
    opacity: 0
}

.faq-question.active .faq-icon i.fa-minus {
    opacity: 1
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s cubic-bezier(0.175, 0.885, 0.32, 1.275)
}

.faq-answer p {
    padding: 0 25px 25px;
    color: #64748b;
    line-height: 1.7;
    margin: 0
}

.faq-item.active .faq-answer {
    max-height: 500px
}

.faq-cta {
    text-align: center;
    margin-top: 40px
}

.faq-cta p {
    margin-bottom: 15px;
    color: #64748b;
    font-size: 16px
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 16px;
    transition: all .3s ease;
    text-decoration: none
}

.btn-primary {
    background-color: #286efb;
    color: white;
    border: 1px solid #286efb
}

.btn-primary:hover {
    background-color: #1d5ed8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(40, 110, 251, 0.3)
}

.btn i {
    margin-left: 8px;
    font-size: 14px;
    transition: transform .3s ease
}

.btn:hover i {
    transform: translateX(3px)
}

@media(max-width:1024px) {
    .faq {
        padding: 70px 0
    }

    .faq-grid {
        gap: 20px
    }
}

@media(max-width:768px) {
    .faq {
        padding: 60px 0
    }

    .section-header {
        margin-bottom: 40px
    }

    .section-header h2 {
        font-size: 28px
    }

    .faq-grid {
        grid-template-columns: 1fr
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px
    }

    .faq-answer p {
        padding: 0 20px 20px
    }
}

@media(max-width:480px) {
    .faq {
        padding: 50px 0
    }

    .section-header h2 {
        font-size: 24px
    }

    .faq-column {
        gap: 15px
    }
}

.features {
    padding: 80px 0;
    position: relative;
    background-color: #fff
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111827
}

.section-header h2 span {
    color: #286efb
}

.section-header .section-subtitle {
    font-size: 18px;
    color: #4b5563;
    max-width: 700px;
    margin: 0 auto !important
}

.features-tabs {
    background-color: #f9fafc;
    border-radius: 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
    padding: 0 20px
}

.tab-btn {
    padding: 20px 25px;
    font-weight: 500;
    background: 0;
    border: 0;
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    color: #6b7280;
    transition: all .3s ease;
    font-size: 16px
}

.tab-btn:hover {
    color: #286efb
}

.tab-btn:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #286efb;
    transform: scaleX(0);
    transition: all .3s ease
}

.tab-btn.active {
    color: #286efb
}

.tab-btn.active:after {
    transform: scaleX(1)
}

.tabs-content {
    padding: 20px
}

.tab-pane {
    display: none
}

.tab-pane.active {
    display: block
}

.tab-content {
    display: flex;
    padding: 30px;
    gap: 30px
}

.tab-image {
    flex: 1;
    position: relative;
    min-height: 300px
}

.tab-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)
}

.feature-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: #fff;
    padding: 12px 20px;
    border-radius: 9999px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    z-index: 10
}

.feature-badge i {
    color: #286efb
}

.tab-text {
    flex: 1
}

.tab-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #111827
}

.tab-text p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.6
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px
}

.feature-list li {
    display: flex;
    gap: 15px
}

.feature-list i {
    color: #286efb;
    font-size: 20px;
    margin-top: 4px
}

.feature-list h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #111827
}

.feature-list p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 0
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s ease;
    font-size: 16px
}

.btn-outline {
    color: #286efb;
    border: 1px solid #286efb;
    background-color: transparent
}

.btn-outline:hover {
    background-color: #286efb;
    color: #fff
}

.btn-outline i {
    margin-left: 8px;
    font-size: 14px
}

@media(max-width:992px) {
    .tab-content {
        flex-direction: column
    }

    .tab-image {
        min-height: 250px
    }

    .feature-badge {
        top: -15px;
        right: -15px;
        padding: 10px 15px;
        font-size: 14px
    }
}

@media(max-width:768px) {
    .features {
        padding: 60px 0
    }

    .section-header h2 {
        font-size: 30px
    }

    .section-header .section-subtitle {
        font-size: 16px
    }

    .tab-content {
        padding: 20px
    }

    .tab-text h3 {
        font-size: 24px
    }

    .tab-text p {
        font-size: 16px
    }

    .feature-list h4 {
        font-size: 16px
    }

    .feature-list p {
        font-size: 14px
    }
}

@media(max-width:576px) {
    .features {
        padding: 40px 0
    }

    .section-header h2 {
        font-size: 26px
    }

    .tabs-header {
        padding: 0 10px
    }

    .tab-btn {
        padding: 15px;
        font-size: 14px
    }

    .tab-content {
        padding: 15px
    }

    .feature-badge {
        font-size: 12px;
        padding: 8px 12px
    }
}

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

.medeasy-unique-section {
    padding: 80px 0;
    width: 100%
}

.medeasy-unique-hero-section {
    padding: 65px 0;
    padding-top: calc(65px+73px) !important;
    width: 100%;
    scroll-margin-top: 73px;
    margin-top: 0;
    box-sizing: border-box
}

body.has-bottom-nav .medeasy-unique-hero-section {
    padding-top: calc(65px+140px) !important;
    scroll-margin-top: 140px
}

.medeasy-unique-hero-content {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto
}

.medeasy-unique-hero-text {
    flex: 1;
    padding-right: 40px
}

.medeasy-unique-hero-image {
    flex: 1;
    position: relative
}

.medeasy-unique-ai-tag {
    display: inline-flex;
    align-items: center;
    background-color: rgba(40, 110, 251, 0.1);
    color: #286efb;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px
}

.medeasy-unique-ai-tag i {
    margin-right: 8px
}

.medeasy-unique-hero-section h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1e293b;
    margin-bottom: 20px;
    font-weight: 700
}

.medeasy-unique-highlight {
    color: #286efb
}

.medeasy-unique-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 500px
}

.medeasy-unique-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px
}

.medeasy-unique-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    border: 0;
    cursor: pointer;
    font-size: 1rem
}

.medeasy-unique-btn-primary {
    background-color: #286efb;
    color: white;
    box-shadow: 0 4px 15px rgba(40, 110, 251, 0.3)
}

.medeasy-unique-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 110, 251, 0.4);
    background-color: #1a56d8
}

.medeasy-unique-btn-outline {
    background-color: transparent;
    color: #286efb;
    border: 1px solid #286efb
}

.medeasy-unique-btn-outline:hover {
    background-color: rgba(40, 110, 251, 0.05);
    transform: translateY(-2px)
}

.medeasy-unique-btn i {
    margin-right: 8px
}

.medeasy-unique-trust-badges {
    display: flex;
    gap: 15px
}

.medeasy-unique-badge {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #64748b
}

.medeasy-unique-badge i {
    color: #286efb;
    margin-right: 6px
}

.medeasy-unique-hero-img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1)
}

.medeasy-unique-ai-floating {
    position: absolute;
    bottom: -20px;
    left: -30px;
    display: flex;
    flex-direction: column;
    gap: 10px
}

.medeasy-unique-ai-chip {
    background: white;
    padding: 10px 16px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    width: fit-content
}

.medeasy-unique-ai-chip i {
    color: #286efb;
    margin-right: 8px
}

.medeasy-unique-features-section {
    background-color: #f9fafc;
    padding: 80px 0
}

.medeasy-unique-section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px
}

.medeasy-unique-section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px
}

.medeasy-unique-section-header p {
    color: var(--medeasy-gray);
    max-width: 600px;
    margin: 0 auto
}

.medeasy-unique-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.medeasy-unique-feature-card {
    background: var(--medeasy-lighter);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all .3s ease;
    border: 1px solid var(--medeasy-light-gray)
}

.medeasy-unique-feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(40, 110, 251, 0.2);
    transition: all .3s ease-in-out;
    border-color: var(--medeasy-primary-light)
}

.medeasy-unique-feature-icons {
    width: 60px;
    height: 60px;
    background: #286efb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.5rem
}

.medeasy-unique-feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px
}

.medeasy-unique-feature-card p {
    color: var(--medeasy-gray);
    margin-bottom: 20px
}

.medeasy-unique-coming-soon {
    position: relative
}

.medeasy-unique-coming-soon::after {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #0f172a;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: .7rem;
    font-weight: 600
}

.medeasy-unique-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
    border: 0;
    font-size: 1rem
}

.medeasy-unique-btn-primary {
    background-color: var(--medeasy-primary);
    color: white;
    box-shadow: 0 10px 20px rgba(40, 110, 251, 0.3)
}

.medeasy-unique-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(40, 110, 251, 0.4);
    background-color: var(--medeasy-primary-light)
}

.medeasy-unique-btn-primary:hover {
    animation: pulse 1s infinite
}

.medeasy-unique-btn-white {
    background-color: white;
    color: var(--medeasy-primary);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1)
}

.medeasy-unique-btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15)
}

@keyframes pulse {

    0,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px)
    }
}

@media(max-width:992px) {
    .medeasy-unique-hero-content {
        flex-direction: column;
        gap: 40px
    }

    .medeasy-unique-hero-text,
    .medeasy-unique-hero-image {
        flex: none;
        width: 100%
    }

    .medeasy-unique-hero-section h1 {
        font-size: 2.4rem
    }

    .medeasy-unique-features-section {
        margin: 40px 20px;
        width: calc(100% - 40px)
    }
}

@media(max-width:768px) {
    .medeasy-unique-section {
        padding: 60px 0
    }

    .medeasy-unique-hero-section {
        padding: 80px 0;
        padding-top: calc(80px+110px) !important
    }

    body.has-bottom-nav .medeasy-unique-hero-section {
        padding-top: calc(80px+170px) !important
    }

    .medeasy-unique-hero-section h1 {
        font-size: 2rem
    }

    .medeasy-unique-features-section {
        padding: 60px 0
    }

    .medeasy-unique-features-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:576px) {
    .medeasy-unique-hero-section {
        padding-top: calc(65px+100px) !important
    }

    body.has-bottom-nav .medeasy-unique-hero-section {
        padding-top: calc(65px+160px) !important
    }

    .medeasy-unique-hero-section h1 {
        font-size: 1.8rem
    }

    .medeasy-unique-section-header h2 {
        font-size: 1.8rem
    }

    .medeasy-unique-feature-card {
        padding: 25px
    }

    .medeasy-unique-cta-buttons {
        flex-direction: column
    }

    .medeasy-unique-trust-badges {
        flex-direction: column;
        gap: 10px
    }
}

.chiro-section-unique {
    background: linear-gradient(135deg, #286efb 0, #5a8eff 100%);
    color: white;
    padding: 40px 20px
}

.chiro-content-unique {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px
}

.chiro-left-column-unique h1 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 25px;
    font-weight: 700
}

.chiro-left-column-unique h2 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    opacity: .9;
    line-height: 1.4
}

.chiro-buttons-unique {
    margin-bottom: 30px
}

.chiro-demo-btn-unique {
    background-color: white;
    color: #286efb;
    padding: 12px 24px;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all .3s ease;
    margin-bottom: 15px;
    display: inline-block
}

.chiro-demo-btn-unique:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1)
}

.chiro-features-unique {
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0
}

.chiro-features-unique li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    line-height: 1.5
}

.feature-checkbox {
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.feature-checkbox.checked::after {
    content: "✓";
    font-weight: bold;
    font-size: 14px
}

@media(min-width:768px) {
    .chiro-content-unique {
        flex-direction: row;
        gap: 40px;
        align-items: center
    }

    .chiro-left-column-unique {
        flex: 1;
        min-width: 300px
    }

    .chiro-left-column-unique h1 {
        font-size: 36px
    }

    .chiro-left-column-unique h2 {
        font-size: 20px
    }

    .chiro-right-column-unique {
        flex: 1;
        min-width: 300px
    }

    .chiro-features-unique {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px
    }
}

@media(min-width:1024px) {
    .chiro-section-unique {
        padding: 60px 40px
    }

    .chiro-left-column-unique h1 {
        font-size: 36px
    }

    .chiro-left-column-unique h2 {
        font-size: 24px
    }
}

@media(max-width:375px) {
    .chiro-left-column-unique h1 {
        font-size: 24px
    }

    .chiro-left-column-unique h2 {
        font-size: 16px
    }

    .chiro-features-unique li {
        font-size: 15px
    }
}

.section-header-unique {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 15px auto;
    padding: 0 20px
}

.section-header-unique h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 15px;
    color: #333
}

.section-header-unique .section-subtitle-unique {
    font-size: 18px;
    color: #6b7280;
    line-height: 1.6
}

.patient-section-unique {
    background: #fff;
    color: #6b7280;
    padding: 75px 24px 98px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.patient-content-unique {
    max-width: 1200px;
    width: 100%;
    margin: 20px auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center
}

.patient-image-column-unique {
    flex: 1;
    min-width: 300px
}

.patient-image-column-unique img {
    width: 95%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1)
}

.patient-text-column-unique {
    flex: 1;
    min-width: 300px
}

.patient-text-column-unique h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #333
}

.patient-text-column-unique p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px
}

.patient-cta-button-unique {
    background-color: #286efb;
    color: #fff;
    padding: 12px 24px;
    border: 0;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    display: inline-block;
    margin-top: 10px;
    transition: all .3s ease
}

.patient-cta-button-unique:hover {
    background-color: #1e5de0;
    box-shadow: 0 4px 12px rgba(30, 93, 224, 0.3);
    transform: translateY(-2px)
}

@media(max-width:768px) {
    .section-header-unique h2 {
        font-size: 28px
    }

    .section-header-unique .section-subtitle-unique {
        font-size: 16px
    }

    .patient-content-unique {
        flex-direction: column;
        gap: 30px
    }

    .patient-image-column-unique {
        order: 2;
        text-align: center
    }

    .patient-image-column-unique img {
        width: 100%
    }

    .patient-text-column-unique {
        order: 1;
        text-align: center
    }

    .patient-text-column-unique h2 {
        font-size: 26px
    }
}

.medapp-features-section {
    background: #f9f9f9;
    padding: 250px 0;
    font-family: 'Poppins', sans-serif
}

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

.medapp-main-heading {
    font-size: 2.5rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600
}

.medapp-main-heading span {
    color: #286efb
}

.medapp-intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center
}

.medapp-intro-text p {
    font-size: 1.1rem;
    color: #5a6a7e;
    line-height: 1.6;
    margin-bottom: 20px
}

.medapp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    font-size: 1.1rem;
    color: #34495e;
    font-weight: 500;
    border: 1px solid #e0e6ed;
    transition: all .3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.05)
}

.feature-card:hover {
    background: #286efb;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 110, 251, 0.2);
    border-color: #286efb
}

.medapp-cta {
    text-align: center;
    font-size: 1.2rem;
    color: #2c3e50;
    font-weight: 500;
    margin-top: 40px;
    padding-top: 30px !important;
    border-top: 1px solid #e0e6ed
}

@media(max-width:900px) {
    .medapp-features-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {
    .medapp-features-section {
        display: none
    }
}

.coming-soon-highlight {
    position: relative;
    color: #286efb;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 4px
}

.coming-soon-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 100%;
    background-color: #4ade80;
    animation: bounce 1.2s ease-in-out infinite
}

@keyframes bounce {

    0,
    100% {
        transform: scaleY(1)
    }

    50% {
        transform: scaleY(2)
    }
}

.contact-section-outer {
    width: 100%;
    background-color: #f0f4fc;
    padding: 190px 0
}

.contact-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

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

.contact-content-left {
    flex: 1;
    min-width: 300px;
    padding-right: 40px
}

.contact-content-left h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2
}

.contact-content-left p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6
}

.contact-form-container {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative
}

.contact-form-background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #286efb 0, #1a4fd3 100%);
    background-size: cover;
    background-position: center
}

.contact-form-content {
    position: relative;
    padding: 30px;
    margin: 20px;
    border-radius: 8px
}

.contact-form-content h2 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 10px
}

.contact-form-content p {
    color: #fff;
    margin-bottom: 20px;
    font-size: .9rem
}

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

.contact-form-group label {
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-weight: 600
}

.contact-form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    background-color: white
}

.contact-form-group input:focus {
    outline: 0;
    border-color: #286efb
}

.contact-submit-btn {
    background-color: #fff;
    color: #000;
    border: 0;
    padding: 12px 25px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color .3s
}

.contact-submit-btn:hover {
    background-color: #f0f4fc
}

.iti {
    width: 100%
}

.iti__selected-flag {
    padding: 0 6px 0 8px
}

@media(max-width:768px) {
    .contact-section-container {
        flex-direction: column
    }

    .contact-content-left {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center
    }

    .contact-form-content {
        margin: 15px
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards
}

.animate-fade-in-delay {
    opacity: 0;
    animation: fadeIn 1s ease-in-out .3s forwards
}

.animate-pop-in {
    opacity: 0;
    transform: scale(0.95);
    animation: popIn .8s cubic-bezier(0.175, 0.885, 0.32, 1.275) .5s forwards
}

.pulse-on-hover:hover {
    animation: pulse 1.5s infinite
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes popIn {
    0 {
        opacity: 0;
        transform: scale(0.95)
    }

    50% {
        opacity: 1;
        transform: scale(1.02)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes pulse {
    0 {
        transform: scale(1)
    }

    50% {
        transform: scale(1.03)
    }

    100% {
        transform: scale(1)
    }
}

.contact-section-outer {
    position: relative;
    overflow: hidden
}

.contact-section-inner {
    position: relative;
    z-index: 1
}

.coming-soon-tag {
    position: relative;
    display: inline-block;
    margin-bottom: 15px
}

.coming-soon-text {
    display: inline-block;
    background: linear-gradient(135deg, #286efb 0, #1a4fd3 100%);
    color: white;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(40, 110, 251, 0.3)
}

.coming-soon-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #286efb;
    border-radius: 20px;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: .7;
    animation: pulse 2s infinite
}

.animate-float {
    animation: float 3s ease-in-out infinite
}

@keyframes float {
    0 {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-5px)
    }

    100% {
        transform: translateY(0)
    }
}

.contact-content-left h1 {
    margin-top: 5px
}

.hcare-hero {
    min-height: 85vh !important;
    padding: 3rem 6% !important;
    padding-top: calc(3rem+73px) !important;
    background: #f0f4fc !important;
    position: relative !important;
    overflow: hidden !important;
    scroll-margin-top: 73px !important;
    margin-top: 0 !important;
    box-sizing: border-box !important
}

body.has-bottom-nav .hcare-hero {
    padding-top: calc(3rem+140px) !important;
    scroll-margin-top: 140px !important
}

.hcare-hero-inner {
    max-width: 1200px !important;
    margin: 140px auto !important;
    display: flex !important;
    align-items: center !important
}

.hcare-hero-content {
    flex: 1 !important;
    padding-right: 3rem !important;
    z-index: 2 !important;
    animation: slideInLeft 1s ease-out !important
}

.hcare-hero-image {
    flex: 1 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    z-index: 2 !important;
    animation: slideInRight 1s ease-out !important
}

.hcare-hero-image img {
    max-width: 95% !important;
    height: auto !important;
    border-radius: 16px !important;
    animation: hcare-float 5s ease-in-out infinite !important
}

.hcare-hero h1 {
    font-size: 38px !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important
}

.hcare-hero p {
    font-size: 1.1rem !important;
    margin-bottom: 2.5rem !important;
    color: #4b5563 !important;
    max-width: 650px !important;
    font-weight: 400 !important
}

.hcare-search-container {
    background: white !important;
    border-radius: 12px !important;
    padding: .75rem !important;
    box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15) !important;
    max-width: 700px !important;
    transition: transform .3s ease !important;
    animation: fadeInUp 1s ease-out .3s both !important
}

@keyframes fadeInUp {
    0 {
        transform: translateY(20px) !important;
        opacity: 0 !important
    }

    100% {
        transform: translateY(0) !important;
        opacity: 1 !important
    }
}

.hcare-search-container:hover {
    transform: translateY(-4px) !important
}

.hcare-search-form {
    display: flex !important;
    align-items: center !important;
    gap: .75rem !important;
    flex-direction: row
}

.hcare-search-dropdown {
    flex: 1 !important;
    position: relative !important
}

.hcare-search-dropdown select {
    width: 100% !important;
    padding: 1rem 2.5rem 1rem 1.5rem !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    background-color: white !important;
    font-size: 1rem !important;
    color: #1a1a1a !important;
    cursor: pointer !important;
    outline: none !important;
    appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvgxmlns='http://www.w3.org/2000/svg'fill='none'viewBox='002424'stroke='%234b5563'stroke-width='2'%3E%3Cpathstroke-linecap='round'stroke-linejoin='round'd='M199l-77-7-7'/%3E%3C/svg%3E") !important;
    background-position: right 1rem center !important;
    background-size: 1.5em !important;
    background-repeat: no-repeat !important;
    transition: border-color .3s ease !important
}

.hcare-search-dropdown select:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important
}

.hcare-search-input {
    flex: 2 !important
}

.hcare-search-input input {
    width: 100% !important;
    padding: 1rem 1.5rem !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    outline: none !important;
    transition: border-color .3s ease !important
}

.hcare-search-input input:focus {
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1) !important
}

.hcare-search-button button {
    width: 100% !important;
    padding: 1rem !important;
    background-color: #3b82f6 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background-color .3s ease, transform .2s ease !important
}

.hcare-search-button button:hover {
    background-color: #2563eb !important;
    transform: translateY(-2px) !important
}

.hcare-hero {
    min-height: 85vh !important;
    padding: 3rem 6% !important;
    padding-top: calc(3rem+73px) !important;
    background: #f0f4fc !important;
    position: relative !important;
    overflow: hidden !important;
    scroll-margin-top: 73px !important;
    margin-top: 0 !important;
    box-sizing: border-box !important
}

body.has-bottom-nav .hcare-hero {
    padding-top: calc(3rem+140px) !important;
    scroll-margin-top: 140px !important
}

.hcare-hero-inner {
    max-width: 1200px !important;
    margin: 140px auto !important;
    display: flex !important;
    align-items: center !important;
    position: relative;
    z-index: 2
}

.hcare-provider-cta {
    margin-top: 1.5rem;
    animation: fadeInUp .8s ease-out .4s both;
    font-size: 1.1rem;
    color: #4b5563
}

.hcare-cta-text {
    display: inline-block;
    margin-right: .5rem
}

.hcare-cta-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: all .3s ease
}

.hcare-cta-link::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #3b82f6;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform .3s ease-out
}

.hcare-cta-link:hover {
    color: #2563eb
}

.hcare-cta-link:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left
}

#hcare-particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: transparent
}

.hcare-providers-section {
    padding: 6rem 6%;
    background-color: white
}

.hcare-providers-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.hcare-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #000
}

.hcare-section-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    max-width: 800px;
    margin: auto !important;
    margin-bottom: 3.5rem
}

.hcare-providers-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem
}

.hcare-provider-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease
}

.hcare-provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1)
}

.hcare-card-image {
    height: 300px;
    overflow: hidden
}

.hcare-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.hcare-provider-card:hover .hcare-card-image img {
    transform: scale(1.08)
}

.hcare-card-content {
    padding: 2rem
}

.hcare-card-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: #1e40af
}

.hcare-card-text {
    color: #6b7280;
    font-size: .95rem;
    margin-bottom: 1.5rem !important
}

.hcare-card-button {
    display: inline-block;
    padding: .75rem 2rem;
    background-color: #3b82f6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color .3s ease, transform .2s ease
}

.hcare-card-button:hover {
    background-color: #2563eb;
    transform: translateY(-2px);
    color: #fff
}

.hcare-experts-section {
    padding: 6rem 6%;
    background-color: #f9fafc
}

.hcare-experts-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.hcare-experts-filter {
    margin-bottom: 2.5rem
}

.hcare-filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap
}

.hcare-filter-button {
    padding: .75rem 1.75rem;
    border: 1px solid #3b82f6;
    border-radius: 8px;
    background-color: white;
    color: #3b82f6;
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .3s ease
}

.hcare-filter-button.active,
.hcare-filter-button:hover {
    background-color: #3b82f6;
    color: white
}

.hcare-experts-slider {
    position: relative;
    margin: 3rem auto 0;
    overflow: hidden;
    width: 100%
}

.hcare-experts-container {
    display: flex;
    transition: transform .5s ease;
    width: max-content
}

.hcare-expert-card {
    min-width: 320px;
    margin: 0 1rem;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    transition: transform .3s ease
}

.hcare-expert-card:hover {
    transform: translateY(-6px)
}

.hcare-expert-image {
    height: 240px;
    overflow: hidden
}

.hcare-expert-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hcare-expert-info {
    padding: 1.75rem
}

.hcare-expert-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: .5rem
}

.hcare-expert-specialty {
    color: #3b82f6;
    font-weight: 500;
    margin-bottom: .75rem
}

.hcare-expert-bio {
    color: #6b7280;
    font-size: .9rem;
    margin-bottom: 1.25rem
}

.hcare-expert-contact {
    display: inline-block;
    padding: .6rem 1.5rem;
    background-color: #3b82f6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-size: .9rem;
    font-weight: 500;
    transition: background-color .3s ease
}

.hcare-expert-contact:hover {
    background-color: #2563eb
}

.hcare-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem
}

.hcare-slider-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #e5e7eb;
    margin: 0 .75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease
}

.hcare-slider-button:hover {
    background-color: #3b82f6;
    color: white;
    border-color: #3b82f6
}

.hcare-classes-section {
    padding: 6rem 6%;
    background-color: white
}

.hcare-classes-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center
}

.hcare-classes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem
}

.hcare-class-card {
    background: #f9fafc !important;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform .3s ease, box-shadow .3s ease
}

.hcare-class-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1)
}

.hcare-class-date {
    background: #3b82f6;
    color: white;
    padding: 1.5rem;
    text-align: center;
    position: relative
}

.hcare-class-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15), transparent);
    opacity: .3
}

.hcare-class-day {
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1
}

.hcare-class-month {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px
}

.hcare-class-time {
    font-size: .95rem;
    margin-top: .75rem;
    opacity: .9
}

.hcare-class-details {
    padding: 2rem
}

.hcare-class-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: .75rem;
    color: #1e40af
}

.hcare-class-description {
    color: #6b7280;
    font-size: .85rem;
    margin-bottom: 1.25rem !important;
    line-height: 1.6
}

.hcare-class-cost {
    font-size: 1.15rem;
    color: #1a1a1a;
    font-weight: 500;
    background: #eff6ff;
    padding: .5rem 1.25rem !important;
    border-radius: 8px;
    display: inline-block
}

.hcare-class-register {
    display: inline-block;
    padding: .75rem 2rem;
    background: #3b82f6;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color .3s ease, transform .2s ease
}

.hcare-class-register:hover {
    background: #2563eb;
    transform: translateY(-2px);
    color: #fff
}

@media(max-width:1024px) {
    .hcare-hero {
        padding-top: calc(3rem+120px) !important
    }

    body.has-bottom-nav .hcare-hero {
        padding-top: calc(3rem+180px) !important
    }

    .hcare-hero-inner {
        flex-direction: column;
        text-align: center
    }

    .hcare-hero-content {
        padding-right: 0;
        margin-bottom: 2.5rem
    }

    .hcare-hero h1 {
        font-size: 2.8rem
    }

    .hcare-hero p {
        margin-left: auto;
        margin-right: auto
    }

    .hcare-search-container {
        margin-left: auto;
        margin-right: auto
    }

    .hcare-section-title {
        font-size: 2.2rem
    }
}

@media(max-width:768px) {
    .hcare-hero {
        padding-top: calc(3rem+110px) !important
    }

    body.has-bottom-nav .hcare-hero {
        padding-top: calc(3rem+170px) !important
    }

    .hcare-search-form {
        flex-direction: column;
        gap: 1rem
    }

    .hcare-search-dropdown,
    .hcare-search-input,
    .hcare-search-button {
        width: 100%
    }

    .hcare-hero h1 {
        font-size: 2.2rem
    }

    .hcare-hero p {
        font-size: 1.1rem
    }

    .hcare-expert-card {
        min-width: 280px
    }
}

.proserve-section {
    background-color: #f9fafc;
    padding: 60px 0
}

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

.proserve-header {
    text-align: center;
    margin-bottom: 50px
}

.proserve-title {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700
}

.proserve-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto 0 !important
}

.proserve-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 10px
}

.proserve-tab {
    padding: 12px 24px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    color: #555;
    transition: all .3s ease;
    margin: 0 5px
}

.proserve-tab:hover {
    border-color: #286efb;
    color: #286efb
}

.proserve-tab.active {
    background-color: #286efb;
    color: white;
    border-color: #286efb
}

.proserve-slider-container {
    position: relative;
    margin: 0 auto;
    overflow: hidden
}

.proserve-slider-track {
    display: flex;
    transition: transform .5s ease
}

.proserve-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin: 0 10px;
    transition: transform .3s ease
}

.proserve-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1)
}

.proserve-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover
}

.proserve-card-content {
    padding: 25px
}

.proserve-card-title {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: #2c3e50
}

.proserve-card-role {
    color: #286efb;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: .9rem
}

.proserve-card-desc {
    color: #666;
    margin-bottom: 20px !important;
    font-size: .85rem
}

.proserve-card-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #286efb;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color .3s
}

.proserve-card-btn:hover {
    background-color: #1e5bd6;
    color: #fff
}

.proserve-slider-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px
}

.proserve-slider-dot {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color .3s
}

.proserve-slider-dot.active {
    background-color: #286efb
}

.proserve-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    border: 0;
    color: #286efb;
    font-size: 1.2rem
}

.proserve-slider-arrow-left {
    left: -20px
}

.proserve-slider-arrow-right {
    right: -20px
}

@media(max-width:992px) {
    .proserve-card {
        flex: 0 0 calc(50% - 20px)
    }
}

@media(max-width:768px) {
    .proserve-title {
        font-size: 2rem
    }

    .proserve-card {
        flex: 0 0 calc(100% - 20px)
    }

    .proserve-slider-arrow {
        width: 30px;
        height: 30px;
        font-size: 1rem
    }

    .proserve-slider-arrow-left {
        left: -15px
    }

    .proserve-slider-arrow-right {
        right: -15px
    }
}

@media(max-width:576px) {
    .proserve-tabs {
        flex-direction: column;
        align-items: center
    }

    .proserve-tab {
        width: 100%;
        max-width: 250px;
        margin: 5px 0;
        text-align: center
    }
}

.medical-specialties-section {
    background-color: #fff;
    padding: 4rem 0;
    position: relative;
    overflow: hidden
}

.medical-specialties-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6.25rem;
    background: url('https://via.placeholder.com/1200x100?text=Books+Background') no-repeat center bottom;
    background-size: cover;
    opacity: .1;
    z-index: 0
}

.specialties-container {
    max-width: 78.125rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    text-align: center;
    position: relative;
    z-index: 1
}

.medical-specialties-section h2 {
    font-size: 32px;
    margin-bottom: .9375rem;
    color: #000;
    font-weight: 600
}

.specialties-subtitle {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 50rem;
    margin: auto !important;
    padding-bottom: 35px !important
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.25rem;
    justify-items: center
}

.specialty-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: .9375rem;
    padding: 1.25rem;
    box-shadow: 0 .125rem .3125rem rgba(0, 0, 0, 0.1);
    transition: transform .3s ease, box-shadow .3s ease;
    width: 100%;
    box-sizing: border-box
}

.specialty-card img {
    width: clamp(3.75rem, 20vw, 5rem);
    height: clamp(3.75rem, 20vw, 5rem);
    object-fit: contain;
    margin-bottom: .625rem
}

.specialty-card p {
    font-size: clamp(0.875rem, 2.5vw, 1rem);
    color: #333;
    margin: 0;
    font-weight: 500
}

.specialty-card:hover {
    transform: scale(1.4);
    box-shadow: 0 .3125rem .9375rem rgba(0, 0, 0, 0.2)
}

@media(max-width:48rem) {
    .specialties-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .medical-specialties-section {
        padding: 2.5rem 0
    }

    .medical-specialties-section::after {
        height: 3.125rem
    }

    .medical-specialties-section h2 {
        font-size: clamp(1.5rem, 6vw, 2rem)
    }

    .specialties-subtitle {
        font-size: clamp(0.75rem, 3vw, 0.875rem);
        margin-bottom: 1.875rem
    }

    .specialty-card {
        padding: .9375rem
    }

    .specialty-card img {
        width: clamp(3rem, 15vw, 4rem);
        height: clamp(3rem, 15vw, 4rem)
    }

    .specialty-card:hover {
        transform: scale(1.05)
    }
}

@media(max-width:36rem) {
    .specialties-container {
        padding: 0 .625rem
    }

    .specialties-grid {
        gap: .9375rem
    }
}

.find-img {
    max-width: 100% !important
}

.hero-section {
    position: relative;
    width: 100%;
    height: 85vh;
    overflow: hidden;
    padding-top: 73px !important;
    scroll-margin-top: 73px;
    margin-top: 0;
    box-sizing: border-box
}

body.has-bottom-nav .hero-section {
    padding-top: 140px !important;
    scroll-margin-top: 140px
}

.background-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1
}

.background-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s ease-in-out
}

.background-slide.active {
    opacity: 1
}

picture {
    width: 100%;
    height: 100%;
    display: block
}

.background-image {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.content-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    z-index: 2
}

.slider-content {
    width: 100%;
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center
}

.slide-content {
    width: 100%;
    max-width: 100%;
    display: none;
    align-items: center;
    justify-content: flex-start;
    opacity: 0;
    transition: opacity .5s ease-in-out
}

.slide-content.active {
    display: flex;
    opacity: 1
}

.cta-card {
    background: rgba(40, 110, 251, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(40, 110, 251, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    z-index: 3;
    padding: 2rem;
    border-radius: 35px;
    max-width: 500px;
    margin: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-bottom: -30px
}

.cta-card h1 {
    font-size: 42px;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #fff
}

.cta-card p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: #fff
}

.cta-buttons {
    display: flex;
    gap: 1rem
}

.cta-buttons button {
    padding: 18px 2rem;
    border: 0;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color .3s ease, transform .3s ease
}

.primary-btn {
    background-color: white;
    color: #286efb
}

.primary-btn:hover {
    background-color: #f0f0f0;
    transform: scale(1.05)
}

.secondary-btn {
    background-color: transparent;
    color: white;
    border: 1px solid white
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: scale(1.05)
}

.slider-dots {
    position: absolute;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: .5rem;
    z-index: 3
}

.dot {
    width: 12px;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .3s ease, transform .3s ease
}

.dot.active {
    background-color: white;
    transform: scale(1.2)
}

.stats-slider-section {
    position: absolute;
    bottom: 16px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, #f8fbff 0, #f8fbff 50%, #fff 100%);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 1rem;
    overflow: hidden;
    z-index: 2;
    opacity: .9
}

@media(max-width:768px) {
    .stats-slider-section {
        bottom: 70px;
        padding: 1.5rem 1rem
    }
}

@media(max-width:480px) {
    .stats-slider-section {
        bottom: 75px;
        padding: 1rem .5rem
    }
}

.stats-slider {
    display: flex;
    white-space: nowrap;
    animation: slide 30s linear infinite
}

.stats-slider:hover {
    animation-play-state: paused
}

@keyframes slide {
    0 {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.stats-slide {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: 0 1.5rem;
    white-space: nowrap
}

.stats-slide i {
    font-size: 1.5rem;
    color: #286efb
}

.stats-slide span {
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
    white-space: nowrap
}

.healthcare-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif
}

.section-header {
    text-align: center;
    margin-bottom: 50px
}

.healthcare-services .section-header .section-title {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px
}

.service-card {
    display: flex;
    flex-direction: column;
    height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all .4s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-decoration: none;
    color: #1a1a1a;
    position: relative
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(40, 110, 251, 0.1), transparent);
    opacity: 0;
    transition: opacity .4s ease
}

.card-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    z-index: 2
}

.card-badge {
    font-size: .85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #286efb;
    margin-bottom: 15px;
    display: inline-block
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 15px 0
}

.card-description {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1
}

.card-cta {
    display: inline-block;
    background: #286efb;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    font-size: .95rem;
    align-self: flex-start;
    transition: all .3s ease
}

.card-image-container {
    height: 212px;
    position: relative;
    overflow: hidden
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease
}

.image-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(40, 110, 251, 0.7), transparent);
    opacity: 0;
    transition: opacity .4s ease
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(40, 110, 251, 0.15)
}

.service-card:hover::before {
    opacity: 1
}

.service-card:hover .card-cta {
    background: #1a5bd7;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(40, 110, 251, 0.3)
}

.service-card:hover .card-image {
    transform: scale(1.05)
}

.service-card:hover .image-gradient {
    opacity: 1
}

@media(max-width:768px) {
    .section-title {
        font-size: 2rem
    }

    .section-subtitle {
        font-size: 1rem
    }

    .services-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        height: 380px
    }

    .card-image-container {
        height: 140px
    }
}

.book-in-network-section {
    background-color: #f8fbff;
    padding: 4rem 0;
    text-align: left
}

.book-in-network-section .section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.book-in-network-section .section-subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem
}

.book-in-network-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem
}

.insurance-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem
}

.see-all-btn,
.add-insurance-btn {
    background-color: #fff;
    color: #333;
    padding: .8rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd
}

.see-all-btn {
    display: inline-block;
    background: linear-gradient(135deg, #286efb, #1e5cd1);
    color: white;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(40, 110, 251, 0.3)
}

.see-all-btn:hover {
    background: linear-gradient(135deg, #1e5cd1, #286efb);
    transform: scale(1.05)
}

.add-insurance-btn {
    background-color: transparent;
    color: #286efb;
    border: 1px solid #286efb;
    text-decoration: none
}

.add-insurance-btn:hover {
    background-color: rgba(40, 110, 251, 0.1);
    transform: scale(1.05)
}

.insurance-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    max-width: 100%
}

.insurance-logo {
    text-align: center;
    border: 1.5px solid #cfcfcf;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: center
}

.insurance-logo a {
    display: inline-block;
    transition: transform .3s ease
}

.insurance-logo img {
    width: 120px;
    height: auto;
    object-fit: contain
}

.insurance-logo a:hover {
    transform: scale(1.05)
}

.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center
}

.popup-content {
    background-color: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2)
}

.close-popup {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    transition: color .3s ease
}

.close-popup:hover {
    color: #1a1a1a
}

.popup-content h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.search-bar {
    width: 100%;
    padding: .75rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    outline: 0;
    transition: border-color .3s ease
}

.search-bar:focus {
    border-color: #286efb
}

.insurance-list {
    list-style: none;
    padding: 0;
    max-height: 50vh;
    overflow-y: auto
}

.insurance-list li {
    padding: .75rem;
    font-size: 1rem;
    color: #333;
    border-bottom: 1px solid #eee;
    transition: background-color .3s ease
}

.insurance-list li:hover {
    background-color: #f5f7fa
}

.services-section {
    background-color: #fff;
    padding: 4rem 0;
    text-align: center
}

.services-section .section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.services-section .section-subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem
}

.services-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 0 2rem
}

.service-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    transition: all .3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    min-height: 530px;
    transition: transform .4s cubic-bezier(.4, 2, .3, 1), box-shadow .4s cubic-bezier(.4, 2, .3, 1)
}

.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 10px 28px rgba(40, 110, 251, 0.10), 0 2px 8px rgba(0, 0, 0, 0.08)
}

.service-prefix {
    font-size: .9rem;
    color: #286efb;
    font-weight: 550;
    margin-bottom: .25rem
}

.service-card h3 {
    font-size: 24px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: .75rem;
    position: relative;
    z-index: 1;
    animation: floatServiceIcon 4s ease-in-out infinite alternate
}

@keyframes floatServiceIcon {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-8px)
    }
}

.service-card ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    flex-grow: 1
}

.service-card li {
    font-size: 1rem;
    color: #666;
    line-height: 2
}

.service-card p {
    font-size: .9rem;
    color: #666;
    margin-bottom: .5rem
}

.service-card-cta {
    display: inline-block;
    background: linear-gradient(135deg, #286efb, #1e5cd1);
    color: white;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(40, 110, 251, 0.3);
    display: flex;
    justify-content: center
}

.service-card:hover .service-card-cta {
    background: linear-gradient(135deg, #1e5cd1, #286efb);
    transform: scale(1.05);
    color: #fff
}

.medeasy-works-section {
    background: #f8fbff;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.medeasy-works-section .medeasy-section-title {
    font-size: clamp(1.8rem, 5vw, 2.25rem);
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.medeasy-works-section .medeasy-section-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.medeasy-works-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 1rem
}

.medeasy-tabs-nav {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap
}

.medeasy-tabs-nav input[type="radio"] {
    display: none
}

.medeasy-tabs-nav label {
    background-color: #fff;
    color: #333;
    padding: .6rem 1.5rem;
    border-radius: 30px;
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    white-space: nowrap
}

.medeasy-tabs-nav label:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px)
}

.medeasy-tabs-nav input[type="radio"]:checked+label {
    background: linear-gradient(135deg, #286efb, #1e5cd1);
    color: white;
    border-color: #286efb;
    box-shadow: 0 4px 12px rgba(40, 110, 251, 0.3)
}

.tab-content {
    transition: opacity .5s ease-in-out
}

#medeasy-tab-doctor:checked~.medeasy-tab-content-doctor,
#medeasy-tab-patient:checked~.medeasy-tab-content-patient,
#medeasy-tab-doula:checked~.medeasy-tab-content-doula {
    display: flex;
    opacity: 1
}

.medeasy-tab-content-doctor {
    display: flex;
    opacity: 1
}

.medeasy-tab-content-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 100%;
    flex-direction: row
}

.medeasy-tab-steps {
    flex: 1;
    text-align: left
}

.medeasy-step-card {
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all .3s ease
}

.medeasy-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(40, 110, 251, 0.2)
}

.medeasy-step-number {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #286efb, #1e5cd1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    margin-right: 1rem;
    flex-shrink: 0
}

.medeasy-step-content h4 {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: .5rem
}

.medeasy-step-content p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #666;
    line-height: 1.6
}

.medeasy-tab-image {
    flex: 1;
    max-width: 50%
}

.medeasy-tab-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    animation: floatY 4s ease-in-out infinite alternate
}

@media(max-width:768px) {
    .medeasy-works-section {
        padding: 2rem 0
    }

    .medeasy-tab-content-inner {
        flex-direction: column;
        gap: 1.5rem
    }

    .medeasy-tab-image {
        max-width: 100%;
        order: 1
    }

    .medeasy-tab-steps {
        order: 2;
        width: 100%
    }

    .medeasy-tabs-nav {
        flex-direction: column;
        align-items: center
    }

    .medeasy-tabs-nav label {
        width: 100%;
        max-width: 300px;
        text-align: center
    }

    .medeasy-step-card {
        padding: .8rem
    }

    .medeasy-step-number {
        width: 28px;
        height: 28px;
        font-size: .9rem
    }
}

@media(max-width:480px) {
    .medeasy-works-section .medeasy-section-title {
        font-size: 1.5rem
    }

    .medeasy-works-section .medeasy-section-subtitle {
        font-size: .9rem;
        padding: 0 1rem
    }

    .medeasy-tabs-nav label {
        padding: .5rem 1rem;
        font-size: .9rem
    }

    .medeasy-step-content h4 {
        font-size: 1rem
    }

    .medeasy-step-content p {
        font-size: .85rem
    }
}

@keyframes floatY {
    0 {
        transform: translateY(0)
    }

    100% {
        transform: translateY(-10px)
    }
}

.testimonials-section {
    background-color: #f8fbff;
    padding: 4rem 0;
    text-align: center;
    width: 100%
}

.testimonials-section .section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.testimonials-section .section-subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem
}

.testimonials-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    padding: 0 2rem
}

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    text-align: left;
    transition: transform .3s ease, box-shadow .3s ease;
    display: flex;
    flex-direction: column;
    min-height: 200px;
    transition: transform .4s cubic-bezier(.4, 2, .3, 1), box-shadow .4s cubic-bezier(.4, 2, .3, 1)
}

.testimonial-card:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 8px 24px rgba(40, 110, 251, 0.10), 0 2px 8px rgba(0, 0, 0, 0.08)
}

.testimonial-card i {
    font-size: 1.5rem;
    color: #286efb;
    margin-bottom: 1rem
}

.testimonial-card p {
    font-size: 1rem;
    font-style: italic;
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1
}

.testimonial-card .patient-info {
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a
}

@media(max-width:768px) {
    .hero-section {
        height: 80vh;
        padding-top: 60px
    }

    .slide-content {
        flex-direction: column;
        justify-content: center;
        text-align: center
    }

    .cta-card {
        max-width: 90%;
        margin: 1rem auto;
        height: 60%;
        padding: 70px;
        text-align: left
    }

    .cta-card h1 {
        font-size: 2rem
    }

    .cta-buttons {
        justify-content: center
    }

    .header-cta {
        padding: .5rem 1rem
    }

    .stats-slide {
        padding: 0 1rem
    }

    .stats-slide i {
        font-size: 1.2rem
    }

    .stats-slide span {
        font-size: .9rem
    }

    .slider-dots {
        bottom: 5rem
    }

    .book-in-network-section .section-heading {
        font-size: 2rem
    }

    .book-in-network-section .section-subheading {
        font-size: 1rem
    }

    .insurance-actions {
        flex-direction: column;
        gap: .5rem
    }

    .see-all-btn,
    .add-insurance-btn {
        padding: .5rem 1rem;
        font-size: .9rem
    }

    .insurance-logos {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr))
    }

    .insurance-logo img {
        width: 100px
    }

    .popup-content {
        width: 95%;
        padding: 1.5rem
    }

    .popup-content h3 {
        font-size: 1.3rem
    }

    .search-bar {
        padding: .5rem;
        font-size: .9rem
    }

    .insurance-list li {
        padding: .5rem;
        font-size: .9rem
    }

    .services-container {
        grid-template-columns: repeat(2, 1fr)
    }

    .services-section .section-heading {
        font-size: 2rem
    }

    .services-section .section-subtitle {
        font-size: 1rem
    }

    .service-prefix {
        font-size: .85rem
    }

    .service-card h3 {
        font-size: 1.3rem
    }

    .how-it-works-section .section-heading {
        font-size: 2rem
    }

    .how-it-works-section .section-subheading {
        font-size: 1rem
    }

    .tabs-nav {
        flex-direction: column;
        gap: .5rem
    }

    .tabs-nav label {
        padding: .6rem 1.5rem;
        font-size: 1rem
    }

    .tab-content-inner {
        flex-direction: column;
        gap: 2rem
    }

    .tab-image {
        max-width: 100%
    }

    .step-card {
        padding: 1rem
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem
    }

    .step-icon {
        font-size: 1.8rem
    }

    .step-content h4 {
        font-size: 1.2rem
    }

    .step-content p {
        font-size: .9rem
    }

    .icon-wrapper {
        width: 50px;
        height: 50px
    }

    .testimonials-container {
        grid-template-columns: 1fr
    }

    .testimonials-section .section-heading {
        font-size: 2rem
    }

    .testimonials-section .section-subheading {
        font-size: 1rem
    }

    .testimonial-card {
        padding: 1.5rem;
        min-height: 180px
    }

    .testimonial-card p {
        font-size: .9rem
    }

    .testimonial-card .patient-info {
        font-size: .9rem
    }
}

@media(max-width:480px) {
    .cta-card h1 {
        font-size: 1.5rem
    }

    .cta-card p {
        font-size: .9rem
    }

    .cta-buttons button {
        padding: .5rem 1rem;
        font-size: .9rem
    }

    .logo {
        font-size: 1.2rem
    }

    .stats-slide {
        padding: 0 .75rem
    }

    .stats-slide i {
        font-size: 1rem
    }

    .stats-slide span {
        font-size: .8rem
    }

    .slider-dots {
        bottom: .5rem
    }

    .support-card h3 {
        font-size: 1.2rem
    }

    .support-card p {
        font-size: .9rem
    }

    .support-card-learn-more {
        padding: .5rem 1rem;
        font-size: .8rem
    }

    .insurance-logos {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr))
    }

    .insurance-logo img {
        width: 80px
    }

    .popup-content {
        padding: 1rem
    }

    .popup-content h3 {
        font-size: 1.2rem
    }

    .search-bar {
        padding: .5rem;
        font-size: .85rem
    }

    .insurance-list li {
        padding: .5rem;
        font-size: .85rem
    }

    .services-container {
        grid-template-columns: 1fr
    }

    .service-prefix {
        font-size: .8rem
    }

    .service-card h3 {
        font-size: 1.2rem
    }

    .service-card li {
        font-size: .9rem
    }

    .service-card-cta {
        padding: .5rem 1rem;
        font-size: .8rem
    }

    .tabs-nav label {
        padding: .5rem 1rem;
        font-size: .9rem
    }

    .step-card {
        padding: .8rem
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: .9rem
    }

    .step-icon {
        font-size: 1.5rem
    }

    .step-content h4 {
        font-size: 1.1rem
    }

    .step-content p {
        font-size: .85rem
    }

    .features-container {
        grid-template-columns: 1fr
    }

    .feature-card h3 {
        font-size: 1.1rem
    }

    .feature-card p {
        font-size: .85rem
    }

    .features-cta {
        padding: .5rem 1rem;
        font-size: .8rem
    }

    .feature-icon {
        font-size: 1.5rem
    }

    .icon-wrapper {
        width: 45px;
        height: 45px
    }

    .testimonial-card {
        padding: 1rem;
        min-height: 160px
    }

    .testimonial-card i {
        font-size: 1.2rem
    }

    .testimonial-card p {
        font-size: .85rem
    }

    .testimonial-card .patient-info {
        font-size: .85rem
    }
}

.faq-section {
    padding: 5rem 0;
    text-align: left;
    position: relative;
    overflow: hidden
}

.faq-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem
}

.faq-section .section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: left
}

.faq-section .section-subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    text-align: left;
    max-width: 1200px
}

.faq-tabs-nav {
    display: flex;
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 3rem
}

.faq-tabs-nav input[type="radio"] {
    display: none
}

.faq-tabs-nav label {
    background-color: #fff;
    color: #333;
    padding: .8rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd
}

.faq-tabs-nav label:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px)
}

.faq-tabs-nav input[type="radio"]:checked+label {
    background: linear-gradient(135deg, #286efb, #1e5cd1);
    color: white;
    border-color: #286efb;
    box-shadow: 0 4px 12px rgba(40, 110, 251, 0.3)
}

.faq-tab-content {
    display: none;
    opacity: 0;
    transition: opacity .5s ease-in-out;
    text-align: left
}

#faq-tab-doctor:checked~.faq-tab-content-doctor,
#faq-tab-patient:checked~.faq-tab-content-patient,
#faq-tab-doula:checked~.faq-tab-content-doula {
    display: block;
    opacity: 1
}

.faq-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all .3s ease
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(40, 110, 251, 0.2)
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a1a1a
}

.faq-toggle {
    font-size: 1.2rem;
    color: #286efb;
    transition: transform .3s ease
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg)
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.5rem;
    font-size: 1rem;
    color: #666;
    line-height: 1.6
}

.faq-item.active .faq-answer {
    display: block
}

@media(max-width:768px) {
    .faq-container {
        padding: 0 1.5rem
    }

    .faq-section .section-heading {
        font-size: 2rem
    }

    .faq-section .section-subheading {
        font-size: 1rem
    }

    .faq-tabs-nav {
        flex-direction: column;
        gap: .5rem;
        justify-content: flex-start
    }

    .faq-tabs-nav label {
        padding: .6rem 1.5rem;
        font-size: 1rem
    }

    .faq-question {
        font-size: 1.1rem;
        padding: 1rem
    }

    .faq-answer {
        font-size: .9rem;
        padding: 0 1rem 1rem
    }

    .faq-toggle {
        font-size: 1rem
    }
}

@media(max-width:480px) {
    .faq-container {
        padding: 0 1rem
    }

    .faq-section .section-heading {
        font-size: 1.5rem
    }

    .faq-section .section-subheading {
        font-size: .9rem
    }

    .faq-tabs-nav label {
        padding: .5rem 1rem;
        font-size: .9rem
    }

    .faq-question {
        font-size: 1rem;
        padding: .8rem
    }

    .faq-answer {
        font-size: .85rem;
        padding: 0 .8rem .8rem
    }

    .faq-toggle {
        font-size: .9rem
    }
}

.app-coming-soon-section {
    background: linear-gradient(to bottom, #f8fbff 0, #f8fbff 50%, #fff 100%);
    padding: 5rem 0;
    text-align: left;
    position: relative;
    overflow: hidden
}

.app-coming-soon-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 3rem
}

.app-content {
    flex: 1;
    text-align: left
}

.app-content h2 {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem
}

.app-content .coming-soon {
    font-size: 1.5rem;
    color: #286efb;
    margin-bottom: 1.5rem;
    display: inline-block;
    animation: pulse 2s infinite
}

@keyframes pulse {
    0 {
        transform: scale(1);
        opacity: 1
    }

    50% {
        transform: scale(1.05);
        opacity: .8
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

.app-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 500px
}

.app-store-links {
    display: flex;
    gap: 1rem
}

.app-store-links a {
    display: inline-block;
    transition: transform .3s ease
}

.app-store-links a:hover {
    transform: scale(1.05)
}

.app-store-links img {
    height: 50px;
    width: auto;
    object-fit: contain
}

.app-image {
    flex: 1;
    max-width: 50%
}

.app-image img {
    width: 115%;
    height: 450px;
    border-radius: 12px;
    object-fit: contain
}

.hero-section::before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: linear-gradient(120deg, rgba(40, 110, 251, 0.18) 0, rgba(30, 92, 209, 0.12) 60%, rgba(0, 221, 235, 0.10) 100%);
    animation: heroGradientMove 12s ease-in-out infinite alternate
}

@keyframes heroGradientMove {
    0 {
        background-position: 0 50%
    }

    100% {
        background-position: 100% 50%
    }
}

.cta-card {
    background: rgba(40, 110, 251, 0.85);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(40, 110, 251, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.10);
    position: relative;
    z-index: 3
}

.feature-card {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s forwards;
    animation-delay: .2s
}

.features-container .feature-card:nth-child(2) {
    animation-delay: .4s
}

.features-container .feature-card:nth-child(3) {
    animation-delay: .6s
}

.features-container .feature-card:nth-child(4) {
    animation-delay: .8s
}

.features-container .feature-card:nth-child(5) {
    animation-delay: 1s
}

.features-container .feature-card:nth-child(6) {
    animation-delay: 1.2s
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.testimonial-card {
    transition: transform .4s cubic-bezier(.4, 2, .3, 1), box-shadow .4s cubic-bezier(.4, 2, .3, 1)
}

.testimonial-card:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 8px 24px rgba(40, 110, 251, 0.10), 0 2px 8px rgba(0, 0, 0, 0.08)
}

.slider-dots .dot.active {
    animation: dotPulse 1.2s infinite alternate
}

@keyframes dotPulse {
    0 {
        box-shadow: 0 0 0 0 rgba(40, 110, 251, 0.25)
    }

    100% {
        box-shadow: 0 0 0 8px rgba(40, 110, 251, 0.08)
    }
}

.tab-image img,
.support-card-image img,
.app-image img {
    animation: floatY 4s ease-in-out infinite alternate
}

@keyframes floatY {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-12px)
    }
}

.faq-answer {
    transition: max-height .5s cubic-bezier(.4, 2, .3, 1), opacity .5s;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    display: block !important
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1
}

.tab-content {
    animation: fadeTab .7s cubic-bezier(.4, 2, .3, 1)
}

@keyframes fadeTab {
    from {
        opacity: 0;
        transform: translateY(30px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.app-content .coming-soon {
    background: linear-gradient(90deg, #286efb, #1e5cd1, #286efb);
    background-size: 200% 200%;
    animation: gradientText 3s linear infinite alternate, pulse 2s infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold
}

@keyframes gradientText {
    0 {
        background-position: 0 50%
    }

    100% {
        background-position: 100% 50%
    }
}

.cta-card {
    position: relative;
    overflow: visible
}

.cta-card::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 22px;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .4s;
    background: linear-gradient(120deg, rgba(40, 110, 251, 0.25), rgba(30, 92, 209, 0.18), rgba(0, 221, 235, 0.15));
    filter: blur(6px)
}

.cta-card:hover::after {
    opacity: 1
}

.stats-slider-section {
    animation: fadeInStats 1.2s .5s both
}

@keyframes fadeInStats {
    from {
        opacity: 0;
        transform: translateY(40px)
    }

    to {
        opacity: .9;
        transform: translateY(0)
    }
}

.slider-content {
    animation: floatY 6s ease-in-out infinite alternate
}

@keyframes floatY {
    from {
        transform: translateY(0)
    }

    to {
        transform: translateY(-10px)
    }
}

.section-heading {
    position: relative;
    display: inline-block;
    z-index: 1
}

.section-heading::after {
    content: "";
    display: block;
    margin: .5rem auto 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #286efb 0, #1e5cd1 100%);
    opacity: .15;
    animation: underlineGrow 1.2s cubic-bezier(.4, 2, .3, 1) both
}

@keyframes underlineGrow {
    from {
        width: 0;
        opacity: 0
    }

    to {
        width: 60px;
        opacity: .15
    }
}

.primary-btn {
    position: relative;
    z-index: 1;
    overflow: hidden
}

.primary-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: linear-gradient(90deg, rgba(40, 110, 251, 0.08), rgba(30, 92, 209, 0.08));
    opacity: 0;
    transition: opacity .3s;
    animation: btnPulse 2.5s infinite alternate;
    z-index: -1
}

.primary-btn:hover::after {
    opacity: 1
}

@keyframes btnPulse {
    0 {
        opacity: .1
    }

    100% {
        opacity: .25
    }
}

.features-cta {
    border: 2px solid transparent;
    background-clip: padding-box;
    position: relative;
    z-index: 1
}

.features-cta::before {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 27px;
    z-index: -1;
    background: linear-gradient(90deg, #286efb, #1e5cd1, #286efb);
    background-size: 200% 200%;
    animation: gradientText 3s linear infinite alternate;
    opacity: .25
}

@keyframes gradientText {
    0 {
        background-position: 0 50%
    }

    100% {
        background-position: 100% 50%
    }
}

.testimonials-section {
    animation: fadeInStats 1.2s .7s both
}

.faq-section,
.app-coming-soon-section {
    animation: fadeInStats 1.2s .9s both
}

.healthcare-services .section-header {
    text-align: center;
    margin-bottom: 50px
}

.healthcare-services .section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block
}

.healthcare-services .section-heading::after {
    content: "";
    display: block;
    margin: .5rem auto 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #286efb 0, #1e5cd1 100%);
    opacity: .15;
    animation: underlineGrow 1.2s cubic-bezier(.4, 2, .3, 1) both
}

.healthcare-services .section-subheading {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.healthcare-services .service-card {
    position: relative;
    overflow: hidden;
    transition: box-shadow .4s cubic-bezier(0.25, 0.8, 0.25, 1), transform .4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 1
}

.healthcare-services .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: linear-gradient(120deg, #286efb 0, #1e5cd1 60%, #00ddeb 100%);
    opacity: 0;
    transition: opacity .5s;
    pointer-events: none
}

.healthcare-services .service-card:hover::before {
    opacity: .18
}

.healthcare-services .service-card:hover {
    box-shadow: 0 15px 40px rgba(40, 110, 251, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
    transform: translateY(-10px) scale(1.03)
}

.video-section {
    background-color: #fff;
    padding: 5rem 0;
    position: relative
}

.video-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem
}

.video-section .section-header {
    text-align: center;
    margin-bottom: 2.5rem
}

.video-section .section-heading {
    font-size: 36px;
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block
}

.video-section .section-heading::after {
    content: "";
    display: block;
    margin: .5rem auto 0;
    width: 60px;
    height: 4px;
    border-radius: 2px;
    background: linear-gradient(90deg, #286efb 0, #1e5cd1 100%);
    opacity: .15
}

.video-section .section-subheading {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.video-cta {
    text-align: center;
    margin-top: 2rem
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #286efb, #1e5cd1);
    color: white;
    padding: .85rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(40, 110, 251, 0.3)
}

.cta-button:hover {
    background: linear-gradient(135deg, #1e5cd1, #286efb);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(40, 110, 251, 0.4)
}

.video-wrapper {
    background: #000
}

.video-wrapper iframe {
    background: transparent
}

@media(max-width:768px) {
    .video-section {
        padding: 3rem 0
    }

    .video-section .section-heading {
        font-size: 2rem
    }

    .video-section .section-subheading {
        font-size: 1rem
    }

    .video-wrapper {
        border-radius: 8px
    }

    .cta-button {
        padding: .75rem 1.5rem;
        font-size: .9rem
    }
}

@media(max-width:480px) {
    .video-section .section-heading {
        font-size: 1.8rem
    }

    .video-section .section-subheading {
        font-size: .9rem
    }

    .cta-button {
        padding: .6rem 1.2rem;
        font-size: .85rem
    }
}

.dynamic-conditions {
    background: linear-gradient(to bottom, #fff 0, #f8fbff 100%);
    padding: 5rem 0;
    font-family: 'Poppins', sans-serif
}

.dynamic-conditions {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem
}

.conditions-header {
    margin-bottom: 2.5rem;
    text-align: left
}

.conditions-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: .5rem;
    line-height: 1.2
}

.changing-condition {
    font-size: 3.2rem;
    font-weight: 700;
    color: #286efb;
    margin: 0;
    height: 4rem;
    transition: opacity .5s ease-in-out, transform .5s ease-in-out;
    background: linear-gradient(90deg, #286efb, #1e5cd1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block
}

.conditions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem
}

.condition-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .7s ease-in-out;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(40, 110, 251, 0.1);
    display: flex;
    align-items: center;
    gap: 12px
}

.condition-item i {
    font-size: 1.4rem;
    color: #286efb;
    transition: all .3s ease
}

.condition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(40, 110, 251, 0.15);
    border-color: rgba(40, 110, 251, 0.3)
}

.condition-item:hover i {
    transform: scale(1.2)
}

.condition-item.active {
    background: linear-gradient(135deg, #286efb, #1e5cd1);
    color: white;
    box-shadow: 0 8px 24px rgba(40, 110, 251, 0.3)
}

.condition-item.active i {
    color: white
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap
}

.book-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #286efb, #1e5cd1);
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(40, 110, 251, 0.3)
}

.book-button:hover {
    background: linear-gradient(135deg, #1e5cd1, #286efb);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(40, 110, 251, 0.4)
}

.book-button i {
    font-size: 1.2rem
}

.see-all-link {
    display: inline-flex;
    align-items: center;
    color: #286efb;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease
}

.see-all-link i {
    margin-left: .5rem;
    font-size: .9rem;
    transition: transform .3s ease
}

.see-all-link:hover {
    color: #1e5cd1
}

.see-all-link:hover i {
    transform: translateX(5px)
}

@media(max-width:992px) {
    .conditions-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr))
    }
}

@media(max-width:768px) {
    .dynamic-conditions {
        padding: 4rem 0
    }

    .conditions-title {
        font-size: 2.2rem
    }

    .changing-condition {
        font-size: 2.5rem;
        height: 3.5rem
    }

    .condition-item {
        padding: 1.2rem;
        font-size: 1rem
    }

    .action-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem
    }
}

@media(max-width:480px) {
    .conditions-title {
        font-size: 1.8rem
    }

    .changing-condition {
        font-size: 2rem;
        height: 3rem
    }

    .conditions-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem
    }

    .condition-item {
        padding: 1rem;
        font-size: .9rem
    }

    .book-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        justify-content: center
    }
}

.online-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #28a745;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 12px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2)
}

.row.home-doctor-list {
    justify-content: unset !important
}

.doc-section-container {
    width: 100%;
    padding: 40px 0;
    display: flex;
    justify-content: center
}

.doc-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%
}

.doc-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.08);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .2s ease-in-out
}

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

.doc-card-header {
    display: flex;
    align-items: center;
    position: relative
}

.doc-profile-container {
    position: relative;
    display: inline-block
}

.doc-profile-pic {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover
}

.doc-info {
    flex: 1
}

.doc-name {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: #333;
    display: flex;
    gap: 6px;
    /* justify-content: space-between; */
    align-items: baseline;
}
.doc-name a{
        font-size: 17px;
            line-height: 1.3;
    margin-bottom: 4px;
}
.doc-specialty {
    font-size: 14px;
    color: #666;
    margin: 3px 0
}

.doc-experience {
    font-size: 14px;
    color: #666;
    margin: 3px 0
}

.doc-verified {
 width: 24px;
    height: 24px;
    border-radius: 50%;
    margin-left: 2px;
    object-fit: cover;
    position: relative;
    top: 7px;
}

.doc-card-body {
    margin: 15px 0
}

.doc-rating {
    margin-bottom: 8px
}

.doc-stars {
    color: #f4c430;
    font-size: 16px
}

.doc-languages {
    font-size: 14px;
    color: #666;
    margin: 5px 0
}

.doc-fee {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
    font-weight: 500
}

.doc-card-footer {
    display: flex;
    gap: 12px
}

.doc-card-footer a {
    text-decoration: none
}

.doc-appointment-btn {
    flex: 1;
    padding: 10px;
    background-color: #fff;
    border: 1px solid #286efb;
    color: #286efb;
    border-radius: 5px;
    font-size: 13px;
    cursor: pointer;
    transition: background-color .3s;
    width: 160px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none
}

.doc-appointment-btn:hover {
    background-color: #f0f8ff
}

.doc-consult-btn {
    flex: 1;
    padding: 10px;
    background-color: #28a745;
    border: 0;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color .3s;
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none
}

.doc-consult-btn:hover {
    background-color: #218838
}

@media(max-width:1024px) {
    .doc-card-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px
    }
}

@media(max-width:768px) {
    .doc-card-wrapper {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .doc-card {
        max-width: 400px;
        margin: 0 auto
    }
}

#about-me-text {
    margin-left: calc(-233px+(100vw / 10)) !important;
    margin-top: 4.5rem
}

.read-more-link {
    color: #286efb !important;
    cursor: pointer;
    text-decoration: underline !important;
    margin-left: calc(-236px+(100vw / 10)) !important
}

footer .h6 {
    padding-bottom: 10px !important
}

.get_started p {
    padding-bottom: 20px !important
}

.get_started {
    align-items: center;
}