
@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-close-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 {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    background-image: url('../images/background.jpg');
    overflow-x: hidden;
    background-repeat: no-repeat;     
    background-size: cover;            
    background-position: center center; 
    background-attachment: fixed;  
}

.main-card {
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin: 0 auto;
    border-radius:10px;
    padding-bottom:30px;
}

.login {
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    padding-bottom: 30px;
}

.contactus {
    background-color: rgba(0, 0, 0, 0.5);
    max-width: 500px;
    margin: 0 auto;
    border-radius: 10px;
    padding-bottom: 30px;
}

.text {
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.7);
    font-size: 14px;
}

.feature img {
    height: 56px;
    margin-bottom: 4px;
}

.bg-color{
    background:#1D2254 !important;
}

.footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding-left:30px;
    width:100%;
}

.subtitle{
    max-width:600px;
}

.center-text {
    display: flex;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
    height: 10vh; /* Takes full viewport height */
    text-align: center; /* Ensures text is centered in the element */
}

.mt-top{
    margin-top:55px;
}
.password-container {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa !important;
    background-image:none;
    color: #333;
}

.logo-container {
    background-color: #1D2254;
    padding: 20px;
    text-align: center;
}

.center-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 120px);
}

.form-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 400px;
    text-align: center;
}

.form-container h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.form-container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.form-container input {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color 0.3s ease; /* Smooth transition */
}

.form-container input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    outline: none;
}

.password-btn {
    width: 100%;
    padding: 10px;
    background-color: #1D2254;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}
.pricing-container {
    text-align: center;
    width: 100%;
    height: auto;
    margin-top: 25px;
}
.block {
    display: block;
}

.mrg-top {
    margin-top: 21px;
}

.ft-size {
    font-size: 50px;
    font-weight: bold;
    color: #1D2254;
}

.form-range {
    -webkit-appearance: none; /* Remove default styling in webkit-based browsers */
    appearance: none; /* Standard appearance property */
    border: none; /* Remove border */
    outline: none; /* Remove focus outline */
    background: transparent; /* Ensure no background box appears */
}

.range-container {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 300px;
    text-align: center;
}
.required {
    color: #f64e60;
}

.modal-dialog {
    position: fixed;
    top: 20%; /* Center vertically */
    transform: translate(-50%, -50%); /* Adjust by 50% of the modal's size */
    margin: 0;
    transition: transform 0.3s ease-out; /* Slide-in transition */
    height: auto; /* Adjust based on content */
}

/* When modal is shown, move it into view */
.modal.show .modal-dialog {
    transform: translate(-50%, -50%) scale(1); /* Slide into view */
}

/* Optional: Modify the backdrop appearance (slightly transparent) */
.modal-backdrop.show {
    opacity: 0.5;
}

.modal-header {
    background-color: #1D2254 !important;
    color: #FFFFFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.modal-content {
    border-radius: 10px !important;
    overflow: hidden;
}

.scrolling-banner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    overflow: hidden;
    z-index: 9999;
    display: flex;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.4);
}

.scrolling-banner-text {
    /*display: inline-block;*/
    white-space: nowrap;
    padding-left: 100%;
    animation: scroll-left 30s linear infinite;
    /*text-shadow: 0 0 0.5px rgba(255, 255, 255, 0.3);*/ /* Light anti-blur edge */
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
    transform: none;
    will-change: auto;
}

.scrolling-message {
    /*display: inline-flex;*/
    align-items: center;
    margin-right: 50px;
    padding: 4px 12px;
    border-radius: 4px;
    color: white;
    /*font-weight: bold;*/
    font-size: 16px;
}

.scrolling-message .fas {
    color: rgba(255, 255, 255, 0.9);
}

@keyframes scroll-left {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

