@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins';
}

html,
body {
    height: 100%;
    width: 100%;
}


.whatsapp-icon {
    position: fixed;
    height: 5vw;
    width: 5vw;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.whatapp-iconn{
    font-size: 2.7vw;
}

.whatsapp-icon {
    bottom: 20px;
    right: 20px;
}
@media (max-width: 480px) {
    .whatsapp-icon {
        width: 20vw; 
        height: 20vw;
        font-size: 2vw;
        bottom: 2%;
        right: 2%;
        z-index: 2000;
    }
    .whatapp-iconn{
        font-size: 10vw;
    }
}












.navbar {
    height: 13vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    box-shadow: 0 4px 20px rgba(144, 238, 144, 0.3);
    padding: 0 2vw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

.navbar-left {
    height: auto;
    width: 22%;
    overflow: hidden;
}

.navbar-left img {
    height: 100%;
    width: 8vw;
    object-fit: cover;
    margin-top: 1vw;
}

.navbar-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2vw;
    margin-right: 2vw;
}

.navbar-right a {
    position: relative;
    text-decoration: none;
    color: black;
    font-size: 1.3vw;
    padding: .4vw;
    transition: color 0.3s ease;
}

.navbar-right a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background-color: #ff7043;
    transition: width 0.4s ease;
}

.navbar-right a:hover::after {
    width: 100%;
}




.overlay {
    height: 60vh;
    width: 100%;
    background-color: black;
    position: absolute;
    top: 0;
    left: 0;
    opacity: .7;
}

.about-hero {
    height: 60vh;
    width: 100%;
    background: url('images/home\ made\ food.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
    position: relative;
}

.hero-text {
    display: flex;
    flex-direction: column;
}

.hero-text h1 {
    font-size: 3vw;
    font-weight: 500;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 99;
}

.hero-text p {
    font-size: 1.3rem;
    margin-top: 1rem;
    z-index: 99;
}

.about-info {
    display: flex;
    padding: 4vw;
    gap: 3vw;
    flex-wrap: wrap;
    align-items: center;
    background-color: #f9f9f9;
}

.info-left img {
    width: 25vw;
    height: 50vh;
    border-radius: 1vw;
}

.info-right {
    flex: 1;
}

.info-right h2 {
    font-size: 2rem;
    margin-bottom: 1vw;
}
.info-right p{
    text-align: justify;
}

.mission-vision {
    padding: 4vw;
    background-color: #fff;
    text-align: center;
}

.mission-vision h2 {
    margin-bottom: 2vw;
    font-size: 2rem;
}

.mv-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2vw;
}

.mv-box {
    background: #f2f2f2;
    padding: 2vw;
    width: 300px;
    border-radius: 1vw;
}

.our-team {
    background: #f9f9f9;
    padding: 4vw;
    text-align: center;
}

.our-team h2 {
    margin-bottom: 2vw;
    font-size: 2rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 3vw;
    flex-wrap: wrap;
}

.team-member {
    background: #fff;
    padding: 2vw;
    border-radius: 1vw;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 200px;
}

.team-member img {
    width: 6vw;
    border-radius: 50%;
    margin-bottom: 1vw;
}

.team-member h4 {
    margin: 0.5vw 0 0.2vw;
}

.team-member p {
    font-size: 0.9rem;
    color: #777;
}


.page7 {
    min-height: 55vh;
    width: 100%;
    padding: 1vw 2vw;
    background-color: #F8F8F8;
}

footer {
    height: 100%;
    width: 100%;
}

.footer-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 3vw;
    border-bottom: 1px solid red;
    margin-bottom: 2vw;
}

.footer-logo {
    width: 33%;
    margin-bottom: 2vw;
}

.footer-logo img {
    width: 12vw;
}

.footer-logo p {
    font-size: .9vw;
    opacity: .7;
}

.footer-menu {
    width: 30%;
}

.footer-menu h3 {
    color: red;
    font-weight: 400;
    margin-bottom: 1vw;
    margin-left: 8vw;
}

