/* =========================
   Global
========================= */

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

body{
    font-family:Arial,sans-serif;
    background:#f7f7f7;
    color:#222;
    line-height:1.6;
}


/* =========================
   MTP HERO SECTION
========================= */

.mtp-hero-section{
    position:relative;

    display:grid;
    grid-template-columns:1.2fr 0.9fr 380px;

    align-items:center;
    gap:30px;

    padding:80px 60px;

    overflow:hidden;

    background:
        radial-gradient(circle at top left,
        rgba(59,130,246,.08),
        transparent 35%),

        radial-gradient(circle at bottom right,
        rgba(236,72,153,.08),
        transparent 35%),

        linear-gradient(
        135deg,
        #fffdfd 0%,
        #f8fafc 100%);
}

/* Decorative circles */

.mtp-hero-section::before{
    content:"";

    position:absolute;

    top:-180px;
    right:-150px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:
        rgba(37,99,235,.05);
}

.mtp-hero-section::after{
    content:"";

    position:absolute;

    bottom:-150px;
    left:-120px;

    width:320px;
    height:320px;

    border-radius:50%;

    background:
        rgba(236,72,153,.05);
}

/* =========================
   LEFT CONTENT
========================= */

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

.mtp-main-title{
    font-size:58px;
    line-height:1.1;
    font-weight:800;

    color:#0f172a;

    margin-bottom:30px;
}

.mtp-main-title span{
    color:#2563eb;
}

.mtp-feature-list{
    list-style:none;
}

.mtp-feature-list li{

    position:relative;

    padding-left:42px;

    margin-bottom:22px;

    font-size:21px;

    font-weight:500;

    color:#334155;
}

.mtp-feature-list li::before{

    content:"✓";

    position:absolute;

    left:0;
    top:1px;

    width:28px;
    height:28px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#dbeafe;

    color:#2563eb;

    font-weight:700;
}

/* =========================
   DOCTOR IMAGE
========================= */

.mtp-doctor-image-wrap{
    display:flex;
    justify-content:center;
    align-items:flex-end;
}

.mtp-doctor-image{
    width:100%;
    max-width:650px;
    height:auto;

    object-fit:contain;

    transform:translateY(10px);

    filter:
        drop-shadow(0 15px 25px rgba(0,0,0,.08))
        drop-shadow(0 30px 50px rgba(0,0,0,.12));
}


/* =========================
   FORM CARD
========================= */

.mtp-lead-card{

    position:relative;
    z-index:2;

    background:#fff;

    padding:35px;

    border-radius:28px;

    border:1px solid #edf2f7;

    box-shadow:
        0 20px 45px rgba(15,23,42,.08);
}

.mtp-form-title{

    text-align:center;

    font-size:30px;

    font-weight:700;

    color:#0f172a;

    margin-bottom:10px;
}

.mtp-input-field{

    width:100%;

    height:58px;

    padding:0 22px;

    border:1px solid #dbe2ea;

    border-radius:50px;

    margin-bottom:15px;

    font-size:15px;
}

.mtp-submit-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:50px;

    background:
        linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8);

    color:#fff;

    font-size:16px;
    font-weight:700;

    cursor:pointer;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

    .mtp-hero-section{

        grid-template-columns:1fr;

        text-align:center;

        padding:60px 30px;
    }

    .mtp-feature-list{

        max-width:500px;

        margin:auto;

        text-align:left;
    }

    .mtp-lead-card{

        max-width:520px;

        margin:auto;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .mtp-main-title{
        font-size:36px;
    }

    .mtp-feature-list li{
        font-size:17px;
    }

    .mtp-doctor-image{
        max-width:300px;
    }

    .mtp-lead-card{
        padding:25px;
    }

    .mtp-form-title{
        font-size:22px;
    }
}

/* =========================
   WOMEN CARE CARDS - 2026
========================= */

.cards{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:24px;

    max-width:1200px;
    margin:70px auto;

    padding:0 20px;
}

