@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}


:root {
    --white: white;
    --black: black;
    --main-color: #ef4444;
    --background: #161324;
}

span {
    color: black;
}

/* all button hover */
.button {
    width: 120px;
    padding: 5px;
    border: 2px solid var(--main-color);
    text-decoration: none;
    color: var(--main-color);
    background-color: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: .8s;
}

.button:hover {
    color: var(--white);
}

.button::before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
    z-index: -1;
}

.button:hover::before {
    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
}

/* header-navbar section */
.header {
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 200;
}

.logo img {
    width: 80px;
    height: 80px;
}

.logo img:hover {
    transform: scale(1.1);
    transition: .4s;
}

.list-bar {
    display: none;
}

.list-bar i {
    font-size: 30px;
    color: var(--main-color);
    display: none;
    cursor: pointer;
}

#xmark {
    display: none;
    color: var(--main-color);
}

.nav {
    margin-right: -150px;
}

.nav a {
    text-decoration: none;
    color: var(--main-color);
    margin: 0 10px;
    font-weight: 500;
    transition: .4s;

}

.nav a:hover {
    color: var(--main-color);
    transform: translateY(-3px);
}


/* side-navbar */
.side-navbar {
    background-color: rgb(252, 228, 228);
    padding: 30px;
    margin-top: -330px;
    transition: .5s;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 150;
}

.side-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.side-nav a {
    text-decoration: none;
    color: var(--background);
    font-weight: 500;
    transition: .3s;
}

.side-nav a:hover {
    color: var(--main-color);
}

/* Prodect Section */
/* about content */
.about-tmb {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    overflow: hidden;
}

.img-div img {
    height: 400px;
    width: 400px;
}

.img-content {
    width: 50%;
    text-align: center;
}

.img-content p {
    font-size: 18px;
}

.product-img1 {
    width: 100%;
    position: relative;
    aspect-ratio: 16/9;
}

.product-background-img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(../product-assets/images/cover2.png);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: top left;
}

.container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 550PX;
    width: 100px;
    box-shadow: 0 60px 100px rgba(192, 123, 123, 0.25);
    box-sizing: border-box;

}


.product-content {
    justify-content: space-around;
    width: 40%;

}

.product-content i {
    font-size: 30px;
}

.product-content h2 {
    font-size: 25px;
    color: var(--black);
}

.product-content h4 {
    font-size: 30px;
    color: var(--main-color);
    font-weight: bold;
}

.product-content p {
    font-size: 20px;
    line-height: 1.5;
}

.content-2 {
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
}

.logo1 i {
    font-size: 29px;
    height: 50px;
    width: 50px;
    border: 2px solid var(--main-color);
    border-radius: 100%;
    padding: 6px;
}


.product-img:hover {
    transform: scale(1.1);
    transition: 2s;

}

.product-img img {
    height: 400px;
    width: 500px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.sub-content {
    height: 100px;
    width: 250px;
}

.sub-content:hover {
    transform: scale(1.1);
    transition: 2s;

    .logo1 i {
        background-color: var(--main-color);
        color: var(--white);
        transform: rotate(180deg);
        transition: 1s;
        border-radius: 15px;
    }
}

.heading {
    text-align: center;
    font-size: 40px;
    color: var(--main-color);
    margin-top: 20px;
}

.main-content {
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    overflow: hidden;
    gap: 30px;

}

.box1 {
    height: 500px;
    width: 400px;
    border-radius: 30px;
    background-color: #f3d1d1;
    text-align: start;
    overflow: hidden;
    transition: 1s;
    padding: 30px;
    position: relative;
}

.logo2 i {
    font-size: 30px;
    height: 60px;
    width: 70px;
    color: var(--main-color);
    text-align: center;
}

.box-content p {
    line-height: 1.5;
    font-size: 14px;
}

.box-content h2 {
    font-size: 29px;
}

.logo3 i {
    position: absolute;
    right: -2px;
    bottom: -2px;
    background-color: #fff;
    padding: 20px;
    font-size: 35px;
    border-radius: 100px;
    color: var(--main-color);
    transition: .4s;

}

.logo3 i:hover {
    background-color: var(--main-color);
    color: var(--white);
    cursor: pointer;
}

.box1:hover {

    .logo2 i {
        transform: rotateY(360deg);
        transition: 2s;
        color: black;
    }

}


.main-uses {
    height: max-content;
    align-items: center;
    margin-left: 40px;
    display: block;
    padding: 10px;
}

.uses-para {
    font-size: 18px;
    line-height: 1.5;
    text-align: start;
}

.bullets {
    display: flex;
    align-items: center;
    justify-content: space-around;
    overflow: hidden;

}

.bullet-points {
    display: block;
    overflow: hidden;
}

.bullets-list {
    display: flex;
    text-align: start;
    gap: 5px;
}

.bullets-list p {
    font-size: 16px;
}

.bullets-list i {
    font-size: 25px;
    color: var(--main-color);
}

/*  */
.bullets-details {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    overflow: hidden;

}

.bullet-points-details {
    display: block;
    overflow: hidden;
}

.bullets-list-details {
    display: flex;
    gap: 5px;
}

.bullets-list-details p {
    font-size: 18px;
    text-align: start;
}

.bullets-list-details i {
    font-size: 25px;
    color: var(--main-color);
}

/* footer-section */
.footer-section {
    width: 100%;
    height: max-content;
    background-color: var(--background);
    margin-top: 5%;
    padding: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    align-items: center;
}

/* footer-address */
.footer-address {
    width: 300px;
    color: var(--white);
}

.footer-address i {
    font-size: 22px;
}

.footer-address p {
    font-size: 14px;
    margin-bottom: 0px;
}

/* footer-social-media links */
.footer-solical-link i {
    margin: 0 5px;
    border: 2px solid var(--white);
    padding: 5px;
    border-radius: 100px;
    transition: .3s;
    color: var(--white);
}

.footer-solical-link i:hover {
    border: 2px solid var(--main-color);
    background-color: var(--main-color);
    color: var(--white);
    cursor: pointer;
    transform: translateY(-10px);
}

/* footer-service */
.footer-service {
    color: var(--white);
}

.footer-services {
    width: 310px;
    display: flex;
    gap: 10px;
    transition: .3s;

}

.footer-services a {
    text-decoration: none;
    color: var(--white);
    transition: .3s;
    font-size: 14px;
}

.footer-services a:hover {
    color: var(--main-color);
}

/* footer-navbar */
.footer-nav-link {
    display: flex;
    flex-direction: column;
}

.footer-nav-link a {
    text-decoration: none;
    transition: .2s;
    color: var(--white);
    font-size: 14px;

}

.footer-nav-link a:hover {
    color: var(--main-color);
    transform: translateX(5px);
}

/* footer-email */
.footer-email input {
    background-color: transparent;
    border: none;
    border: 1px solid var(--white);
    padding: 5px;
    outline: none;
    color: white;
}

.footer-finish {
    text-align: center;
    margin-top: 3%;
}