*{
    padding: 0;
    list-style: none;
    text-decoration: none;
    margin: 0;
    font-family:Arial, Helvetica, sans-serif;
}
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; 
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:rgba(255, 111, 0, 0.818);
    padding: 5px 20px;
}
.logo img {
    width: 50px;
    border-radius:50%;
}
.navbar {
    display: flex;
}
.navbar a {
    font-weight: 400;
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    font-weight: 600;
}
.header-btn a {
    padding: 10px 20px;
    position: relative;
    color: white;
    font-weight: 600;
}
.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background-color:white;
    transition: 0.5s;
}
.header-btn a:hover::after {
    width: 100%;
}
.header-btn .sign-in {
    background-color:rgb(212, 115, 66);
    color: white;
    border-radius: 1rem;
}
.header-btn .sign-in:hover {
    background-color: orangered;
}
.header-btn .sign-up { 
    border-radius: 1rem;
}
.header-btn .sign-up:hover {
    background-color:blue;
    color: aliceblue;
}
.Home::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    z-index: 1; 
}
.Home {
    position: relative; 
    width: 100vw;
    height: 100vh;
    background-image: url("images/KrishStore.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; 
    display: grid;
    align-items: center;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 100px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
    overflow:hidden;
}


.Home span{
color: orange;
}
.links{
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 20px;
}
.links img{
    width: 120px;
}
.text{
    z-index:2;
}
.text span{
    color: #fff;
}
.text p{
font-size: 1.5rem;
color: aliceblue;
font-family:Arial, Helvetica, sans-serif;   
}
.text h1{
    color: #f1860c;
    font-size:3rem;
    line-height: normal;
    letter-spacing: 1px;
}
.links img{
border-radius: 2px;
transition:0.5s;
}
.links img:hover{
transform: scale(1.1);
cursor: pointer;
}
.form-container{
    text-align: center;
    width:50%;
    height:65%;
    z-index:2;
    margin-left:50px;
    backdrop-filter:blur(10px);
    background-color: rgba(255,255,255, 0.1);
    box-shadow: 2px 2px rgba(0, 0, 0, 0.6);
    padding:1rem;
    border-radius:5px;
}
.form-container h1{
    color: rgb(199, 93, 0);
    font-size: 2em;
}
.form-container form{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 20px 20px;
}
.form-container select{
    text-align: center;
}
.form-container select,input{
    padding:1em 3.5rem;
    border-radius:10px;
    border: none;
    font-size: medium;
    text-align: center;
    box-shadow: 2px 3px rgba(0, 0, 0, 0.6);
}
.form-container textarea{
    text-align: center;
    font-size: medium;
    border-radius: 5px;
}
button{
    width:8em;
    height:3em;
    font-size:1em;
    background-color: orange;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    font-weight: 700;
    color: aliceblue;
    transition:background-color  0.5s ease-in-out;
    text-align: center;
}
button:hover{
transform: scale(1.1);
background-color:rgb(210, 95, 95);
}
.service{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 50px;
}
.heading span{
     color: orange;
}
.heading{
    word-spacing:5px;
    padding: 30px 20px;
    margin: 40px;
    border-radius:10px;
    box-shadow:1px 1px 1px 1px rgb(158, 154, 154);
    text-align: center;
    transition: box-shadow 0.3;
    background-color: rgb(241, 246, 246);
    cursor: pointer;
    transition: 0.5s;
}
.heading h1{
    color: black;
}
.box{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction:column;
    padding:30px 20px;
    margin: 40px;
    border-radius:10px;
    box-shadow:1px 1px 1px 1px rgb(144, 140, 140);
    text-align: center;
    font-size:1em;
    transition: box-shadow 0.3;
    background-color: rgb(241, 246, 246);
    cursor: pointer;
    transition: 0.5s;
    width:500px;
}
.box i{
    width: 40px;
    height:40px;
    color: #b16316;
    font-size:x-large;
    background-color: rgb(214, 168, 112);
    margin-bottom: 10px;
    transition: color 0.3s;
    border: 1px solid;
    border-radius:50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}
.box i:hover{
    scale: 1.1;
    background-color: #e18f3d;
    color: #fff;
}
.box:hover,.heading:hover{
scale: 1.1;
box-shadow:1px 1px 2px 2px rgb(144, 140, 140);
}
.box h2{
margin-bottom: 10px;
}
.head{
    text-align: center;
    margin: 1em;
    padding: 1em;
}
.head h1{
    color: #ce7d2b;
    font-size:40px;
    font-weight: 600;
}
.head p{
    font-size: 1.9rem;
    line-height: normal;
}
.boxing{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap:30px;
}
.boxes{
width:400px;
height:450px;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
background-color: rgb(255, 255, 255);
border-radius:10px;
gap:0.5em;
box-shadow:2px 2px 3px 2px rgb(158, 146, 146);

}
.boxes img{
    width:300px;
    height:250px;
    border-radius:5px;
    cursor: pointer;
    object-fit: cover;
    transition: 0.5s;
    padding:1em;
}
.boxes h1{
    color: black;
    font-size:25px;
    font-weight: 700;
}
.boxes img:hover{
    transform: scale(1.1);
}
.about-me{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    margin-top:0px;
    margin-bottom:50px;
}
.about-me img{
    border-radius: 10px;
    object-fit: cover;
}
.customer{
    margin-left: 50px;
    text-align: center;
    width:60%;
    height: 100%;
    display: flex;
    align-items: center;
}
.customer img{
    width:100%;
    height:70%;
}
.about{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
    font-size:20px;
}
.about p{
    margin-right:60px;
}
.Review h1{
    color: #b16316;
    margin-bottom: 20px;
}
.Review{
    text-align: center;
    margin-top: 0px;
}
.review{
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width:350px;
height:350px;
padding: 20px 20px;
box-shadow: 2px 2px 3px rgb(147, 146, 146);
margin-top: 20px;
gap: 10px;
}
.review img{
    width:40%;
    height: 40%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 1px 1px rgb(147, 146, 146);
    cursor: pointer;
    transition: 0.5s;
}
.review img:hover{
    transform: scale(1.1);
}
.reviews{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.subscribe{
    width: 100%;
    height:200px;
    background-color: rgb(185, 128, 128);
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 10px;
}
.rights{
display: flex;
align-items: center;
justify-content:space-between;
}
.sub{
    gap: 20px;
}
/* Mobile Devices (up to 600px) */
@media screen and (max-width:991px) {
    header {
        padding:18px 40px;
    }
    section{
        padding :50px 40px;
    }
    .navbar a {
        padding: 8px;
    }
    .Home {
        grid-template-columns: 1fr;
        padding: 20px;
        text-align: center;
    }
    .text h1 {
        font-size: 2rem;
    }
    .form-container {
        width: 90%;
        margin: auto;
    }
    .service {
        text-align: center;
        padding: 10px;
    }
    .boxing {
        flex-direction: column;
    }
    .about-me {
        grid-template-columns: 1fr;
    }
    .customer {
        width:70%;
        margin: auto;
    }
    .reviews {
        flex-direction: column;
    }
    .subscribe {
        text-align: center;
    }
    .rights {
        flex-direction: column;
        text-align: center;
    }
    
}

/* Tablets (601px - 1024px) */
@media screen and (max-width: 1024px) {
    .Home {
        padding: 20px;
    }
    .text h1 {
        font-size: 2.5rem;
    }
    .form-container {
        width: 70%;
    }
    .boxing {
        justify-content: center;
    }
    .about-me {
        grid-template-columns: 1fr;
    }
    .customer {
        width: 80%;
        margin: auto;
    }
    .reviews {
        justify-content: center;
    }
}