.card{

    position:relative;

    padding:34px;

    border-radius:28px;

    background:
    linear-gradient(
        135deg,
        #ffffff,
        #fff8fa
    );

    border:1px solid #f3e8ff;

    box-shadow:
        0 8px 30px rgba(236,72,153,.05);

    transition:.35s ease;
}


.card:nth-child(1){
    background:
    linear-gradient(
        135deg,
        #fff1f2,
        #ffffff
    );
}

.card:nth-child(2){
    background:
    linear-gradient(
        135deg,
        #faf5ff,
        #ffffff
    );
}

.card:nth-child(3){
    background:
    linear-gradient(
        135deg,
        #fdf2f8,
        #ffffff
    );
}

.card:nth-child(4){
    background:
    linear-gradient(
        135deg,
        #f5f3ff,
        #ffffff
    );
}

.card h3{

    font-size:26px;
    font-weight:700;

    color:#4c1d95;

    margin-bottom:22px;

    line-height:1.3;
}

.card ul{
    list-style:none;
}

.card li{

    position:relative;

    padding-left:34px;

    margin-bottom:16px;

    color:#5b5b6b;

    font-size:16px;

    line-height:1.7;
}

.card li::before{

    content:"";

    position:absolute;

    left:0;
    top:7px;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#ec4899;
}

/* Soft corner accent */

.card::after{

    content:"";

    position:absolute;

    right:-30px;
    top:-30px;

    width:120px;
    height:120px;

    border-radius:50%;

    background:
    radial-gradient(
        rgba(236,72,153,.08),
        transparent 70%
    );

    pointer-events:none;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .cards{
        grid-template-columns:1fr;
    }

    .card{
        padding:30px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .cards{
        margin:50px auto;
        padding:0 15px;
        gap:18px;
    }

    .card{
        padding:24px;
        border-radius:22px;
    }

    .card h3{
        font-size:21px;
    }

    .card li{
        font-size:15px;
        padding-left:28px;
    }
}   


/* =========================
   MTP CTA SECTION
========================= */

.mtp-cta-section{

    margin:70px 0;

    padding:60px 40px;

    border-radius:32px;

    background:
    linear-gradient(
        135deg,
        #fff1f2,
        #faf5ff
    );

    text-align:center;

    border:1px solid #f3e8ff;
}

.mtp-cta-content{
    max-width:700px;
    margin:auto;
}

.mtp-cta-title{

    font-size:56px;
    line-height:1.1;
    font-weight:800;

    color:#312e81;

    margin-bottom:20px;
}

.mtp-cta-text{

    font-size:18px;

    color:#64748b;

    line-height:1.7;

    margin-bottom:30px;
}

.mtp-call-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    gap:10px;

    min-width:260px;

    height:60px;

    padding:0 35px;

    border-radius:999px;

    background:
    linear-gradient(
        135deg,
        #ec4899,
        #8b5cf6
    );

    color:#fff;

    font-size:18px;
    font-weight:700;

    text-decoration:none;

    transition:.3s ease;
}

.mtp-call-btn:hover{

    transform:translateY(-3px);

    box-shadow:
        0 15px 30px rgba(236,72,153,.25);
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .mtp-cta-section{
        padding:40px 20px;
        border-radius:24px;
    }

    .mtp-cta-title{
        font-size:34px;
    }

    .mtp-cta-text{
        font-size:16px;
    }

    .mtp-call-btn{
        width:100%;
        min-width:auto;
    }
}

/* =========================
   FEATURE HIGHLIGHTS
========================= */

.feature-row{

    display:grid;

    grid-template-columns:
        repeat(
            auto-fit,
            minmax(220px,1fr)
        );

    gap:20px;

    margin:60px 0;
}

