/* Updated CSS for .oven-heading only - Replace your existing .oven-heading CSS */
.oven-heading {
    text-align: center;
    background: linear-gradient(rgba(7, 47, 133, 0.85), rgba(7, 47, 133, 0.9)), url("../../img/COKE-OVEN.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 100px 69px;
    position: relative;
    overflow: hidden;
}

.oven-heading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.1) 0%, rgba(0, 86, 179, 0.1) 100%);
    animation: shimmer 3s ease-in-out infinite alternate;
}

.oven-heading h1 {
    font-size: 1.7rem !important;
    color: white;
    font-weight: bold;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
    margin: 0;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
}

/* Animation for subtle effect */
@keyframes shimmer {
    0% { opacity: 0.8; }
    100% { opacity: 1; }
}

/* Responsive design for oven-heading */
@media (max-width: 992px) {
    .oven-heading {
        padding: 60px 15px;
    }
    
    .oven-heading h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .oven-heading {
        padding: 50px 15px;
        background-attachment: scroll;
    }
    
    .oven-heading h1 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }
}

@media (max-width: 576px) {
    .oven-heading {
        padding: 40px 10px;
    }
    
    .oven-heading h1 {
        font-size: 1.6rem !important;
    }
}

.horizontal-navigation:after {
    content: "";
    position: absolute;
    bottom: 0px !important;
    width: 97%;
    height: 2px;
    background-color: #c6d6d2;
    z-index: -1;
    border-radius: 2px;
  }

.info-content{
    /* background: #edeaea; */
    width: 100%;
    padding: 40px;
    margin-top: 20px;
}

.horizontal-navigation.oven-navigation .option{
    width: 163px;
  }

.horizontal-navigation.oven-navigation{
    height: 57px;

}
.challenges{
    /* background: #edeaea; */
    width: 60%;
    padding: 40px;
    margin-top: 20px;
    float: right;
}

.challenges-img{
    float:left;
    margin: 20px auto !important ; 
}