@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Quicksand', sans-serif;
    width: 100%;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
}

.container {
    max-width: 1100px;
    margin: auto;
}

/*Utility Classes*/
.primary-text {
    color: #3a79ff;
}

a {
    text-decoration: none;
}

/*header start*/
header {
    height: 100vh;
    background: url(../img/Hader.jpg) center/cover no-repeat;
    position: relative;
    overflow: hidden;
}

.navbar {
    position: fixed;
    z-index: 5;
    width: 100%;
}

header .content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 80%;
}

header .content h1 {
    font-size: 40px;
    color: white;
}

/*header end*/

/*about start*/
#about {
    padding-top: 15px;
    height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f4f4;
}

#about .title,
#offers .title {
    text-align: center;
    margin-bottom: 4rem;
}

#about h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

#about h2 {
    color: #383848;
}

#about .title p {
    font-size: 14px;
    color: #707070;
    font-weight: 600;
}

#about .about-content {
    display: flex;
    justify-content: space-between;
}

#about .about-content img {
    max-width: 500px;
    margin-top: -30px;
}

#about .about-content p {
    color: #9a9a9a;
    margin-right: 7rem;
    font-weight: 500;
    line-height: 1.6;
}

/*about end*/

/*product start*/

#products {
    background-color: #e1dddd;
}

#products .title {
    text-align: center;
    margin-top: 50px;
}

#products .container {
    max-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

#products .container .title h2 {
    font-size: 45px;
    margin-bottom: 20px;
}

#products .container .title p {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}

#products .product-items {
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

#products .text p {
    color: #024EF2;
}

.product-item {
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.product-item .text {
    transform: translateX(100%) ease-in-out;
}

#products .product-items .product-item img {
    display: block;
    transition: transform 0.4s;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.product-item .text {
    left: 50%;
    padding: 10px;
    transform: translateX(-10%);
    opacity: 0;
    transition: opacity 0.8s ease;
}

#products .title h2 {
    color: #383848;
    margin-top: 50px;
    font-size: 30px;
    margin-bottom: 30px;
    font-weight: 700;
}

#products .product-items .product-item {
    display: flex;
    margin: 20px 0;
}

#products .product-items .product-item h3 {
    font-size: 20px;
    margin: 15px 5px;
    padding-bottom: 10px;
    color: #050267;
    border-bottom: dashed 3px rgb(168, 157, 255);
}

#products .product-items .product-item span {
    font-size: 18px;
    font-weight: 600;
    float: right;
}

#products .btn-thrid {
    text-align: center;
    margin: auto;
    border: solid 1px;
    border-radius: 15px;
    color: white;
    background-color: #1A34FF;
    width: fit-content;
    margin-bottom: 50px;
}

.product-items-right {
    margin-top: -50px;

}

#products .btn-thrid:hover {
    background-color: #383848;
}

.product-item img:hover {
    transform: translateX(0%);
}

.product-item .text:hover {
    transform: translateX(0);
    transition: all 0.1s;
}

/*product end*/

/*Gallary start*/
#gallary {
    width: 80%;
    margin: auto;
}

#gallary h2 {
    font-size: 40px;
    align-items: center;
    color: #0248DE;
    margin: 15px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 20px;
}

.carousel-indicators .active {
    background-color: #383848;
}

/*Gallary End*/

/*Contact start*/
#contact {
    padding: 2rem;
    color: #383848;
    height: 80vh;
    background-color: white;
}

#contact .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    width: 70%;
    margin: auto;
}

#contact .container .text {
    width: 50%;
}

#contact .container .text h2 {
    font-size: 30px;
    margin-bottom: 15px;
}

.container .text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #9a9a9a;
    font-weight: 300;
}

#contact .container .text .icon {
    color: #1A34FF;
    margin-right: 2.5px;
}


#contact .container .text a {
    font-size: 35px;
    color: #383848;
    margin-left: 5px;
    width: fit-content;
    text-align: center;
}

#contact .container .text a:hover {
    color: #1A34FF;
}

#contact .input {
    display: flex;
    flex-direction: column;
    width: 50%;
    padding-top: 5rem;
}

#contact .input input {
    padding: 10px 15px;
    background-color: #e4e4e4;
    border: none;
    height: 50px;
    margin-bottom: 30px;
}

#contact .input textarea {
    margin-bottom: 30px;
    background-color: #e4e4e4;
    padding: 10px 15px;
    height: 125px;
    border: none;
}

#contact .input button {
    background-color: #1A34FF;
    cursor: pointer;
    color: #f4f4f4;
    width: fit-content;
    margin: auto;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

#contact .input a {
    color: #fff;
}

#contact .input button:hover {
    background-color: #383848;
}

/*Contact End*/