.feature{

    position:relative;

    display:flex;
    align-items:center;
    justify-content:center;

    text-align:center;

    min-height:120px;

    padding:25px 20px;

    border-radius:24px;

    font-size:18px;
    font-weight:600;
    line-height:1.5;

    color:#4c1d95;

    background:#fff;

    border:1px solid #f1f5f9;

    overflow:hidden;

    transition:all .3s ease;

    box-shadow:
        0 6px 20px rgba(15,23,42,.05);
}

.feature:hover{

    transform:translateY(-4px);

    box-shadow:
        0 16px 35px rgba(236,72,153,.10);
}

/* Top Accent */

.feature::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
        linear-gradient(
            90deg,
            #ec4899,
            #8b5cf6
        );
}

/* Soft Background Variants */

.feature:nth-child(1){
    background:
        linear-gradient(
            135deg,
            #fff1f2,
            #ffffff
        );
}

.feature:nth-child(2){
    background:
        linear-gradient(
            135deg,
            #faf5ff,
            #ffffff
        );
}

.feature:nth-child(3){
    background:
        linear-gradient(
            135deg,
            #fdf2f8,
            #ffffff
        );
}

.feature:nth-child(4){
    background:
        linear-gradient(
            135deg,
            #eef2ff,
            #ffffff
        );
}

.container{
    width:100%;
    max-width:1200px;
    margin:0 auto;
    padding:0 15px;
}

.feature-row{
    width:100%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:60px auto;
}

.feature{
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

@media (max-width:768px){

    .feature-row{
        grid-template-columns:1fr;
        max-width:320px;
        margin:40px auto;
    }

    .feature{
        width:100%;
        min-height:85px;
        margin:0 auto;
    }
}

/* =========================
   TABLET
========================= */

@media (max-width:991px){

    .feature-row{

        grid-template-columns:
            repeat(2,1fr);

        gap:16px;
    }

    .feature{

        min-height:110px;

        font-size:17px;

        border-radius:20px;
    }
}

/* =========================
   MOBILE
========================= */

@media (max-width:576px){

    .feature-row{

        grid-template-columns:1fr;

        gap:12px;

        margin:40px 0;
    }

    .feature{

        min-height:80px;

        padding:18px;

        font-size:15px;

        border-radius:16px;
    }
}


/* =========================
   COMPARISON SECTION
========================= */

.compare{
    margin:60px 0;
}

.compare h2{
    text-align:center;
    font-size:36px;
    font-weight:700;
    color:#312e81;
    margin-bottom:30px;
}

.compare table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(15,23,42,.06);
}

.compare th{
    background:#6366f1;
    color:#fff;
    padding:16px;
    font-size:16px;
    font-weight:600;
}

.compare th:last-child{
    background:#ec4899;
}

.compare td{
    padding:16px 12px;
    font-size:15px;
    text-align:center;
    border-bottom:1px solid #f1f5f9;
}

.compare td:first-child{
    text-align:left;
    font-weight:600;
    color:#334155;
}

.compare td:nth-child(2){
    color:#64748b;
}

.compare td:last-child{
    color:#ec4899;
    font-weight:700;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .compare{
        margin:40px 0;
    }

    .compare h2{
        font-size:26px;
        margin-bottom:20px;
    }

    .compare table{
        display:block;
        width:100%;
        overflow:hidden;
    }

    .compare thead{
        display:none;
    }

    .compare tbody,
    .compare tr{
        display:block;
        width:100%;
    }

    .compare tr{
        background:#fff;
        border:1px solid #f1f5f9;
        border-radius:16px;
        margin-bottom:12px;
        padding:12px;
        box-shadow:0 4px 12px rgba(15,23,42,.04);
    }

    .compare td{
        display:flex;
        justify-content:space-between;
        align-items:center;
        border:none;
        padding:8px 0;
        text-align:right;
        font-size:14px;
    }

    .compare td:first-child{
        display:block;
        text-align:left;
        font-size:16px;
        font-weight:700;
        color:#312e81;
        margin-bottom:8px;
    }

    .compare td:nth-child(2)::before{
        content:"Others";
        font-weight:600;
        color:#64748b;
    }

    .compare td:last-child::before{
        content:"Sri Vinayaka";
        font-weight:600;
        color:#ec4899;
    }
}


