/* Mobile-first styles */
body {
    font-size: 16px;
    background-color: #f8f9fa;
    color: #333;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.navbar {
    background-color: rgb(228 164 167);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.navbar-brand, .nav-link {
    color:#cc2729 !important;
    font-weight: bold;
    font-size: 18px;
}
.nav-link {
    padding: 10px 20px;
    transition: background-color 0.3s;
}
.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
}
.nav-item + .nav-item {
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}
.dropdown-menu {
    background-color: rgba(2, 50, 106, 0.9);
    border: none;
}
.dropdown-item {
    color: white;
}
.dropdown-item:hover {
    background-color: hsl(357.93, 70.73%, 48.24%);
}
.card-title {
    color: rgb(2, 50, 106);
    font-size: 1.5rem;
    font-weight: bold;
}
.card-text, .text-muted {
    color: hsl(357.93, 70.73%, 48.24%);
    font-size: 1.1rem;
}
.btn-primary {
    background-color: rgb(2, 50, 106);
    border: none;
    font-size: 1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-primary i {
    margin-right: 5px;
}
.btn-primary:hover {
    background-color: rgba(2, 50, 106, 0.8);
}
.text-center h1 {
    color: rgb(2, 50, 106);
    font-size: 2.5rem;
    font-weight: bold;
}
.card-img-top {
    width: 100%;
    height: auto;
}
.static-row {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
}
.static-row .card {
    margin: 10px;
    width: 100%;
    max-width: 350px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}
.static-row .card:hover {
    transform: translateY(-5px);
}
.owl-carousel .item {
    margin: 10px;
    width: 100%;
}
.owl-carousel .card {
    width: 100%;
    max-width: 350px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}
.owl-carousel .card:hover {
    transform: translateY(-5px);
}
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}
.owl-nav button {
    background-color: red !important;
    color: white !important;
    border: 2px solid rgb(2, 50, 106) !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
    font-size: 24px !important;
    opacity: 0.8 !important;
    pointer-events: all !important;
}
.owl-nav button:hover {
    opacity: 1 !important;
}
.owl-dots {
    text-align: center;
    margin-top: 20px;
}
.owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: hsl(357.93, 70.73%, 48.24%);
    border-radius: 50%;
    margin: 5px;
}
.owl-dot.active {
    background-color: rgb(2, 50, 106);
}

/* Footer styles */
.footer {
    background-color: rgb(2, 50, 106);
    color: white;
    padding: 20px 0;
    text-align: center;
}
.footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}
.footer a:hover {
    text-decoration: underline;
}

/* Tablet and Desktop styles */
@media (min-width: 576px) {
    .static-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .static-row .card {
        flex: 1 1 calc(50% - 20px);
        max-width: 350px;
    }
    .owl-carousel .item {
        width: calc(100% - 20px);
        max-width: 350px;
    }
}
@media (min-width: 768px) {
    .owl-carousel .item {
        width: calc(100% - 20px);
        max-width: 350px;
    }
}
@media (min-width: 1000px) {
    .owl-carousel .item {
        width: calc(100% - 20px);
        max-width: 350px;
    }
}

/* Datepicker styles */
.datepicker {
    background: #fff !important;
    color: #333 !important;
    font-size: 16px !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}
.datepicker-dropdown {
    top: 0;
    left: 0;
    padding: 4px;
    margin-top: 1px;
    border-radius: 6px;
    background-color: #fff;
    border: 1px solid #ccc;
    z-index: 1000 !important;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.datepicker table {
    margin: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.datepicker table tr td,
.datepicker table tr th {
    text-align: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: none;
}
.datepicker table tr td:hover,
.datepicker table tr th:hover {
    background: #eee;
    cursor: pointer;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover {
    background-color: #0066cc;
    color: #fff !important;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover {
    background-color: #0066cc;
    color: #fff !important;
}
.datepicker table tr td.disabled,
.datepicker table tr td.disabled:hover {
    background: #f8f9fa !important;
    color: #999 !important;
    cursor: not-allowed !important;
}
.datepicker table tr td.day:hover {
    background-color: rgba(2, 50, 106, 0.5) !important;
}
.datepicker table tr td,
.datepicker table tr th {
    color: #333 !important;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}
.datepicker table tr td.active,
.datepicker table tr td.active:hover,
.datepicker table tr td.active.disabled,
.datepicker table tr td.active.disabled:hover {
    background-color: rgb(2, 50, 106) !important;
}
.datepicker table tr td.today,
.datepicker table tr td.today:hover,
.datepicker table tr td.today.disabled,
.datepicker table tr td.today.disabled:hover {
    background-color: hsl(357.93, 70.73%, 48.24%) !important;
}
