    :root {
        --primary: #12A19A;
        --primary-soft: #e6f6f5;
        --text: #2d3748;
        --color-primary-light: #4FC7C1;
        --color-primary-dark: #0E6F6A;
        --color-title-dark: #004444;
        --shadow-soft: 0 4px 12px rgba(0, 0, 0, .08);
        --shadow-card: 0 6px 18px rgba(0, 0, 0, .10);
        --box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }


    .container {
        width: min(1200px, 95%);
        margin: auto;
        padding: 12px 0
    }

    .hero {
        margin-top: 130px;
        background: linear-gradient(135deg,
                var(--primary),
                var(--color-primary-dark));
        /* background:linear-gradient(
        135deg,
        #0C0C4A,
        #202077
        ); */
        color: #fff;
        text-align: center;
        padding: 30px 0 90px 0;
        border-radius: 17px
    }

    .btn-primary:hover {
        background: var(--color-primary-dark);
        color: white;
    }

    .hero-logo {
        width: auto;
        margin-bottom: 25px;
    }

    .hero h1 {
        font-size: 48px;
        line-height: 1.4;
    }

    .hero h1 span {
        color: #fff4b2;
    }

    .hero p {
        max-width: 700px;
        margin: 25px auto;
        font-size: 18px;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .trust-icon {
        width: 85px;
        height: 85px;
        margin: 0 auto 22px;
        border-radius: 50%;
        background: var(--primary-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .35s;
    }

    .trust-icon svg {
        width: 42px;
        height: 42px;
        stroke: var(--primary);
        stroke-width: 1.7;
        stroke-linecap: round;
        stroke-linejoin: round;
        fill: none;
    }

    .trust-card:first-child .trust-icon svg path:first-child {
        fill: rgba(18, 161, 154, .12);
    }

    .trust-card.featured .trust-icon {
        background: linear-gradient(135deg,
                #0C0C4A,
                #202077);
    }

    .trust-card.featured .trust-icon svg {
        stroke: #fff;
    }

    .trust-card:hover .trust-icon {
        transform: scale(1.08);
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 28px;
        border-radius: 50px;
        text-decoration: none;
        transition: .3s;
    }

    .btn-primary {
        background: #fff;
        color: var(--primary);
    }

    .btn-outline {
        border: 2px solid #fff;
        color: #fff;
    }

    .trust-section {
        padding: 50px 0
    }

    .trust-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .trust-card {
        background: #fff;
        padding: 30px;
        text-align: center;
        border-radius: 16px;
        box-shadow: var(--box-shadow);
        margin: 10px 0
    }

    .section-title {
        text-align: center;
        margin-bottom: 40px;
        /* color:var(--color-title-dark); */
        color: #0C0C4A;
    }

    .videos-section {
        background: #f8fbfb;
        padding: 80px 0;
        border-radius: 17px 17px 0 0
    }

    .video-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        padding-bottom: 18px
    }

    .video-card {
        background: #fff;
        border-radius: 18px;
        overflow: hidden;
        box-shadow: var(--box-shadow);
    }

    .video-wrapper {
        aspect-ratio: 16/9;
    }

    .video-wrapper iframe {
        width: 100%;
        height: 100%;
        border: none;
    }

    .video-card h3 {
        padding: 0 4px;
        text-align: center;
    }

    .ivf-highlight {
        padding: 80px 22px;
        text-align: center;
        background: #fff9e8;
        border-radius: 0 0 17px 17px
    }

    .badge {
        display: inline-block;
        background: #ffc107;
        color: #000;
        padding: 8px 20px;
        border-radius: 30px;
    }

    .ivf-highlight h2 {
        margin-top: 20px;
        font-size: 42px;
    }

    .big-call-btn {
        display: inline-block;
        margin-top: 25px;
        background: var(--primary);
        color: #fff;
        padding: 18px 35px;
        border-radius: 60px;
        text-decoration: none;
    }

    .services {
        padding: 60px 0;
    }

    .service-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 18px;
    }


    .why-parsa {
        background: #f8fbfb;
        padding: 60px 0;
        border-radius: 17px
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1.3fr;
        gap: 32px;
        align-items: center;
    }

    .why-image img {
        width: 100%;
        border-radius: 20px;
    }

    .why-content ul {
        padding: 0;
        list-style: none;
    }

    .why-content li {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .sticky-call {
        position: fixed;
        bottom: 73px;
        left: 20px;
        z-index: 100;
    }

    .fab-button {
        display: none
    }

    .sticky-call a {
        background: var(--primary);
        color: #fff;
        text-decoration: none;
        padding: 15px 22px;
        border-radius: 50px;
        box-shadow: var(--shadow-card);
    }

    .service-card {
        background: #fff;
        border-radius: 18px;
        padding: 30px 20px;
        text-align: center;
        box-shadow: var(--box-shadow);
        transition: .35s;
        border: 1px solid rgba(18, 161, 154, .08);
    }

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(18, 161, 154, .15);
    }

    .service-icon {
        width: 72px;
        height: 72px;
        margin: 0 auto 18px;
        background: var(--primary-soft);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-icon svg {
        width: 38px;
        height: 38px;
        stroke: var(--primary);
        stroke-width: 2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .service-card h3 {
        font-size: 17px;
        color: #0C0C4A;
        margin-bottom: 8px;
    }

    .service-card p {
        color: #64748b;
        font-size: 14px;
        line-height: 1.8;
        margin: 0;
    }

    .dr-name {
        display: inline-block;
        color: #64748b;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 16px;
        width: 100%;
        text-align: center;
    }

    .section-badge {
        display: inline-block;
        background: var(--primary-soft);
        color: var(--primary);
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .why-head {
        color: #0C0C4A;
        text-align: center;
        margin-bottom: 15px;
        padding: 0 12px;
    }

    .why-desc {
        color: #64748b;
        line-height: 2;
        margin-bottom: 35px;
    }

    .why-features {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 18px;
        background: #fff;
        padding: 18px;
        border-radius: 18px;
        box-shadow: var(--shadow-soft);
        transition: .3s;
        border: 1px solid rgba(18, 161, 154, .08)
    }

    .feature-item:hover {
        transform: translateX(-8px);
        box-shadow: var(--shadow-card)
    }

    .feature-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 18px;
        background: var(--primary-soft);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px
    }

    .feature-item h4 {
        margin: 0 0 5px;
        color: #0C0C4A;
        font-size: 18px;
        font-weight: 700
    }

    .feature-item p {
        margin: 0;
        color: #64748b
    }

    .feature-item.featured {
        border: 2px solid var(--primary);
        background: linear-gradient(135deg,
                rgba(18, 161, 154, .06),
                rgba(18, 161, 154, .12))
    }

    .feature-item.featured .feature-icon {
        background: linear-gradient(135deg,
                #0C0C4A,
                #202077);
        color: #fff
    }

    .contact-box {
        /* background:#fff;
    border-radius:24px; */
        padding: 35px;
        margin-bottom: 50px;
        /* box-shadow:var(--shadow-card); */
        /* border-bottom: 2px solid #64748b; */
    }

    .contact-header {
        text-align: center;
        margin-bottom: 30px
    }

    .contact-main-icon {
        width: 60px;
        height: 60px;
        stroke: var(--primary);
        fill: none;
        stroke-width: 1.8;
        margin-bottom: 15px
    }

    .contact-header h3 {
        color: #0C0C4A;
        font-size: 28px;
        margin-bottom: 10px
    }

    .contact-header p {
        color: #64748b;
        max-width: 700px;
        margin: auto;
        line-height: 2
    }

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

    .phone-card {
        /* background:var(--primary-soft); */
        background: #fff;
        border-radius: 18px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 15px;
        text-decoration: none;
        transition: .3s;
        box-shadow: var(--box-shadow)
    }

    .phone-card:hover {
        transform: translateY(-4px)
    }

    .phone-card svg {
        width: 42px;
        height: 42px;
        stroke: var(--primary);
        fill: none;
        stroke-width: 1.8;
        flex-shrink: 0
    }

    .phone-card span {
        display: block;
        color: #64748b;
        font-size: 14px
    }

    .phone-card strong {
        display: block;
        color: #0C0C4A;
        font-size: 22px;
        margin-top: 4px;
        direction: ltr
    }

    @media(max-width:768px) {

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

        .contact-header h3 {
            font-size: 22px
        }

        .phone-card strong {
            font-size: 18px
        }

    }

    @media(max-width:992px) {

        .video-grid,
        .trust-grid,
        .why-grid {
            grid-template-columns: 1fr;
        }

        .trust-grid {
            gap: 0
        }

        .services,
        .why-parsa {
            padding: 22px 0
        }

        .trust-section {
            padding: 18px 0
        }

        .videos-section {
            padding: 30px 0
        }

        .hero h1 {
            font-size: 34px
        }

        .ivf-highlight {
            padding: 60px 0
        }

        .ivf-highlight h2 {
            font-size: 30px
        }
    }

    /* ************************* صفحه مکمل ها ***************** */
    .suppl-tlt {
        text-align: center;
        color: #004444
    }

    .suppl-slider {
        position: relative;
        width: 100%;
        height: 55vh;
        max-height: 520px;
        overflow: hidden;
    }

    .sl-wrap {
        width: 100%;
        height: 100%;
        display: flex;
        transition: transform .9s ease;
    }

    .sl-item {
        min-width: 100%;
        height: 100%;
        position: relative;
        opacity: 0;
        transition: opacity .9s ease;
        border-radius: 11px
    }

    .sl-item.active {
        opacity: 1;
    }

    .sl-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 11px
    }

    .sl-txt {
        position: absolute;
        left: 5%;
        bottom: 10%;
        color: #fff;
        text-shadow: 0 2px 15px rgba(0, 0, 0, .6);
    }

    .sl-txt h2 {
        font-size: 1.8rem;
        margin-bottom: .4rem;
    }

    .sl-txt p {
        font-size: 1rem;
        opacity: .9;
    }

    /* دکمه‌ها */
    .sl-prev,
    .sl-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, .3);
        border: none;
        padding: 10px 14px;
        cursor: pointer;
        border-radius: 50%;
        backdrop-filter: blur(6px);
        transition: .3s;
    }

    .sl-prev:hover,
    .sl-next:hover {
        background: rgba(255, 255, 255, .6);
    }

    .sl-prev {
        right: 15px
    }

    .sl-next {
        left: 15px
    }

    /* دات‌ها */
    .sl-dots {
        position: absolute;
        bottom: 12px;
        left: 0;
        right: 0;
        text-align: center;
    }

    .sl-dots span {
        display: inline-block;
        width: 11px;
        height: 11px;
        margin: 0 4px;
        background: rgba(255, 255, 255, .5);
        border-radius: 50%;
        cursor: pointer;
        transition: .3s;
    }

    .sl-dots .active {
        background: #fff;
        width: 13px;
        height: 13px;
    }

    .suppl-sections {
        padding: 40px 15px;
    }

    .suppl-category {
        margin-bottom: 45px;
    }

    .suppl-category-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 18px;
        color: #222;
        position: relative;
        padding-right: 14px;
    }

    .suppl-category-title::before {
        content: '';
        position: absolute;
        right: 0;
        top: 4px;
        width: 5px;
        height: 26px;
        border-radius: 10px;
        background: #12A19A;
    }

    /* ردیف اسکرولی */
    .suppl-row {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-behavior: smooth;
        padding-bottom: 10px;

        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .suppl-row::-webkit-scrollbar {
        display: none;
    }

    /* کارت */
    .suppl-card {
        min-width: 260px;
        max-width: 260px;
        flex: 0 0 auto;
        background: #fff;
        border-radius: 18px;
        padding: 14px;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
        transition: .3s
    }

    /* .suppl-card:hover{
        transform:translateY(-8px);
    } */

    .suppl-card img {
        width: 100%;
        height: 210px;
        object-fit: cover;
        border-radius: 14px;
    }

    .suppl-card h3 {
        font-size: 1rem;
        margin-top: 12px;
        margin-bottom: 8px;
        color: #222;
        line-height: 1.7;
        min-height: 54px;
    }

    .suppl-brand {
        color: #777;
        font-size: .92rem;
        margin-bottom: 10px;
    }

    .suppl-price {
        color: #27ae60;
        font-weight: 700;
        font-size: 1rem;
        margin-bottom: 14px;
    }

    .btn-buy {
        display: block;
        width: 100%;
        text-align: center;
        padding: 11px 15px;
        border-radius: 14px;
        background: #12A19A;
        color: #fff;
        text-decoration: none;
        font-weight: 700;
        transition: .3s;
    }

    .btn-buy:hover {
        background: #108b85;
    }

    .supplement-nav {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 16px;
        margin: 35px 0 45px;
    }

    .supplement-nav-item {
        background: #fff;
        border: 2px solid rgba(18, 161, 154, .15);
        border-radius: 18px;
        padding: 18px 12px;
        text-decoration: none;
        color: #333;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        transition: .25s ease;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    }

    .supplement-nav-item:hover {
        background: #12A19A;
        color: #fff;
        transform: translateY(-4px);
        box-shadow: 0 10px 25px rgba(18, 161, 154, .25);
    }

    .supplement-nav-item svg {
        width: 34px;
        height: 34px;
        fill: #12A19A;
        transition: .25s;
    }

    .supplement-nav-item:hover svg {
        fill: #fff;
    }

    .supplement-nav-item span {
        font-size: 14px;
        font-weight: 700;
        text-align: center;
        line-height: 1.6;
    }

    html {
        scroll-behavior: smooth;
    }

    /* دسکتاپ */
    @media (min-width: 992px) {

        .suppl-row {
            overflow-x: visible;
            flex-wrap: wrap;
        }

        .suppl-card {
            min-width: calc(25% - 14px);
            max-width: calc(25% - 14px);
        }
    }

    /* تبلت */
    @media (max-width: 991px) {

        .suppl-card {
            min-width: 230px;
            max-width: 230px;
        }
    }

    /* موبایل */
    @media (max-width: 768px) {
        .layout {
            margin: 15px 0% !important
        }

        .suppl-slider {
            height: 42vh;
        }

        .sl-txt h2 {
            font-size: 1.4rem;
        }

        .sl-txt p {
            font-size: .9rem;
        }

        .suppl-category-title {
            font-size: 1.15rem;
        }

        .suppl-card {
            min-width: 78%;
            max-width: 78%;
        }

        .suppl-card img {
            height: 190px;
        }

        .supplement-nav {
            grid-template-columns: repeat(2, 1fr);
            gap: 12px;
        }

        .supplement-nav-item {
            padding: 14px 10px;
        }

        .supplement-nav-item svg {
            width: 28px;
            height: 28px;
        }

        .supplement-nav-item span {
            font-size: 13px;
        }
    }

    /* موبایل کوچک */
    @media (max-width: 480px) {
        .suppl-slider {
            height: 36vh;
        }

        .sl-txt {
            left: 4%;
            bottom: 6%;
        }

        .sl-txt h2 {
            font-size: 1.2rem;
        }

        .sl-txt p {
            font-size: .8rem;
        }

        .supplement-nav {
            grid-template-columns: repeat(2, 1fr);
        }
    }