.hero-title{
        
        padding-left: 50px;
    }

.main-box{
    
    background-color: #f9f9f9;
    max-width:1250px;
    margin:auto;
    padding:30px;
}


/* LOGO */

.logo img{
    height:60px;
}

/* STEPS */

.steps{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin:50px 0;
}

.step{
    display:flex;
    align-items:center;
    gap:12px;
}

.step-circle{
    width: 50px;
    height:50px;
    border-radius:100%;
    background:#e5e7eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    font-weight:700;
}

.step-active{
    background:#c22129;
    color:#fff;
}

.line{
    width:120px;
    height:3px;
    background:#ddd;
}

/* SECTION */

.section-heading{
    font-size:16px;
    font-weight:bold;
    margin-bottom:25px;
}



.pet-input{
    display:none;
}

/* CARD */

.pet-card{
    border:2px solid #e5e7eb;
    border-radius:16px;
    background:#fff;
    padding:20px 20px;
    text-align:center;
    position:relative;
    cursor:pointer;
    transition:0.3s;
    height:100%;
    width: 250px;
}

/* ICON */

.pet-card i{
    font-size:50px;
    color:#525252;
    margin-bottom:21px;
}

/* TEXT */

.pet-card p{
    margin:0;
    font-size:22px;
    color:#1f2937;
    font-weight: 500;
}

/* CHECK ICON */

.check-icon{
    position:absolute;
    top:1px;
    right:1px;
    width:1px;
    height:1px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    opacity:0;
    transform:scale(0.5);
    transition:0.3s;
}

/* ACTIVE */

.pet-input:checked + .pet-card{
    border-color:#c22129;
    background:#f8fff9;
}

.pet-input:checked + .pet-card .check-icon{
    opacity:1;
    transform:scale(1);
}

/* INPUTS */

.form-label{
    font-size:22px;
    font-weight:700;
    margin-bottom:15px;
}

.form-control,
.form-select{
    height:60px;
    border-radius:14px;
    font-size:18px;
}

textarea.form-control{
    height:auto;
}

/* PICKUP */

.pickup-box{
    border:2px solid #ddd;
    border-radius:18px;
    padding:25px;
    display:flex;
    align-items:center;
    gap:20px;
    cursor:pointer;
    background:#fff;
}

.pickup-box.active{
    border-color:#c22129;
    background:#f0fdf4;
}

.pickup-box i{
    font-size:42px;
    color:#c22129;
}

/* SUMMARY */

.summary-box{
    background:#fff9f9;
    border-radius:20px;
    padding:30px;
    margin-top:30px;
}

/* BUTTON */

.confirm-btn{
    width:70%;
    background:#c22129;
    border:none;
    height:70px;
    border-radius:14px;
    color:#fff;
    font-size:28px;
    font-weight:700;
    margin-top:30px;
}

/* HELP */

.help-box{
    background:#f9fafb;
    border-radius:20px;
    padding-top:30px;
    padding-left:4px;
    padding-bottom:30px;
    margin-top:30px;
}

/* MOBILE */
/* MOBILE */

@media(max-width:768px){

.hero-title{
    font-size:42px;
}

.hero-section{
    padding:30px;
}

.steps{
    flex-direction:column;
}

.line{
    width:3px;
    height:40px;
}

.main-box{
    padding:15px;
}

}

.pet-card2{
    border:2px solid #e5e7eb;
    border-radius:16px;
    background:#fff;
    padding:20px 20px;
    text-align:center;
    position:relative;
    cursor:pointer;
    transition:0.3s;
    height:100%;
    width: 250px;
}

/* ICON */

.pet-card2 i{
    font-size:36px;
    color:#525252;
    margin-bottom:12px;
}

/* TEXT */

.pet-card2 p{
    margin:0;
    font-size:16px;
    color:#1f2937;
}

/* ACTIVE */

.pet-input:checked + .pet-card2{
    border-color:#c22129;
    background:#f8fff9;
}

.pet-input:checked + .pet-card2 .check-icon{
    opacity:1;
    transform:scale(1);
}

/* SECTION */

