.hero-split {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    max-height: 600px;
    overflow: hidden;
    position: relative;
}

/* Left side image */
.hero-split__image {
    flex: 1;
    min-height: 600px; /* ensure height in desktop */
}
.hero-split__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0% 100%);
    object-position: center;
    display: block;

    
}

/* Right side content */
.hero-split__content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    color: #000000;
    background: #fff; /* added background so text never overlaps image */
    z-index: 2;
    position: relative;
}
.hero-split__inner {
    text-align: left;
}
.hero-split__inner h1 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}
.hero-split__inner p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
}
.hero-split__btn {
    display: inline-block;
    padding: 14px 30px;
    background: #fff;
    color: #45b8ff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid #45b8ff;
    /* background: linear-gradient(180deg, #45B8FF 0%, #1AA7FF 100%); */
}
.hero-split__btn:hover {
    color: #fff;
    /* background: #124463; */
    background: linear-gradient(180deg, #45b8ff 0%, #1aa7ff 100%);
}

/* ================= Responsive ================= */
@media (max-width: 992px) {
    .hero-split {
        flex-direction: column;
        max-height: unset; /* remove fixed height */
    }

    .hero-split__image {
        /* min-height: 250px; give fixed safe height for mobile */
        min-height: unset;
        max-height: 300px;
    }

    .hero-split__image img {
        clip-path: none; /* remove slant */
        object-position: center;
    }

    .hero-split__content {
        padding: 30px 20px;
        text-align: center;
        background: #fff; /* ensure white background always */
    }

    .hero-split__inner h1 {
        font-size: 1.8rem;
    }

    .hero-split__inner p {
        font-size: 1rem;
    }
}

/* Hover dropdown open */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Hover submenu open */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Main dropdown box */
.navbar .dropdown-menu {
    border-radius: 10px;
    padding: 0.5rem 0;
    border: none;
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.15);
    min-width: 200px;
}

/* Dropdown item styling */
.navbar .dropdown-menu .dropdown-item {
    padding: 10px 18px;
    font-weight: 500;
    transition: background 0.2s ease, padding-left 0.2s ease;
}

/* Hover effect on items */
.navbar .dropdown-menu .dropdown-item:hover {
    background: #f5f5f5;
    padding-left: 25px;
}

/* Submenu position */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0px;
    border-radius: 10px;
}

/* Hover dropdown open */
.navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
}

/* Hover submenu open */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Arrow icon for submenus */
.dropdown-submenu > .dropdown-item::after {
    float: right;
    font-size: 14px;
    opacity: 0.8;
}

/* Furniture Disposal Cards */
.fd-card {
    height: 100%;
    transition: all 0.3s ease;
}

.fd-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15) !important;
}

/* Disposal Services New Card UI */
.service-card {
    background: #ffffff;
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 1px solid #e6e6e6;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
    border-color: #28a745; /* Green border hover */
}

/* Icon Circle */
.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #e8f5e9;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

/* Testimonial / Review Card */
.review-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e8e8e8;
    transition: 0.3s ease;
    height: 100%;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}

/* Circular Avatar */
.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #eaf8f0;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    font-weight: bold;
}

.sofa-feature {
    transition: 0.3s ease;
    background: #ffffff;
    border-radius: 12px;
}

.sofa-feature:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 1.8rem rgba(0, 0, 0, 0.15) !important;
}

.service-box {
    transition: 0.3s ease;
    border-radius: 12px;
}

.service-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
    width: 60px; /* Avatar width */
    height: 60px; /* Avatar height */
    object-fit: cover; /* Crop perfectly without distortion */
    border-radius: 50%; /* Make it round */
    border: 2px solid #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Wrapper */
.hero-custom {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Background Image Layer */
.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark Overlay */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2;
}

/* Content Always Above */
.hero-custom .container {
    position: relative;
    z-index: 3;
}

/* Text */
.hero-title {
    line-height: 1.2;
}

.hero-text {
    font-size: 1rem;
}

/* Right Image Card */
.hero-image-card {
    max-width: 380px;
    border-radius: 20px;
    z-index: 3;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-custom {
        text-align: center;
        padding: 60px 0;
        min-height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-image-card {
        max-width: 300px;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-image-card {
        max-width: 250px;
    }
}

.fa-input {
    font-family: "Font Awesome 6 Free", Arial, sans-serif;
    font-weight: 400;
}

/* /top hero section end/ */
