.custom-gradient-red {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#c31432),
        color-stop(51%, #654ea3),
        to(#c31432)
    );
    background-image: -webkit-linear-gradient(
        left,
        #c31432 0,
        #654ea3 51%,
        #c31432 100%
    );
    background-image: -moz-linear-gradient(
        left,
        #c31432 0,
        #654ea3 51%,
        #c31432 100%
    );
    background-image: -o-linear-gradient(
        left,
        #c31432 0,
        #654ea3 51%,
        #c31432 100%
    );
    background-image: linear-gradient(
        to right,
        #c31432 0,
        #654ea3 51%,
        #c31432 100%
    );
    background-position: left center;
    -webkit-background-size: 200% auto;
    background-size: 200% auto;
}

.custom-gradient-red:hover {
    background-position: right center;
    text-decoration: none;
}

.custom-gradient-green {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#63a247),
        color-stop(51%, #ee3425),
        to(#63a247)
    );
    background-image: -webkit-linear-gradient(
        left,
        #63a247 0,
        #ee3425 51%,
        #63a247 100%
    );
    background-image: -moz-linear-gradient(
        left,
        #63a247 0,
        #ee3425 51%,
        #63a247 100%
    );
    background-image: -o-linear-gradient(
        left,
        #63a247 0,
        #ee3425 51%,
        #63a247 100%
    );
    background-image: linear-gradient(
        to right,
        #63a247 0,
        #ee3425 51%,
        #63a247 100%
    );
    background-position: left center;
    -webkit-background-size: 200% auto;
    background-size: 200% auto;
}

.custom-gradient-green:hover {
    background-position: right center;
    text-decoration: none;
}

.custom-gradient-blue {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#003286),
        color-stop(51%, #1cb5e0),
        to(#003286)
    );
    background-image: -webkit-linear-gradient(
        left,
        #003286 0,
        #1cb5e0 51%,
        #003286 100%
    );
    background-image: -moz-linear-gradient(
        left,
        #003286 0,
        #1cb5e0 51%,
        #003286 100%
    );
    background-image: -o-linear-gradient(
        left,
        #003286 0,
        #1cb5e0 51%,
        #003286 100%
    );
    background-image: linear-gradient(
        to right,
        #003286 0,
        #1cb5e0 51%,
        #003286 100%
    );
    background-position: left center;
    -webkit-background-size: 200% auto;
    background-size: 200% auto;
}

.custom-gradient-blue:hover {
    background-position: right center;
    text-decoration: none;
}

.custom-gradient-orange {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    background-image: -webkit-gradient(
        linear,
        left top,
        right top,
        from(#f7ff00),
        color-stop(51%, #db36a4),
        to(#f7ff00)
    );
    background-image: -webkit-linear-gradient(
        left,
        #f7ff00 0,
        #db36a4 51%,
        #f7ff00 100%
    );
    background-image: -moz-linear-gradient(
        left,
        #f7ff00 0,
        #db36a4 51%,
        #f7ff00 100%
    );
    background-image: -o-linear-gradient(
        left,
        #f7ff00 0,
        #db36a4 51%,
        #f7ff00 100%
    );
    background-image: linear-gradient(
        to right,
        #f7ff00 0,
        #db36a4 51%,
        #f7ff00 100%
    );
    background-position: left center;
    -webkit-background-size: 200% auto;
    background-size: 200% auto;
}

.custom-gradient-orange:hover {
    background-position: right center;
    text-decoration: none;
}

.upline-select {
    margin: 8px;
    background-color: #2c254a;
    color: #ffffff;
    border: 0.1px solid #2c254a;
    border-radius: 6px;
    font-size: 15px;
    padding: 3px 8px 3px 5px;
}

.custom-select {
    background-color: #3b3363 !important;
    color: #ffffff;
    border: 0.1px solid #2c254a;
    border-radius: 6px;
    font-size: 15px;
    padding: 3px 8px 3px 5px;
}

.services-box {
    background-color: #ffffff !important;
    border-radius: 10%;
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

.services-link {
    text-align: center;
    color: #2c254a;
}

.services-link:hover {
    color: #6418c3 !important;
}

.services-icon {
    padding: 10px;
    max-width: 150px;
    width: 100%;
}

.kyc-image-box span {
    display: block;
    margin-bottom: 10px;
    padding-left: 5px;
}

.kyc-image-box img {
    border-radius: 8px;
    max-width: 100%;
}

.plan-info-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

/* product card css  */
/* Product card styles */
.product-card {
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: scale(1.05);
}


.product-image-container {
    height: 250px; /* Set a consistent height */
    display: flex; /* Use flexbox to align the image */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    border-radius: 0.5rem; /* Optional rounded corners */
    overflow: hidden; /* Prevent overflow */
    background-color: #f9f9f9; /* Add a light background in case of transparent images */
    position: relative; /* Ensure child elements are positioned relatively */
}

.product-name {
    overflow: hidden;         /* Hides overflowing text */
    white-space: nowrap;      /* Prevents text from wrapping */
    text-overflow: ellipsis;  /* Displays ellipsis (...) for overflowing text */
    font-size: 1rem;          /* Adjust as needed */
    height: 1.2em;            /* Adjust for line height */
    line-height: 1.2em;       /* Ensure this matches the height */
    font-weight: bold;
}
.product-price {
    color: #e74c3c;
    font-size: 1.2rem;
    font-weight: bold;
    
}

/* Image styling for responsiveness */
.product-image {
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    object-fit: contain; /* Ensure the entire image fits within the container without cropping */
    transition: transform 0.3s ease; /* Smooth hover effect */
}

/* Media query for larger screens */
@media (min-width: 1980px) {
    .product-image-container {
        height: 500px; /* Increase height for larger screens */
    }
}

/* Responsive badge styling */
.discount-badge {
    top: 10px;
    left: 10px;
    z-index: 1;
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
}

/* Media query for small screens */
@media (max-width: 576px) {
    .product-image-container {
        height: 200px; /* Adjust height for smaller screens */
    }

    .discount-badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }
}




/* Ensure dropdown options are visible and properly styled */
.custom-select {
    font-size: 16px; /* Adjust font size if needed */
}

.custom-select option {
    color: #000; /* Set text color */
    background-color: #fff; /* Set background color */
}

.custom-select option:checked {
    background-color: #007bff; /* Background color for selected option */
    color: #fff; /* Text color for selected option */
}


.badge-width{
    width: 100px !important;
    
}

.fixed-size {
    width: 300px;
    height: 400px;
    object-fit: cover; /* Ensures the image maintains aspect ratio and fills the space */
}

.tox-statusbar{
    display: none !important;
}