<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    min-height: 100vh;
    background-image: url(home-page.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
} */


/* *{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", "Noto Sans", "Liberation Sans", Arial, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #efefef;
} */


/* ===========================*/
.slide-container {
    /* max-width: 1120px; */
    width: 100%;
    /* background-color: gray; */
    padding: 40px 0;
}

.slide-content {
    margin: 0 40px;
    /* background-color: red; */
    overflow: hidden;
    border-radius: 25px;
}

.card {
    padding: 20px;
    min-height: 500px;
    width: 320px;
    border-radius: 25px;
    background-color: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.image-content, .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 14px;
}

.image-content{
    position: relative;
    row-gap: 5px;
    padding: 25px 0;
    background-image: url('Ahsan.jpeg');
    background-size: cover; /* Or contain, depending on how you want it to fit */
    background-position: center;
    min-height: 300px;
    border-radius: 25px 25px 25px 25px;
}

.overlay {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: #4070f4;
    border-radius: 25px 25px 0 25px;
}

.overlay::before,
.overlay::after{
    content: '';
    position: absolute;
    right: 0;
    bottom: -40px;
    height: 40px;
    width: 40px;
    background-color: #4070f4;
}

.overlay::after{
    border-radius: 0 25px 0 0;
    background-color: #fff;
}

.card-image {
    position: relative;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background: #fff;
    padding: 3px;

}

.card-image .card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #4070f4;
}

.title {
    font-size: 20px;
    font-weight: 700;
    color: #343434;
}

.short-desc{
    font-size: 18px;
    font-weight: 700;
    color: #707070;
    text-align: center;
    padding: 5px 0;
}
.description {
    font-size: 14px;
    color: #707070;
    text-align: center;
}

.button {
    background-color: #ece9fe;
    border-color: #7370b6;
    color: #343090;
    border: 1px solid;
    font-size: 16px;
    /* color: #fff; */
    padding: 16px 24px;
    /* background-color: #4070f4; */
    border-radius: 25px;
    margin: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button:hover{
    background: #265DF2;
}

/* .swiper-slide {
    width: 320px !important;
} */

.swiper-navBtn {
    color: #6E93f7;
    transition: color 0.3s ease;
}

.swiper-navBtn:hover{
    color: #4070f4;
}

.swiper-navBtn::before,
.swiper-navBtn::after{
    font-size: 40px;
}

.swiper-button-next{
    right: 0;
}
.swiper-button-prev{
    left: 0;
}

.swiper-pagination-bullet{
    background-color: #6E93f7;
    opacity: 1;
}
.swiper-pagination-bullet-active{
    background-color: #4070f4;
}

@media screen and (max-width: 768px){
    .slide-content{
        margin: 0 10px;
    }
    .swiper-navBtn{
        display: none;
    }
}

.custom-ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.custom-ul li {
    font-size: 12px;
    color: #343434;
    display: flex;
    align-items: center; /* Vertically align items within each li */
    padding: 0px 3px;
}

.info{
    padding: 24px 0;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #f1f0f0;
    width: 100%;
}

.meta-info{
    padding-top: 24px;
    line-height: 1.2;
    /* padding: 24px 0; */
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    justify-content: center;
    gap:20px;
}

.meta-info-1{
    line-height: 1.3;
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.meta-info-2{
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

.list-container{
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 24px;
}

.swiper-wrapper {
    padding: 10px 0px;
}

.price-tag{
    font-size: 27px;
    color: #66b2b2;
    font-weight: 900;
}

.price-meta{
    font-size: 12px;
    color: #707070;
    font-weight: 400;
}

.meta-info-1 h4 {
    color: #343434; /* Replace 'blue' with your desired color */
  }
</pre></body></html>