/*****************************Web Theme************************************/
.custom-section{
    background-color: white;
}
  .content1 {
    background-color: #0f196afa;
    height: 30rem;
  }

/* Browse by Category Tags */
.category-tag {
    display: inline-block;
    background-color: #f0f0f5;
    color: #333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.category-tag:hover {
    background-color: #dcdcdc;
}
/* Profile Card Styles */
.profile-card {
    background-color:orange;
    height:450px;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s ease-in-out;
}

/* Profile Image */
.profile-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* Buttons */
 .btn1 {
  
    margin-top: 10px;
    border-radius: 10px;
    font-weight: bold;
    width:150px;
}


/* Social Icons */
.social-icons i {
    font-size: 20px;
    padding-top:40px;
    margin: 0 10px;
    cursor: pointer;
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start;
    }
    .category-tag {
        padding: 6px 12px;
        font-size: 12px;
    }
    .profile-card {
        margin-bottom: 20px;
    }
}

 
/****************************************************************************/

/*****************************Market Place Description Page*****************/
  
 

.animated-section {
    padding: 20px 0;
    background-color: white;
    overflow: hidden;
    text-align: center;
    width: 100vw; /* Ensure full width */
}

.image-slider {
    width: 100vw; /* Make it full width */
    /*overflow: hidden;*/
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.slider-track {
    display: flex;
    gap: 10px; /* Add a 3px gap between images */
    width: max-content; /* Make width auto-adjust based on content */
    animation: moveLeft 30s linear infinite; /* Slow and infinite scrolling */
}

/* Flip Effect */
.flip-container {
    perspective: 1000px;
    width: 250px; /* Adjust width as needed */
    height: 200px;
}

.flipper {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.flip-container:hover .flipper {
    transform: rotateY(180deg);
}

.front, .back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}

.front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.back {
    transform: rotateY(180deg);
    background: #800020; /* Dark Red background */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

/* Button Styling */
.flip-button {
    text-decoration: none;
    background: white;
    color: black;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    transition: background 0.3s ease, transform 0.3s ease;
}

.flip-button:hover {
    background: #f1f1f1;
    transform: scale(1.1);
}

/* Continuous Infinite Scrolling */
@keyframes moveLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/***************************Button section**********************************/
  /* Button Section */
        .button-section {
            background-color: #f5f5f5; /* Light gray background */
            height:420px;
            padding: 40px 0;
        }

        /* Button Styling */
        .btn-left, .btn-right {
            background-color: #1d4d1f; /* Dark green */
            color: #d9f700; /* Neon yellow text */
            padding: 20px 40px;
            margin-top: 40px;
            height:200px;
            border-radius: 20px;
            font-size: 18px;
            font-weight: bold;
            border: none;
            width: 100%;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-left:hover {
            background-color: #153a18;
        }

        .btn-right {
            background-color: #d9f700;
            color: #111;
            padding: 20px 80px;
            margin-top: 40px;
            height:200px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: bold;
            border: none;
            width: 100%;
            cursor: pointer;
            transition: 0.3s;
        }

        .btn-right:hover {
            background-color: #c6e000;
        }

        /* Responsive Centering */
        .btn-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        @media (max-width: 768px) {
            .btn-wrapper {
                flex-direction: column;
                gap: 15px;
            }
        }

/***********************************************/
       .hero {
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: bold;
            color: #E8C5FF;
        }
        .input-group {
            display: flex;
            flex-wrap: nowrap;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
        }
        .input-group input {
            max-width: 300px;
            border-radius: 20px;
            height: 50px;
            padding: 10px;
            border: none;
            text-align: center;
        }
        .btn-claim {
            background-color: #D4EA2A;
            color: black;
            font-weight: bold;
            border-radius: 20px;
            padding: 10px 20px;
            margin-left: 10px;
            border: none;
        }

        
        @media (max-width: 768px) {
            .input-group {
                flex-direction: column;
            }
            .btn-claim {
                margin-left: 0;
                margin-top: 10px;
            }
            
        }
   















/****************************************************************************/

