html,body {
    font-family: Arial, sans-serif;

}

/* Navbar styling */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: linear-gradient(to right, #203aa6 70%, #39c8c9 );
    border-bottom: 1px solid #ddd; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* .navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
 
    font-size: 39px;
    font-weight: bold;
} */
.custom-container {
    /* max-width: 1500px; */
    margin: 0 auto; 
    width: 100%; 
    padding-left: 15px; 
    padding-right: 15px;
}

.navbar-brand img {
    width: 80px; 
    height: auto; 
    margin-left: 20px; 
}

.navbar-right {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none;
    margin-right: 1rem; 
}

.nav-link:hover {
    text-decoration: none;
    color: #ffcc00; 
}
/* Navbar Ends */

 /* Main Components Start  */
 .image {
    width: 75%;
    display: block;
   margin:20px;
}

.text-left {
    text-align: left;
}
.image-style {
    width: 100%;
    max-width: 750px;
    margin-top: 40px;
    display: block;
    align-items:end;
    justify-content:end !important;

}
.custom-column {
    display: flex;
    justify-content: center;
  padding-top:10px;
}

.custom-column img {
    /* max-width: 40px; */
    height: 30px;
    margin-top:0px;
    
}

.custom-column p {
    color: #737373;
    font-size: 16px;
    
}
@media (max-width: 992px) {
    .custom-column {
        flex-direction: column; 
        align-items: center;
    }
}
@media (max-width: 1150px) {
    .custom-column p {
        color: #737373;
        font-size: 13px;
    }
}

h5 {
    font-family: 'Red Hat Display', sans-serif;
    font-weight: normal;
    color: #808080; 
    font-size: 20px;
}
h1{
    color: #203aa6;
}
/* Main container for the slider */
.slider {
    background: white;
    height: 190px;
    overflow: hidden;
    position: relative;

    margin: 0 auto; 
}


/* Track that moves */
.slide-track {
    display: flex;
    position: absolute;
    width: 100%;
    animation: scroll 30s linear infinite;  
}


.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* Image Styling */
.slide img {
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    max-width: 200px;
    object-fit: cover;
}

.slide img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Fading edges for aesthetic effect */
.slider::before,
.slider::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 100%;
    z-index: 2;
    top: 0;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%); */
}

.slider::before {
    left: 0;
}

.slider::after {
    right: 0;
    transform: rotateZ(180deg);
}

/* Hover transitions for image swap */
.image-container {
    position: relative;
    display: inline-block;
    width: 200px;
    height: 190px;
    overflow: hidden;
}

.image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

.image-container .silver {
    filter: grayscale(100%);
    opacity: 1;
    z-index: 2;
}

.image-container .real {
    filter: grayscale(0%);
    opacity: 0;
    z-index: 1;
}

.image-container:hover .silver {
    opacity: 0;
}

.image-container:hover .real {
    opacity: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .slider {
        padding: 15px;
        height: 160px;
    }

    .slide img {
        max-width: 150px;
        max-height: 150px;
    }

    .slide-track {
        width: calc(150px * 23); 
        animation: scroll 240s linear infinite;  
    }

    .slider::before,
    .slider::after {
        width: 80px;
    }

    .image-container {
        width: 150px;
        height: 160px;
    }
}
.loyalty-programme{
    font-size: 13px;
     margin-top: 10px;
     padding-left: 15px;
}
@media(min width:902px) (max-width:1050px){
    .loyalty-programme{
        font-size: 10px;
         margin-top: 10px;
         padding-left: 15px;
    }
}
@media (max-width: 576px) {
    .slider {
        padding: 10px;
        height: 140px;
    }

    .slide img {
        max-width: 120px;
        max-height: 120px;
    }

    .slide-track {
        width: calc(120px * 23);  
        animation: scroll 240s linear infinite;  
    }

    .image-container {
        width: 120px;
        height: 140px;
    }
}


@keyframes scroll {
    0% {
        transform: translateX(0);  
    }
    100% {
        transform: translateX(-100%);  
    }
}




.col-content {
    padding: 15px;
}

.col-content h5 {
    margin-bottom: 10px; 
    color: #808080; 
}

.col-content p {
    margin-bottom: 45px; 
    color: #808080; 
}


/* Footer  */
.container-fluid {
    color: white;
}

