.bscomponent.highlight img {

    width: 150px;
    height: 200px;

}

.bscomponent.feature img {
    width: 150px;
    height: 200px;
}

.card.testimonial img {

    width: 50px;
    border-radius: 50%;
}

footer {
    background-color: #0f3051;
}

footer .list-group .list-group-item {
    background: transparent;
    border-width: 0;
}

footer .list-group .list-group-item a {
    color: #fff;
}

footer .footer-address {
    color: #fff;
}

nav.primary {
    background: #0f3051;
}

nav.primary a.nav-link {

    color: white;
}

nav.primary .navbar-brand a {
    color: white;
    text-decoration: none;
}

nav.primary .navbar-brand img {
    height: 33px;
}

.vh-screen{
    height: calc(100vh - 60px);
}
.min-vh-screen{
    min-height: calc(100vh - 60px);
}
.has-bgimg-1{
    background-image: url('https://omcq.skriptx.com/wp-content/uploads/2024/09/workingremotely.png');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.has-bgimg-gradient-1{
    background-image: url('https://omcq.skriptx.com/wp-content/uploads/2024/09/bg-img-gradient-1-scaled.jpg');
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;

    
}
.btn-toggle-password{
    border-color: #dee2e6;
    display:flex;
    justify-content: center;
    align-items: center;
}
.btn-toggle-password:hover{
    border-color: #dee2e6;
}


.form-control:focus,
.form-select:focus,
.was-validated .form-control:invalid:focus, 
.form-control.is-invalid:focus,
.btn:focus{
    box-shadow: none;
}
.form-control:focus{
    border-width: 2px;
}
.form-control:not(.is-invalid):focus{
    border-color:rgb(15 48 81);
}
.form-label{
    font-weight: 500;
}
.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}



body.has-loader{

    overflow: hidden;

}

body.has-loader .loader-wrapper{
    display: flex;
}
 .loader-wrapper{
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
}

.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid lightblue;
    border-right-color: orange;
    animation: l2 1s infinite linear;
  }
  @keyframes l2 {to{transform: rotate(1turn)}}
  body {
    background-color: #F0F4F8;

    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
}

table.table thead th{
    font-weight: 500;
    vertical-align: middle;
    text-align: center;
}

table.table tbody td{
     vertical-align: middle;
}

.pricing.features {
    min-height: 310px;
}

.pricing.features .list-group-item{

    border-left-width:0;
    border-right-width:0;
    border-top-width:0;
    border-bottom-style: dashed;
    border-bottom-width: 2px;
}
.pricing.features .list-group-item:last-child{
    border:none;
}

.flipcard {
    --flip-card-height: 300px;
    /* --flip-card-background-color-front: LightSkyBlue;
    --flip-card-background-color-back: salmon; */
    --flip-card-box-shadow: 0px 2px 1px -1px rgb(0 0 0 / 20%),
      0px 1px 1px 0px rgb(0 0 0 / 14%), 0px 1px 3px 0px rgb(0 0 0 / 12%);
      margin-bottom: 1em;
  }
  
  .card__details {
    height: var(--flip-card-height);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding:1em;
    flex-direction: column;
  }

  .flipcard.feature{
    position:relative;
  }
  
  .flipcard.feature .card__details[slot="front"] .card-title{
    position:absolute;
    bottom: 10px;
    width: 100%;
    left: 0;
    z-index:999;
  }

  .flipcard.feature .card__details[slot="front"] div.has-bgimg{
    background-position: center;
    background-size: 100% 100%;
    height: 200px;
    width: 100%;
    background-repeat: no-repeat;
  }

/* Shahul Code */

.carousel-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
    background: linear-gradient(45deg, #4000ff, #ff00bf);
    animation: gradientAnimation 10s ease-in-out infinite;
}

@keyframes gradientAnimation {
    0% {
        background: linear-gradient(45deg, #4000ff, #ff00bf);
    }

    50% {
        background: linear-gradient(45deg, #ff00bf, #4000ff);
    }

    100% {
        background: linear-gradient(45deg, #4000ff, #ff00bf);
    }
}

.carousel-item img {
    max-width: 80%;
    height: auto;
    margin-top: 80px;
 
    border-radius: 8px;
    transition: transform 1s ease-in-out, opacity 0.7s ease-in-out;
    opacity: 0;
    transform: scale(0.8);
}

.carousel-item.active img {
    opacity: 1;
    transform: scale(1);
}

.textContentStyle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
    opacity: 0;
    transform: translateY(30px);
    color: white;
    margin-top: 80px;
}

.carousel-item.active .textContentStyle {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .carousel-item {
        height: auto;
        padding: 20px 0;
    }

    .carousel-item .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .carousel-item img {
        width: 70%;
        height: auto;
        margin: 15px 0;
    }

    .textContentStyle {
        margin-top: 20px;
        font-size: 14px;
        padding: 10px;
        transform: translateY(0);
    }
}