@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

@font-face {
    font-family: "AkzidenzGroteskStd";
    src: url('../fonts/OpenSans-SemiBold.ttf');
    font-weight: bold;
}

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

li,
a {
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    /* background: #a4dbe8; */
}

p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #565656;
}

a,
a:hover,
a:focus {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-menu {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 600;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 0;
    height: 2px;
    background-color: #198754;
    transition: width 0.3s ease-in-out;
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown.show .dropdown-menu {
    opacity: 1;
    transform: translateY(0);
}

.navbar-brand img {
    width: 45px;
    height: 45px;
}

.container nav {
    /* background: #6641aa2e; */
    background: #eee;
    padding: 5px 20px;
}

.login-area {
    margin-top: 20px;
    box-shadow: 0px 0px 30px rgb(127 137 161 / 30%);
    padding: 30px;
    border-radius: 5px;
}

.login-area .heading,
.booking-form .heading {
    margin-bottom: 20px;
    text-transform: capitalize;
    text-align: center;
    position: relative;
    color: #1C3C72;
}

.login-area .dont-have {
    margin-top: 15px;
}

.btn-outline-info,
.btn-outline-info:hover {
    background-color: #198754;
    border-color: #198754;
    /* background-color: #1C3C72;
    border-color: #1C3C72; */
    color: #fff;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #198754;
}

.section-header {
    margin-bottom: 20px;
}

.section-header h2 {
    color: #198754;
    margin: 0 0 -2px 0;
    padding-bottom: 6px;
    border-bottom: 2px solid #198754;
    display: inline-block;
    font-size: 22px;
}

.stepper .step {
    position: relative;
    background: var(--bs-gray-200);
    padding: 15px 10px;
    border-radius: 5px;
    margin: 0px 10px;
}

.stepper .circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 auto 8px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #343a40;
    font-weight: bold;
    font-size: 18px;
}

.stepper .label {
    font-size: 14px;
    color: #343a40;
}

.stepper .step.active .circle {
    background: #0d6efd;
    color: #fff;
}

.stepper .step.active .label {
    color: #0d6efd;
    font-weight: bold;
}

.stepper .step::before {
    content: '';
    position: absolute;
    top: 20px;
    left: -50%;
    width: 100%;
    height: 2px;
    background-color: #dee2e6;
    z-index: -1;
}

.stepper .step:first-child::before {
    content: none;
}

.stepper .step.completed .circle {
    background-color: #198754;
    color: #fff;
}

.stepper .step.completed .label {
    color: #198754;
}

.record-table th,
.record-table td {
    padding: .3rem .3rem;
    font-size: 13px;
}

@media (max-width: 767.98px) {
    .stepper {
        display: flex;
        flex-wrap: wrap; 
        justify-content: space-between;
        padding: 0;
    }

    .stepper .step {
        flex: 0 0 43%; 
        margin-bottom: 15px; 
    }

    .stepper .step::before {
        display: none; 
    }
}

