.kbf-hero-wrapper-b18d139a {
    position: relative;
    width: 100%;
}

.kbf-hero-top-bg-b18d139a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 35%;
    background-color: #f5f5f5; /* Light background for the top to match the image overlap */
    z-index: 1;
}

.kbf-hero-b18d139a {
    position: relative;
    z-index: 2;
    padding: 60px 40px;
    background-color: #0A1526; /* Dark navy */
    color: #fff;
    margin-top: 15%;
    border-radius: 0;
}

.kbf-hero-grid-b18d139a {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.kbf-hero-content-b18d139a {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.kbf-hero-image-col-b18d139a {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.kbf-hero-pretitle-b18d139a {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: #ffffff; /* Adjusted to be visible in normal flow */
}

.kbf-hero-title-b18d139a {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 30px 0;
    color: #ffffff; /* Adjusted to be visible in normal flow */
}

.kbf-terms-wrapper-b18d139a {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
    margin-bottom: 30px;
}

.kbf-term-item-b18d139a {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.kbf-term-label-b18d139a {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
    padding-left: 15px;
}

.kbf-term-box-b18d139a {
    background-color: #fff;
    color: #0A1526;
    padding: 15px 30px;
    border-radius: 4px;
    display: inline-block;
    max-width: fit-content;
    position: relative;
    clip-path: polygon(0 0, 95% 0, 100% 50%, 95% 100%, 0 100%, 5% 50%);
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.kbf-features-list-b18d139a {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.kbf-features-list-b18d139a li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 18px;
    font-size: 1.3rem; /* Larger text */
    font-weight: 500;
}

.kbf-feature-icon-b18d139a i,
.kbf-feature-icon-b18d139a svg {
    color: #fff;
    fill: #fff;
    font-size: 1.8rem; /* Larger icon */
    width: 1.8rem;
    height: 1.8rem;
}

.kbf-feature-text-b18d139a {
    color: #fff; /* Enforce white color */
}

.kbf-action-area-b18d139a {
    display: flex;
    align-items: center;
    justify-content: center; /* Center the button */
    margin-top: 50px;
    width: 100%;
}

.kbf-btn-b18d139a {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    color: #0A1526;
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Smoother, bouncy transition */
    clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.kbf-btn-b18d139a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
    transition: left 0.6s ease;
    z-index: 1;
}

.kbf-btn-b18d139a:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.3), 0 10px 20px rgba(0, 0, 0, 0.4); /* Enhanced 3D shadow effect */
    background-color: #f8f9fa;
    color: #0A1526;
}

.kbf-btn-b18d139a:hover::before {
    left: 100%;
}

.kbf-btn-icon-b18d139a, .kbf-btn-text-b18d139a {
    position: relative;
    z-index: 2;
}

.kbf-btn-icon-b18d139a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0A1526;
    color: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.kbf-btn-b18d139a:hover .kbf-btn-icon-b18d139a {
    transform: rotate(90deg);
}

/* Image styling */
.kbf-image-wrapper-b18d139a {
    border: 12px solid #fff;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    background-color: #fff;
    transform: translateY(-100px);
    position: relative;
    z-index: 10;
}

.kbf-hero-img-b18d139a {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Animations */
@keyframes kbfSlideUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes kbfFloat {
    0% { transform: translateY(-100px); }
    50% { transform: translateY(-115px); }
    100% { transform: translateY(-100px); }
}

.animate-slide-up {
    animation: kbfSlideUp 0.8s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

.animate-float {
    animation: kbfFloat 6s ease-in-out infinite;
}

/* Responsive */
@media (max-width: 992px) {
    .kbf-hero-grid-b18d139a {
        flex-direction: column-reverse;
    }
    .kbf-hero-pretitle-b18d139a, .kbf-hero-title-b18d139a {
        margin-bottom: 20px;
    }
    .kbf-image-wrapper-b18d139a {
        transform: translateY(0);
        margin-top: 0;
    }
    .animate-float {
        animation: none;
    }
    .kbf-hero-b18d139a {
        padding: 40px 20px;
        margin-top: 0;
    }
    .kbf-hero-top-bg-b18d139a {
        display: none;
    }
}