/*=============================================
	=        HomePage Banner slider CSS		      =
=============================================*/
.banner__area {
    padding-top: 130px;
    padding-bottom: 130px;
    position: relative;
}
.banner__img .main-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0px 15px 25px rgba(28, 43, 88, 0.15));
    border-radius: 10px;
    box-shadow: 10px 10px 5px -3px rgba(0,0,0,0.48);
    -webkit-box-shadow: 10px 10px 5px -3px rgba(0,0,0,0.48);
    -moz-box-shadow: 10px 10px 5px -3px rgba(0,0,0,0.48);
}
.banner__img .main-img {
    filter: drop-shadow(0px 15px 25px rgba(28, 43, 88, 0.15));
}
.banner__nav-wrap {
    position: absolute;
    bottom: 40px;
    right: 50px;
    z-index: 10;
    display: flex;
    gap: 15px;
}
.banner__nav-wrap button {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #e0e0e0;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, border-color 0.3s;
}
.banner__nav-wrap button:hover {
    background-color: #01022E;
    border-color: #01022E;
}
.banner__nav-wrap .banner-button-prev svg {
    transform: rotate(180deg);
}
.banner__nav-wrap button:hover svg path {
    stroke: #ffffff;
}
@media (max-width: 991px) {
    .banner__area {
        padding-top: 90px;
    }
}
@media (max-width: 768px) {
    .banner__area {
        padding-top: 70px;
    }
}
@media (max-width: 576px) {
    .banner__area {
        padding-top: 60px;
    }
}


/*=============================================
	=        HomePage Small Timeline CSS    =
=============================================*/
.small-timeline-section {
    background-color: #f8f9fa;
}
.small-timeline-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 25px;
}
/* The main horizontal timeline line */
.small-timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 5%;
    width: 90%;
    height: 4px;
    background-color: #dee2e6;
    border-radius: 2px;
}
.milestone-step-small {
    width: 25%;
    position: relative;
    padding: 45px 15px 0;
    text-align: center;
}
/* The dot on the timeline */
.milestone-step-small::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #fff;
    border: 4px solid;
    z-index: 1;
    transition: background-color 0.3s ease;
}
.milestone-step-small:hover::before {
    border: 5px solid;
}
/* The small vertical line connecting dot to text */
.milestone-step-small::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 20px;
    background-color: #dee2e6;
}
.milestone-step-small h5 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #343a40;
    margin-top: 15px;
    margin-bottom: 5px;
}
.milestone-step-small p {
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.5;
}

/* Responsive stacking for mobile */
@media (max-width: 767px) {
    .small-timeline-wrapper {
        flex-direction: column;
        padding-top: 0;
    }
    .small-timeline-wrapper::before {
        display: none;
    }
    .milestone-step-small {
        width: 100%;
        text-align: left;
        padding: 0 0 20px 30px;
    }
    .milestone-step-small::before {
        left: 0;
        top: 5px;
        transform: none;
    }
    .milestone-step-small::after {
        top: 5px;
        left: 8px;
        height: 100%;
        transform: none;
    }
    .milestone-step-small:last-child::after {
        display: none;
    }
    .milestone-step-small h5, .milestone-step-small p {
        margin-top: 0;
    }
}