:root {
    --primary-color: #8257ff;
    --primary-light: #f7f7ff;
    --hover-color: #6a42e0;
    --secondary-color: #6f42c1;
    --light-purple: #efe6ff;
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --light-text: #666;
    --white: #fff;
    --dark-bg: #6f42c1;
    --text-color: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
}


/* Navbar Css Start */

.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
}

.navbar-brand {
    font-weight: 700;
    color: var(--primary-color) !important;
}

.brand-logo{
    height: 86px;
    margin-top: -30px;
}

.brand-logo img {
    height: 135px;
    width: 195px;
}

.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--text-dark) !important;
    margin: 0 0.5rem;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    max-height: 600px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.categories-dropdown:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
}

.dropdown-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 2rem;
    margin: 0;
}

.dropdown-header h5 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.dropdown-body {
    padding: 2rem;
    overflow-y: auto;
}

.category-section {
    margin-bottom: 2.5rem;
    background: #fafbfc;
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #f1f3f4;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--primary-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.solution-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--text-dark);
    border: 1px solid #e9ecef;
}

.solution-item:hover {
    background: var(--hover-bg);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(130, 87, 255, 0.15);
    border-color: var(--primary-color);
}

.solution-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
    font-size: 1rem;
}

.solution-content {
    flex: 1;
}

.solution-name {
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.3;
}

.solution-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
}

.btn-sell {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
    padding: 0.7rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.btn-sell:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(130, 87, 255, 0.4);
}

.btn-enquiry {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 0.65rem 1.8rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-enquiry:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.brands-dropdown .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: block !important;
    pointer-events: none;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    min-width: 200px;
}

.brands-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.brands-dropdown .dropdown-toggle::after {
    display: none !important;
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--hover-bg);
    color: var(--primary-color);
}

.category-badge {
    background: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-weight: 600;
    margin-left: 0.5rem;
}

.category-badge.new {
    background: #00cec9;
}

.category-badge.popular {
    background: #fd79a8;
}

@media (max-width: 1200px) {
    .mega-dropdown {
        width: 700px;
    }
}

@media (max-width: 991px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .category-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .solution-item {
        padding: 0.75rem;
    }

    .solution-icon {
        width: 35px;
        height: 35px;
        margin-right: 0.75rem;
    }
}

/* Navbar Css End */


/* Hero Section Css Start */

