* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffaf4;
  color: #111;
}


.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.logo img {
  height: 120px; /* adjust as needed */
  display: block;
  padding: 0;
  margin: 0;
}


.logo span {
  font-weight: bold;
  line-height: 1;
}


/* Navigation Bar Styles */
.nav-menu {
  text-align: center;
  margin-top: 20px;
}

.nav-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 70px; /* space between nav items */
}

.nav-menu ul li {
  font-size: 24px;
  padding: 10px 0;
}


.nav-menu ul li a {
  text-decoration: none;
  color: #000;
  font-weight: 400;
  transition: color 0.3s ease;
}

.nav-menu ul li a:hover {
  color: #002b45; /* Optional hover effect */
}

.login-btn {
  font-weight: normal;
  font-size: 20px;
  padding: 5px 15px;
  border: 1px solid #000;
  background:#002b45;
  color: #fff;
  border-radius: 15px;
  cursor: pointer;
}


.hero {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 50px;
  flex-wrap: wrap;
}

.hero-image img {
  max-width: 650px;
  width: 150%;
  height: auto;
}

.hero-text {
  max-width: 500px;
  font-size: 30px;
  line-height: 1.6;
}

.shop-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 30px;
  background-color: #002b45;
  color: #fff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 26px;
}
.shop-section {
  text-align: center;
  padding: 20px 20px;
  background-color: #fffaf4;
}

.shop-section h2 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #000;
}

.shop-buttons {
  display: flex;
  justify-content: center;
  gap: 300px;
  margin-bottom: 60px;
}

.shop-buttons .btn {
  background-color: #002b45;
  color: white;
  padding: 12px 30px;
  border-radius: 15px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  width: 160px; /* 👈 fixed equal width for all buttons */
  display: inline-block;
}

.choose-title {
  font-size: 26px;
  margin-bottom: 40px;
  font-weight: bold;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.feature {
  max-width: 250px;
  text-align: center;
}

.feature img {
  height: 60px;
  margin-bottom: 15px;
}

.feature h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  font-size: 18px;
  color: #333;
}
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  background-color: #fffaf4;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
  margin-right: 40px;
}

.about-text h2 {
  font-size: 30px;
  margin-bottom: 20px;
  font-weight: 600;
}

.about-text p {
  font-size: 20px;
  line-height: 1.8;
  color: #111;
}

.about-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
.contact-section {
  padding: 20px 40px;
  background-color: #fffaf4;
  font-family: 'Segoe UI', sans-serif;
}

.contact-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 40px;
  font-weight: 600;
}

.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  column-gap: 150px;  /* 🔧 Increased horizontal spacing */
  row-gap: 50px;     /* Optional: vertical spacing for smaller screens */
}

.contact-form {
  background-color: #d3d7da;
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  width: 400px;
  gap: 35px;
}

.contact-form input {
  padding: 15px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}

.contact-form button {
  background-color: #002b45;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.contact-text {
  max-width: 600px;
}

.contact-text h3 {
  font-size: 50px;
  margin-bottom: 15px;
  font-weight: 600;
}
.contact-text h4 {
  font-size: 30px;
  margin-bottom: 25px;
  font-weight: 600;
   text-align: center;
}
.contact-text p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 25px;
}
.connect-section {
  display: colum;
  align-items: center;
  gap: 20px;
}

.connect-label {
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 16px; /* Adjust spacing between icons */
  margin-top: 10px;
}
.social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}


.testimonial-section {
  background-color: #fffaf4;
  padding: 50px 20px;
  overflow: hidden;
}

.testimonial-title {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 30px;
  padding-left: 10px;
}

.testimonial-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  animation: scrollLeft 30s linear infinite;
  width: fit-content;
}

.testimonial-card {
  background-color: #002b45;
  color: white;
  padding: 20px;
  border-radius: 15px;
  width: 300px;
  flex-shrink: 0;
}

.testimonial-card p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card span {
  font-size: 14px;
  display: block;
  text-align: right;
  font-style: italic;
}

/* Animation keyframes */
@keyframes scrollLeft {
  10% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.footer {
  background-color: #002b45;
  color: white;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-column {
  flex: 1;
  min-width: 50px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 10px;
}

.footer-column p {
  font-size: 14px;
  margin: 6px 0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin: 6px 0;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.footer-column h4 {
  font-size: 30px;
  margin-bottom: 10px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
}

.social-icons img {
  width: 60px;
  height: 60px;
  padding: 6px;
  border-radius: 0%;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 12px;
  color: #ddd;
}
/* ---------- Tablet Screens (768px and below) ---------- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }

  .logo img {
    height: 80px;
  }

  nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-top: 20px;
  }

  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 100%;
  }

  .hero-text {
    font-size: 24px;
    max-width: 100%;
  }

  .shop-buttons {
    flex-direction: column;
    gap: 20px;
  }

  .about-section {
    flex-direction: column;
    padding: 20px;
  }

  .about-text {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .contact-text h3 {
    font-size: 36px;
    text-align: center;
  }

  .testimonial-track {
    animation: scrollLeft 40s linear infinite; /* slower scroll for smaller screens */
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-column {
    width: 100%;
  }

  .social-icons img {
    width: 40px;
    height: 40px;
  }
}

/* ---------- Mobile Screens (480px and below) ---------- */
@media (max-width: 480px) {
  .navbar {
    padding: 15px;
  }

  nav a,
  nav ul li,
  .login-btn {
    font-size: 16px;
  }

  .hero-text {
    font-size: 20px;
    padding: 0 10px;
  }

  .shop-btn {
    font-size: 20px;
    padding: 10px 20px;
  }

  .shop-section h2 {
    font-size: 24px;
  }

  .shop-buttons .btn {
    font-size: 16px;
    width: 100%;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p,
  .contact-text p {
    font-size: 16px;
  }

  .contact-form {
    width: 100%;
    padding: 15px;
  }

  .contact-form input,
  .contact-form button {
    font-size: 14px;
  }

  .contact-text h3 {
    font-size: 28px;
  }

  .testimonial-card {
    width: 250px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-column h4 {
    font-size: 20px;
  }

  .footer-column ul li a {
    font-size: 16px;
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #fffaf4;
  color: #111;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #fffaf4;
  position: relative;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo img {
  height: 60px;
}

.logo span {
  font-weight: bold;
  font-size: 20px;
}

/* === Navigation Menu === */
.nav-menu {
  display: flex;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu ul li a {
  text-decoration: none;
  font-size: 18px;
  color: #000;
}

/* === Hamburger Icon === */
.hamburger {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}

/* === Responsive Styles === */
@media (max-width: 768px) {
  .hamburger {
    display: block;
    position: absolute;
    right: 30px;
    top: 25px;
    z-index: 1001;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 20px;
    background-color: #fffaf4;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 20px;
  }

  .nav-menu ul li a {
    font-size: 18px;
  }
}
.whatsapp-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2s infinite;
}

.whatsapp-button:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.whatsapp-button img {
  width: 45px;
  height: 45px;
  transform: translateZ(10px);
}

/* WhatsApp popup */
.whatsapp-popup {
  display: none;
  position: absolute;
  bottom: 75px;
  right: 0;
  background-color: #fff;
  border-radius: 12px;
  padding: 16px;
  width: 260px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease;
}

.whatsapp-popup p {
  font-size: 14px;
  color: #333;
  margin: 0;
}

.whatsapp-popup a {
  display: inline-block;
  margin-top: 10px;
  background-color: #25d366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.2s;
}

.whatsapp-popup a:hover {
  background-color: #128c7e;
}

/* Animations */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
