
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Georgia', serif;
}

/* ===== NAVIGATION BAR ===== */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background-color:#FAF8F6;

}
.navbar:hover {
    background-color: #fff;

}

.menu {
  font-size: 24px;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
}
@media only screen and (min-width: 360px) and (max-width: 640px) {
  .navbar {
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    text-align: center;
  }

  .menu, .icon {
    font-size: 18px;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .text-section h2 {
    font-size: 1.4rem;
  }

  .image-section img {
    max-width: 450px;
  }

  .product-section {
    flex-direction: column;
    padding: 20px;
  }

  .product-card {
    max-width: 100%;
  }

  .testimonial-section {
    flex-direction: column;
    padding: 20px;
  }

  .slide {
    flex-direction: column;
  }

  .testimonial-text {
    text-align: center;
    padding: 20px;
  }

  footer {
    padding: 40px 20px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}


.logo {
  font-size: 24px;
  letter-spacing: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.country {
  border: none;
  background: transparent;
  font-size: 14px;
  cursor: pointer;
}

.icon {
  font-size: 20px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}



/* ===== HERO SECTION ===== */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 90vh;
  background-color: #fafafa;
}

.text-section {
  flex: 1 1 400px;
  padding: 20px;
  animation: fadeIn 1.2s ease-in-out both;
}

.text-section h2 {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: black;
  color: white;
  text-decoration: none;
  letter-spacing: 1px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #444;
}

.image-section {
  flex: 1 1 500px;
  text-align: center;
}


/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}

@keyframes fadeIn3D {
  0% {
    opacity: 0;
    transform: rotateY(-15deg) translateZ(-100px);
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg) translateZ(0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet View */
@media only screen and (max-width: 1024px) {
  .hero {
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
  }

  .text-section h2 {
    font-size: 2.2rem;
  }

  .image-section img {
    max-width: 450px;
  }
}
.image_photo{
    width:100%;
    height:400px;
}
/* Mobile View */
@media only screen and (min-width: 360px) and (max-width: 640px) {
  .hero {
    padding: 30px 16px;
  }

  .text-section h2 {
    font-size: 1em;
  }

  .image-section img {
    max-width: 300px;
  }
  .h5{
    text-align: center;
  }
  .image_photo{
         max-width: 100%;
         width: auto;
  }
}
.product-section {
  display: flex;
  flex-wrap: wrap;
  width:100%;
  justify-content: space-evenly;
  gap: 30px;
  padding: 60px 80px;
  background-color: #FAF8F6;
}
.view-all-container {
  width: 100%;
  text-align: center;
  background-color: #FAF8F6;
  padding: 40px 0 80px;
}

.view-all-btn {
  background: black;
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: white;
  color: black;
  border: 1px solid black;
}
.product-card {
  flex: 1 1 250px;
  max-width: 200px;

  text-align: center;
  background: #fff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

.product-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 8px;
}

.price {
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

.price .old {
  text-decoration: line-through;
  color: #888;
  margin: 0 5px;
}

.price .offer {
  color: red;
  font-size: 0.9rem;
}

/* ===== BUTTON WITH 3D ANIMATION ===== */

.btn {
  position: relative;
  overflow: hidden;
  background: black;
  color: white;
  border: none;
  padding: 10px 25px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 4px;
  transition: background 0.3s ease;
}

/* Add a pseudo-element for sliding text */
.btn::before {
  content: "ADD TO CART";
  position: absolute;
  left: -100%;
  top: 0;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: black;
  transition: all 0.4s ease;
}

/* On hover: slide the white layer in from the left */
.btn:hover::before {
  left: 0;
}

/* Optional: dark-to-light background transition */
.btn:hover {
  background: white;
  color: transparent; /* hide original text */
}
@media only screen and (max-width: 1024px) {
  .product-section {
    padding: 40px;
    gap: 20px;
  }
  .product-card {
    max-width: 45%;
  }
}

/* Mobile */
@media only screen and (max-width: 600px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .product-section {
    padding: 20px;
  }

  .product-card {
    max-width: 100%;
  }

  .btn {
    padding: 8px 20px;
  }
}
.testimonial-section {
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
}

.carousel {
  display: flex;
  width: 400%;
  animation: slide 20s infinite;
}

.slide {
  width: 100%;
  display: flex;
  flex: 1 0 100%;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  margin: 0 10px;
  overflow: hidden;
}

.testimonial-img {
  width: 50%;
  height: 100%;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-text {
  width: 50%;
  padding: 30px;
}

.testimonial-text h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.testimonial-text .role {
  color: #888;
  margin-bottom: 15px;
}

.testimonial-text p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
}

/* Carousel Animation */
@keyframes slide {
  0%, 20% { transform: translateX(0%); }
  25%, 45% { transform: translateX(-100%); }
  50%, 70% { transform: translateX(-200%); }
  75%, 95% { transform: translateX(-300%); }
  100% { transform: translateX(0%); }
}

/* Responsive for 360px–640px */
@media (max-width: 640px) {
  .slide {
    flex-direction: column;
  }
  .testimonial-img,
  .testimonial-text {
    width: 100%;
  }
  .testimonial-text {
    padding: 20px;
    text-align: center;
  }
  .testimonial-text h3 {
    font-size: 1.2rem;
  }
  .testimonial-text p {
    font-size: 0.9rem;
  }
}
.top-banner {
  background-color: #5c6a82;
  color: #fff;
  width:100%;
  height:250px;
  text-align: center;
  padding: 100px ;
}

.top-banner  {
  font-size: 14px;
  margin-bottom: 10px;
}

.top-banner .btn {
  display: inline-block;
  background: #fff;
  color: #5c6a82;
  text-decoration: none;
  padding: 6px 18px;
  border-radius: 3px;
  font-size: 13px;
}

/* ===== News Section ===== */
.news-section {

  text-align: center;
  padding: 40px 20px;
}

.news-section h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 70px;
}

.logos img {
  width:100px;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
}

/* ===== Delivering More Section ===== */
.deliver-section {
  text-align: center;
  padding: 30px 20px 50px;
  width:100%;
}

.deliver-section h3 {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
}

.deliver-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 150px;
}
.deliver-icons i{
    font-size: 45px;
}
.deliver-icons p{
    font-size: 35px;
}
.icon-box {
  text-align: center;
}

.icon-box span {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.icon-box p {
  font-size: 13px;
}

/* ===== Footer ===== */
footer {
  border-top: 1px solid #ccc;
  padding: 60px 50px;
  width: 100%;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}
.footer-container:hover{
    text-decoration: underline;
}

.footer-left {
  flex: 1;
  min-width: 150px;
}

.footer-left p {
  font-size: 11px;
  color: #555;
  line-height: 1.8;
}

.footer-right {
  flex: 2;
  min-width: 250px;
}

.footer-right h4 {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin-bottom: 12px;
}

.footer-right ul {
  list-style: none;
}

.footer-right ul li {
  line-height: 1.8;
}

.footer-right ul li a {
  text-decoration: none;
  font-size: 11px;
  color: #555;
  transition: color 0.3s;
}

.footer-right ul li a:hover {
  color: #000;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
  .logos img {
    width: 85px;
  }
  .deliver-icons {
    gap: 50px;
  }
  footer {
    padding: 50px 30px;
  }
}

@media (max-width: 768px) {
  .logos {
    gap: 25px;
  }
  .logos img {
    width: 70px;
  }
  .deliver-icons {
    flex-direction: column;
    gap: 25px;
  }
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .footer-left p {
    font-size: 12px;
  }
  .footer-right h4 {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .top-banner {
    padding: 20px 10px;
  }
  .news-section h3, 
  .deliver-section h3 {
    font-size: 14px;
  }
  .logos img {
    width: 60px;
  }
  .icon-box i {
    font-size: 24px;
  }
  .footer-right ul li a {
    font-size: 10px;
  }
  .footer-left p {
    font-size: 10px;
  }
}