.hero-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.hero-title {
    font-size: 4.2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.logiciel-text {
    color: #8257ff;
    font-size: 4.2rem;
}

.subtitle {
    font-size: 4.2rem;
    font-weight: bold;
    margin-bottom: 40px;
}

.lorem-text {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.btn-sign-up {
    background-color: #8257ff;
    color: white;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    border: none;
    margin-right: 15px;
}

.btn-sign-up:hover {
    background-color: #7040ff;
    color: white;
}

.btn-about {
    background-color: transparent;
    color: #8257ff;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    border: 1px solid #8257ff;
}

.btn-about:hover {
    background-color: #f0edff;
    color: #7040ff;
}

.shape {
    position: absolute;
    opacity: 0.4;
}

.shape-1 {
    top: 10%;
    left: 5%;
    transform: rotate(-15deg);
}

.shape-2 {
    bottom: 15%;
    left: 12%;
}

/* Hero Section Css End */


/* About Section Css Start */

.about-section {
    padding: 80px 0;
    position: relative;
    background-color: white;
}

.about-title-overlay {
    display: flex;
    flex-wrap: wrap;
    font-size: 120px;
    font-weight: bold;
    color: rgba(240, 240, 240, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    line-height: 1;
}

.about-subtitle {
    position: relative;
    z-index: 1;
    font-size: 3.5rem;
    font-weight: bold;
    margin-top: 30px;
}

.enterprise-text {
    color: #8045e7;
}

.about-content {
    color: #666;
    line-height: 1.6;
    margin-top: 20px;
}

.read-more-btn {
    background-color: #8045e7;
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    margin: 20px 0px 40px;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background-color: #6a35c9;
    transform: translateY(-2px);
}

.illustration-container {
    position: relative;
}

.corner-decoration {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 150px;
    height: 150px;
    background-color: #ff90b3;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    transform: rotate(45deg);
    z-index: 0;
}

.corner-decoration-bottom {
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 150px;
    height: 150px;
    background-color: #ff90b3;
    clip-path: polygon(0 0, 0 100%, 100% 100%);
    transform: rotate(45deg);
    z-index: 0;
}

.image-container {
    background-color: #8045e7;
    border-radius: 30px;
    padding: 30px;
    position: relative;
    z-index: 1;
}

.laptop-container {
    position: absolute;
    bottom: -80px;
    right: -80px;
    background-color: #ff7757;
    border-radius: 30px;
    width: 300px;
    height: 300px;
    z-index: -1;
}

/* About Section Css End */


/* Product Cards Css Start */

/* Animated Heading with Color Gradient Effect */
.animate-text {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 2rem 0;
    padding: 0.5rem;
    background: linear-gradient(to right,
            #5c21ff,
            #000000,
            #3700d0);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 2s ease infinite;
    text-shadow: 0 0 20px rgba(119, 73, 248, 0.1);
    transform: perspective(500px) translateZ(0);
    transition: transform 0.3s ease;
}

.animate-text:hover {
    /* transform: perspective(500px) translateZ(10px); */
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.animate-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-text-fill-color: transparent;
    filter: blur(8px);
    opacity: 0.3;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    max-width: 320px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(130, 87, 229, 0.2) !important;
}

.card-img-top {
    height: 200px;
    object-fit: contain;
    background-color: #f9f9ff;
    padding: 20px;
    transition: transform 0.4s ease;
}

.card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 1.5rem;
    position: relative;
}

.productName {
    font-weight: 600;
    font-size: 15px;
    color: #333;
    margin-bottom: 12px !important;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.productPrice {
    font-size: 22px;
    font-weight: 700;
    color: #7749f8;
    margin-bottom: 8px !important;
}

.companyName {
    color: #555;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px !important;
}

.comapnyLocation {
    font-size: 12px;
    color: #777;
    margin-bottom: 20px !important;
}

.comapnyLocation .fw-bold {
    color: #555;
}

.numberBtn {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #7749f8;
    background-color: white;
    color: #7749f8;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.numberBtn:hover {
    background-color: #f5f0ff;
}

.numberBtn i {
    font-size: 14px;
}

.contactSupplier {
    width: 100%;
    padding: 10px;
    background-color: #7749f8;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.contactSupplier:hover {
    background-color: #f0edff;
    color: #7040ff;
    box-shadow: 0 4px 12px rgb(163, 66, 255, 0.6);
}

/* Badge for special offers or promotions */
.card::before {
    /* content: "Best Seller"; */
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #7749f8;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 4px;
    z-index: 1;
    font-weight: 500;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.3s ease;
}

.card:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Price highlight effect */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.card:hover .productPrice {
    animation: pulse 1s infinite;
    color: #6c3cee;
}

/* Subtle separator */
.card-body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(to right, transparent, #e0d5ff, transparent);
}

/* Product Cards Css End */


.section-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    font-size: 25px;
    font-weight: 700;
}

.quality-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    border: none;
}

.quality-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.quality-icon {
    color: #7749f8;
    /* Purple color matching your UI */
}

.partner-logos {
    overflow-x: auto;
}

.partner-logo {
    min-width: 150px;
}

.partner-logo img {
    max-width: 250px !important;
}

.category-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.testimonial-card {
    border-radius: 8px;
}

/* Override Bootstrap's default carousel control opacity */
.carousel-control-prev,
.carousel-control-next {
    opacity: 1;
    width: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #7749f8;
}

/* Keep the purple theme consistent with the website */
.text-primary {
    color: #7749f8 !important;
}

.bg-primary {
    background-color: #7749f8 !important;
}

.btn-primary,
.btn-outline-primary {
    border-color: #7749f8 !important;
    color: white;
}

.btn-primary {
    background-color: #7749f8 !important;
}

.btn-primary:hover {
    background-color: transparent !important;
    color: #7749f8 !important;
}

.btn-outline-primary:hover {
    background-color: #7749f8 !important;
    color: white !important;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.social-links a {
    color: white;
    margin-right: 15px;
    font-size: 16px;
    text-decoration: none;
}

.copyright {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .footer-menu {
        margin-bottom: 30px;
    }
}

/* Dropdown styles */
.categories-dropdown {
    position: relative;
    display: inline-block;
}

.categories-dropdown:hover .mega-dropdown-content {
    display: block;
}

.mega-dropdown-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #fff;
    min-width: 600px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    border-radius: 4px;
}

/* Category styling */
.category-title {
    font-size: 18px;
    font-weight: bold;
    color: #6c5ce7;
    padding-bottom: 10px;
    border-bottom: 2px solid #6c5ce7;
    margin-bottom: 15px;
}

.category-item {
    display: flex;
    align-items: center;
    padding: 8px 5px;
    margin-bottom: 10px;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.category-item:hover {
    background-color: #f5f5f5;
    transform: translateX(5px);
}

.category-icon {
    width: 35px;
    height: 35px;
    background-color: #e9e5ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #6c5ce7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mega-dropdown-content {
        min-width: 100%;
        /* width: 100vw; */
        position: absolute;
        /* left: -50%; */
        /* right: -50%; */
    }
}

@media (max-width: 576px) {
    .row {
        flex-direction: column;
    }

    .category-section {
        margin-bottom: 20px;
    }
}

/* For demo only */
.demo-nav {
    background-color: #f8f9fa;
    padding: 15px;
    display: flex;
    justify-content: center;
}

.nav-item {
    /* margin: 0 15px; */
    position: relative;
}


/* CRM page css */

.hero-section {
    background-color: var(--light-purple);
    padding: 3rem 0;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--primary-color);
    opacity: 0.1;
    border-radius: 20px;
    transform: rotate(45deg);
}

.hero-shape-left {
    left: -100px;
    top: 50px;
}

.hero-shape-right {
    right: -100px;
    bottom: 50px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
}

.hero-subtitle {
    color: var(--light-text);
    font-size: 1.2rem;
    max-width: 1100px;
    margin: 1rem auto;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-weight: 500;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.filter-section {
    background-color: var(--white);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.filter-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--light-text);
}

.product-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 2rem;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background-color: var(--white);
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
}

