:root {
    --color-1: #022b39;
    --color-2: #005864;
    --color-3: white;
    --color-4: rgba(229, 237, 240, 0.5);
}

.header {
    position: fixed;
    width: 100%;
    padding-block: 15px;
    padding-inline: 5%;
    top: 0;
    z-index: 1000;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.1s ease;
    /* Smooth animation */
}

.header.sticky {
    /* position: fixed; */
    padding-block: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.header-placeholder {
    height: 0;
    transition: height 0.3s ease;
    overflow: hidden;
}

.footer-container {
    background-color: var(--color-1);
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.footer-list {
    list-style: none;
    color: white;
    padding-left: 5px;
    padding-top: 10px;
    font-size: 1.3rem;
    font-style: italic;
}

.footer-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.footer-link {
    text-decoration: none;
    color: white;
    transition: 0.6s ease;
    font-size: 1rem !important;
}

.footer-link:hover {
    color: var(--color-2);
}

.contact-text {
    text-decoration: none;
    color: white;
    transition: 0.6s ease;
}

.contact-text:hover {
    color: lightgrey;
}

.btn {
    border-radius: 25px;
    padding-inline: 20px;
}

.btn-drop{
    color: var(--color-2);
}

.btn-drop:hover,
.btn-drop.active {
    background-color: var(--color-2);
    color: white;
}

.btn-tokio {
    background-color: var(--color-2);
    border: 2px solid var(--color-2);
    color: white;
}

.btn-tokio:hover {
    border: 2px solid var(--color-2);
}

.btn-cta {
    height: 80px !important;
    width: 80px !important;
    border-radius: 50% !important;
    background-color: var(--color-1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
}

.btn-cta:hover {
    background-color: white;
    /* border: 0; */
    color: var(--color-1);
}

.dropdown:hover > .dropdown-menu {
    display: block;
}

.dropdown-menu {
    border-radius: 0px;
}

.carousel-control-next,
.carousel-control-prev

/*, .carousel-indicators */ {
    filter: invert(100%);
}

.carousel-item {
    width: 100%;
}

.banner-img {
    /* max-height: 650px; */
    width: 100%;
    object-fit: cover;
}

footer {
    box-shadow: none !important;
}

.tabs-wrapper {
    min-height: 250px;
}

.tabs {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tab-link {
    padding: 5px 10px;
    border-radius: 5px;
    color: var(--color-2);
    background-color: transparent;
    border: 3px solid var(--color-2);
    border-bottom: 0;
    border-top: 0;
    text-decoration: none;
    transition: 0.3s ease;
}

.tab-link:hover {
    background-color: var(--color-2);
    color: white;
}

.tab-link.active {
    background-color: var(--color-2);
    color: white;
}

.contact-details {
    display: flex;

    flex-direction: column;
    gap: 10px;
    background-color: var(--color-2);
    color: white;
    padding: 20px;
    border-radius: 10px;
    height: 100%;
}

.contact-details a {
    font-size: 1.2rem;
    margin-bottom: 5px;
    padding: 5px 0;
    color: inherit;
    text-decoration: none;
    transition: 0.2s ease;
    font-weight: 500;
}

.contact-details p {
    font-style: italic;
}

.contact-details a:hover {
    color: var(--color-1);
}

.testimony-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    border: 1px solid var(--color-1);
    border-radius: 110px 8px 8px 110px;
    margin-bottom: 20px;
    margin-inline: auto;
    flex-wrap: wrap;
    height: max-content;
    max-width: 900px;
    background-color: var(--color-1);
}

.testimony-img {
    width: 20%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.testimony-img img {
    object-fit: cover;
    height: 150px;
    border-radius: 50%;
    margin-block: 5px;
    width: 150px !important;
}

.testimony-body {
    padding: 20px;
    width: 80%;
    color:#fff;
}

@media screen and (max-width: 768px) {
    .testimony-card {
        flex-direction: column;
        align-items: center;
        height: auto;
        max-width: 300px;
        border-radius: 8px;
    }

    .testimony-img {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }

    .testimony-body {
        width: 100%;
    }
}

.product-banner {
    position: relative;
    background-size: cover;
    background-position: start;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    overflow: hidden;
}

.product-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 88, 100, 0.4);
    z-index: 1;
    pointer-events: none;
}

.product-banner > * {
    position: relative;
    z-index: 2;
}

.banner-text {
    margin-inline: auto;
    text-align: start;
    color: white;
}

.banner-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.banner-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.desc-text {
    font-size: 1rem;
}

.checklist,
.crosslist {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
    padding-block: 0.5em;
}

.checklist li,
.crosslist li {
    position: relative;
    padding-left: 1.8em;
    margin-bottom: 0.5em;
}

/* Specific markers */
.checklist li::before {
    content: "✔️";
    position: absolute;
    left: 0;
    top: 0;
}

.crosslist li::before {
    content: "❌";
    position: absolute;
    left: 0;
    top: 0;
}

.inverted {
    background-color: var(--color-4);
}

.optional-box {
    background-color: #f9f9f9;
    padding: 20px;
    margin-top: 15px;
    font-style: italic;
    border-left: 4px solid #ccc;
}

.desc-text .accordion-item .accordion-header {
    font-weight: bold;
}

.desc-text .accordion-button.collapsed {
    background-color: white;
    color: var(--color-2);
}

.desc-text .accordion-button:not(.collapsed) {
    background-color: white;
    color: var(--color-2);
}

.accordion-list {
    padding-left: 20px;
    list-style: none;
}

.accordion-list a {
    color: var(--color-2);
    /* text-decoration: none; */
}

.accordion-list li {
    margin-bottom: 10px;
}

.accordion-list i {
    color: var(--color-2);
    margin-right: 10px;
}

/* Product Card  */
.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    transition: transform 0.3s ease;
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: 0 0 50% 50% / 0 0 5% 5%;
    overflow: hidden;
    object-fit: cover;
}

.product-title {
    padding: 10px;
    font-size: 1.2em;
    text-align: center;
    font-weight: bold;
}

.product-description {
    padding: 0 10px 10px;
    font-size: 0.9em;
    text-align: center;
    color: #555;
    flex-grow: 1;
}

.title-text {
    font-size: 1.2rem !important;
    font-weight: 700;
    /* color: var(--color-2); */
    margin-bottom: 20px;
}

@media screen and (max-width: 508px) {
    .title-text {
        font-size: 1.3rem;
        text-align: center;
    }
}

.wave {
    position: absolute;
    bottom: -20%;
    left: 0;
    width: 100%;
    height: auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgb(0 0 0 / 73%);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50% 50%;
    border: 2px solid #fff;
}

.learn-more-btn {
    background-color: #0097a7; /* Teal blue color */
    color: #fff !important;
    font-weight: bold;
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    width: 50%; /* Full width as per your screenshot */
    text-align: center;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
}

.learn-more-btn:hover {
    background-color: #007b8a; /* Slightly darker on hover */
    transform: translateY(-2px);
}

.learn-more-btn:active {
    transform: translateY(0);
}

.accordion-list a {
    text-decoration: none;
}
.accordion-list a:hover {
    text-decoration: underline;
}

.breadcrumb-item a {
    text-decoration: none;
    color: #000;
}
.breadcrumb-component nav ol li:nth-child(1) a {
    font-weight: bold;
}

.breadcrumb-component nav ol li:nth-child(2) a {
    color: #99aaaf;
    font-weight: bold;
}

.home-banner {
    height: 100vh;
}

@media screen and (max-width: 768px) {
    .wave {
        bottom: -1% !important;
    }

    .home-banner {
        height: 50vh !important;
    }
}

.owl-dots{
    display: flex;
    justify-content: center;
}
.owl-dot span {
    display: block;
    width: 12px;
    height: 12px;
    background: #ccc;
    border-radius: 50%;
    margin: 5px;
    transition: background 0.3s;
}

.owl-dot.active span {
    background: #333;
}