/*Footer start*/
footer {
    color: #f4f4f4;
    font-size: 14px;
    margin-top: 40px;
    padding: 20px;
    background-color: #383848;
    text-align: center;
}

footer a {
    color: #f4f4f4;
    font-weight: 600;
}

/*Footer End*/

/* Responsineness */
/* Medium Screen + Tablet*/

@media (max-width: 1000px) {
    .navbar {
        width: 100%;
    }

    .navbar img {
        margin-left: 20px;
    }

    header .content h1 {
        font-size: 30px;
        text-align: center;
        font-weight: 700;
    }

    #about {
        height: auto;
        padding: 4rem 2rem;
    }

    #about .title {
        margin-bottom: 2rem;
    }

    #about h2 {
        font-size: 30px;
        margin-bottom: 15px;
    }

    #about .about-content p {
        margin-right: 1rem;
        font-size: 14px;
    }

    #about img {
        width: 250px;
    }

    #products .product-items {
        display: block;
        margin-bottom: 10px;
    }

    #products .title {
        margin-top: 30px;
        margin-bottom: 1rem;
    }

    #products .product-items .product-item img {
        width: 50px;
        height: 50px;
        margin-right: 10px;
    }

    #products .product-items .product-item

    #products .product-items .product-item span {
        font-size: 14px;
    }

    #products .title {
        margin-top: 10px;
    }

    #products .product-items {
        gap: 20px;
    }

    #products .container {
        gap: 25px;
    }

    #products .product-items .product-item h3 {
        font-size: 18px;
        margin: 10px 5px;
    }

    #products .product-items .product-item p {
        font-size: 12px;
    }

    #products .container .title h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    #products .container .title p {
        font-size: 10px;
    }

    .product-item .text  h3{
        font-size: 15px;
        margin: 10px 5px;
    }

    #gallary {
        height: auto;
        padding: 5rem 0 6rem;
    }

    #gallary .container .gallary-img {
        align-items: center;
        display: flex;
        flex-direction: column;
        margin: auto;
    }

    #gallary .container .gallary-img img {
        width: 95%;
        height: 200px;
    }

    .a5 {
        height: 200px;
    }

    .a6 {
        height: 200px;
    }

    #contact {
        padding-top: 0;
    }

    #contact .container {
        flex-direction: initial;
        height: auto;
        text-align: center;
        width: 90%;
    }

    #contact .container .text {
        width: 100%;
        margin: auto;
        text-align: start;
    }

    #contact .container .text h2 {
        font-size: 25px;
        margin-bottom: 10px;
    }

    #contact .container .input {
        width: 130%;
        padding: 2.5rem;
        margin-bottom: 0;
    }

    footer {
        margin-top: 10px;
    }
}

/* Mobile Devices */
@media (max-width: 600px) {
    #navbar {
        flex-direction: column;
    }

    #navbar img {
        margin-bottom: 20px;
    }

    #navbar ul {
        /* justify-items: center; */
        font-size: 15px;
    }

    header .content h1 {
        font-size: 28px;
    }

    header .content p {
        font-size: 15px;
    }

    #about .about-content {
        flex-direction: column;
    }

    #about .about-content a {
        margin: 2rem 0;
    }

    #about img {
        display: none;
    }

    #offers {
        height: auto;
        padding: 30px 10px;
    }

    #offers .offers-items {
        flex-direction: column;
    }

    #menu .menu-items .menu-item {
        margin: 20px 10px;
    }

    #daytime .daytime-items {
        display: block;
        height: auto;
        padding: 30px 0;
    }

    #daytime .daytime-items .daytime-item {
        margin-top: 20px;
    }

    #gallary {
        height: auto;
        padding: 30px 10px;
    }

    #gallary .container .gallary-img {
        width: 95%;
        margin: auto;
    }

    #contact {
        padding: 1rem;
        gap: 15px;
        width: 95%;
        height: auto;
    }

    #contact .container {
        width: 100%;
        flex-direction: column;
    }

    #contact .container .text h2 {
        font-size: 20px;
        margin-bottom: 7.5px;
    }

    #contact .container .text p {
        font-size: 15px;
        margin-bottom: 7.5px;
    }

    #contact .container .text .icon {
        margin-right: 1.25px;
    }

    #contact .container .text a {
        font-size: 25px;
    }

    #contact .input input {
        height: 40px;
        margin-bottom: 20px;
    }

    #contact .input textarea {
        margin-bottom: 20px;
        height: 100px;
    }

    #contact .input button {
        width: 100%;
    }

    #contact .input a {
        font-size: 10px;
    }

    #gallary .a5 {
        height: 150px;
    }

    #gallary .a6 {
        height: 150px;
    }

    #map iframe {
        width: 200px;
        height: 200px;
    }
}
