*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

p{
    font-family: sans-serif, Arial, Helvetica, sans-serif;
}

h1, h2, h3{
    font-family: 'Times New Roman', Times, sans-serif;
    text-align: center;
    
}

body{
    background: beige;
}

header{
    display: flex;
    justify-content: space-between;
    background-color: red;
    position: fixed;
    width: 100%;
    z-index: 999;
}
header:hover{
    box-shadow: 0  0 15px #fde400;
}

header img{
    margin: 10px;
    width: 120px;
    height: 38px;
}

.navigate ul{
    list-style: none;
    font-size: 12px;
}

ul li{
    display: inline-block;
    position: relative;
}

ul li a{
    display: block;
    text-decoration: none;
    text-align: center;
    padding: 15px 20px;
    color: beige;
    margin: auto;
    border-radius: 3px;
}

ul li a:hover{
    background: #4772ff;
    color: biege;
    transition: all 0.5s ease-in-out;
}

ul li ul.dropdn li{
    display: inline-block;
}

ul li ul.dropdn {
    position: absolute;
    width: 100%;
    display: none;
    text-align: center;
    background-color: red;
    overflow: hidden;
    z-index: 1;
    margin: auto;
}

ul li:hover ul.dropdn{
    display: block;
}

.privacy-section {
    margin: auto;
    padding: 20px;
    margin-bottom: 20px;
}

.privacy-content {
    margin-top: 50px;
    font-size: 1em;
}

.privacy-section h1, h2, h3 {
    text-align: left;
    color: #ff000d8e;
    font-size: 1.1em;
}

/* Hero Section Start  */

.hero{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 40vh;
    background: url('bg.jpg');
    background-position: center;
    background-size: cover;
    box-shadow: 0  3px 15px #fde400;
}

.hero::before{
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000099;
}

.hero-container{
    z-index: 1;
}

.hero-container h1{
    font-size: 5rem;
    color: yellow;
}

.hero-container h1:hover{
     box-shadow: 0  3px 15px #000000;
}

.hero-container p{
    text-align: center;
    color: #f5f5f5;
    font-size: 20px;
    font-weight: 300;
}

.hero button{
    position: absolute;
    left: 43%;
    margin-top: 25px;
    width: 120px;
    height: 35px;
    font-size: 16px;
    font-weight: normal;
    background-color: #4772ff;
    color: #ffffff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.hero-container a{
    text-decoration: none;
    color: #ffffff;
}

.hero-container button:hover{
    cursor: pointer;
    background: #4652ff;
}

/* Hero Section End  */

/* Home Start */
.home-container{
    display: block;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    padding: 5px;
}

.home-content{
    flex: 0 0 48%;
    margin: 5px;
}

.home-content h1,b{
    color: #ff0000b0;
    font-weight: 800;
}

.home-text{
    line-height: 30px;
    letter-spacing: 1.2px;
    border-radius: 3px;
    padding: 20px;
    font-family: sans-serif, 'Times New Roman', Times, serif;
    background-color: beige;
    box-shadow: 0 0 0.8px; 
}

.home-text:hover{
    box-shadow: 0 0 10px rgb(17, 0, 255);
}

.home-content img{
    width: 100%;
    height: 60%;
    border-radius: 3px;
}

 .showcase-image img{
    width: 250px;
    margin: 5px;
    border-radius: 3px; 
    margin-left: 65px;
    flex-wrap: wrap;
   
}

.showcase-image img:hover{
     box-shadow: 0  3px 15px #000000;
     transform: scale(1.3);
     transition: all 0.3s ease-in-out;
}

.papaye-image{
    width: 100%;
    padding: 10px;
}

/* Home End */

/* Contact Section Start */

.contact-wrapper{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}

/* .contact-container{
    
} */

.contact-header{
    /* padding: 10%; */
    flex-wrap: wrap;
    margin-top: 50px;
    box-shadow: 0 0 15px;
    border-radius: 5px;
}

.contact-header:hover{
    box-shadow: 3px 4px 15px rgba(248, 3, 3, 0.5);
}

.contact-container{
   justify-content: center;
    align-item: centet;
    padding: 5px;
    margin: auto;
}

.contact-header h1{
    font-size: 20px;
    margin-bottom: 20px;
    color: #ff0000b0;
    font-family: sans-serif, Times, serif;
}

.contact-header p{
    text-align: center;
    font-size: 25px;
    background-color: rgba(255, 255, 255, .9);
    padding: 5%;
    font-family: sans-serif;
    color: #162839;
    border-radius: 5px;
    box-shadow: 3px 4px 15px rgba(0, 0, 0, 9);
}

.contact-header p:hover{
    box-shadow: 2px 4px 18px white;
}

.contact-infor{
   display: inline-block;
   flex-wrap: wrap;
   margin: 5%;
   font-family: 'Times New Roman', Times, serif;
}

.contact-infor h2{
    font-size: 18px;
    margin-bottom: 30px;
    color: #ff0000b0;
}

