/* Container with two columns atal-bihari-vajpayee-international-covention-centre */

* {
    margin: 0px;
    padding: 0px;
}

.abv {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Center the containers vertically */
    width: 100%;
    /* height: 400px; */
    position: relative;
    /* Prevent the moving container from overflowing the parent */
    margin-top: 40px;
}


/* First Column */

.first-column {
    flex: 1;
    text-align: center;
}

.still-container {
    position: relative;
    padding-left: 40px;
    /* Space for the icon */
    width: 250px;
    height: 250px;
    color: white;
    text-align: center;
    line-height: 100px;
    z-index: 2;
    /* Ensure this is in front */
}


/* Video Icon */

.icon-border {
    /* padding: 10px 20px; */
    font-size: 24px;
    animation: 1500ms ease-out 0s infinite normal none running pulse-border2;
    position: absolute;
    left: 211px;
    /* Positioning from the left */
    top: 65%;
    /* Positioning from the top */
    transform: translateY(-50%);
    /* Vertically center the icon */
    background-color: #b91e1e;
    /* Red background color */
    border-radius: 50%;
    z-index: 3;
    /* Circular shape */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Soft shadow for depth */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Smooth transition for hover effect */
}

.icon-border img {
    height: 65px;
}


/* Pulsating Animation */

@keyframes pulse-border2 {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 30px 20px rgba(0, 123, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}


/* Second Column */

.second-column {
    flex: 1;
}


/* Heading */

.heading {
    font-size: 26px;
    color: #375176;
    margin-bottom: 10px;
    font-weight: 600;
    /* font-family: 'Caudex'; */
    font-size: 1.5rem;
}


/* Paragraph */

.para-content {
    font-size: 16px;
    color: #333;
    line-height: 1.5;
}


/* Animated Box Container */

.box-container {
    display: flex;
    gap: 15px;
}


/* Animated Boxes */

.animated-box {
    flex: 1;
    padding: 15px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Brochure Box */

.brochure-box {
    background: #007bff;
}


/* Hiring Rates Box */

.hiring-box {
    background: #28a745;
}


/* Hover Effect */

.animated-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.animated-box:hover {
    color: #333;
}

.icon-border:hover {
    transform: translateY(-50%) scale(1.1);
    /* Slightly increase size on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    /* Increase shadow depth on hover */
}

.icon-border i {
    color: white;
    /* Icon color */
    font-size: 30px;
    /* Increase font size for better visibility */
    font-weight: bold;
    /* Make icon bold for more emphasis */
    transition: color 0.3s ease;
    /* Smooth color transition */
}

.icon-border:hover i {
    color: #ffcc00;
    /* Change icon color to gold on hover */
}

.moving-container {
    top: -43px;
    width: 250px;
    height: 250px;
    color: white;
    text-align: center;
    line-height: 100px;
    position: absolute;
    animation: move 3s ease-in-out infinite alternate;
    z-index: 1;
    /* Place this behind the still container */
}


/* Animation to move the container */

@keyframes move {
    0% {
        left: 6%;
    }
    100% {
        left: 10%;
    }
}