/*.card-custom {*/
/*    background: rgba(239, 52, 5, 0.2);*/
    /* Lower opacity for background color */
/*    background: -webkit-linear-gradient(225deg,*/
/*            rgb(168, 44, 14) 0%,*/
/*            rgb(207, 113, 12) 100%);*/
/*    border-radius: 10px;*/
/*    padding: 10px;*/
  
/*    position: relative;*/
/*    min-height: 300px;*/
/*    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);*/
/*    margin-top: 2rem;*/
 
/*}*/

.card-model1 {
    background: rgba(239, 52, 5, 0.2);
    /* Lower opacity for background color */
    background: -webkit-linear-gradient(225deg,
            rgb(168, 44, 14) 0%,
            rgb(207, 113, 12) 100%);
    border-radius: 10px;
    position: relative;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
    margin-top: 2rem;
 
}

.pay-btn {
  display: inline-block;
  padding: 8px 16px;
  margin-top: 10px;
  background: linear-gradient(225deg, rgba(239, 52, 5, 1) 0%, rgba(255, 132, 0, 1) 100%);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  text-align: center;
}

.pay-btn:hover {
  background: linear-gradient(225deg, rgba(255, 132, 0, 1) 0%, rgba(239, 52, 5, 1) 100%);
}

.icon-circle {
    width: 100px;
    height: 100px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 40px;
    right: 50px;
}

.icon-circle img {
    width: 40px;
}

/*.card-custom h5,*/
/*.card-custom p {*/
/*    text-align: left;*/
/*    color: white;*/
/*}*/

/*.card-custom h2{*/
/*    margin-top: 5rem;*/
/*    color: white;*/
/*}*/

/*.card-custom h2 {*/
/*    margin: 15px 0;*/
/*    color: white;*/
/*}*/


body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.carousel-wrapper1 {
    display: flex;
    position: relative;
    overflow: hidden;
    width: 80%;
    margin: auto;
    padding-top: 20px;
}

.carousel-slides1 {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item1 {
    min-width: 33.33%;
    box-sizing: border-box;
    padding: 10px;
    max-width: 33.33%;
    /*margin-right: 2px;*/
}

.profile-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: white;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    height: 500px;
    overflow: hidden;
}

.profile-pic {
    width: 100%;
    height: 60%;
    object-fit: cover;
    border-radius: 8px;
}

.profile-content {
    margin-top: 10px;
    height: 40%;
    text-align: left;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-content h3 {
    font-size: 1.2em;
    margin: 0;
}

.profile-content p {
    margin: 10px 0 0;
    font-size: 0.9em;
    color: #555;
}

.carousel-btn1 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    /* Ensure the buttons are on top of the content */
}

.carousel-btn1:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev-btn {
    left: 10px;
    /* Position left button outside the carousel */
}

.next-btn {
    right: 10px;
    /* Position right button outside the carousel */
}




