/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/* Set default font and background */
body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
}
/* Loader Styles */
#loader-bg {
    position: fixed;
    z-index: 9999;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s;
}
#loader-bg.fade-out {
    opacity: 0;
    pointer-events: none;
}
.loader-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 16px;
    /* Remove animation */
}
.loader-title {
    font-family: 'Lato', Arial, sans-serif;
    font-weight: 1000;
    text-transform: uppercase;
    font-size: 16px ;
    color: #720310;
    opacity: 0;
    transform: translateX(-100%);
    animation: slide-in-center 1.2s cubic-bezier(0.77,0,0.175,1) forwards;
    letter-spacing: 2px;
    text-align: center;
}
@keyframes slide-in-center {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    25% {
        opacity: 1;
        transform: translateX(20%);
    }
    50% {
        opacity: 1;
        transform: translateX(-10%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
}
}
/* Loader Styles */
ul{
    list-style: none;
    padding: 0;
}
a{
    text-decoration: none;
}
ul li a{
    text-decoration: none;
}
/* nav Styles */
.my-nav{
    width: 1200px;
    margin: 0 auto;
    bottom: 0px;
    }
.nav-one{
        width: 100%;
        height: 80px;
        background-color: #000;
        padding: 8px 8px;
        border-radius: 16px;
        display: flex;
        margin-bottom: 16px;
    }
    .uj-logo {
        width: 60px;
        height: 60px;
        transition: transform 0.3s ease;
    }
    .uj-logo:hover {
        transform: scale(1.1);
    }
    .nav-hdng {
        padding: 0px 16px;
        font-size: 20px;
        font-weight: 600;
        color: #f7fafc;
        transition: color 0.3s ease;
    }
    .nav-hdng:hover {
        background-color: #930012;
        border-radius: 16px; 
    }
    .new-nav-box-search{
        width: 38%;
       margin-left: 62%; 
       padding: 8px 16px;
       height: 80px;
        border-radius: 16px;
        background: #000;
         display: flex; 
    }
        .nav-search {
            display: flex;
            align-items: center;
            margin-left: auto;
            position: relative;
        }
        .nav-search input[type="text"] {
            padding: 8px 12px;
            border: 2px solid #f7fafc;
            border-radius: 16px 0 0 16px;
            outline: none;
            font-size: 14px;
        }
        .nav-search button {
            background: #930012;
            border: none;
            color: #f7fafc;
            padding: 8px 16px;
            border-radius: 0 16px 16px 0;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.2s;
        }
        .nav-search button:hover {
            background: #720310;
        }
        .search-results {
            position: absolute;
            top: 72px;
            left: 0;
            width: 100%;
            background: #e8e8fd;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.08);
            z-index: 100;
            display: none;
            max-height: 200px; 
            overflow-y: auto;
        }
        .search-result-item {
            padding: 6px 8px;
            cursor: pointer;
            border-bottom: 1px solid #f7fafc;
            color: #930012;
            text-decoration: none;
            display: block;
               font-size: 16px;
        }
        .search-result-item:last-child {
            border-bottom: none;
        }
        .search-result-item:hover {
            font-size: 17px;
             color: #720310;
        }
        /* nav Styles end */
    .container-main{
        width: 1200px;
        margin: 0 auto;
        /* bottom: 0px; */ /* Not needed for static container */
    }
        .navbar{
            display: flex;
            justify-content: center;
        }
        .bottom-nav {
            position: fixed;
            width: 800px;
            bottom: 0;
            background-color: #000;
            box-shadow: 0px -5px 8px 0px rgba(90, 90, 90, 0.6);
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 16px 0px 8px 0px;
            border-radius: 16px 16px 0px 0px;
            z-index: 1001;
        }
        .bottom-nav a {
            color: #f7fafc;
            text-decoration: none;
            text-align: center;
        }
        .crcle-hvr {
            width: 80px;
            height: 80px;
            color: #f7fafc;
            background-color: #000;
            border-radius: 50%;
            text-align: center;
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .crcle-hvr:hover {
            transform: scale(1.2);
            background-color: #720310;
        }
        .trecsion {
            font-size: 14px;
            color: #f7fafc;
        }
        .bottom-nav a span {
            color: #f7fafc;
            text-transform: uppercase;
            display: block;
            font-size: 12px;
            transition: color 0.3s ease;
        }
        .botttom-nav-img{
            width: 40px;
            height: 40px;
        }
            .whts-btn {
            position: fixed;
            right: 80px;
            bottom: 20px;
            z-index: 9999;
            }
            .whatsapp-float-btn {
            background: #25D366;
            color: #f7f7f7;
            border-radius: 50%;
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transition: background 0.2s;
            text-decoration: none;
            }
            .whatsapp-float-btn:hover {
            background: #075e54;
            color: #f7f7f7;
            }
        .container-one{
            width: 100%;
            column-gap: 40px;  
            display: flex;
        }
         .container-ac{
            width: 100%;
            column-gap: 40px;  
        display: flex;
        margin-bottom: 32px;
        }
        .container-one-1{
            width: 60%;
            background-color: #e8e8fd;
            padding: 16px;
            border-radius: 16px;
        }
        .top-hdng{
            font-size: 24px;
            font-weight: 600;
            color: #2b2b2b;
        }
        .top-pera{
            font-size: 16px;
            font-weight: 400;
            color: #333;
            margin-bottom: 8px;
        }
        .container-img-text{
            display: flex;
            column-gap: 40px;
            padding: 12px 0px;
        }
        .cont-ac-img-text {
            width: 164px;
            border-radius: 8px;
            padding: 12px;
            border: 0.1px solid #b7b7b7;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .cont-ac-img-text:hover {
            transform: scale(1.02);
            border: 0.1px solid #930012;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .ac-img{
            width: 100%;
            height: 96px;
            border-radius: 8px;
        }
    
                                .batch {
                                    position: relative;
                                    display: inline-block;
                                }
                                .batch-label {
                                    position: absolute;
                                    top: 0px;
                                    right: -16px;
                                    background: #930012;
                                    color: #f7f7f7;
                                    font-size: 12px;
                                    padding: 4px 10px;
                                    border-radius: 16px;
                                    font-weight: 600;
                                    z-index: 2;
                                    box-shadow: 0 8px 10px rgba(0,0,0,0.08);
                                }
                            
                             
        .main-hdng{
            height: 52px;
            margin-top: 8px;
            font-size: 16px;
            font-weight: 600;
            color: #2b2b2b; 
        }
        .main-pera{
            margin-top: 8px;
            font-size: 14px;
            font-weight: 400;
            color: #2b2b2b;
        }
        #popup {
            display: none;
        }
        .popup {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
            z-index: 1000;
            transition: transform 0.5s;
    transform: translateY(0px);
    inset: 0px;
        }
        .popup-content {
            background: #f7f7f7;
            padding: 16px;
            border-radius: 8px;
            width: 480px;
            position: relative;
        }
        .pop-hdng {
            font-size: 16px;
            font-weight: 600;
            color: #2b2b2b; 
        }
         .pop-pera-{
            margin-top: 12px;
            font-size: 14px;
            font-weight: 400;
            color: #2b2b2b;
        }
          .pop-visit-price{
    margin-top: 8px;
   font-size: 12px;
   font-weight: 500;
    color: #555;
}
        .popup .close {
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 24px;
            cursor: pointer;
            color: #888;
            background-color: #f7f7f7;
            border: 1px solid #888;
            border-radius: 50%;
            width: 32px;
            height: 32px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        body.popup-active {
            overflow: hidden;
        }
        .close:hover {
            color: #720310;
            border-color: #720310;
        }
        .container-prnts-pop {
            display: flex;
            column-gap: 20px;
            align-content: center;
        }
        .child-pop-1{
            width: 36%;
            text-align: start;
        }
        .child-pop-2 {
            width: 64%;
            text-align: start;
        }
        .pop-img {
            width: 100%;
            height: 50%;
            border-radius: 8px;
        }
       .pop-btn-cntr {
    display: flex;
    margin-left: 23%;
    flex-direction: column;
    align-items: center;
}

                            .pop-btn-call-95 {
                                background-color: #930012;
                                color: #F7FAFC;
                                border: none;
                                padding: 16px 60px;
                                border-radius: 16px;
                                font-size: 16px;
                                cursor: pointer;
                                transition: background 0.2s;
                            }
                            .pop-btn-call-95:hover,
                            .pop-btn-call-95:focus {
                                background-color: #720310;
                                color: #F7FAFC;
                            }
    .call-time{
    margin-top: 8px;
   font-size: 12px;
   font-weight: 600;
    color: #555;
}
.cont-new{
    width: 40%;
    display: flex;
    align-content: flex-end;
    flex-wrap: wrap;
    row-gap: 24px;
        }
        .container-two-one{
    width: 34%;
}
.cont-two-2{
    width: 100%;
    height: fit-content;
border: 1px solid #000;
    padding: 8px 16px;
    border-radius: 16px;
}
.uj-whte-hdng {
    font-size: 20px;
    font-weight: 600;
    color: #2b2b2b;
}
.uj-whte-pera {
    font-size: 16px;
    font-weight: 500;
    color: #555;
}
.cont-two-3{
    width: 100%;
    height: fit-content;
    background-color: #e8e8fd;
    padding: 8px 16px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.cont-two-4{
    width: 100%;
height: fit-content;
    background-color: #e8e8fd;
    padding: 8px 16px;
    border-radius: 16px;;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.brand-logo-img {
    display: flex;
    column-gap: 12px;
    margin-bottom: 12px;
}
.logo-img {
    width: 60px;
    height: 48px;
    border-radius: 8px;
    margin-right: 8px;
    /* aspect-ratio: 3 / 2; */
    /* object-fit: contain; */
    mix-blend-mode: darken;
}
   .user-rtng-call-btn  {
    margin: 40px 0px;
        display: flex;
        column-gap: 40px;
      }  
.rtng-user {
    width: 60%;
    display: flex;
    justify-content: space-around;
    padding: 16px 0;
    gap: 20%;
}
.rtng-user-block {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}
.rtng-star {
    font-size: 2rem;
    color: #ffc107;
}
.combo{
    display: flex;
    flex-direction: column;
}
.rtng-score {
    font-size: 1.2rem;
    font-weight: bold;
}
.rtng-label {
    font-size: 1rem;
    color: #555;
}
.rtng-users {
    font-size: 2rem;
    color: #930012;
}
  .call-btn-container{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
.call-btn-95 {
    display: inline-block;
    background: #930012;
    color: #f7fafc;
    padding: 16px 75px;
    border-radius: 16px;
    font-size: 16px;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background 0.2s, transform 0.2s;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.call-btn-95:hover, .call-btn-95:focus {
    background: #720310;
    color: #f7fafc;
    transform: scale(1.05);
    text-decoration: none;
}
.call-btn i {
    margin-right: 8px;
    font-size: 20px;
    vertical-align: middle;
}
   .container-two{
            width: 100%;
            column-gap: 40px;  
        display: flex;
        margin-bottom: 24px;
        }
        .all-service-container {
            width: 50%;

        }
.hw-it-wrk-rntg{
width: 50%; 
}
       .service-container {
    width: 100%;
    height: max-content;
    border: 0.5px solid #930012;
    padding: 16px;
    border-radius: 16px;
    margin-bottom: 40px;
}
.container-all-service{
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
  .container-repair{
            width: 100%;
            display: flex;
       justify-content: space-between;
        }
  .cont-hw-it-wrk{
            width: 100%;
            background-color: #000;
            padding: 16px;
            border-radius: 16px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
       .container-all-service-faq {
    width: 100%;
    height: max-content;
    border: 0.5px solid #930012;
    padding: 8px 16px;
    border-radius: 16px;
    margin-bottom: 32px;
}
.faq-section {
margin: 16px 0;
}
.faq-hdng{
    color: #f7fafc;
    font-size: 24px;
    font-weight: 600;
}
 .faq-question {
                                width: 100%;
                                background: none;
                                border: none;
                                text-align: left;
                                padding: 12px 0px;
                                cursor: pointer;
                                display: flex;
                                justify-content: space-between;
                                align-items: center;
                                   color: #f7fafc;
    font-size: 14px;
    font-weight: 400;
                            }
 .faq-answer {
display: none;
padding: 10px 0px;
color: #f7fafc;
}
                           
                            .faq-arrow {
                                transition: transform 0.2s;
                                font-size: 1em;
                            }
                           
                                   .faq-answer.show {
                                       display: block;
                                   }
  .hw-it-wrk-rntg{
            width: 50%;
        }
   .ac-hdng-work{
            margin-top: 12px;
            font-size: 20px;
            font-weight: 600;
            color: #f7f7f7;
            text-align: center
        }
        .ac-pera-work{
            margin-top: 8px;
            font-size: 14px;
            font-weight: 400;
            color: #f7f7f7;
        }
        .ranting-work{
            margin-top: 24px;
            width: 100%;
            height: 50%;
            padding: 8px 16px;
            border-radius: 24px;
            background-color: #e8e8fd;
            border: 1px solid #930012;
        }   
         .all-review {
                            background: #e8e8fd;
                            height: fit-content;
                            border-radius: 16px;
                            margin-top: 40px;
                            padding: 20px 16px;
                            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
                        }
                        .review-filters {
                            display: flex;
                            gap: 10px;
                            margin-bottom: 18px;
                            flex-wrap: wrap;
                        }
                        .filter-btn {
                            background: #f1f1f1;
                            border-radius: 16px;
                            padding: 6px 16px;
                            cursor: pointer;
                            font-size: 15px;
                            color: #333;
                            border: 1px solid #ddd;
                            transition: background 0.2s, color 0.2s;
                        }
                        .filter-btn.active, .filter-btn:hover {
                            background: #720310;
                            color: #f7fafc;
                            border-color: #930012;
                        }
                        .review-list {
                            display: flex;
                            flex-direction: column
                        }
                        .review-item {
                            display: flex;
                            align-items: flex-end;
                            gap: 16px;
                            border-bottom: 1px solid #eee;
                            padding-bottom: 16px;
                        }
                         .review-item-last {
                            display: flex;
                            align-items: flex-end;
                            gap: 16px;
                            padding-bottom: 16px;
                        }
                        .review-img {
                            width: 64px;
                            height: 64px;
                            object-fit: cover;
                            border-radius: 8px;
                        }
                        .review-content {
                            flex: 1;
                        }
                        .review-stars {
                            color: #ffc107;
                            font-size: 18px;
                            margin-bottom: 2px;
                            letter-spacing: 1px;
                        }
                        .review-user {
                            font-weight: 600;
                            font-size: 15px;
                            margin-bottom: 2px;
                        }
                        .review-location {
                            font-weight: 400;
                            color: #888;
                            font-size: 13px;
                            margin-left: 8px;
                        }
                        .review-text {
                            font-size: 15px;
                            color: #444;
                        }                              
.footer-container{
    width: 100%;
    height: 400px;
    padding: 24px 16px; 
    display: flex;
    column-gap: 60px;
    background-color: #930012;
    border-radius: 16px 16px 0px 0px;
    color: #f7fafc;
    margin-top: 60px;
}
.footer-part{
    width: 25%;
    margin-top: 16px;
}
.footer-title{
    font-size: 24px;
    font-weight: 600;
    color: #f7fafc;
    margin-bottom: 8px;
}
.footer-sign{
    font-size: 16px;
    font-weight: 500;
    color: #f7fafc;
    margin-bottom: 16px;
}
    .footer-social-links {
        display: flex;
        gap: 10px;
    }
#facebook-icon, #instagram-icon, #whatsapp-icon, #email-icon {
    width: 40px;
    height: 40px;
       background: #000;
    color: #f7fafc;
    border-radius: 50%;
    padding: 8px;
    font-size: 24px;
    box-shadow: 0 2px 8px rgba(24,119,243,0.15);
    transition: background 0.2s, color 0.2s;
display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
#facebook-icon:hover, #instagram-icon:hover, #whatsapp-icon:hover, #email-icon:hover {
    color: #720310;
    background: #f7fafc;
}
    .scrollable-div {
         width: 60%;
         max-height: 500px;
                overflow-y: auto;
    padding: 8px 16px;
    border-radius: 16px;
    border: 0.5px solid #930012;
    background-color: #e8e8fd;

        /* Hide scrollbar for Chrome, Safari and Opera */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none;  /* IE and Edge */
    }
    .scrollable-div::-webkit-scrollbar {
        display: none; /* Chrome, Safari and Opera */
    }
       .prodcut-page-all-details{
       height:66%;
     border-radius: 8px;
    padding: 8px;
    border: 0.5px solid #b7b7b7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
        width: 100%;
        display: flex;
flex-direction: column;
        margin: 16px 0px 24px;
        z-index:2500; 
    }
    .prodcut-page-all-details:hover {
        transform: scale(1.02);
        border: 0.1px solid #930012;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }
.product-page-detail-1{
    width: 50%;
}
.product-page-detail-2{
    width: 37%;
}
.box-1{
    display: flex;
    gap: 20px;
}
.box-2{
    width: 50%;
    display: flex;
    transform: translate(106.5% , -56%);
}
.product-page-img{
     width: 100%;
    height: 70%;
    border-radius: 8px;
}
.services-name a{
    margin-top: 16px;
     font-size: 16px;
    font-weight: 500;
    color: #f7fafc;
    margin-bottom: 16px;
}
.services-name a:hover{
     margin-top: 16px;
     font-size: 18px;
    font-weight: 600;
    color: #f7fafc;
    margin-bottom: 16px;
}      
.main-div {
display: flex;
gap: 24px;
    margin: 40px 0;
    }
.review-popup-link{
font-size: 1em; 
color: #ffc107;
text-decoration: none;
display: block;
}
.fa-star{
    color: #ffc107;
}
.review-rating-1 {
    margin-left: 6px;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}
.review-count{
margin-left: 6px; 
color: #888;
  font-weight: 500;
  font-size: 16px;
}
.product-page-btns{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

                    .review-list-popup {
                       list-style: none;
                        padding: 0;
                        margin: 0 0 10px 0;
                    }
                    .review-list-popup li {
                        margin-bottom: 14px;
                        border-bottom: 1px solid #eee;
                        padding-bottom: 10px;
                    }
                    .review-stars-popup {
                        color: #ffc107;
                        margin-left: 6px;
                        font-size: 1.1em;
                    }
                    .review-text-popup {
                        font-size: 0.97em;
                        color: #444;
                        margin-top: 3px;
                        margin-left: 2px;
                    }
                    .see-all-reviews-link {
                      display: block;
                        margin-top: 16px;
                        color: #f7fafc;
                        text-align: center;
                        text-decoration: none;
                        font-size: 16px;
                        padding: 10px 20px;
                        background-color: #720310;
                        border-radius: 8px;
                    }
.pop-body{
background: #f4f4f4;; 
padding:16px; 
border-radius:8px;
max-width:400px; 
position:relative;
}
.review-popup-modal {
    display: none;
    position: fixed;
}
.review-popup-modal.active {
    display: flex;
     position: fixed;
    top: 0;
    left: 0;
    width: 60vw;
    height: 75vh;
    background: rgba(0,0,0,0.5);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    transform: translate(0px, -120px);
}
.review-list-popup {
    max-height: 220px;
    overflow-y: auto;
    padding-right: 8px;
}
.closeReviewPopup {
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    background-color: #fff;
    border: 1px solid #888;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.closeReviewPopup:hover {
    color: #720310;
    border-color: #720310;
}
.viewDetailLink {
    margin-top: 8px; 
    color: #930012; 
    text-decoration: none;
}
.viewDetailModal {
    display: none; 
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 50vw; 
    height: 65vh; 
    background: rgba(0,0,0,0.5); 
    z-index: 6000; 
    align-items: center; 
    justify-content: center;
     max-height: 400px;
    overflow-y: auto;
}
.viewDetailModal.active {
    display: flex;
}
.closeViewDetail{
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    background-color: #f4f4f4;
    border: 1px solid #888;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
        overflow-y: auto;
    max-height: 400px;
}
.closeViewDetail:hover {
    color: #720310;
    border-color: #720310;
}
.info-text{
     margin-top:16px; 
     color:#888; 
     font-size:16px;
}
    .container-main-form{
      padding: 0;
      display: flex;
      justify-content: center;
      background: #f4f4f4;
    }
    .contact-container {
      padding: 16px;
      border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      max-width: 400px;
      width: 100%;
      background: #f7f7f7;
    }
    .contact-container h2 {
      text-align: center;
      color: #222;
      font-weight: 700;
    }
    .form-group {
      margin-bottom: 16px;
      display: flex;
      flex-direction: column;
    }
    .form-group label {
      margin-bottom: 6px;
      color: #333;
      font-size: 14px;
      font-weight: 500;
    }
    .required {
      color: #930012;
      margin-left: 2px;
    }
    .form-input {
      padding: 10px 8px;
      border: 1px solid #888;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 400;
      font-family: 'Lato', sans-serif;
      transition: border-color 0.2s;
      background: #f7f7f7;
      width: 100%;
      color: #000;
    }
    .form-input:focus {
      border-color: #930012;
      outline: none;
      background: #f7f7f7;
    }
   .submit-btn {
      width: 100%;
      padding: 20px 0;
     background: #930012;
    color: #f7fafc;
      outline: none;
      border: none;
      border-radius: 16px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 240px;
      margin: 20px auto 0;
      transition: background 0.2s;
    }
    .submit-btn:hover {
      background: #720310;
    }

          .form-group select.form-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #bbb;
            border-radius: 8px;
            font-size: 1rem;
            background: #fff;
            color: #333;
          }
          .form-group select.form-input:focus {
            border-color: #720310;
            outline: none;
          }

        #service {
            margin-top: 12px;
            border: 1px solid #888;
            outline: none;
            background: #f7f7f7;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        #service:hover {
            border-color: #720310;
              background: #ffecec;
        }

        option{
            padding: 8px;
             background: #ffecec;
            color: #000;
        }
        option:hover, option:focus {
            background-color: #930012;
            color: #000;
        }

   .wht-flex{
    display: flex; 
    gap: 12px;
   }
          .location-btn, .wa-location-btn {
            background: #25d366;
            border: none;
            color: #fff;
            padding: 8px 12px;
            border-radius: 8px;
            cursor: pointer;
            font-size: 18px;
            display: flex;
            align-items: center;
            transition: background 0.2s;
          }
          .location-btn:hover, .wa-location-btn:hover {
            background: #075E54;
          }
          .wa-location-btn {
            margin-left: 2px;
            text-decoration: none;
        
          }

    .whatsapp-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      background: #25d366;
      color: #f7f7f7;
      border-radius: 16px;
      padding: 12px;
      font-size: 18px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.15);
      text-decoration: none;
      transition: background 0.2s;
      margin: 24px auto  24px;
      position: static;
      width: 240px;
      column-gap: 8px;
    }
    .whatsapp-btn:hover {
      background: #075E54;
    }
   
    @media (max-width: 424.98px) {
        .loader-logo {
            width: 60px;
            height: 60px;
            margin-bottom: 12px;
        }
        .loader-title {
            font-size: 16px;
            letter-spacing: 1px;
            animation: slide-in-center 1.2s cubic-bezier(0.77,0,0.175,1) forwards;
            transform: translateX(-50%);
        }
        .my-nav {
            width: 100%;
        }
        .nav-one {
    width: 100%;
    height: 56px;
    padding: 4px 6px;
    border-radius: 0px;
    margin-bottom: 8px;
}
.uj-logo {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}
.nav-hdng {
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 600;
}
.nav-hdng:hover {
    border-radius: 8px;
}
 .whts-btn {
            right: 20px;
            bottom: 96px;
            }
            .whatsapp-float-btn {
            width: 48px;
            height: 48px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
            }
.container-main {
    width: 100%;
    margin: 0 auto;
    padding: 0px 6px;
    /* bottom: 0px; */
}
.container-one {
    width: 100%;
    column-gap: 0px;
    flex-direction: column;
    transform: translate(0px, 1%);
}
.container-one-1 {
    width: 100%;
    padding: 8px 4px;
    border-radius: 8px;
}
.top-hdng {
    font-size: 18px;
}
.top-pera {
    font-size: 14px;
}
.container-img-text {
    column-gap: 12px;
    padding: 8px 0px;
}
.cont-ac-img-text {
        width: 100%;
        border-radius: 8px;
        padding: 0px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
.batch-label {
 top: -4px;
right: -4px;
font-size: 10px;
padding:2px 10px;
border-radius:8px;
}                                                            
.ac-img {
    height: 80px;
}
.main-hdng {
    margin-left: 4px;
    height: 40px;
    margin-top: 0px;
    font-size: 14px;
    font-weight: 600;
}
.main-pera {
    margin: 8px 4px;
    font-size: 12px;
    font-weight: 500;
    color: #2b2b2b;
}
.cont-new {
    margin-top: 16px;
    width: 100%;
    row-gap: 12px;
}
      .whatsapp-btn {
       font-size: 16px;
       padding: 10px 16px 10px 14px;
      }
      .whatsapp-btn .fa-whatsapp {
       font-size: 18px;
       margin-right: 7px;
      }

.cont-two-2 {
    width: 100%;
    height: fit-content;
    padding: 4px;
    border-radius: 8px;
}
.cont-two-3 {
    width: 100%;
    height: fit-content;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.uj-whte-hdng {
    font-size: 16px;
}
.uj-whte-pera {
    font-size: 14px;
}
.cont-two-4 {
    width: 100%;
    height: fit-content;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.brand-logo-img {
    display: flex;
    justify-content: space-between;
    padding: 0px 4px;
}
.logo-img {
    margin-right: 0px;
}
.user-rtng-call-btn {
    margin: 12px 0px;
    column-gap: 10px;
    flex-direction: column;
    transform: translateY(4%);
}
.rtng-user {
        width: 100%;
        margin: 12px 0px;
        padding: 0px 0px;
        row-gap: 16px;
        flex-direction: column;
    }
.rtng-user-inner {
        padding: 0px;
        gap: 16px;
        flex-wrap: wrap;
        }
        .call-btn-container {
        margin-top: 16px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        }
        .call-btn-95 {
        padding: 12px 60px;
        font-size: 14px;
        transition: background 0.2s, transform 0.2s;
        border-radius: 16px;
        font-weight: 700;
        box-shadow: 0 4px 8px rgba(0,0,0,0.12);
        }
        .call-btn-95:hover,
        .call-btn-95:focus {
        background: #720310;
        color: #f7fafc;
        transform: scale(1.05);
        text-decoration: none;
        }
        .call-time {
        margin-top: 8px;
        font-size: 12px;
        margin-bottom: 12px;
        font-weight: 500;
        }
        .rtng-user-block {
        display: flex;
        align-items: flex-end;
        gap: 12px;
        }
        .rtng-star {
        font-size: 28px;
        }
        .container-two {
        margin-top: 8px;
        width: 100%;
        column-gap: 16px;
        margin-bottom: 16px;
        flex-direction: column;
        transform: translateY(0%);
        }
     .all-service-container{
        width: 100%;
     }
.container-all-service {
    row-gap: 16px;
}
     .service-container {
    width: 100%;
    padding: 8px 4px;
    margin-bottom: 20px;
}
.container-repair {
    width: 100%;
    display: flex;
    column-gap: 12px;
}
        .cont-hw-it-wrk {
        width: 100%;
        padding: 8px 4px;
        border-radius: 8px;
        margin-bottom: 20px;
        }
        .faq-section {
        margin: 8px 0;
        }
        .faq-hdng {
        font-size: 16px;
        font-weight: 600;
        }
        .faq-question {
        width: 97%;
        background: none;
        border: none;
        text-align: left;
        font-size: 14px;
        padding: 8px 0px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: #f7fafc;
        }
        .faq-arrow {
        transition: transform 0.2s;
        font-size: 10px;
        }
        .faq-answer {
        padding: 10px 0px;
        font-size: 12px; 
        }
        .hw-it-wrk-rntg {
        width: 100%;
        }
        .popup {
        transform: translateY(-15%);
        }
        .popup-content {
        padding: 8px;
        border-radius: 8px;
        width: 84%;
        position: relative;
        transform: translateY(-20%);
        }
        .popup .close:hover .close:focus{
        color: #720310;
        border: 1px solid #720310;
        }
        .container-prnts-pop {
        column-gap: 12px;
        }
        .pop-btn-cntr {
        margin-left: 0%;
        }
        .pop-btn-call-95 {
        margin-top: 12px;
        padding: 12px 60px;
        border-radius: 16px;
        font-weight: 700;
        transition: background 0.2s;
        }
        .all-review {
        height: fit-content;
        border-radius: 8px;
        margin-top: 16px;
        padding: 12px 4px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }
        .review-filters {
        display: flex;
        gap: 8px;
        margin-bottom: 12px;
        flex-wrap: wrap;
        }
        .filter-btn {
        width: 48px;
        height: 28px;
        border-radius: 12px;
        padding: 4px 2px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 300;
        border: 1px solid #ddd;
        transition: background 0.2s, color 0.2s;
        text-align: center;
        background: #f1f1f1;
        }
        .filter-btn.active,
        .filter-btn:hover {
        background: #930012;
        color: #fff;
        border-color: #930012;
        font-weight: 400;
        }
        .review-item,
        .review-item-last {
        align-items: flex-end;
        gap: 10px;
        padding-bottom: 12px;
        display: flex;
        }
        .review-stars {
        margin-top: 8px;
        font-size: 18px;
        margin-bottom: 0px;
        letter-spacing: 1px;
        }
        .review-location {
        font-weight: 400;
        font-size: 13px;
        margin-left: 6px;
        }
        .ac-hdng {
        font-weight: 600;
        font-size: 14px;
        margin-bottom: 2px;
        }
        .review-text {
        width: 95%;
        font-size: 14px;
        }
        .footer-container {
        width: 100%;
        height: 608px;
        padding: 12px 8px;
        display: flex;
        column-gap: 12px;
        border-radius: 8px;
        margin-top: 16px;
        flex-direction: column;
        margin-bottom: 120px;
        transform: translateY(1.4%);
        }
        .footer-part {
        width: 100%;
        margin-top: 8px;
        }
        .footer-title {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 8px;
        text-align: center;
        }
        .footer-sign {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 8px;
        text-align: center;
        }
        .footer-social-links {
        display: flex;
        gap: 10px;
        justify-content: center;
        }
        #facebook-icon, #instagram-icon, #whatsapp-icon, #email-icon {
        width: 32px;
        height: 32px;
        font-size: 18px;
        border-radius: 50%;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: background 0.2s, color 0.2s;
        }
        #facebook-icon:hover, #instagram-icon:hover, #whatsapp-icon:hover, #email-icon:hover {
        color: #930012;
        background: #fff;
        }
        .bottom-nav {
        position: fixed;
        width: 100%;
        bottom: 0;
        box-shadow: 0px -5px 8px 0px rgba(90, 90, 90, 0.6);
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 8px 0px 0px 0px;
        border-radius: 8px 8px 0px 0px;
        z-index: 1001;
        transform: translateY(12%);
        }
        .scrollable-div {
        width: 100%;
        max-height: 500px;
        padding: 8px;
        border-radius: 8px;
        border: 0.5px solid #930012;
        background-color: #e8e8fd;
        overflow-y: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        }
        .scrollable-div::-webkit-scrollbar {
        display: none;
        }
        .prodcut-page-all-details {
        height: 100%;
        border-radius: 8px;
        padding: 4px;
        margin: 16px 0 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.08);
        }
        .box-1 {
        display: flex;
        gap: 12px;
        flex-direction: row-reverse;
        }
        .product-page-detail-1 {
        width: 65%;
        }
        .product-page-detail-2 {
        width: 35%;
        }
        .box-2 {
        width: 100%;
        transform: translate(0%, 0%);
        justify-content: center;
        align-items: center;
        display: flex;
        }
        .new-nav-box-search {
        margin-left: 0;
        width: 100%;
        padding: 8px 0px;
        height: 48px;
        background: #f4f4f4;

        }
        .nav-search input[type="text"] {
        padding: 10px 10px;
        border: 1px solid #ccc;
        border-radius: 16px 0 0 16px;
        outline: none;
        font-size: 12px;
        }
        .nav-search button {
        background: #930012;
        border: none;
        color: #f7fafc;
        padding: 9px 16px;
        border-radius: 0 16px 16px 0;
        cursor: pointer;
        font-size: 16px;
        transition: background 0.2s;
        box-shadow: rgba(0, 0, 0, 0.5) 0px 2px 4px;
        }
        .nav-search button:hover {
        background: #720310;
        }
        .search-results {
        top: 48px;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
        max-height: 180px; 
        }
        .search-result-item {
        padding: 6px 8px;
        cursor: pointer;
        border-bottom: 1px solid #fff;
        color: #930012;
        text-decoration: none;
        display: block;
        font-size: 14px;
        transition: color 0.2s, font-size 0.2s;
        }
        .search-result-item:last-child {
        border-bottom: none;
        }
        .search-result-item:hover {
        font-size: 14px;
        color: #720310;
        }
        .pop-body {
        padding: 8px;
        border-radius: 8px;
        max-width: 84%;
        }
        .review-popup-modal {
        display: none;
        position: fixed;
        width: 100vw;
        height: 75vh;
        background: rgba(0,0,0,0.5);
        z-index: 9000;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        }
        .review-popup-modal.active {
        display: flex;
        top: 0;
        left: 0;
        width: 92vw;
        max-height: 100vh;
        background: rgba(0,0,0,0.5);
        z-index: 9000;
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        transform: translate(0%, -15%);
        }
        .review-list-popup {
        max-height: 280px;
        overflow-y: auto;
        padding-right: 8px;
        list-style: none;
        margin: 0;
        }
        .viewDetailModal {
        display: none;
        position: fixed;
        width: 92vw;
        height: 90vh;
        background: rgba(0,0,0,0.5);
        transform: translate(0%, -17.5%);
        align-items: center;
        justify-content: center;
        overflow-y: auto;
        max-height: 400px;
        }
    .contact-container {
        margin-top: 16px;
      padding: 8px;
      border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      min-width: 300px;
      max-width: 360px;
      width: 84%;
      background: #f7f7f7;
      border: 1px solid #930012;
    }
    .contact-container h2 {
      text-align: center;
      color: #222;
      font-weight: 700;
      font-size: 18px;
    }
    .form-group {
      margin-bottom: 8px;
      display: flex;
      flex-direction: column;
    }
    .form-group label {
      margin-bottom: 6px;
      color: #333;
      font-size: 14px;
      font-weight: 500;
    }
    .required {
      color: #930012;
      margin-left: 2px;
    }
    .form-input {
      padding: 8px;
      border: 1px solid #888;
      border-radius: 8px;
      font-size: 16px;
      font-weight: 400;
      font-family: 'Lato', sans-serif;
      transition: border-color 0.2s;
      background: #f7f7f7;
      color: #000;
    }
    .form-input:focus {
      border-color: #930012;
      outline: none;
      background: #f7f7f7;
    }
   .submit-btn {
      width: 100%;
      padding: 16px 0;
     background: #930012;
    color: #f7fafc;
      outline: none;
      border: none;
      border-radius: 16px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      justify-content: center;
      align-items: center;
      width: 240px;
      margin: 16px auto 0;
      transition: background 0.2s;
    }
    .submit-btn:hover {
      background: #720310;
    }
          .form-group select.form-input {
            width: 100%;
            padding: 10px;
            border: 1px solid #bbb;
            border-radius: 8px;
            font-size: 1rem;
            background: #fff;
            color: #333;
          }
          .form-group select.form-input:focus {
            border-color: #720310;
            outline: none;
          }
        #service {
            margin-top: 10px;
            border-color: #930012;
            outline: none;
            background: #f7f7f7;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        #service:hover {
            border-color: #720310;
              background: #ffecec;
        }
        option{
            padding: 8px;
             background: #ffecec;
            color: #000;
        }
        option:hover, option:focus {
            background-color: #930012;
            color: #000;
        }

}
    @media(min-width: 425px) and (max-width: 767.98px) {
        .loader-logo {
            width: 60px;
            height: 60px;
            margin-bottom: 12px;
        }
        .loader-title {
            font-size: 16px;
            letter-spacing: 1px;
            animation: slide-in-center 1.2s cubic-bezier(0.77,0,0.175,1) forwards;
            transform: translateX(-50%);
        }
        .my-nav {
            width: 100%;
        }
        .nav-one {
    width: 100%;
    height: 56px;
    padding: 4px 8px;
    border-radius: 0px;
    margin-bottom: 8px;
}
.uj-logo {
    width: 48px;
    height: 48px;
    transition: transform 0.3s ease;
}
.nav-hdng {
    padding: 4px 8px;
    font-size: 14px;
    font-weight: 600;
}
.nav-hdng:hover {
    border-radius: 8px;
}
.container-main {
    width: 100%;
    margin: 0 auto;
    padding: 0px 8px;
    /* bottom: 0px; */
}
.container-one {
    width: 100%;
    column-gap: 0px;
    flex-direction: column;
    transform: translate(0px, 1%);
}
.container-one-1 {
    width: 100%;
    padding: 8px 4px;
    border-radius: 8px;
}
.top-hdng {
    font-size: 22px;
}
.top-pera {
    font-size: 16px;
}
.container-img-text {
    column-gap: 12px;
    padding: 8px 0px;
}
.cont-ac-img-text {
        width: 100%;
        border-radius: 8px;
        padding: 0px;
        border: 0.1px solid #b7b7b7;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
.ac-img {
    height: 80px;
}
.main-hdng {
    padding: 0px 4px;
    height: 48px;
    margin-top: 0px;
    font-size: 16px;
    font-weight: 600;
}
.main-pera {
    padding: 0px 4px;
    margin: 8px 0px;
    font-size: 12px;
    font-weight: 500;
}
.cont-new {
    margin-top: 16px;
    width: 100%;
    row-gap: 12px;
}
.cont-two-2 {
    width: 100%;
    height: fit-content;
    padding: 4px;
    border-radius: 8px;
}
.cont-two-3 {
    width: 100%;
    height: fit-content;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.uj-whte-hdng {
    font-size: 20px;
}
.uj-whte-pera {
    font-size: 16px;
}
.cont-two-4 {
    width: 100%;
    height: fit-content;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.brand-logo-img {
    display: flex;
    justify-content: space-evenly;
    padding: 0px 4px;
}
.logo-img {
    margin-right: 0px;
}
.user-rtng-call-btn {
    column-gap: 10px;
    flex-direction: column;
    transform: translateY(4%);
    margin: 16px 0px;
}
.rtng-user {
    width: 100%;
    margin: 12px 0px;
    padding: 0px 4px;
}
    .call-btn-container {
        margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.call-btn-95 {
    padding: 14px 68px;
    font-size: 14px;
    transition: background 0.2s, transform 0.2s;
}
.call-btn-95:hover,
.call-btn-95:focus {
    background: #720310;
    color: #f7fafc;
    transform: scale(1.05);
    text-decoration: none;
}
.call-time {
    margin-top: 8px;
    font-size: 12px;
    margin-bottom: 12px;
}
.rtng-user-block {
    display: flex;
    align-items: flex-end;
    gap: 12px;
}
.rtng-star {
    font-size: 1.75rem;
}
.container-two {
    margin-top: 8px;
    width: 100%;
    column-gap: 16px;
    margin-bottom: 16px;
    flex-direction: column;
    transform: translateY(0%);
}
     .all-service-container{
        width: 100%;
     }
.container-all-service {
    row-gap: 16px;
}
     .service-container {
    width: 100%;
    padding: 8px 4px;
    margin-bottom: 20px;
}
.container-repair {
    width: 100%;
    display: flex;
    column-gap: 12px;
}
        .cont-hw-it-wrk {
        width: 100%;
        padding: 8px 4px;
        border-radius: 8px;
        margin-bottom: 20px;
        }
.faq-section {
    margin: 8px 0;
}
.faq-hdng {
    font-size: 18px;
    font-weight: 600;
}
.faq-question {
    width: 97%;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    padding: 8px 0px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-arrow {
    transition: transform 0.2s;
    font-size: 10px;
}
.faq-answer {
    padding: 10px 0px;
    font-size: 14px;
}
.hw-it-wrk-rntg {
    width: 100%;
}
.popup{
      transform: translateY(-15%);
}
.popup-content {
    padding: 8px;
    border-radius: 8px;
    width: 84%;
    position: relative;
    transform: translateY(-22%);
}
.popup .close:hover {
    color: #720310;
    border: 1px solid #720310;
}
.container-prnts-pop {
    column-gap: 12px;
}
.pop-btn-cntr {
    margin-left: 0%;
}
.pop-btn-call-95 {
    margin-top: 12px;
    padding: 12px 60px;
}
.all-review {
    height: fit-content;
    border-radius: 8px;
    margin-top: 16px;
    padding: 12px 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.review-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}
 .filter-btn {
        width: 48px;
        height: 28px;
        border-radius: 12px;
        padding: 4px 2px;
        cursor: pointer;
        font-size: 12px;
        font-weight: 300;
        color: #333;
        border: 1px solid #ddd;
        transition: background 0.2s, color 0.2s;
        text-align: center;
    }
    .filter-btn.active{
        background: #930012;
        color: #fff;
        border-color: #930012;
        border-radius: 12px;
        padding: 4px 2px;
        cursor: pointer;
        font-size: 12px;
           font-weight: 400;
        width: 48px;
        height: 28px;
        text-align: center;
    }
 .review-item {
align-items: flex-end;
 gap: 10px;
padding-bottom: 12px;
                        }
.review-item-last {
align-items: flex-end;
gap: 10px;
padding-bottom: 12px;
                        }
.review-stars {
    margin-top: 8px;
    font-size: 18px;
    margin-bottom: 0px;
    letter-spacing: 1px;
}
.review-location {
    font-weight: 400;
    font-size: 13px;
    margin-left: 6px;
}
.ac-hdng {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}
.review-text {
    width: 95%;
    font-size: 14px;
}
.footer-container {
        width: 100%;
        height: 608px;
        padding: 12px 8px;
        display: flex;
        column-gap: 12px;
        border-radius: 8px;
        margin-top: 16px;
        flex-direction: column;
        margin-bottom: 120px;
        transform: translateY(1.4%);
    }
.footer-part {
    width: 100%;
    margin-top: 8px;
}
.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    text-align: center;
}
.footer-sign {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    text-align: center;
}
    .footer-social-links {
        display: flex;
        gap: 10px;
        justify-content: center;
    }
#facebook-icon, #instagram-icon, #whatsapp-icon, #email-icon {
    width: 32px;
    height: 32px;
    font-size: 18px;
}
#facebook-icon:hover, #instagram-icon:hover, #whatsapp-icon:hover, #email-icon:hover {
    color: #930012;
    background: #fff;
}
.bottom-nav {
    position: fixed;
    width: 100%;
    bottom: 0;
    background-color: #000000;
    box-shadow: 0px -5px 8px 0px rgba(90, 90, 90, 0.6);
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0px 0px 0px;
    border-radius: 8px 8px 0px 0px;
    z-index: 1001;
    transform: translateY(12%);
}
.scrollable-div {
    width: 100%;
    max-height: 500px;
    padding: 8px;
    border-radius: 8px;
}
.scrollable-div::-webkit-scrollbar {
    display: none;
}
.prodcut-page-all-details {
    height: 100%;
    border-radius: 8px;
    padding: 4px;
    margin: 16px 0 20px;
}
.box-1 {
    display: flex;
    gap: 12px;
    flex-direction: row-reverse;
}
.product-page-detail-1 {
    width: 65%;
}
.product-page-detail-2 {
    width: 35%;
}
.box-2 {
    width: 100%;
    transform: translate(0%, 0%);
    justify-content: center;
    align-items: center;
}
    .new-nav-box-search{
      background-color: #f4f4f4;
       margin-left: 0; 
       width: 100%; 
       padding: 8px 0px;
       height: 48px;
    }
        .nav-search {
        }
    .nav-search input[type="text"] {
    padding: 10px 10px;
    border: 1px solid #ccc;
    border-radius: 16px 0 0 16px;
    outline: none;
    font-size: 12px;
}
        .nav-search button {
            background: #930012;
            border: none;
            color: #f7fafc;
            padding: 9px 16px;
            border-radius: 0 16px 16px 0;
            cursor: pointer;
            font-size: 16px;
            transition: background 0.2s;
            box-shadow: rgba(0, 0, 0, 0.5) 0px 4px 8px;
        }
        .nav-search button:hover {
            background: #720310;
        }
        .search-results {
            top: 48px;
            background: #e8e8fd;
            max-height: fit-content;
        }
        .search-result-item {
            padding: 6px 8px;
            cursor: pointer;
            border-bottom: 1px solid #fff;
            color: #930012;
            text-decoration: none;
            display: block;
               font-size: 14px;
        }
        .search-result-item:last-child {
            border-bottom: none;
        }
        .search-result-item:hover {
            font-size: 14px;
             color: #720310;
    }
.pop-body {
    padding: 8px;
    border-radius: 8px;
    max-width: 84%;
}
    .review-popup-modal {
    display: none;
    position: fixed;
    width: 100vw;
    height: 75vh;
    background: rgba(0,0,0,0.5);
}
.review-popup-modal.active {
    display: flex;
     position: fixed;
    top: 0;
    left: 0;
    width: 92vw;
    max-height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 9000;
    align-items: center;
    justify-content: center;
    overflow-y: auto;
    transform: translate(0%, -15%);
}
.review-list-popup {
    max-height: 280px;
    overflow-y: auto;
    padding-right: 8px;
}
    .viewDetailModal {
    display: none;
    position: fixed;
    width: 92vw;
    height: 90vh;
    background: rgba(0,0,0,0.5);
       transform: translate(0%, -17.5%);
}
}

@media (min-width: 768px) and (max-width: 899.98px) {
    .my-nav,
    .container-main {
        width: 100%;
        padding: 0 16px;
    }
    .nav-one {
        width: 100%;
        height: 64px;
        padding: 6px 8px;
        border-radius: 8px;
        margin-bottom: 12px;
    }
    .uj-logo {
        width: 52px;
        height: 52px;
    }
    .nav-hdng {
        font-size: 16px;
        padding: 0 10px;
    }
    .new-nav-box-search {
        margin-left: 40%;
        width: 60%;
        height: 64px;
        padding: 6px 8px;
    }
    .container-one,
    .container-two {
        width: 100%;
        column-gap: 20px;
        flex-direction: column;
    }
    .container-one-1,
    .cont-two-2,
    .cont-two-3,
    .cont-two-4 {
        width: 100%;
        padding: 12px;
        border-radius: 12px;
    }
    .cont-new {
        width: 100%;
        row-gap: 16px;
    }
    .bottom-nav {
        width: 100%;
        padding: 12px 0 6px 0;
        border-radius: 12px 12px 0 0;
    }
    .crcle-hvr {
        width: 64px;
        height: 64px;
    }
    .footer-container {
        width: 100%;
        padding: 20px 12px;
        column-gap: 24px;
        border-radius: 12px 12px 0 0;
        margin-top: 32px;
    }
    .footer-part {
        width: 50%;
        margin-top: 12px;
    }
    .footer-title {
        font-size: 20px;
    }
    .footer-sign {
        font-size: 15px;
    }
    .scrollable-div {
        width: 100%;
        max-height: 400px;
        padding: 8px 12px;
        border-radius: 12px;
    }
    .prodcut-page-all-details {
        padding: 8px;
        border-radius: 12px;
        margin: 12px 0 18px;
    }
    .box-1 {
        gap: 16px;
    }
    .product-page-detail-1 {
        width: 60%;
    }
    .product-page-detail-2 {
        width: 40%;
    }
         .all-service-container{
        width: 100%;
     }
.container-all-service {
    row-gap: 16px;
}
     .service-container {
    width: 100%;
    padding: 8px 4px;
    margin-bottom: 20px;
}
.container-repair {
    width: 100%;
    display: flex;
    column-gap: 12px;
}
        .cont-hw-it-wrk {
        width: 100%;
        padding: 8px 4px;
        border-radius: 8px;
        margin-bottom: 20px;
        }
}
@media (min-width: 900px) and (max-width: 1023px) { 

} 