.product-body {
    padding: 1.5rem;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-vendor {
    font-size: 0.85rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.product-mrp {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--light-text);
}

.product-discount {
    background-color: #e6f9e6;
    color: #28a745;
    font-size: 0.8rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.product-features {
    margin: 1rem 0;
    padding-left: 1.2rem;
}

.product-features li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.product-rating {
    color: #ffc107;
    margin-right: 0.5rem;
}

.product-reviews {
    font-size: 0.85rem;
    color: var(--light-text);
}

.compare-checkbox {
    margin-right: 0.5rem;
}

.accordion-button:not(.collapsed) {
    background-color: #9f7fff !important;
    color: black !important;
}

/* footer css start */

.footer-logo-section {
    display: flex;
    align-items: center;
}

.footer-logo-icon {
    font-size: 2.5rem;
    margin-right: 10px;
    color: var(--primary-color);
}

.footer-logo-text {
    font-size: 1.75rem;
    color: var(--primary-color);
    font-weight: 500;
}

.footer-content {
    background-color: var(--light-bg);
    padding: 50px 0;
}

.footer-bottom {
    background-color: var(--dark-bg);
    color: white;
    padding: 15px 0;
}

.footer-menu h4 {
    color: #333;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-menu ul {
    list-style: none;
    padding-left: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

/*.footer-menu li:before {*/
/*    content: "•";*/
/*    color: var(--primary-color);*/
/*    font-weight: bold;*/
/*    display: inline-block;*/
/*    width: 1em;*/
/*    margin-left: -1em;*/
/*}*/

.footer-menu a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: var(--primary-color);
    text-decoration:underline;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    color: var(--text-color);
}

.social-links a {
    color: white;
    margin-right: 15px;
    font-size: 16px;
    text-decoration: none;
}

.copyright {
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .footer-menu {
        margin-bottom: 30px;
    }
}

.social-icon {
    font-size: 1.5rem;
    color: var(--light-text);
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-color);
}

.badge-category {
    background-color: var(--light-purple);
    color: var(--primary-color);
    padding: 0.4rem 0.8rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.pagination .page-link {
    color: black;
    border-color: #dee2e6;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Custom Price Range Slider */
.price-slider {
    width: 100%;
    height: 5px;
    background: #ddd;
    border-radius: 5px;
    position: relative;
    margin: 2rem 0 1rem;
}

.price-slider .ui-slider-range {
    height: 5px;
    background: var(--primary-color);
    position: absolute;
}

.price-slider .ui-slider-handle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary-color);
    position: absolute;
    top: -8px;
    margin-left: -10px;
    cursor: pointer;
}

.price-values {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

#priceSlider {
    width: 100%;
}