@import url(https://fonts.cdnfonts.com/css/gilroy-bold);

body,
nav ul li a {
    color: #242424
}

.cta-btn,
.login-btn {
    color: #fff;
    cursor: pointer;
    text-decoration: none
}

.cta-btn,
.dot,
.login-btn,
.search-login i {
    cursor: pointer
}

.browse-link,
.cta-btn,
.list-unstyled a,
.login-btn,
.navigation a,
.nexticon-previcon a,
.service-title,
.view-all-link,
nav ul li a {
    text-decoration: none
}

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

body {
    font-family: Gilroy-Regular, sans-serif
}

header {
    background-color: #fff;
    width: 100%;
    height: 100;
    padding: 12px 50px;
    position: fixed;
    top: 0;
    z-index: 100;
    box-shadow: 4px 4px 40px 0 #2121210A
}

.navbar-collapse {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    background-color: #fff
}

.logo img {
    width: 85px;
    height: 53px
}

nav ul {
    display: flex;
    list-style: none;
    gap: 58px
}

nav ul li {
    font-size: 16px;
    font-weight: 400px
}

.search-login {
    display: flex;
    gap: 20px;
    align-items: center;
    position: relative
}

.search-login input {
    border: 0 solid #b8b8b8;
    border-radius: 50px;
    padding: 10px;
    outline: #c3f2f8;
    transition: border .4s, padding .4s, opacity .4s;
    opacity: 0
}

.search-login input.active {
    border: 1px solid #b8b8b8;
    padding: 10px;
    opacity: 1
}

.search-login i {
    position: absolute;
    left: 160px;
    font-size: 20px
}

.login-btn {
    background-color: #0af;
    border: none;
    width: 100px;
    font-weight: 400;
    font-size: 14px;
    height: 44px;
    padding: 10px 20px;
    border-radius: 8px;
    margin-left: 10px;
    text-align: center;
    
    
}


.mobile-search-login {
    display: none
}

.user-image {
    height: 40px;
    width: 40px
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-width: 400px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, .1);
    z-index: 1000;
    padding: 10px 0;
    max-height: 500px;
    overflow-y: auto;
      
}

.footer-links ul,
.iq-post {
    list-style: none;
    padding: 0
}

.avatar-rounded,
.deal-card,
.footer,
.hero,
.service-card {
    overflow: hidden
}

.dropdown-menu::-webkit-scrollbar {
    width: 8px;
    background-color: #f1f1f1
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 4px;
    border: 2px solid #f1f1f1
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background-color: #555
}

.dropdown-menu::-webkit-scrollbar-corner {
    background-color: #f1f1f1
}

.iq-post {
    margin: 0
}

