.banner-image {
    height: 100vh;
    width: 100%;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    color: white;
    display: flex;
    align-items: center;
    position: relative;
    z-index: -10;
}

.banner-section .overlay {
    content: "";
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: #00000099;
    z-index: -2;
}

.hero-section .icon {
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 0px 8.3px 1px #0000001a;
    border-radius: 50%;
}

.title {
    color: var(--primary-color);
    font-weight: bold;
    text-transform: uppercase;
}

.btn-solid-custom-primary {
    height: 100%;
    margin: 0 auto;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background-color: white;
    border-radius: 12px;
    font-family: var(--font-roboto);
    font-weight: 500;
    font-size: 16px;
}

.btn-solid-custom-primary:hover {
    background-color: #ffbf00;
    color: white;
    border: none;
    transition: left 0.5s ease-in-out;
}
/*
.product-card {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px;
    border: 1px solid var(--primary-color);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    color: var(--primary-color);
    max-width: 350px;
    height: auto;
    max-height: none;
}

.product-image {
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 300px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.product-card .btn-custom {
    text-align: center;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    transition: all 0.3s ease-in-out;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-card:hover .btn-custom {
    text-decoration: underline;
} */

.product-section {
    margin-top: 50px;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
}

.product-card .card-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-card .card-body .title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.product-card .product-desc {
    flex-grow: 1;
    margin-bottom: 1rem;
}

.product-card .product-desc p {
    margin: 0;
    line-height: 1.6;
    color: #666;
}

.product-card .btn-custom {
    margin: 1rem;
    margin-top: 0;
    padding: 0.75rem 1.5rem;
    border: none;
    background: #00455e;
    color: white;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

/* Responsive */
@media (min-width: 992px) {
    .product-card {
        flex: 1;
        max-width: 350px;
    }
}

@media (max-width: 991px) {
    .product-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }
}

.benefit-card {
    box-shadow: 0px 1px 17.1px 0px #00000033;
    padding: 20px 40px;
    border-radius: 16px;
    transition: background 0.35s ease-out, color 0.35s ease-out,
        box-shadow 0.35s ease-out;
}

.benefit-card * {
    transition: color 0.35s ease-out;
}

.benefit-img {
    box-shadow: 0px 0px 8.3px 1px #0000001a;
    width: 98px;
    height: 98px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #fff;
}

.benefit-card:hover {
    background: linear-gradient(180deg, #93d3f8 0%, #00455e 100%);
}

.benefit-card:hover * {
    color: #fff !important;
}

.tbody-scroll tr:nth-child(odd) {
    background-color: #ffffff;
}

.tbody-scroll tr:nth-child(even) {
    background-color: #e1f0fe;
}

.table-responsive .table thead th:first-child {
    border-top-left-radius: 20px;
}

.table-responsive .table thead th:last-child {
    border-top-right-radius: 20px;
}

.table-responsive .table thead th {
    background-color: var(--primary-color);
    color: #fff;
}

.step-box {
    padding: 70px 20px 20px 20px;
    box-shadow: 0px 0px 8.3px 1px #0000001a;
    border-radius: 12px;
    position: relative;
    height: 100%;
    transition: background 0.35s ease-out, color 0.35s ease-out,
        box-shadow 0.35s ease-out;
    color: var(--primary-color);
}

.step-box * {
    transition: color 0.35s ease-out;
}

.step-number {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    color: #fff;
    background: var(--primary-color);
    font-size: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-box:hover {
    background: linear-gradient(180deg, #93d3f8 0%, #00455e 100%);
}

.step-box:hover * {
    color: #fff !important;
}

.user-img {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    overflow: hidden;
}

.user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feedback-card {
    padding: 25px 40px;
    background: #00455eb2;
    border-radius: 20px;
    color: #fff;
}

.text-muted {
    color: #b0b2b5 !important;
}

.rating-star i {
    color: #ffd95a;
}

#feedback-carousel .owl-nav {
    display: block !important;
    position: relative;
}

.contact-container {
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.contact-box {
    text-align: center;
}