/* =========================
   INFO SECTION
========================= */

.mtp-info-section{
    margin:90px 0;
}

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

.mtp-section-tag{

    display:inline-block;/* =========================
   COMPARISON SECTION
========================= */

.compare{
    margin:60px 0;
}

.compare h2{
    text-align:center;
    font-size:36px;
    font-weight:700;
    color:#312e81;
    margin-bottom:30px;
}

.compare table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(15,23,42,.06);
}

.compare th{
    background:#6366f1;
    color:#fff;
    padding:16px;
    font-size:16px;
    font-weight:600;
}

.compare th:last-child{
    background:#ec4899;
}

.compare td{
    padding:16px 12px;
    font-size:15px;
    text-align:center;
    border-bottom:1px solid #f1f5f9;
}

.compare td:first-child{
    text-align:left;
    font-weight:600;
    color:#334155;
}

.compare td:nth-child(2){
    color:#64748b;
}

.compare td:last-child{
    color:#ec4899;
    font-weight:700;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .compare{
        margin:40px 0;
    }

    .compare h2{
        font-size:26px;
        margin-bottom:20px;
    }

    .compare table{
        display:block;
        width:100%;
        overflow:hidden;
    }

    .compare thead{
        display:none;
    }

    .compare tbody,
    .compare tr{
        display:block;
        width:100%;
    }

    .compare tr{
        background:#fff;
        border:1px solid #f1f5f9;
        border-radius:16px;
        margin-bottom:12px;
        padding:12px;
        box-shadow:0 4px 12px rgba(15,23,42,.04);
    }

    .compare td{
        display:flex;
        justify-content:space-between;
        align-items:center;
        border:none;
        padding:8px 0;
        text-align:right;
        font-size:14px;
    }

    .compare td:first-child{
        display:block;
        text-align:left;
        font-size:16px;
        font-weight:700;
        color:#312e81;
        margin-bottom:8px;
    }

    .compare td:nth-child(2)::before{
        content:"Others";
        font-weight:600;
        color:#64748b;
    }

    .compare td:last-child::before{
        content:"Sri Vinayaka";
        font-weight:600;
        color:#ec4899;
    }
}



    padding:8px 18px;

    border-radius:999px;

    background:#fdf2f8;

    color:#ec4899;

    font-size:14px;
    font-weight:600;

    margin-bottom:15px;
}

.mtp-info-title{

    font-size:48px;

    font-weight:800;

    color:#312e81;

    line-height:1.2;
}

.mtp-info-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:50px;

    align-items:center;
}

.mtp-info-image img{

    width:65%;

    border-radius:28px;

    box-shadow:
        0 15px 40px rgba(15,23,42,.08);
}

.mtp-info-content p{

    font-size:18px;

    color:#64748b;

    line-height:1.9;

    margin-bottom:20px;
}

/* =========================
   STEPS
========================= */

.mtp-care-steps{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

    margin-top:60px;
}

.mtp-step-card{

    background:#fff;

    padding:30px;

    border-radius:24px;

    border:1px solid #f1f5f9;

    box-shadow:
        0 8px 25px rgba(15,23,42,.05);

    transition:.3s ease;
}

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

.mtp-step-card h3{

    font-size:24px;

    color:#312e81;

    margin-bottom:20px;
}

.mtp-step-card ul{
    list-style:none;
}

.mtp-step-card li{

    position:relative;

    padding-left:28px;

    margin-bottom:14px;

    color:#475569;

    line-height:1.7;
}

.mtp-step-card li::before{

    content:"✓";

    position:absolute;

    left:0;

    color:#ec4899;

    font-weight:700;
}

/* =========================
   TABLET
========================= */