.currency-box {
    width: 85px;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-right: 16px;
    margin-left: 16px;
    border-radius: 10px;
    padding: 20px;
    background: linear-gradient(180deg, #cef5ff -3.78%, #fedce6 127.56%)
}

.hero-content {
    max-width: 800px;
    padding-left: 50px
}

.hero-content .dashboard-badge {
    background-color: #fffFFF80;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    width: fit-content;
    gap: 5px;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.hero-content h1 {
    margin-bottom: 20px;
    font-size: 62px;
    font-weight: 600
}

.dots,
.view-all-link {
    margin-top: 20px
}

.hero-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 22.4px;
    margin-bottom: 40px
}

.cta-btn {
    background-color: #00a7d1;
    border: 1px;
    width: 184px;
    height: 50px;
    padding: 14px 16px;
    gap: 6px;
    border-radius: 8px
}

.services {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-top: 70px
}

.service-item {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

    .service-item:hover {
        transform: scale(1.05); /* Slightly increases size on hover */
        background-color: #f0f0f0; /* Change background color on hover */
        border-radius: 8px; /* Adds rounded corners */
        cursor: pointer; /* Changes cursor to pointer */
    }
    
    .service-item img {
        transition: transform 0.3s ease;
    }
    
    .service-item:hover img {
        transform: scale(1.1); /* Slightly enlarges image on hover */
    }


@media (max-width: 768px){
    .services {
        display: flex; 
        flex-direction: column; 
        gap: 10px; 
        padding-top: 20px; 
        align-items: flex-start; 
    }

    .service-item {
        flex: 1; 
        text-align: left;
    }

}

@media (max-width: 768px){
    .hero-image{
        display: none !important;
    }
}
/* categorory section */


.categories-section {
    padding: 80px 84px 50px;
    background-color: #f7f8fc
}

.featured-section1,
.title-section1 {
    display: flex;
    justify-content: space-between
}

.best-deals-heading h2,
.categories-section h2,
.featured-services h2,
.testimonial-heading h2 {
    font-size: 32px;
    font-family: Gilroy-Regular, sans-serif;
    font-weight: 700;
    margin-bottom: 10px
}

.best-deals-heading p,
.categories-section p,
.featured-services p,
.testimonial-heading p {
    font-size: 16;
    color: #5b5b5b;
    margin-bottom: 40px
}

.categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.category-item {
    background-color: #fff;
    padding: 20px;
    transition: transform .3s;
    text-align: left;
    width: 305ppx;
    height: 224px;
    border-radius: 12px;
    border: 1px solid #f0f0f0
}

.dots,
.footer-bottom,
.qr-code-text,
.service-category {
    text-align: center
}

.category-item:hover {
    background-color: #fff9fc;
    transform: translateY(-5px)
}

.category-icon {
    margin-bottom: 20px;
    height: 44px;
    width: 44px
}

.category-icon img {
    width: 100%;
    height: 100%
}

.category-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px
}

.category-item p {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #666
}

.browse-link {
    color: #ff5a5f;
    font-size: 14px;
    font-weight: 700;
    height: 40px
}

.deal-content,
.service-card {
    height: auto;
    position: relative
}

@media (max-width:768px) {
    header {
        padding: 0 25px
    }

    .navbar-collapse {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 10px;
        margin-top: 30px
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-bottom: 20px;
        margin-top: 20px
    }

    .search-login {
        display: none
    }

    .search-login input {
        width: 100%
    }

    .login-btn {
        margin-left: 20px;
        width: 75px;
        font-weight: 400;
        font-size: 14px;
        height: 34px;
        padding: 7px 20px
    }

    .navbar-toggler {
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 5px
    }

    .logo {
        margin-left: 60px;
        margin-top: 0
    }

    .logo img {
        width: 60px;
        height: 35px
    }

    .mobile-search-login {
        display: flex;
        position: absolute;
        top: 0;
        right: 0;
        margin-top: 10px
    }

    .user-image {
        height: 30px;
        width: 30px
    }

    .search-icon {
        font-size: 26px;
        margin-left: 20px;
        margin-top: 2px
    }

    .dropdown-menu.dropdown-menu-end.user-dropdown {
        right: 10px;
        left: auto;
        max-width: calc(100% - 20px);
        
        
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 16px;
        
    }

    .hero-content h1 {
        font-size: 24px;
        font-weight: 600
    }
    .hero-content p{
        margin-bottom: 30px;
    } 

    .hero-content {
        max-width: 800px;
        padding-left: 0
    }

    .dashboard-badge {
        margin-top: 10px
    }

    .services {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding-top: 20px;
        align-items: flex-start
    }

    .service-item {
        flex: 1;
        text-align: left
    }

    .hero-image {
        display: none !important
    }


    .categories-section {
        padding: 50px 20px 20px
    }

    .categories-section h2 {
        font-size: 24px
    }

    .categories-section p {
        font-size: 12px;
        margin-bottom: 0
    }

    .title-section1 {
        flex-direction: column;
        align-items: center;
        text-align: center
    }

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

    .category-item {
        width: auto;
        height: auto;
        padding: 15px
    }

    .category-item h3 {
        font-size: 14px
    }

    .browse-link,
    .category-item p,
    .view-all-link {
        font-size: 12px
    }
}

.Best-deals-silder,
.featured-services {
    padding: 30px 84px 50px;
    background-color: #f7f8fc
}

.view-all-link {
    color: #0af;
    font-size: 16px
}

.featured3,
.testimonial-cointainer {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.service-card {
    width: auto;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background-color: #fff;
    padding: 8px
}

.service-card img {
    width: 100%;
    height: 175px;
    display: block;
    object-fit: cover
}

.service-content {
    padding: 24px 4px 4px
}

.service-category {
    background-color: #e3e8f4;
    font-weight: 500px;
    color: #504f9b;
    display: inline-block;
    font-size: 10px;
    border-radius: 4px;
    margin-bottom: 10px;
    padding: 3px 8px
}

.service-content h3 {
    margin-bottom: 10px;
    color: #242424;
    font-size: 16px;
    font-weight: 600
}

.price-section,
.service-content .rating {
    display: flex;
    align-items: center;
    margin-bottom: 10px
}

.service-content .status {
    font-size: 12px;
    margin-top: 5px;
    color: #28a745;
    margin-left: 10px;
    font-weight: 700
}

.service-content .status-out-of-stock {
    font-size: 12px;
    margin-top: 5px;
    color: #d42e59;
    margin-left: 10px;
    font-weight: 700
}

.service-content .service-description {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5
}

.price {
    font-size: 16px;
    font-weight: 700
}

.original-price {
    font-size: 12px;
    color: #d42e59;
    text-decoration: line-through;
    margin-left: 10px
}

.author,
.discount-tag,
.quote {
    font-size: 14px
}

.deal-card {
    display: flex;
    background-color: #fff;
    border-radius: 16px
}

.deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.deal-content {
    padding: 40px;
    background: linear-gradient(117.32deg, #890d27 0, #ea4e71 100%);
    color: #fff;
    flex: 1;
    width: 640px
}

.discount-tag {
    background: #fffFFF99;
    color: #7f1c31;
    font-weight: 600;
    border-radius: 24px;
    margin-bottom: 15px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 5px
}

.deal-content h2 {
    margin-bottom: 10px;
    font-size: 40px;
    font-weight: 400
}

.deal-content p {
    margin-bottom: 40px;
    line-height: 1.6;
    font-size: 16px;
    font-weight: 400
}

.author,
.quote {
    line-height: 19.6px
}

.deal-content .price {
    margin-bottom: 20px
}

.deal-content .price .starting {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 10px
}

.deal-content .price .rs {
    font-size: 24px;
    font-weight: 400
}

.navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    bottom: 20px;
    right: 20px
}

.navigation hr {
    width: 476px;
    border-width: 1px
}

.navigation .nexticon-previcon {
    display: flex !important;
    visibility: visible !important
}

.navigation a {
    color: #fff;
    font-size: 24px;
    margin: 0 10px
}

.dot {
    height: 8px;
    width: 20px;
    border-radius: 8px;
    margin: 0 5px;
    background-color: #e33f71;
    display: inline-block
}

.Testimonials-section {
    padding: 50px 84px 100px;
    background-color: #f7f8fc
}

.testimonial-heading {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.nexticon-previcon a {
    font-size: 24px;
    margin: 0 10px;
    cursor: pointer
}

.testimonial-card {
    background-color: #fff;
    padding: 24px;
    border-radius: 12px;
    flex: 1;
    border: 1px solid #f0f0f0
}

.testimonial-card img {
    width: 22.75px;
    height: 16.63px;
    margin-bottom: 10px
}

.quote {
    margin-bottom: 10px;
    position: relative;
    font-weight: 400;
    height: 100px
}

.author {
    font-weight: 600
}

.footer {
    background: linear-gradient(119.14deg, #063046 0, #1d688f 114.41%);
    color: #ebdfdf !important;
    width: 100%;
    height: auto;
    position: relative
}

.footer .back-img {
    position: absolute;
    z-index: 0
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 80px 80px 0
}

.company-info {
    max-width: 400px
}

.logo-img {
    width: 120px;
    height: 84px;
    margin-bottom: 28px
}

.company-info .dm,
.company-info p {
    font-size: 14px;
    font-weight: 400;
    line-height: 19.6px;
    margin-bottom: 28px
}

.social-media a {
    margin-right: 10px
}

.social-media a i {
    font-size: 20px;
    color: #fff
}

.app-download .heading,
.footer-links .heading {
    font-size: 16px;
    margin-bottom: 28px
}

.footer-links ul li {
    margin-bottom: 12px
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px
}

.footer-links ul li a:hover {
    text-decoration: underline
}

.app-download img {
    height: 38.01px;
    margin-bottom: 28px
}




.qr-code img {
    height: 100px;
    width: 100px;
   
   
}

.qr-code span {
    font-size: 14px
}

.qr-code-text {
    margin-top: 8px;
    margin-right: 100px;
    margin-left: 10px;
}

.footer-bottom {
    margin-top: 28px;
    background-color: #0630463D;
    font-size: 14px;
    padding: 16px 0;
    width: 100%
}

.list-unstyled a {
    color: #cfcdcd
}

.list-unstyled a:hover {
    color: #868686
}

.app-store-logo {
    width: 140px;
    height: auto
}

@media (max-width:768px) {
    .featured3 {
        grid-template-columns: 1fr;
        gap: 12px
    }

    .featured-services {
        padding: 20px 15px
    }

    .best-deals-heading h2,
    .deal-content h2,
    .featured-services h2,
    .testimonial-heading h2 {
        font-size: 24px
    }

    .best-deals-heading p,
    .featured-services p {
        font-size: 12px;
        margin-bottom: 0
    }

    .service-card {
        padding: 10px
    }

    .price,
    .service-content h3 {
        font-size: 14px
    }

    .author,
    .deal-content p,
    .footer-bottom,
    .quote,
    .service-content p,
    .testimonial-heading p,
    .view-all-link {
        font-size: 12px
    }

    .deal-card,
    .dots {
        margin-top: 10px
    }

    .nexticon-previcon,
    .nexticon-previcon a {
        visibility: visible !important;
        opacity: 1 !important
    }

    .Best-deals-silder {
        padding: 30px 20px
    }

    .best-deals-heading {
        text-align: center
    }

    .deal-card {
        flex-direction: column
    }

    .deal-content {
        width: 100%;
        padding: 20px
    }

    .deal-content .price .rs {
        font-size: 20px
    }

    .navigation a {
        font-size: 16px;
        overflow: visible
    }

    .dot {
        width: 15px
    }

    .nexticon-previcon {
        display: flex !important
    }

    .navigation {
        display: block
    }

    .Testimonials-section {
        padding: 30px 20px 60px
    }

    .testimonial-heading {
        flex-direction: column;
        text-align: center
    }

    .testimonial-cointainer {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .testimonial-card {
        width: 100%
    }

    .testimonial-card img {
        width: 18px;
        height: 14px
    }

    .nexticon-previcon a {
        display: inline-block !important;
        font-size: 18px
    }

    .footer-content {
        padding: 40px 20px 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start
    }

    .app-download,
    .company-info,
    .footer-links {
        max-width: 30%;
        flex: 1
    }

    .footer-links ul li {
        flex: 1 1 100%;
        text-align: left
    }

    .qr-code {
        display: none !important
    }
}

@media (max-width:576px) {
    .footer .logo-img {
        width: 120px
    }

    .footer .social-media img {
        width: 30px
    }

    .footer .qr-code img {
        width: 60px
    }

    .footer .footer-bottom {
        font-size: 14px
    }
}

.avatar-rounded {
    border-radius: 50rem;
    -o-object-fit: cover !important;
    object-fit: cover !important
}

