/* Home Hero Section Redesign */
.hero-layout-row {
    height: 400px;
}

/* Left Navigation Menu */
.home-nav-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-nav-header {
    background: linear-gradient(135deg, #ed1b24, #d32f2f);
    color: #fff;
    padding: 12px 15px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1px;
}

.home-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}

.home-nav-item a {
    display: flex;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.home-nav-item a:hover {
    background: #fdf5f5;
    color: #ed1b24;
    border-left: 3px solid #ed1b24;
}

.home-nav-item a i {
    font-size: 18px;
    margin-right: 12px;
    color: #888;
    transition: all 0.3s ease;
}

.home-nav-item a:hover i {
    color: #ed1b24;
}

/* Middle Carousel */
.home-carousel-box {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
}

.home-carousel-box .carousel-item img {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.home-carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 25px 25px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    pointer-events: none;
}

.home-carousel-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    white-space: pre-wrap;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom Carousel Indicators */
.home-carousel-box .carousel-indicators {
    margin-bottom: 12px;
}

.home-carousel-box .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.home-carousel-box .carousel-indicators button.active {
    background-color: #ed1b24;
    width: 25px;
    border-radius: 5px;
}