.contact-infor li, ul{
    margin: 10px;
    font-size: 18px;
}
.one{
    background-color: #000000;
    color: #ffffff;
    padding: 20px;
}
.two{
    background: #ffffff;
    color: #000;
    padding: 20px;
}
.three{
    background: yellow;
    color: red;
    padding: 20px;
}
.four{
    background-color: #205ad8c9;
    color: #ffffff;
    padding: 20px;
}
.five{
    background: tomato;
    color: #ffffff;
    padding: 20px;
}
.six{
    background-color: greenyellow;
    padding: 20px;
}
.seven{
    background: purple;
    color: #ffffff;
    padding: 20px;
}
.eight{
    background-color: aquamarine;
    padding: 20px;
}
.nine{
    background-color: chocolate;
    color: #ffffff;
    padding: 20px;
}
.ten{
    background-color: cyan;
    padding: 20px;
}

.hover{
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    width: 200px;
}

.hover:hover{
    transform: translateY(3px);
    box-shadow: 2px 4px 15px;
}

/* Contact Section End */

/* Form Section Start */
.form-section{
    padding: 5%;
    flex-wrap: wrap;
    align-item: center;
    justify-content: center;
    height: 100vh;
}

.form-section h1{
    margin: 40px;
    color: #ff0000b0;
    text-align: center;
}

fieldset{
    border-radius: 5px;
    padding: 5px;
/*     box-shadow: 2px 4px 18px; */
}

legend{
    font-size: 18px;
    margin-bottom: 20px;
    text-align: center;
    color: #ff000b0;
    font-weight: 500;
    border-radius: 5px;
}

.form-section input{
    margin-bottom: 20px;
    margin-top: 8px;
}

.form-section label, input{
    width: 100%;
    height: 40px;
    padding: 10px;
    border-radius: 5px;
    background: transparent;
    outline: none;
}

.form-section textarea{
    width: 100%;
    background: transparent;
    border-radius: 5px;
    outline: none;
    padding: 10px;
    margin-top: 10px;
}

.form-section button{
    width: 100%;
    height: 40px;
    margin: 20px 0;
    background-color: #4772ff;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1em; 
    font-weight: 500;
}

.form-section button:hover{
    background: #4542ff;
}

/* Form Section End */

/* About Section Start  */
.homepage{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding: 20px;
}

.home-contn {
    flex:  30%;
    display: inline-block;
    padding: 5px;
    line-height: normal;
}

.content-about {
    flex: 1 1 90%;
}

.content-about p {
    line-height: normal;
    font-size: 16px;
}

.home-contn p, b{
    padding: 5px;
    align-self: start;
    line-height: normal;
}

.home-contn p{
    margin-top: 0px;
    align-self: start;
    font-size: 16px;
}

/* About Section End */

/* ................Menu Start........... */
.menu-section{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background: white;
}

.menu-section h2 {
    text-transform: capitalize;
     color: #ff0000;
     padding-bottom: 5px;
}

.head-tittle {
    text-align: center;
    text-transform: uppercase;
    margin: 20px;
}

.menu-wrapper {
    padding: 2%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.full-pack-content {
   width: 270px;
   margin: 10px;
   box-shadow: 0 4px 0.998px #ff0000;
   padding: 10px;
   border-radius: 5px; 
}

.full-pack-content p {
    text-transform: normal;
}

.full-pack-content:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 10px #ff0000;
    border-radius: 5;
}

.full-pack-content img {
    width: 250px;
}

.full-chiken {
   width: 270px;
}

.full-chiken img {
    width: 250px;
}

.sandwich {
    background: white;
}

 /*.full-chiken p {
    width: 560px;
} */

.extra-content{
   width: 270px;
   margin: 10px;
   box-shadow: 0 0 5px;
   padding: 10px;
}

.extra-content:hover { 
    transform: translateY(-3px);
    box-shadow: 0 0 10px #ff0000;
    border-radius: 5;
}

.extra-content img{
    width: 250px;
}

/* ................Menu End .............*/
/* footer start */

footer{
    position: relative; 
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    align-items: center;
    background: #162839;
    color: beige;
}

.footer-wrapper{
    padding:10px;
    color: white;
}

.footer-container{
    flex: 38%;
    justify-content: center;
    align-items:center;
    padding: 5px;
    margin: 5px;
    /*border: 2px solid rgba(255, 255, 255, .9)*/
}

.footer-container h3 {
    text-align: center;
    color: yellow;
}

  .foot-img img{
    position: absolute;
    width: 400px;
    top: 30%;
    left: 40px;
    margin: auto;
    z-index: -1;
} 

/* footer end */

.foot-cont{
    display: block;
    margin: 30px;
    flex-wrap: wrap;
}

.develop {
    margin: 20px 0;
}

.social-links a {
    color: #4772ff;
    font-size: 1.2em;
    text-decoration: none;

    
}

.social-links li {
    list-style: none;  
    display: inline-block;

}

