/*=====================================
        ORDER MEDICINE HERO
=====================================*/

.order-medicine-hero{
    background:linear-gradient(180deg,#f7fbff 0%,#eef8ff 100%);
    min-height:80vh;
    display:flex;
    align-items:center;
    overflow:hidden;
}

.order-medicine-hero .hero-container{
    width:100%;
    display:grid;
    grid-template-columns:42% 58%;
    align-items:center;
    min-height:80vh;
}

.order-medicine-hero .hero-content{
    padding:0 60px 0 7%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.order-medicine-hero .hero-content h1{
    font-size:1.9rem;
    line-height:1.2;
    color:#1f2b6c;
    margin:18px 0;
}

.order-medicine-hero .hero-content p{
    color:#64748b;
    line-height:1.8;
    font-size:1rem;
    max-width:560px;
    margin-bottom:35px;
}

.order-medicine-hero .hero-buttons{
    display:flex;
    gap:18px;
}

.order-medicine-hero .hero-buttons a{
    text-decoration:none;
}

.order-medicine-hero .hero-image{
    position:relative;
    width:100%;
    height:80vh;
    overflow:hidden;
}

.order-medicine-hero .hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    border-radius:90px 0 0 90px;
    display:block;
}

.order-medicine-hero .hero-image::before{

    content:"";
    position:absolute;

    left:-120px;
    top:0;

    width:220px;
    height:100%;

    background:#eef8ff;

    border-radius:0 100% 100% 0;
}

@media(max-width:992px){

.order-medicine-hero{
    min-height:auto;
    padding:60px 0;
}

.order-medicine-hero .hero-container{
    grid-template-columns:1fr;
    min-height:auto;
}

.order-medicine-hero .hero-content{
    padding:0 25px;
    text-align:center;
    align-items:center;
}

.order-medicine-hero .hero-content p{
    max-width:100%;
}

.order-medicine-hero .hero-buttons{
    justify-content:center;
}

.order-medicine-hero .hero-image{
    height:350px;
    margin-top:40px;
}

.order-medicine-hero .hero-image::before{
    display:none;
}

.order-medicine-hero .hero-image img{
    border-radius:25px;
}

}

@media(max-width:768px){

.order-medicine-hero .hero-content h1{
    font-size:1.7rem;
}

.order-medicine-hero .hero-buttons{
    flex-direction:column;
    width:100%;
}

.order-medicine-hero .hero-buttons a{
    width:100%;
    max-width:260px;
    text-align:center;
}

.order-medicine-hero .hero-image{
    height:260px;
}

}

/*=====================================
        MEDICINE CATEGORIES
=====================================*/

.medicine-categories{
    padding:60px 8%;
    background:#ffffff;
}

.medicine-categories .section-heading{
    max-width:700px;
    margin:0 auto 35px;
    text-align:center;
}

.medicine-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.medicine-card{
 background:#ffffff;
    border:1px solid #e8eef7;
    border-radius:22px;
    padding:30px 25px;
    height:210px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

    transition:.35s;
    position:relative;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(15,23,42,.05);

}

.medicine-card::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:#2563eb;

    transform:scaleX(0);

    transition:.35s;

}

.medicine-card:hover::before{

    transform:scaleX(1);

}

.medicine-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(37,99,235,.15);

}

.medicine-icon{
 width:70px;
    height:70px;

    border-radius:18px;
    background:#eef6ff;
    color:#2563eb;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:30px;

    margin-bottom:18px;

    transition:.35s;
}

.medicine-card:hover .medicine-icon{

    background:#2563eb;

    color:#ffffff;

    transform:rotate(-8deg);

}

.medicine-card h3{
 color:#1f2b6c;
    font-size:1.2rem;
    margin:0;
    line-height:1.4;
}

.medicine-card a{
 text-decoration:none;
    color:#2563eb;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.35s;

}

.medicine-card:hover a{

    gap:16px;

}

@media(max-width:992px){

.medicine-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.medicine-categories{

    padding:45px 20px;

}

.medicine-grid{

    grid-template-columns:1fr;

}

}




/*=====================================
    HOW DCONNECT HELPS
=====================================*/

.medicine-process{
    padding:60px 8%;
    background:#f8fbff;
}

.medicine-process .section-heading{
    max-width:700px;
    margin:0 auto 45px;
    text-align:center;
}

.process-wrapper{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    flex-wrap:wrap;
}

.process-step{

    width:180px;

    background:#fff;

    border-radius:18px;

    padding:28px 20px;

    text-align:center;

    box-shadow:0 10px 25px rgba(15,23,42,.06);

    transition:.3s;
}

