html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}
.h75 {
    
     height: 80vh;
}
.h10 {
     
    max-height: 10vh;
}
.h25 {
    height: 25vh;
}
.h50 {
    height: 50vh;
}
.h12 {
    height: 12vh;
}

.mand::after {
    content: " *";
    color: red; /* Make it visually distinct */
    font-weight: bold;
}
.carousel-inner img {
    height: 300px;
    object-fit: contain; /* or cover */
}

.carousel-inner {
    min-height: 300px; /* Prevent container from shrinking */
}
 
/* Stepper Styling */
.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 30px;
}

.stepper .circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #ddd;
    text-align: center;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

    .stepper .circle.active {
        background: #007bff;
        color: white;
    }

.stepper .line {
    flex-grow: 1;
    height: 5px;
    background: #ddd;
    position: relative;
    margin: 0 5px;
}

    .stepper .line.active {
        background: #007bff;
    }

.step {
    display: none;
}

    .step.active {
        display: block;
    }

 