@media(max-width:991px){

    .mtp-info-grid{
        grid-template-columns:1fr;
    }

    .mtp-care-steps{
        grid-template-columns:1fr;
    }

    .mtp-info-title{
        font-size:36px;
    }
}

/* =========================
   MOBILE
========================= */

@media(max-width:576px){

    .mtp-info-section{
        margin:60px 0;
    }

    .mtp-info-title{
        font-size:28px;
    }

    .mtp-info-content p{
        font-size:16px;
    }

    .mtp-step-card{
        padding:24px;
        border-radius:18px;
    }

    .mtp-step-card h3{
        font-size:20px;
    }
}

/* =========================
   FAQ SECTION
========================= */

.mtp-faq-section{

    max-width:900px;

    margin:90px auto;

    padding:0 20px;
}

.mtp-faq-header{

    text-align:center;

    margin-bottom:40px;
}

.mtp-tag{

    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:#fdf2f8;

    color:#ec4899;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;
}

.mtp-faq-header h2{

    font-size:42px;

    color:#312e81;
}

.mtp-faq-item{

    background:#fff;

    border:1px solid #f1f5f9;

    border-radius:22px;

    margin-bottom:15px;

    overflow:hidden;

    box-shadow:
        0 8px 25px rgba(15,23,42,.04);
}

.mtp-faq-question{

    padding:22px 25px;

    font-size:18px;

    font-weight:600;

    color:#312e81;
}

.mtp-faq-answer{

    padding:0 25px 25px;

    color:#64748b;

    line-height:1.8;
}

/* =========================
   FINAL CTA
========================= */

.mtp-final-cta{

    margin-top:100px;

    padding:90px 20px;

    border-radius:40px;

    text-align:center;

    background:
    linear-gradient(
        135deg,
        #fff1f2,
        #faf5ff
    );
}

.mtp-final-content{

    max-width:800px;

    margin:auto;
}

.mtp-final-content h2{

    font-size:52px;

    line-height:1.2;

    color:#312e81;

    margin:20px 0;
}

.mtp-final-content p{

    font-size:18px;

    line-height:1.8;

    color:#64748b;

    margin-bottom:35px;
}

.mtp-final-buttons{

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;
}

.mtp-call-btn,
.mtp-whatsapp-btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    min-width:220px;

    height:58px;

    padding:0 30px;

    border-radius:999px;

    text-decoration:none;

    font-weight:600;

    transition:.3s ease;
}

.mtp-call-btn{

    background:#ec4899;

    color:#fff;
}

.mtp-whatsapp-btn{

    background:#22c55e;

    color:#fff;
}

.mtp-call-btn:hover,
.mtp-whatsapp-btn:hover{

    transform:translateY(-3px);
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .mtp-faq-header h2{
        font-size:30px;
    }

    .mtp-final-content h2{
        font-size:34px;
    }

    .mtp-final-content p{
        font-size:16px;
    }

    .mtp-call-btn,
    .mtp-whatsapp-btn{
        width:100%;
    }
}

/* Success Popup */

.mtp-success-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.5);

    display:none;

    align-items:center;
    justify-content:center;

    z-index:9999;
}

.mtp-success-popup.active{
    display:flex;
}

.mtp-success-box{

    width:90%;
    max-width:400px;

    background:#fff;

    padding:30px;

    border-radius:24px;

    text-align:center;

    box-shadow:
    0 20px 50px rgba(0,0,0,.15);
}

.mtp-success-icon{

    width:70px;
    height:70px;

    margin:0 auto 20px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:#22c55e;

    color:#fff;

    font-size:30px;
    font-weight:700;
}

.mtp-success-box h3{

    color:#0f172a;

    margin-bottom:10px;
}

.mtp-success-box p{

    color:#64748b;

    line-height:1.6;

    margin-bottom:20px;
}

.mtp-success-box button{

    border:none;

    background:#2563eb;

    color:#fff;

    padding:12px 30px;

    border-radius:999px;

    cursor:pointer;
}