.social-icons {
    margin: 38px 0;
    font-size: 2.2em;
}

.social-icons a {
    color: beige;
    margin: 10px 5px;
    font-size: 1.5em;
    text-decoration: none;
}

.designer {
    background:  #4772ff ;
    padding: auto;
    color: beige;
    border-radius: 5px;
}

/* Images Slightshow */
.slide-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }
        
        .slide {
            display: none;
            width: 100%;
            height: 400px;
            object-fit: cover;
            transition: opacity 0.5s ease;
        }
        
        .slide.active {
            display: block;
        }
        
        .slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .slide-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.5);
            color: white;
            padding: 15px;
            text-align: center;
        }
        
        .slide-nav {
            display: flex;
            justify-content: center;
            margin-top: 15px;
        }
        
        .slide-dot {
            width: 12px;
            height: 12px;
            margin: 0 5px;
            background-color: #bbb;
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .slide-dot.active {
            background-color: #333;
        }
        
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 40px;
            height: 40px;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            border-radius: 50%;
            font-size: 20px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .prev {
            left: 15px;
        }
        
        .next {
            right: 15px;
        }
/* Images Slightshow end */

/* Responsiveness */
@media (max-width: 600px) {

    body{
        background: beige;
    }
   /*Navigation Start */
    header img{
    margin: 13px;
    width: 80px;
    height: 30px;
}

    header{
    display: flex;
    justify-content: space-between;
    background-color: red;
    position: relative;
    width: 100%;
    z-index: 999;
    }



ul li a{
    padding: 15px 20px;
    margin: auto;
}
/*Navigation End*/
    .hero {
        height: 35vh;
    }
    
.hero button{
    left: 38%;
}

.home-container{
    position: relative;
}

    .hero-container h1{
    font-size: 2rem;
    color: yellow;
    }
    

.showcase-image img{
    flex-wrap: wrap;
    width: 100px;
    margin-left: 15%;
    border-radius: 10px;
    margin-top: 40px; 

}

.home-content img{
    width: 330px;
    border-radius: 5px;
    margin-top: 30px;
    margin-bottom: 30px;
    animation: scamImage 2s ease-in-out infinite;
}

 @keyframes  scamImage {
    0% {
        box-shadow: 0 0 50px crimson;
    }
    30%{
        box-shadow: 0 0 50px red;
    }
    50%{
        box-shadow: 0 0 50px green;
    }
    80%{
        box-shadow: 0 0 50px #e2d300;
    }
    100%{
        box-shadow: 0 0 50px rgb(255, 255, 255);
    }
}

.home-container{
    flex-direction: column;
    padding: 5px;
    box-shadow: 0 0 0;
    color: #000000;
    background-color: beige;

}

.home-content{
    margin: 5px;
}

.home-content h1,b{
    color: rgba(255, 0, 0, 0.692);
}

.home-text{
    line-height: 25px;
    letter-spacing: 1.2px;
    border-radius: 5px;
    font-family: Arial, Helvetica, sans-serif;
    box-shadow: 0 0 15px rgb(138, 134, 134);
}

/* Contact Starr */

.contact-header h1{
    font-size: 18px;
    margin-top: 30px;
}

.contact-header p{
    font-size: normal;
}

.contact-infor h2{
    font-size: 25px;
    text-align: center;
    color: #ff0000;
    border-bottom: 1px solid;
    padding-bottom: 10px;
    /* border-color: #ff0000; */
}


.color1{
    padding: 0;
    flex-wrap: wrap;
    background: transparent;
    color: beige;
    
}

.contact-infor{
    width: 39%;
    list-style: decimal;
    margin-left: 0;
    margin: 10px;
    font-size: 12px;
}

.hover{
    border-radius: 10px;
    padding: 5px;
    font-size: 12px;
}

.hover:hover{
    transform: translateY(3px);
    box-shadow: 2px 4px 15px;
}

.branch-names .hover{
    font-size: 20px;
    padding: 0;
    box-shadow: 0 0 18px white;
}

.contact-wrapper{
    font-size: 16px;
    /* border: 1px solid #000; */
}
/* Contact End */

/* footer start */

footer{
    position: relative; 
    /*display: flex;*/
    justify-content: center;
    align-items: center;
}

.footer-container{
    flex: 20%;
    flex-wrap: wrap;
    padding: 5px;
    margin: 5px;

}

  .foot-img img{
    position: absolute;
    width: 400px;
    top: 30%;
    left: 20px;
    margin: auto;
    z-index: -1;
}

    .develop {
        margin: 20px;
    }

/* footer end */

    .social-icons {
        margin: auto;
        font-size: 1.1em;
    }

/* Form Start */
legend{

    text-align: center;
}
/* Form End */
.slide {
      height: 300px;
            }
            
 .prev, .next {
     width: 30px;
     height: 30px;
     font-size: 16px;
            }
  .privacy-section {
    margin: auto;
    padding: 10px 5px;
}

