:root{
    --color1: #1e4f31;
    --color2: #1f3160;
    --color3: #0a79b1;
    --color4: #779a42;
}
ul{
    list-style: none !important;
}
a{
    text-decoration: none !important;
}   
body{
    background: rgb(243, 243, 243) !important;
}
header{
    padding: 10px 0;
    background-color: #fff;
}
.header{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;   
}

header .logo img{
    width: 100%;
    max-width: 250px;
}

header nav ul{
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a{
    text-decoration: none;
    color: #000;
}

header nav ul li a:hover{
    color: #000;
}

header a{
    text-decoration: none;
    color: #000;
}

.main-img{
    width: 100%;
    max-width: 300px;
}

.hero-cnt{
    height: 70vh;
}

.service-img {
    width: 100%;
    /* max-width: 350px; */
    margin: auto;
    height: 100%;
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    
}
.service-img + img{
    width: 60px;
    left: 10px;
    top: 10px;
    border-radius: 12px !important;
}

.icon.meat{
    background: #ffe3df !important;
}
.icon.chiken{
    background: #eaebff !important;
}
.icon.veg{
    background: #e5ffe5 !important;
}

.service.card h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    color: white;
    padding: 10px;
    background: linear-gradient(360deg, #0000009c, transparent);
    width: 100%;
    text-align: center;
    padding-bottom: 20px;
    margin: 0;
    /* bottom: 10px; */
}

.service.card {
    border-radius: 15px;
    border: none;
    align-items: center;
    /* padding: 20px !important; */
    color: white;
    overflow: hidden;
    height: 360px;
}


footer{
    padding: 20px 0;
    background-color: #fff;
    margin-top: 20px;

}

footer img{
    max-width: 250px;
}

footer a{
    color: black !important;
}

footer a:hover{
    color: var(--color1) !important;
}
footer p{
    color: #000;
    text-align: center;
    align-self: center;
}

.cta{
    position: fixed;
    bottom: 20px;
    right: 20px;

}
.cta a img{
    margin-right: 5px;
    filter: brightness(0) invert(1);
}
.cta a{
    text-decoration: none;
    color: #fff;
    background-color: var(--color3);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.cta a:hover{
    background-color: var(--color4);
}
.cta a:hover img{
    transform: scale(1.2);
    filter: invert(1);
}


/* responsive   */
@media (max-width: 992px) {
      .service.card{
        height: 320px;
    }
}
@media (max-width: 768px) {
    header .logo img{
        max-width: 200px;
    }
    header nav ul{
        display: none;
    }
    .hero-cnt{
        height: 50vh;
    }
    .service.card{
        height: 270px;
    }
    .service-img{
        height: 100%;
        width: 100%;
    }
}
