/* @import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header {
  height: 90px;
  width: 100vw;
  background-color: pink;
}

.logo {
  align-items: center;
  height: 90px;
  width: 189px;
  display: flex;
  justify-content: center;
}

nav {
  display: flex;
  height: 90px;
}

.location {
  display: flex;
  justify-content: center;
  align-items: center;
}

.location_icon i {
    font-size: 24px;
    margin-left: 80px;
    color: rgb(24, 43, 68);
    margin-right: 13px;
    height: 90px;
    width: 152px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.location_text .location_value {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 400px;
  padding-right: 8px;
}

nav .logo h1 {
  font-family: "Pacifico", cursive;
  font-weight: 800;
  color: rgb(24, 43, 68);
} */
/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Ribeye&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: rgb(24, 43, 68);
  color: white;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Ribeye", serif;
}


nav {
  display: flex;
}

nav .search-bar {
  display: flex;
  margin-right: 60px;
}

nav .search-bar input {
  height: 27px;
  width: 25vw;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  outline: none;
  border: none;
  font-size: 14px;
}

nav .search-bar button {
  height: 27px;
  width: 56px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  background-color: white;
  outline: none;
  border: none;
  font-size: 15px;
  color: rgb(24, 43, 68);
  padding-right: 9px;
}


nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: rgb(189, 195, 202);
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

.hero {
  text-align: right;
  padding: 4rem 2rem;
  background-image: url(hero_bg.png);
  background-size: cover;
  /* background-color: #c8e6c9; */
  color: white;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  margin-right: 55px;
}

.hero p {
  font-size: 1.2rem;
  color: white;
  margin-right: 55px;
}

.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
}

.product-card {
  background: white;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  max-width: 100%;
  height: 245px;
  width: 245px;
  border-radius: 10px;
}

.product-card button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgb(24, 43, 68);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.product-card button:hover {
  background-color: rgb(6, 24, 47);
}

.product-card {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeIn 0.5s ease-in-out;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart {
  background: #fff;
  padding: 2rem;
  margin: 2rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.cart h2 {
  margin-bottom: 1rem;
}

.cart ul {
  list-style-type: none;
  padding: 0;
}

.cart li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}

.cart button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: rgb(24, 43, 68);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.cart button:hover {
  background-color: rgb(6, 24, 47);
}

.features-section {
  background-color: #f5f5f5;
  /* padding: 40px 0;
  margin: 60px 0; */
  padding: 2rem;
  margin: 4rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.features-section .feature-flex {
  flex-wrap: wrap;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
  gap: 20px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 14px;
}

.feature-title {
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 10px;
}


.feature-decription {
  font-size: 14px;
  color: #666666;
}

.feature-card .feature-icon i {
  height: 50px;
  width: 50px;
  font-size: 33px;
  color: rgb(6, 24, 47);
}

.ap-download {
  background-color: #f5f5f5;
  padding: 2rem;
  margin: 4rem 2rem;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.ap-text h2 {
  font-size: 28px;
  color: #333333;
}

.app-text p {
  margin-bottom: 20px;
  color: #666666;
  font-size: 16px;
}

.ap-buttons a img {
  height: 40px;
  margin-top: 12px;
}

.footer-content {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 40px;
  margin: 0 60px;
}

.footer-content .footer-section {
  display: flex;
  flex-direction: column;
}

.footer-section h3 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-section a {
  text-decoration: none;
  color: #cccccc;
  font-size: 13px;
  margin-bottom: 16px;
}

.footer-section a:hover {
  color: #555353;
}

footer {
  background-color: rgb(24, 43, 68);
  color: #fff;
  padding: 60px 0 20px;
  margin-top: auto;
  width: 100%;
  position: relative;
  bottom: 0;
}

.copy-right {
  border-top: #b2aeae17 solid 1px;
  text-align: center;
  padding: 1rem;
  background-color: rgb(24, 43, 68);
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 2rem;
  font-size: 12px;
}

.footer-cart {
  display: flex;
  justify-content: center;
  align-items: center;
}


/* contact-us */
.title {
  font-size: 63px;
  font-weight: 400;

}

.title span {
  font-weight: 400;
  color: #c31765;
}

.details {
  font-size: 16px;
  color: #171717;
  font-weight: 400;
  margin-bottom: 10px;
}

.main {
  margin: 50px 0 190px 45px;
}

.about {
  margin: 50px 0 190px 45px;
}

.aboutus-hero img {
  width: 100%;
  height: 50vh;
}

#topBtn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: none;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  background:#fff;
  color: rgb(24, 43, 68);
  cursor: pointer;
}


/* @media (max-width: 375px) {
  nav .search-bar input {
    width: 43vw;
    font-size: 12px;
  }

  nav .search-bar button {
    width: 57px;
    font-size: 13px;
    margin-right: 0;
  }

  header {
    padding: 1rem 1rem;
  }
  .logo{
    font-size: 18px;
  }
  
} 
 */

/* Responsive Navbar */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
    background: rgb(24, 43, 68);
    position: absolute;
    top: 60px;
    left: 0;
  }

  nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  nav ul li {
    padding: 1rem;
    text-align: center;
  }
}


@media (max-width: 952px) {
  nav ul {
    gap: 1rem;
    font-size: 14px;
  }

  header {
    padding: 1rem 1rem;
  }

  nav .search-bar input {
    /* width: 20vw; */
    width: 181px;
    font-size: 11px;
  }

  nav .search-bar button {
    width: 50px;
    font-size: 12px;
  }

  nav .search-bar {
    margin-right: 29px;
    margin-top: 9px;
  }

  .logo {
    font-size: 24px;

  }
}