
.hero{
    background-image: url("../Pictures/heroImage-Service.webp");
    background-position: bottom;
}

.hero .hero_content {
    float: right;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 70px;
    padding-top: 100px;
    padding-right: 0;
    width: 55em;
}

.hero .hero_content .datahead {
    text-align: center;
    font-size: 47px;
    color: #1e4258;
    text-shadow: 0 0 8px #fff;
}

.yummy{ 
    font-size: 85px;
    color: #ff4500;
    text-shadow: 0 0 8px #2f4858;
    padding-bottom: 15px;
}

.services {
    padding: 50px 20px;
    background-color: #fff;
   width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.service {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 40px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service img {
    max-width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.service h2 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: orangered;
}

.service p {
    font-size: 1.13rem;
    line-height: 1.8;
    text-align: justify;
    padding: 20px;
    color: #555;
}

.video-container{
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.Video-content h1{
    text-align: center;
    /* margin-top: 60px; */
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bolder;
    color: #ff4500;
    font-family: cursive;
}

.Video-content p{
    padding-inline: 55px;
    text-align: justify;
    line-height: 1.5em;
    font-size: 18px;
    margin-bottom: 15px;
}

.videos {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.video-box {
    flex: 1 1 calc(50% - 40px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    margin: 10px;
}

.video-box iframe {
    width: 100%;
    height: 315px;
    border: none;
}