@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: 0px;
  padding: 0px;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
  font-family: "Poppins";
}

/* Navigation Bar Started */

header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 100px;
  position: sticky;
  top: 0;
  background-color: white;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.logo {
  color: black;
  font-size: 28px;
  font-weight: bold;
}
header .logo {
  width: 150px;
  height: 60px;
}
header .logo img {
  width: 100%;
  height: 100%;
}

.hamburger {
  display: none;
}

.nav-bar ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-bar ul li{
  text-align: center;
}
.nav-bar ul li a p{
  font-size: 18px;
  padding: 0px 25px;
  border-radius: 50px;
  transition: 0.2s;
  color: #ce2144;
  font-weight: 500;
}

.nav-bar ul li a p:hover {
  color: #2d95d1;
}

.activelink {
  color: #2d95d1;
}

@media only screen and (max-width: 1320px) {
  header {
    padding: 0px 50px;
  }
  header .logo {
    width: 130px;
    height: 45px;
  }
}

@media only screen and (max-width: 1100px) {
  header {
    padding: 0px 30px;
  }
}

@media only screen and (max-width: 1060px) {
  .hamburger {
    display: block;
    cursor: pointer;
  }

  .hamburger .line {
    width: 30px;
    height: 3px;
    background-color: #ce2144;
    margin: 6px 0px;
  }

  .nav-bar {
    position: absolute;
    height: 0px;
    top: 90px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #ce2144;
    transition: 0.2s;
    overflow: hidden;
  }

  .nav-bar ul li a p{
    color: white;
    margin: 0px 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 12px;
  }

  .nav-bar ul {
    display: block;
    text-align: center;
    margin: 80px;
    transition: 0.2s;
    opacity: 0;
  }

  .nav-bar ul li {
    margin: 20px 0px;
  }

  .nav-bar.active {
    height: 450px;
  }

  .nav-bar.active ul {
    opacity: 1;
  }

  .nav-bar ul li a p:hover {
    color: white !important;
    background-color: #2d95d1;
  }
}

/* Navigation Bar Ended */

/* Hero section Slide Started 

.home {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 50px 8% 0px;
  height: 80vh;
}

.home-content {
  max-width: 0px;
  max-width: 800px;
  text-align: center;
}

.home-content h1 {
  font-size: 50px;
  line-height: 1.2;
  color: #cb2142;
}

.home-content p {
  font-size: 25px;
  margin: 15px 0px 30px;
}

.home-content .btn {
  display: inline-block;
  padding: 15px 30px;
  background-color: #ce2144;
  border: 2px solid #e36887;
  border-radius: 20px;
  color: white;
  letter-spacing: 1px;
  font-size: 18px;
  transition: 0.5s;
}

.home-content .btn:hover {
  background-color: transparent;
  color: black;
}

.img_container {
  max-width: 500px;
  height: 500px;
}
.img_container img {
  width: 100%;
}

@media only screen and (max-width: 1320px) {
  .home {
    height: auto;
  }
  .home-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .home-content {
    max-width: 600px;
  }

  .home-content p {
    font-size: 19px;
    margin: 15px 0px 30px;
  }

  .img_container {
    max-width: 450px;
    height: 450px;
  }
}

@media only screen and (max-width: 1060px) {
  .home {
    flex-direction: column;
    overflow: hidden;
  }
  .home-content h1 {
    font-size: 40px;
    line-height: 1.2;
  }

  .home-content p {
    font-size: 20px;
    margin: 15px 0px 30px;
  }
  .img_container {
    display: none;
  }
}
*/

/* Hero section Slide Ended */

/* Product Started */

.product {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
  position: relative;
  z-index: 0;
}

.product .best_seller h3 {
  font-size: 40px;
  opacity: 0.8;
  text-align: center;
  margin-bottom: 20px;
}
.card-wrapper a {
  color: black;
  padding: 0px 10px;
}

