html,
body {
    height: 100%;
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
    font-family: "Poppins", sans-serif !important;
    font-size: small;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: rgb(254, 255, 255);
    padding-top: 50px;
}

footer {
    margin-top: auto;
}

.content {
    flex: 1;
}

.form-control {
    font-size: small;
}

.form-select {
    font-size: small;
}

.bg-primary {
    background-color: #1F305E !important;
}

.nav-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    #F8F8FF-space: nowrap;
}

.nav-pills .nav-link {
    color: #1F305E;
    font-weight: 500;
    border: none;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-pills .nav-link:hover {
    background-color: rgba(226, 16, 19, 0.1);
    width: 90%;
}

.nav-pills .nav-link.active {
    color: rgb(250, 249, 249);
    background-color: #1F305E;
    border: none;
    width: 90%;
}

.nav-underline .nav-link {
    font-weight: 500;
    color: #495057;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid #dee2e6;
}

.nav-underline .nav-link:hover,
.nav-underline .nav-link:focus {
    color: #920b12;
    transform: translateY(-2px);
}

.nav-underline .nav-link.active {
    color: #841617;
    border-bottom: 3px solid #841617;
}

.fade-in-up {
    animation: fadeInUp 0.5s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-content > .tab-pane {
    transition: opacity 0.3s ease;
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}

.heading {
    color: #f8f8ff;
    font-size: xx-large;
    font-family: "Montserrat", sans-serif;
}

.sub-heading {
    font-family: "Montserrat", sans-serif;
}

.highlight {
    background: linear-gradient(
        to right,
        rgb(239, 122, 112),
        rgb(249, 102, 73)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-danger {
    color: #841617 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #1F305E;
}

.word-fade-in span {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: wordFadeIn 0.5s ease-out forwards;
}

.word-fade-in span:nth-child(1) {
    animation-delay: 0.1s;
}

.word-fade-in span:nth-child(2) {
    animation-delay: 0.2s;
}

.word-fade-in span:nth-child(3) {
    animation-delay: 0.3s;
}

.word-fade-in span:nth-child(4) {
    animation-delay: 0.4s;
}

.word-fade-in span:nth-child(5) {
    animation-delay: 0.5s;
}

.word-fade-in span:nth-child(6) {
    animation-delay: 0.6s;
}

.word-fade-in span:nth-child(7) {
    animation-delay: 0.7s;
}

.word-fade-in span:nth-child(8) {
    animation-delay: 0.8s;
}

.word-fade-in span:nth-child(9) {
    animation-delay: 0.9s;
}

.word-fade-in span:nth-child(10) {
    animation-delay: 1s;
}

.word-fade-in span:nth-child(11) {
    animation-delay: 1.1s;
}

.word-fade-in span:nth-child(12) {
    animation-delay: 1.2s;
}

.word-fade-in span:nth-child(13) {
    animation-delay: 1.3s;
}

.word-fade-in span:nth-child(14) {
    animation-delay: 1.4s;
}

.word-fade-in span:nth-child(15) {
    animation-delay: 1.5s;
}

.word-fade-in span:nth-child(16) {
    animation-delay: 1.6s;
}

@keyframes wordFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-up {
    animation: fadeUp 1s ease-out forwards;
}

.hero {
    width: 100%;
    min-height: 90vh;
    position: relative;
    padding: 120px 0 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

.hero h2 {
    margin: 0;
    font-size: 56px;
    font-weight: 700;
    font-family: var(--nav-font);
}

.hero h2 span {
    color: var(--accent-color);
}

.hero p {
    margin: 10px 0 0 0;
    font-size: 24px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .icon-box {
    padding: 30px 20px;
    transition: ease-in-out 0.3s;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 70%);
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero .icon-box i {
    font-size: 32px;
    line-height: 1;
    color: var(--accent-color);
}

.hero .icon-box h3 {
    font-weight: 700;
    margin: 10px 0 0 0;
    padding: 0;
    line-height: 1;
    font-size: 20px;
    line-height: 26px;
}

.hero .icon-box h3 a {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: ease-in-out 0.3s;
}

.hero .icon-box:hover {
    border-color: var(--accent-color);
}

.hero .icon-box:hover h3 a {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 32px;
    }

    .hero p {
        font-size: 18px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hover-video {
    width: 100%;
    transition: opacity 0.3s ease;
}

.hover-video:not(:hover) {
    opacity: 0.7;
}

.hover-video:hover {
    opacity: 1;

    animation-play-state: running;
}

.hover-video:not(:hover) {
    animation-play-state: paused;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: transform, opacity;
}

.card:hover {
    opacity: 0.9;
    transform: translateY(-10px);
}

.card-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    width: 100%;
    border-radius: 0 0 8px 8px;
    text-decoration: none;
    opacity: 1;
    transform: translateY(0);
}

.card-button:hover {
    text-decoration: none;
    opacity: 0.9;
}

.no-caret::after {
    display: none !important;
}
.navbar.sticky-top {
    position: sticky !important;
    top: 0;
    z-index: 1100;
    background-color: #fff;
}

.nav-link {
    color: #1c2033;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active,
.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus-visible {
    color: #1F305E;
    font-weight: 500;
    text-decoration: none;
}

.sticky-top {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1020;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header {
    max-width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.header:hover {
    transform: scale(1.05);
}

.navbar-toggler {
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.navbar-toggler:hover {
    transform: rotate(90deg);
}

.dropdown-item {
    color: #1c2033;
    font-size: smaller;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.no-caret::after {
    display: none !important;
}

@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .nav-link {
        width: 100%;
        text-align: left;
    }

    .navbar-collapse {
        background-color: #fff;
        padding: 8px;
    }

    .navbar-toggler {
        display: inline-block;
    }
}

@media (min-width: 769px) {
    .navbar-toggler {
        display: none;
    }

    .nav {
        flex-direction: row;
        align-items: center;
    }
}

.btn {
    width: 120px;

    border: none;
    border-radius: 4px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button.btn-success {
    background-color: #036803;
    color: #f8f8ff;
    border: none;
    font-size: smaller;
}

button.btn-success:hover {
    background-color: #20a70e;
    font-size: smaller;
}

button.btn-secondary {
    background-color: #383838;
    color: #f8f8ff;
    border: none;
    font-size: smaller;
}

button.btn-secondary:hover {
    background-color: #383838;
    font-size: smaller;
}

button.btn-danger {
    background-color: #841617;
    color: #f8f8ff;
    border: none;
    font-size: smaller;
}

button.btn-danger:hover {
    background-color: #841617;
    font-size: smaller;
}

button.btn-primary {
    background-color: #1F305E;
    color: #f8f8ff;
    border: none;
    font-size: smaller;
}

button.btn-primary:hover {
    background-color: #172647;

    font-size: smaller;
}

button.btn-warning {
    background-color: #eacf68;
    color: #172647;
    border: none;
    font-size: smaller;
}

button.btn-warning:hover {
    background-color: #eacf68;

    font-size: smaller;
}

button.btn-light {
    background-color: #ffffff;
    color: #172647;
    border: rgb(48, 53, 65);
    font-size: smaller;
}

button.btn-light:hover {
    background-color: #ffffff;

    font-size: smaller;
}

button.btn-outline-secondary {
    background-color: none;
    color: #383838;
    border: 1px solid #6c757d;
    font-size: smaller;
}

button.btn-outline-secondary:hover {
    background-color: #4b5258;
    font-size: smaller;
}

button.btn-outline-light {
    background-color: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: smaller;
}

button.btn-outline-light:hover {
    background-color: #ffffff;

    font-size: smaller;
}

button.btn-outline-warning {
    background-color: none;
    color: #eacf68;
    border: #eacf68;
    font-size: smaller;
}

button.btn-outline-warning:hover {
    background-color: #eacf68;

    font-size: smaller;
}

button.btn-outline-danger {
    background-color: transparent;
    color: #841617;
    border: 1px solid #841617;
    font-size: smaller;
}

button.btn-outline-danger:hover {
    background-color: #841617;
    color: #ffffff;
}

button.btn-outline-primary {
    background-color: transparent;
    color: #172647;
    border: 1px solid #1F305E;
    font-size: smaller;
}

button.btn-outline-primary:hover {
    background-color: #172647;
    color: #ffffff;
}

a.btn-outline-danger {
    background-color: transparent;
    color: #841617;
    border: 1px solid #841617;
    font-size: smaller;
}

a.btn-outline-danger:hover {
    background-color: #fff;
    color: #841617;
}

a.btn-danger {
    background-color: #841617;
    color: #ffffff;
    border: none;
    font-size: smaller;
}

a.btn-danger:hover {
    background-color: rgb(155, 39, 41);

    font-size: smaller;
}

a.btn-primary {
    background-color: #1F305E;
    color: #f8f8ff;
    border: none;
    font-size: smaller;
}

a.btn-primary:hover {
    background-color: #172647;

    font-size: smaller;
}

a.btn-light {
    background-color: #ffffff;
    color: #172647;
    border: #172647;
    font-size: smaller;
}

a.btn-light:hover {
    background-color: #ffffff;

    font-size: smaller;
}

a.btn-outline-primary {
    background-color: #1F305E;
    color: #fff;
    border: 0.5px solid #1F305E;
    font-size: smaller;
}

a.btn-outline-primary:hover {
    background-color: #fff;
    color: #172647;
}

a.btn-outline-light {
    background-color: none;
    color: #ffffff;
    border: 1px solid #ffffff;
    font-size: smaller;
}

a.btn-outline-light:hover {
    background-color: #ffffff;

    font-size: smaller;
}

input.btn-danger {
    background-color: #841617;
    color: #f8f8ff;
    border: none;
    font-size: smaller;
}

input.btn-danger:hover {
    background-color: #841617;

    font-size: smaller;
}

.img-fluid {
    border-radius: 10px;
}

.image-overlay {
    pointer-events: none;
}

.image-overlay.transition-opacity {
    transition: opacity 0.3s ease-in-out;
}

.image-overlay.hover-opacity-50:hover {
    opacity: 0.5;
}

.fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.text-column {
    padding-top: 50px;
}

.custom-image {
    border-radius: 0 50px 50px 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.custom-section {
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.thumbnail {
    cursor: pointer;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
    max-width: 100px;
    width: 100px;
}

.thumbnail:hover {
    border-color: #841617;
}

.logo-container {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.logo-track {
    display: flex;
    animation: scroll-logos 20s linear infinite;
    will-change: transform;
}

.logo-track img {
    height: 100px;
    width: auto;
    margin: 0 15px;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.logo-track::after {
    content: "";
    flex-shrink: 0;
}

/* .dropdown {
    position: relative;
    display: inline-block;
} */

/* .dropdown-menu {
    display: none;

    position: absolute;
    background-color: #f8f8ff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    list-style-type: none;
    margin: 0;
    z-index: 1000;
} */

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    color: #000;
    text-decoration: none;
    padding: 5px 15px;
    display: block;
}

.dropdown-menu li a:hover {
    /* background-color: #f1f1f1; */
    color: #841617;
}

.dropdown-menu-sm {
    font-size: 0.875rem;
    padding: 0.5rem;
}

.pagination-button {
    background-color: transparent;
    color: #841617;
    border: 1px solid #841617;
    font-size: smaller;
    padding: 5px 10px;
    margin-right: 10px;
}

.pagination-button.active {
    background-color: #841617;
    color: #fff;
    border-color: #841617;
    border-radius: 4px;

    transform: scale(1.1);
}

.pagination-button:hover {
    background-color: rgb(188, 36, 38);
    border-radius: 4px;
    color: #ffffff;

    cursor: pointer;
}

.order-summary-card {
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.product-image {
    border-radius: 8px;
    width: 50px;
    height: 50px;
}

.edit-btn {
    background-color: #950101;
    color: #f8f8ff;
    font-weight: normal;
}

.edit-btn:hover {
    background-color: #760101;

    color: #f8f8ff;
}

.total-payable {
    font-size: 1.25rem;

    color: #950101;
}

.text-danger {
    color: #950101 !important;
}

.product-image {
    width: 50px;
    height: 50px;
    object-fit: cover;
}

.checkout-title {
    color: #950101;
}

.coupon-text {
    color: #950101;
}

.form-check-input:checked {
    background-color: #950101;
    border-color: #950101;
}

.form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(149, 1, 1, 0.25);
}

.form-control:focus {
    border-color: #950101;
    box-shadow: 0 0 0 0.2rem rgba(149, 1, 1, 0.25);
}

#map {
    height: 400px;
    width: 100%;
}
