@import url('https://fonts.googleapis.com/css2?family=Playwrite+GB+S:ital,wght@0,100..400;1,100..400&display=swap');

:root {
    --primary-color: #124359;
    --secondary-color: #ecd874;
    --dark-color: #238fc0;
    --light-color: #E1F7F3;
    --font-size-base: 16px;
    --spacing-unit: 1rem;
    --max-width: 1200px;
    --transition-speed: 0.3s;
}

@font-face {
font-family: 'Gotham Medium';
src: url('path/to/Gotham-Medium.woff2') format('woff2'),
url('path/to/Gotham-Medium.woff') format('woff');
font-weight: normal;
font-style: normal;
}

html, body {
    overflow-x: hidden; /* Hide horizontal scrollbar */
    overflow-y: scroll; /* Allow vertical scrolling but hide scrollbar */
    scrollbar-width: none; /* Firefox */
}

body::-webkit-scrollbar {
    width: 0; /* Chrome, Safari, Opera */
}

#loginHeading {
    font-weight: 1000;
}

.btn {
    border-radius: 5px;
    max-height: 40px;
    font-weight: 400;
    transition: all var(--transition-speed);
}

.loginButton1 {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.loginButton1:hover {
    background-color: #bfe0f0;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: bold;
}

.loginButton2 {
    background-color: #bfe0f0;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 500;
}

.loginButton2:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
    font-weight: 400;
}

#loginFormContainer {
    border-radius: 10px;
    width: 100%;
}

.otp-container {
    display: flex;
    gap: 5px; /* Space between the input fields */
    white-space: nowrap; /* Prevent wrapping */
}

.otp-input {
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: var(--light-color);
    border-bottom: 3px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
    margin: 0;
    flex: 0 0 auto;
}

.otp-input:disabled {
    background-color: var(--light-color);
    outline: none;
}

.form-control,
.form-select {
    width: 100%;
    border: none;
    border-bottom: 3px solid var(--primary-color);
    background-color: var(--light-color);
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 400;
    box-shadow: none;
}

.form-control:focus,
.form-select:focus,
input:focus {
    outline: none;
    box-shadow: none;
    background-color: var(--light-color);
}

.scroll-hide-navbar {
    transition: top 0s ease-in-out;
}

.scroll-down {
    top: -100px;
    transition-duration: var(--transition-speed);
}

.scroll-up {
    top: 0;
    transition-duration: 0.1s;
}

.btn-group .dropdown-toggle::after {
    display: none;
}

.captchaContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.recaptcha-wrapper {
    width: 100%;
    max-width: 400px;
    transform: scale(0.87);
    transform-origin: 0 0;
}

.progressBox {
    width: 100%;
    padding-inline: 10%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 10px;
}

.progress, .progress1 {
    position: absolute;
    top: 50%;
    left: 0;
    height: 4px;
    transition: width var(--transition-speed);
}

.progress {
    background-color: var(--primary-color);
    z-index: 50;
}

.progress1 {
    background-color: #d2dddb;
    z-index: 40;
    width: 100%;
}

.circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #3498db;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 100;
    transition: background-color var(--transition-speed), border-color var(--transition-speed);
}

.circle::after {
    content: attr(data-label);
    position: absolute;
    top: 30px; /* Adjust this value to position the label */
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    color: #333;
}

.circle.active {
    background-color: var(--primary-color);
    color: #fff;
}

.buttons {
    display: flex;
    justify-content: space-between;
}

.card-home-carousel {
    background: #fff;
    box-shadow: 0 8px 30px 0px #adadad;
    border-radius: 7px;
    border: 0;
    transition: transform var(--transition-speed);
}

.card-home-carousel:hover {
    transform: scale(1.05);
}

.card-home-carousel .card-img-top {
    max-width: 100px;
    border-radius: 50%;
    margin: 15px auto 0;
    box-shadow: 0 8px 20px -4px #95abbb;
    width: 100px;
    height: 100px;
}

.card-home-carousel h5 {
    color: #01b0f8;
    font-size: 21px;
    line-height: 1.3;
}

.card-home-carousel h5 span {
    font-size: 18px;
    color: #666666;
}

.card-home-carousel p {
    font-size: 18px;
    color: #555;
    padding-bottom: 15px;
}

.active, .center {
    opacity: 1;
    transition: all var(--transition-speed);
}

.owl-carousel1 .owl-item .card-home-carousel {
    min-height: 350px;
    padding: 2vh;
}

@media (max-width: 568px) {
    .owl-carousel1 .owl-item .card-home-carousel {
        /* min-width: 100vw; */
        padding: 2vh;
        min-height: 270px;
        /* max-height: 300px; */
        text-overflow: ellipsis;
    }


}

.owl-carousel .owl-item img {
    display: inline;
}

@media (max-width: 576px) {
    #modal-content-custom {
        margin: 0px 50px !important;
    }

    #rightCol {
        border-radius: 8px;
    }
}

.sectionHeading {
    font-size: 2rem; /* Default font size */
}

@media (max-width: 1200px) {
    .sectionHeading {
        font-size: 1.75rem; /* Font size for large screens */
    }
    .exploreSectionImg {
        height: 22px;
        width: 22px;
    }

    .exploreSection {
        font-size: 16px;
    }
}

@media (max-width: 992px) {
    .sectionHeading {
        font-size: 1.5rem; /* Font size for medium screens */
    }
    .exploreSectionImg {
        height: 20px;
        width: 20px;
    }

    .exploreSection {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .sectionHeading {
        font-size: 1.25rem; /* Font size for small screens */
    }
    .exploreSectionImg {
        height: 18px;
        width: 18px;
    }

    .exploreSection {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .sectionHeading {
        font-size: 1rem; /* Font size for extra small screens */
    }
    .exploreSectionImg {
        height: 16px;
        width: 16px;
    }

    .exploreSection {
        font-size: 10px;
    }
}

.exploreSectionImg {
    height: 25px;
    width: 25px;
}

.custom-carousel-item{
    height: 50vw ;
    max-height: 60vw;
}

