.value-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.value-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.animate-icon {
    transition: transform 0.4s ease-in-out;
}

.value-box:hover .animate-icon {
    transform: scale(1.3) rotate(10deg);
}

.timeline {
    position: relative;
    padding-left: 40px;
    border-left: 3px solid #32A9C7;
}

.timeline-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
    display: inline-block;
}

.timeline h5 {
    font-weight: 600;
    margin-bottom: 6px;
}

.timeline p {
    font-size: 14px;
    color: #555;
}

.hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-effect:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}


/* Nikhil CSS */
/* Home Page */

.banner-details .swiper-slide {
    align-items: end;
    display: flex;
    height: 575px;
    justify-content: center;
}

.banner-details .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
}

.banner-details,
.banner-details-slider {
    position: relative;
}

.banner-details .banner-details-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    --background-overlay: '';
    opacity: 0.85;
    z-index: 2;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #444;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.swiper {
    margin-left: auto;
    margin-right: auto;
}

.banner-details .banner-details-slider .swiper-pagination {
    margin-top: 20px;
    position: absolute;
    z-index: 999;
}

.banner-details .banner-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #fff;
    opacity: 0.7;
    z-index: 5;
}

.banner-details .banner-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-color);
}

.swiper-button-next {
    right: 30px;
    z-index: 100;
}

.swiper-button-prev {
    left: 30px;
    z-index: 100;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    color: #fff;
    padding: 15px;
    font-size: 16px;
    background-color: #32A9C7;
    border-radius: 5px;
}

/* About Us */

.index-page .page-banner {
    position: relative;
    min-height: 400px !important;
    display: flex;
    align-items: end;
}

.index-page .page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    --background-overlay: '';
    background-image: linear-gradient(180deg, #ffffff00 0%, #000 100%);
    opacity: 1;
}

.about-page .hero-section .left-img img {
    height: 500px;
    width: 100%;
    object-fit: cover;
}

@media (min-width:768px) and (max-width:1200px) {
    .portfolio-details .swiper-slide {
        height: 500px;
    }
}

@media (max-width:767px) {
    .portfolio-details .swiper-slide {
        height: 400px;
    }
}