.industry-section {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
}

/* Card */
.industry-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 16px;
    transition: all 0.4s ease;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Hover Effect */


/* Icon Circle */
.icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a33444, #ee3743);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    transition: all 0.4s ease;
}

/* Icon */
.icon-circle i {
    font-size: 38px;
    color: #ffffff;
    transition: transform 0.4s ease;
}

/* Icon Hover */
.industry-card:hover .icon-circle {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 12px 28px rgba(255, 105, 135, 0.5);
}

.industry-card:hover .icon-circle i {
    transform: scale(1.2) rotate(-8deg);
}

/* Text */
.industry-card h5 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* Fade Up */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger Effect */
.col-lg-4:nth-child(1) .industry-card {
    animation-delay: 0.1s;
}

.col-lg-4:nth-child(2) .industry-card {
    animation-delay: 0.2s;
}

.col-lg-4:nth-child(3) .industry-card {
    animation-delay: 0.3s;
}

.col-lg-4:nth-child(4) .industry-card {
    animation-delay: 0.4s;
}

.col-lg-4:nth-child(5) .industry-card {
    animation-delay: 0.5s;
}

.col-lg-4:nth-child(6) .industry-card {
    animation-delay: 0.6s;
}

.banner-video-area__image img {
    width: 520px;
      box-shadow: 0 10px 30px rgb(0 0 0 / 67%);
    /* border-radius: 8px; */
}
/* Box Styling */
.attractive-box {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Image Styling */
.attractive-box img {
    width: 100%;
    height: 381px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Effect */
.attractive-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.attractive-box:hover img {
    transform: scale(1.1);
}

/* Overlay for Text */
.attractive-box .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
       background: linear-gradient(to top, rgb(0 0 0), transparent);
    padding: 15px;
    text-align: center;
    transition: background 0.3s ease;
}

.attractive-box .project-link {
    color: #fff;
     font-size: 23px;
    font-weight: bold;
    text-decoration: none;
}

.attractive-box:hover .overlay {
    background: rgba(0,0,0,0.6);
}