.hero-banner{
    position:relative;
    width:100%;
    overflow:hidden;
    border-radius:25px;
    padding-top: 20px;
}

/* BANNER IMAGE */

.banner-img{
    width:100%;
    display:block;
    border-radius:25px;
}

/* OVERLAY TEXT */

.hero-content{
    position:absolute;
    top:60%;
    left:10px;
    transform:translateY(-50%);
    z-index:2;
    max-width:600px;
}



/* TITLE */

.hero-title{
    font-size:30px;
    line-height:1;
    font-weight:800;
    color:#0f172a;
    margin-bottom:25px;
}

.hero-title span{
    color:#c22129;
}

/* TEXT */

.hero-text{
    font-size:16px;
    color:#4b5563;
    line-height:1.6;
    margin-bottom:30px;
    max-width:200px;
}



/* MOBILE */

@media(max-width:991px){

.hero-content{
    left:30px;
    max-width:90%;
}

.hero-title{
    font-size:48px;
}

.hero-text{
    font-size:18px;
}

.hero-logo{
    width:120px;
}

.hero-btn{
    width:180px;
    height:55px;
    font-size:18px;
}

}

@media(max-width:600px){

.hero-content{
    position:relative;
    transform:none;
    left:0;
    top:0;
    padding:30px;
    background:#fff;
}

.banner-img{
    border-radius:25px 25px 0 0;
}

.hero-title{
    font-size:40px;
}

}

.boxoutline{
  height: 70px;
  border: 1px solid blue;
}

/* page 3 */

.detail-item{
    display:flex;
    justify-content:space-between;
    gap:40px;
    padding:16px 30px;
    border-bottom:1px solid #e5e7eb;
}

.detail-item:last-child{
    border-bottom:none;
}

/* LEFT */

.detail-left{
    min-width:240px;
    display:flex;
    align-items:center;
    gap:18px;
}

/* ICON */

.detail-icon{
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff9f9;
    display:flex;
    align-items:center;
    justify-content:center;
}

.detail-icon i{
    font-size:22px;
    color:#c22129;
}

/* TITLE */

.detail-left h5{
    font-size:16px;
    color:#000000;
}

/* RIGHT */

.detail-right{
    flex:1;
}


.detail-right p{
    font-size:18px;
    line-height:1.7;
    font-weight: 500;
    color:#4b5563;
}

.detail-right span{
    font-size:18px;
    line-height:1.7;
    font-weight: 500;
    color:#f84600;
}



/* PET */

.pet-info{
    display:flex;
    align-items:center;
    gap:18px;
}

.pet-img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
}

/* MOBILE */

@media(max-width:768px){

.detail-item{
    flex-direction:column;
    gap:20px;
    padding:22px;
}

.detail-left{
    min-width:100%;
}

.detail-right h4{
    font-size:20px;
}

.detail-right p{
    font-size:16px;
}

}

/* BOX */

.next-box{
    text-align:center;
    padding-top:20px;
}

/* ICON TOP */

.next-icon{
    width:58px;
    height:58px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#e5e7eb;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* ICON */

.next-icon i{
    font-size:24px;
    color:#c22129;
}

/* CONTENT */

.next-content h4{
    font-size:18px;
    color:#111827;
    margin-bottom:10px;
}

.next-content p{
    margin:0;
    font-size:16px;
    line-height:1.7;
    color:#6b7280;
}

/* MOBILE */

@media(max-width:768px){

.next-title{
    font-size:26px;
}

.next-content h4{
    font-size:20px;
}

.next-content p{
    font-size:16px;
}

}
.pet-card4{
    border:2px solid #e5e7eb;
    border-radius:16px;
    background:#fff;
    padding:20px 20px;
    text-align:center;
    position:relative;
    cursor:pointer;
    transition:0.3s;
    height:100%;
    width: 250px;
}
/* ICON */

.pet-card4 i{
    font-size:36px;
    color:#525252;
    margin-bottom:12px;
}

/* TEXT */

.pet-card4 p{
    margin:0;
    font-size:23px;
    color:#000000;
    font-weight: 500;
}

/* ACTIVE */

.pet-input:checked + .pet-card4{
    border-color:#c22129;
    background:#f8fff9;
}

.pet-input:checked + .pet-card4 .check-icon{
    opacity:1;
    transform:scale(1);
}

.pet-card3{
    border:2px solid #e5e7eb;
    border-radius:16px;
    background:#fff;
    padding:20px 20px;
    text-align:center;
    position:relative;
    cursor:pointer;
    transition:0.3s;
    height:100%;
    width: 120px;
}

/* ICON */

.pet-card3 i{
    font-size:36px;
    color:#525252;
    margin-bottom:12px;
}

/* TEXT */

.pet-card3 p{
    margin:0;
    font-size:23px;
    color:#000000;
    font-weight: 500;
}

/* ACTIVE */

.pet-input:checked + .pet-card3{
    border-color:#c22129;
    background:#f8fff9;
}

.pet-input:checked + .pet-card3 .check-icon{
    opacity:1;
    transform:scale(1);
}
#map{
    width:100%;
    height:200px;
    border-radius:20px;
    overflow:hidden;
    border:2px solid #d1d5db;
    z-index: 1;
}