.py-2 {
    /* padding-top: 40px;
    padding-bottom: 40px; */
    background: linear-gradient(to right, #203aa6 70%, #39c8c9 );
}

/* Footer Links */
ul.list-unstyled {
    padding-left: 0;
    list-style-type: none;
}

ul.list-unstyled li {
    margin-bottom: 10px;
}

ul.list-unstyled a {
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
    font-weight:normal;
}

ul.list-unstyled a:hover {
    color: #f8f9fa; 
}

ul.list-unstyled p {
    margin-top: 5px;
    font-size: 14px;
    color: white; 
}

/* Footer  */
.row.py-2 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.row.py-2 p {
    margin-bottom: 0;
    font-size: 14px;
}


@media (min-width: 768px) {
    .col-md-4 {
        padding-left: 20px;
        padding-right: 20px;
    }
}


@media (max-width: 767px) {
    .col-12 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

/* Styling for WhatsApp icon */
.whatsapp-icon {
    display: inline-block;
    /* background-color: #25D366; */
    padding: 12px;
    border-radius: 50%; 
    color: white;  
    transition: background-color 0.3s ease;
}

.whatsapp-icon:hover {
    /* background-color: #128C7E;  */
}

.whatsapp-icon i {
    font-size: 24px; 
}


.text-white {
    color: white;
}


.text-white {
    color: white;
    font-weight:bold;
}

p.mt-2 {
    font-size: 16px;
    color: white; 
}

p{
    font-weight:normal;
    color:#747474
}
.category-img {
    width: 120%; 
    height: auto;
    max-width: 300px; 
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}


/* .category-img:hover {
    transform: scale(1.1);
    
} */
.category-container {
    display: flex;
    flex-wrap: wrap;  
    justify-content: center; 
    flex-direction: row; 
    gap: 15px;  
}

.mobile-track {
    font-size: 12px;
    text-align: left;
    padding-left: 20px;
    line-height: 1.1;
    padding-right: 10px;
}

.category-container .category-item {
    width: 130%;  
    display: flex;
    flex-direction: column; 
    align-items: center; 
    
}

.category-name {
    font-size: 18px !important;  
    line-height: 1.4; 
    margin-top: 20px;
    color: #7b7b81;
    white-space: normal;
}


.img-fluid-mobile{
    width:91%;

}
.img-fluid-store{
    width: 200px;
    object-fit: contain;
    align-items:left!important;
} 
@media (min-width: 993px) and (max-width: 1200px) {
    .category-container {

        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 15px; 
    }
    .category-img {
        width: 100%; 
        max-width: 250px; 
    }
    .category-item {
        flex: 0 0 22%;
         
        margin-bottom: 2%;
        text-align: center;
    }
}

 @media (max-width: 992px) {
    .category-container {
        
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
         
    }
    .category-img {
        width: 100%; 
        max-width: 250px; 
    }
    .category-item {
        flex: 0 0 48%; 
        margin-bottom: 2%;
        text-align: center;
    }
    .img-fluid-mobile{
        margin-right:0px!important;
    }
} 

@media (min-width: 992px) {
    .col-lg-1-5 {
        flex: 0 0 9.5%; /* 1/8th of 100% */
        max-width: 12.5%;
    }
}
/* .step-title {
    font-size: 66px;
    font-weight: bold;
    color: #203aa6;
   
} */


@media (max-width: 768px) {
    .row.text-center {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .col-12.col-md-3 {
        margin-top: 20px;
    }

    .col-12.col-md-3 img {
        width: 100%; 
        max-width: 300px;
        height: auto;
    }

    .col-12.col-md-3 ul {
        text-align: center;
    }

    .col-12.col-md-3 a {
        text-align: center;
    }

    .col-12.col-md-3 a img {
        width: 100px; 
        height: auto;
    }

    .col-12.col-md-3.mt-5 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .col-12.col-md-3.mt-5 p {
        text-align: center;
        padding: 0 10px; 
    }

    .row.text-center a img {
        width: 150px; 
        margin: 0 auto; 
    }
    .img-fluid-mobile{
        margin-right: -25px!important;
    }
}
.text-wrapper p {
    margin-top: 22px;

}
.image-wrapper {
    margin-top: 10px;
}
/* @media (min-width: 1250px) {
    .container-fluid {
        max-width: 1250px;

    }
} */
.responsive-header {
    text-align: center;
    color: #000;
    font-size: 18px;
    font-weight: normal;
    margin: 0;
}

/* Media Query for Mobile Devices */
@media (max-width: 768px) {
    .responsive-header {
        font-size: 16px;  
        padding: 10px;    
    }
}

/* Further adjustment for smaller screen sizes */
@media (max-width: 480px) {
    .responsive-header {
        font-size: 14px;  
        padding: 8px;
    }
    
}
.shop-title {
    font-weight: normal;
    font-size: 90px;
    margin: 0;
    text-align: left;
}

.primary-text {
    color: #203aa6;
    padding-left: 60px;
}

.secondary-text {
    color: #3793bc;
    padding-left: 60px;
    font-weight:Bold;
}


@media (max-width: 768px) {
    .primary-text,
    .secondary-text {
        padding-left: 0; 
    }
}


/* Responsive Styling for Mobile */
@media (max-width: 768px) {
    .shop-title {
        font-size: 70px;
        text-align: center;
    }
}
@media (max-width: 992px) {
        .loyalty-programme {
            font-size: 10px!important; 
        }
    }