.container {
  max-width: 1420px;
  width: 100%;
  padding: 40px 0;
  height: 450px;
}
.slide-container {
  padding: 0 10px;
  background-color: white;
}
.card {
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0);

  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card .image-box {
  height: 350px;
}
.card .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 8px 8px 0 0;
}
.card .product-name {
  padding: 15px;
}
.product-name .name {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (max-width: 1320px) {
  .product .best_seller h3 {
    font-size: 30px;
    opacity: 0.8;
  }
  .container {
    height: auto;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .card .image-box {
    height: 200px;
  }
  .card .image-box img {
    width: 100%;
    height: 100%;
    border-radius: 8px 8px 0 0;
  }
  .product-name .name {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
  }
  .product{
    margin-top: unset;
  }
}

/* Product Ended */

/* Steps to order Started */
.place-order {
  background-color: rgb(251,223,159,0.4);
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  padding-bottom: 50px;
}

.place-order .card {
  width: 350px;
  height: 550px;
  border: 1px solid lightgrey;
  border-radius: 50px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
}
.place-order .card .circle {
  background-color: #D81B4E;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50px;
  position: absolute;
  top: -25px;
  left: 155px;
}

.place-order .card .circle .number {
  line-height: 50px;
  color: white;
}
.place-order .card .img {
  width: 150px;
  height: 150px;
}
.place-order .card .img-3 {
  width: 120px;
  height: 120px;
  margin-top: 20px;
}

.place-order .icon {
  display: flex;
}
.place-order .icon .icons {
  height: 50px;
  width: 50px;
}
.place-order .card .img img {
  width: 100%;
  height: 100%;
}
.place-order .card .text {
  text-align: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  margin-top: 20px;
}
.place-order .card .text h3 {
  font-weight: bold;
  font-size: 25px;
  margin-bottom: 20px;
}
.place-order .card .text p {
  max-width: 90%;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
}
.place-order .card .text ul li {
  font-size: 15px;
  font-weight: bold;
  color: rgba(0, 0, 0, 0.5);
  width: 250px;
}
.place-order .card .text ul {
  width: 250x;
  margin-bottom: 5px;
}

.place-order .order {
  margin: 50px 0px;
}
.place-order .order h3{
  text-align: center;
}

.place-order .card-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  row-gap: 50px;
}

@media only screen and (max-width: 1100px) {
  .place-order {
    height: 100%;
  }
  .place-order .card {
    width: 300px;
    height: 520px;
  }
  .place-order .card .circle {
    top: -25px;
    left: 100px;
  }
  .place-order .card .text h3 {
    font-size: 22px;
  }
  .place-order .card .text p {
    font-size: 13px;
  }
  .place-order .card .img {
    width: 150px;
    height: 150px;
  }
}

@media only screen and (max-width: 820px) {
  .place-order {
    height: 100%;
  }
  .place-order .card-wrapper {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .place-order .card .circle {
    width: 50px;
    height: 50px;
  }
  .place-order .card .circle .number {
    line-height: 50px;
    color: white;
  }
  .place-order .card {
    width: 350px;
    height: 350px;
  }
  .place-order .card .text{
    margin-top: 0px;
  }
  .place-order .card .circle {
    top: -15px;
    left: -5px;
  }
  .place-order .card .text h3 {
    font-size: 22px;
  }
  .place-order .card .text p {
    font-size: 12px;
  }
  .place-order .card .img {
    width: 130px;
    height: 130px;
  }
  .place-order .card-2 {
    height: 500px;
  }
}
/* Steps to order Ended */

/* Steps to why-choose-us Started */
.choose-use {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  column-gap: 50px;
  padding: 50px;
  row-gap: 50px;
}
.del-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 0px 50px 50px;
}
.delivery {
  background-color: rgb(251,223,159,0.4);
  max-width: 500px;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 50px;
  row-gap: 15px;
}
.del-container {
  width: 80px;
  height: 80px;
}
.del-img {
  width: 100%;
  height: 100%;
}
.del-content {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

.choose-use h3 {
  font-size: 22px;
}

@media only screen and (max-width: 800px) {
  .delivery {
    width: 350px;
    height: 250px;
  }
  .choose-use {
    row-gap: 20px;
  }
  .del-wrapper {
    padding: 0px;
    row-gap: 15px;
  }
  .del-content {
    text-align: center;
    font-size: 15px;
    font-weight: 500;
  }
}
/* Steps to why-choose-us Ended */

/* Footer Started */

.footer {
  width: 100%;
  background: #D81B4E;
  display: block;
}
.footer img {
  width: 200px;
  background-color: rgba(255,255,255,1);
  padding: 20px;
  border-radius: 20px;
}
.inner-footer {
  width: 95%;
  margin: auto;
  padding: 30px 10px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
}

.footer-items {
  width: 25%;
  padding: 10px 20px;
  box-sizing: border-box;
  color: #fff;
}

.footer-items p {
  font-size: 14px;
  text-align: justify;
  line-height: 25px;
  color: #fff;
}
.footer-items h1 {
  color: #fff;
}

.border1 {
  height: 3px;
  width: 40px;
  background: white;
  color: white;
  background-color: white;
  border: 0px;
}
.footer ul {
  list-style: none;
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.footer-items ul span{
  display: inline-flex;
  width: 300px;

}
.footer ul a {
  text-decoration: none;
  outline: none;
  color: #fff;
  transition: 0.3s;
}
.footer ul a:hover {
  text-decoration: underline;
}

.footer ul li {
  margin: 10px 0;
}

.footer li i {
  margin-right: 20px;
}

.footer-bottom {
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}



@media screen and (max-width: 1275px) {
  .footer-items {
    width: 50%;
  }
}


@media screen and (max-width: 660px) {
  .footer-items {
    width: 100%;
  }
  .footer-items img {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 500px)
{
  .footer ul {
    list-style: none;
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  .footer ul span{
    width: 250px;
    font-size: 10px;
  }
  .footer-items p{
    margin-left: unset;
  }
}

/* Footer Ended */