.footer-anchor {
    display: flex;
    flex-direction: column;
    gap: .3vw;
    margin-left: 8vw;
}

.footer-anchor a {
    text-decoration: none;
    color: black;
    opacity: .7;
    width: fit-content;
}

.footer-anchor a:hover {
    color: red;
}

.footer-social {
    width: 30%;
}

.footer-social h3 {
    color: red;
    font-weight: 500;
}

.icons {
    display: flex;
    align-items: center;
    gap: 1.6vw;
    margin-top: 1vw;
}
.icons a{
    text-decoration: none;
}
.icons i {
    height: 3.5vw;
    width: 3.5vw;
    font-size: 1.8vw;
    color: red;
    border: 1px solid red;
    padding: .7vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
    transition: all .3s ease;
}

.icons i:hover {
    border: 1px solid black;
    color: black;
    transform: scale(0.8);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p span {
    color: red;
}





/* Responsive */

@media (max-width: 480px) {

      .navbar {
        width: 100%;
        height: 8vh;
        padding: 1vw 3vw;
        gap: 2vw;
    }

    .navbar-left {
        width: 25vw;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .navbar-left img {
        width: 17vw;
        height: auto;
    }

    .navbar-right {
        justify-content: center;
        gap: 3vw;
    }

    .navbar-right a {
        font-size: 3vw;
    }

    .about-hero {
        height: 50vh;
        padding: 1rem;
    }
    .overlay{
        height: 50vh;
    }

    .hero-text h1 {
        font-size: 6vw;
    }

    .hero-text p {
        font-size: 4vw;
    }

    .about-info {
        flex-direction: column;
        padding: 5vw 4vw;
    }

    .info-left img {
        width: 90vw;
        height: 40vh;
        border-radius: 3vw;
    }

    .info-right h2 {
        font-size: 1.5rem;
        text-align: center;
    }

    .info-right p {
        font-size: 2.8vw;
        text-align: justify;
    }

    .mission-vision {
        padding: 5vw 4vw;
    }

    .mission-vision h2 {
        font-size: 1.3rem;
    }

    .mv-container {
        flex-direction: column;
        align-items: center;
    }

    .mv-box {
        width: 100%;
        padding: 4vw;
        font-size: 1rem;
    }
    .mv-box p{
        font-size: .8rem;
    }
    .our-team {
        padding: 5vw 4vw;
    }

    .our-team h2 {
        font-size: 1.3rem;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
    }

    .team-member {
        width: 80%;
    }

    .team-member img {
        width: 20vw;
        margin-bottom: 3vw;
    }

    .team-member h4 {
        font-size: 1rem;
    }

    .team-member p {
        font-size: 0.9rem;
    }
}










@media screen and (max-width: 768px) {
    .about-info {
        flex-direction: column;
    }

    .mv-container {
        flex-direction: column;
        align-items: center;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }
}


/* page7 responsive  */
@media screen and (max-width: 480px) {
    .page7 {
        padding: 4vw 5vw;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 5vw;
        margin-top: 5vw;
        margin-bottom: 5vw;
    }

    .footer-logo,
    .footer-menu,
    .footer-social {
        width: 100%;
        margin-bottom: 2vw;
    }

    .footer-logo img {
        width: 30vw;
    }

    .footer-logo p {
        font-size: 3.5vw;
    }

    .footer-menu h3 {
        font-size: 4.5vw;
        margin-left: 0;
    }

    .footer-anchor {
        margin-left: 0;
        gap: 2vw;
    }

    .footer-anchor a {
        font-size: 3.8vw;
    }

    .footer-social h3 {
        font-size: 4.5vw;
        margin-bottom: 2vw;
    }

    .icons {
        gap: 4vw;
        margin-top: 2vw;
    }

    .icons i {
        height: 12vw;
        width: 12vw;
        font-size: 6vw;
        padding: 2vw;
    }

    .footer-bottom p {
        font-size: 3.5vw;
        padding-bottom: 4vw;
    }
}