/* IMAGE */

.slider-img{
    width:100%;
    object-fit:cover;
    border-radius:20px;
}

/* FIXED BAR */
.menubar-area{
    padding-bottom: 90px;
    padding-top: 10px;
}

.fixed-price-box{
    bottom:15px;
    left:50%;
    width:92%;
    max-width:500px;
    padding:10px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    z-index:99999
}

/* PRICE BOX */

.price-box{
    min-width:130px;
    border:2px solid #e5e7eb;
    border-radius:14px;
    padding:10px 16px;

}

/* TEXT */

.price-box span{
    display:block;
    font-size:12px;
    color:#6b7280;
    margin-bottom:2px;
}

/* PRICE */

.price-box h4{
    margin:0;
    font-size:22px;
    font-weight:700;
    color:#111827;
}

/* BUTTON */

.continue-btn{
    flex:1;
    height:55px;
    border:none;
    border-radius:14px;
    background:#16a34a;
    color:#fff;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s;
}

/* HOVER */

.continue-btn:hover{
    background:#15803d;
}

/* MOBILE */

@media(max-width:576px){

.fixed-price-box{
    width:95%;
    bottom:10px;
}

.price-box{
    min-width:110px;
    padding:8px 12px;
}

.price-box h4{
    font-size:18px;
}

.continue-btn{
    height:50px;
    font-size:15px;
}

}


/* =========================
   EXTRA SMALL DEVICES
   SMALL PHONES
========================= */

@media (max-width:320px){
    .hero-title{
        font-size:10px ;
    }

}


/* =========================
   MOBILE DEVICES
========================= */

@media (max-width:480px){
    .hero-title{
        font-size:20px ;
        padding-left: 20px;
    }
    .logo img{
        height: 50%;
    }

    .pet-card{
        width: 150px;
    }

    .pet-card2{
        width: 150px;
    }

    .petTime{
        margin-top: 40px;
    }

    .help-box{
        text-align: center;
        margin-top:10px;
        margin-bottom: 60px;

    }

    .steps{
        align-items:normal;
        margin-left: 120px;
        margin-top: 30px;
    }
    .line{
        margin-left: 20px;
    }

    .menubar-area .toolbar-inner{
        padding-left: 35px;
    }


}


/* =========================
   LARGE MOBILE DEVICES
========================= */

@media (max-width:576px){

}


/* =========================
   TABLET DEVICES
========================= */

@media (max-width:768px){

}


/* =========================
   LARGE TABLETS
========================= */

@media (max-width:992px){

}


/* =========================
   LAPTOP DEVICES
========================= */

@media (max-width:1200px){

}


/* =========================
   LARGE SCREENS
========================= */

@media (max-width:1400px){

}

.groomingServices{
    padding-top: 50px;
}

.offer{
    width: 100px !important;
}
.offer2{
    width: 300px !important;
}
.offer3{
    width: 150px !important;
}



/* product image zoom  start */
.dz-media img{
    cursor: zoom-in;
}
/* product image zoom  end */
.dirham-icon{
    width:16px;
    height:16px;
    vertical-align:middle;
    
}