.process-step:hover{

    transform:translateY(-8px);

}

.step-icon{

    width:60px;
    height:60px;

    margin:0 auto 18px;

    background:#eef6ff;

    color:#2563eb;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;
}

.process-step h3{

    color:#1f2b6c;

    font-size:1.05rem;

    margin-bottom:10px;
}

.process-step p{

    color:#64748b;

    font-size:.92rem;

    line-height:1.6;
}

.process-arrow{

    color:#2563eb;

    font-size:22px;
}



@media(max-width:992px){

.process-wrapper{

    gap:25px;

}

.process-arrow{

    display:none;

}

.process-step{

    width:45%;

}

}

@media(max-width:768px){

.medicine-process{

    padding:45px 20px;

}

.process-step{

    width:100%;

}

}


/*=====================================
    SAFE & TRUSTED MEDICINE DELIVERY
=====================================*/

.medicine-trust{
    padding:60px 8% 50px;
    background:#f8fbff;
}

.medicine-trust .section-heading{
    max-width:700px;
    margin:0 auto 35px;
    text-align:center;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.trust-card{

    background:#fff;

    border:1px solid #e7edf7;

    border-radius:18px;

    padding:30px 22px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(15,23,42,.05);

}

.trust-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(37,99,235,.12);

}

.trust-icon{

    width:60px;
    height:60px;

    margin:0 auto 18px;

    border-radius:16px;

    background:#eef6ff;

    color:#2563eb;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

}

.trust-card h3{

    color:#1f2b6c;

    font-size:1.1rem;

    margin-bottom:12px;

    line-height:1.4;

}

.trust-card p{

    color:#64748b;

    font-size:.95rem;

    line-height:1.6;

}


@media(max-width:992px){

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .medicine-trust{
        padding:45px 20px;
    }

    .trust-grid{
        grid-template-columns:1fr;
    }

}

/*=====================================
    WHY ORDER WITH DCONNECT
=====================================*/

.medicine-benefits{

    padding:60px 8%;

    background:#ffffff;

}

.benefits-container{

    display:grid;

    grid-template-columns:48% 52%;

   align-items:stretch;

    gap:60px;

}


.benefits-image{
    height:100%;
    min-height:520px;
}


.benefits-image img{

     width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:28px;
    object-position:center;

}

.benefits-content h2{

    margin:18px 0;

    color:#1f2b6c;

    font-size:2.3rem;

}

.benefits-content p{

    color:#64748b;

    line-height:1.8;

    margin-bottom:35px;

}

.benefits-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.benefit-item{

    display:flex;

    align-items:center;

    gap:14px;

    background:#f8fbff;

    padding:18px;

    border-radius:14px;

    transition:.3s;

}

.benefit-item:hover{

    background:#eef6ff;

    transform:translateX(8px);

}

.benefit-item i{

    color:#2563eb;

    font-size:20px;

}

.benefit-item span{

    color:#1f2b6c;

    font-weight:600;

}


@media(max-width:992px){

.benefits-container{

    grid-template-columns:1fr;

}

.benefits-image{

    order:2;

}

.benefits-content{

    order:1;

}

}

@media(max-width:768px){

.medicine-benefits{

    padding:45px 20px;

}

.benefits-list{

    grid-template-columns:1fr;

}

.benefits-content h2{

    font-size:2rem;

}

}



/*=====================================
        MEDICINE FAQs
=====================================*/

.medicine-faq{
    padding:60px 8% 50px;
    background:#ffffff;
}

.medicine-faq .section-heading{
    max-width:700px;
    margin:0 auto 30px;
    text-align:center;
}

.medicine-faq .faq-container{
    max-width:900px;
    margin:30px auto 0;
}

.medicine-faq .faq-item{
    background:#ffffff;
    border:1px solid #e6edf7;
    border-radius:16px;
    margin-bottom:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(15,23,42,.05);
}

.medicine-faq .faq-question{
    width:100%;
    background:none;
    border:none;
    padding:18px 24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    text-align:left;
    font-size:1.05rem;
    font-weight:600;
    color:#1f2b6c;
}

.medicine-faq .faq-question span{
    color:#2563eb;
    font-size:1.5rem;
    transition:.3s;
}

.medicine-faq .faq-answer{
    display:none;
    padding:0 24px 18px;
}

.medicine-faq .faq-answer p{
    color:#64748b;
    line-height:1.8;
}

.medicine-faq .faq-item.active .faq-answer{
    display:block;
}

.medicine-faq .faq-item.active .faq-question span{
    transform:rotate(45deg);
}


