* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  position: fixed;
  position: relative;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  z-index: 30;
  background-color: white;
}

.navbar img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 50px;
}

.nav-links a {
  color: black;
  text-decoration: none;
  font-size: 1rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  background-color: #03a9f4;
  left: 0;
  bottom: -5px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #03a9f4;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  /* background-color: black; */
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: black;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Mobile slide menu */
.mobile-slide-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background-color: #222b34;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  transition: right 0.4s ease;
  z-index: 40;
}

.mobile-slide-menu.show {
  right: 0;
}

.mobile-slide-menu a {
  color: white;
  text-decoration: none;
  padding: 15px 0;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-slide-menu .dropdown {
  padding: 15px 0;
}

.mobile-slide-menu .close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 30px;
}

/* Dropdown Container */
.dropdown {
  position: relative;
}

/* First Level Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 200px;
  top: 100%;
  left: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Submenu Container */
.submenu {
  position: relative;
}

/* Nested Dropdown */
.sub-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: -100%;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 50;
}

.submenu:hover .sub-dropdown {
  display: block;
}

/* Dropdown Links */
.dropdown-content a,
.sub-dropdown a {
  padding: 10px 15px;
  display: block;
  color: black;
  text-decoration: none;
}

.dropdown-content a:hover,
.sub-dropdown a:hover {
  background-color: #f0f0f0;
}

@media (max-width: 768px) {
  .sub-dropdown {
    display: none;
    position: absolute;
    top: 0;
    left: 0 F;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 50;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay layer (dark gradient) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 20px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.hero-content span {
  display: block;
  font-size: 0.9rem;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  margin-top: 1.5rem;
  color: white;
  padding: 12px 25px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

.whatsapp-btn {
  display: inline-block;
  background-color: #25d366;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}
.photo-btn {
  display: inline-block;
  background-color: #03a9f4;
  margin-top: 1.5rem;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: #1ebe5d;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}

/* Product Section */
.product-section {
  width: 100%;
  min-height: 100vh;
}

.products {
  width: 100%;
  height: 100%;
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.product {
  width: 23rem;
  height: fit-content;
  border: 1px solid orange;
  text-align: center;
  padding: 1rem;
}
.product h2 {
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

.product p {
  font-size: 1rem;
  line-height: 1.5rem;
  color: rgb(56, 56, 56);
  font-weight: 300;
}

.product p a {
  text-decoration: none;
  color: #03a9f4;
  font-weight: 400;
}
.product img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  margin: 1rem 0;
}

.section3 {
  padding: 40px 20px;
  width: 100%;
  margin: auto;
  background-color: #def2f8;
}

.section3-heading {
  background-color: white;
  max-width: 1000px;
  margin: 0 auto;
  padding: 1rem;
}

.section3 h2 {
  text-align: center;
  font-size: 3rem;
  font-weight: 200;
  margin-bottom: 10px;
}

.section3 p {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto 25px;
  font-size: 1.2rem;
  line-height: 1.7rem;
  color: rgb(56, 56, 56);
  font-weight: 300;
}

.whatsapp-button2 {
  display: flex;
  justify-content: center;
}

.whatsapp-button2 a {
  background-color: #25d366;
  color: white;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.whatsapp-button a:hover {
  background-color: #1ebe5d;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1050px;
  margin: 0 auto;
  background-color: white;
  padding: 1rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  font-size: 0.95rem;
  text-align: center;
}

/* Top bar */
.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.footer-top .whatsapp,
.footer-top .phone {
  flex: 1;
  padding: 50px;
  color: white;
}

.footer-top .whatsapp {
  background-color: #498e30;
}

.footer-top .whatsapp a {
  text-decoration: none;
  color: #fff;
}

.footer-top .phone {
  background-color: #ba2d40;
}

.footer-top i {
  margin-right: 10px;
}

/* Bottom footer */
.footer-main {
  background-color: #333;
  color: white;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-main .logo,
.footer-main .links,
.footer-main .contact,
.footer-main .social {
  flex: 1;
  min-width: 200px;
}

.footer-main .logo img {
  max-width: 180px;
}

.footer-main .links a {
  display: block;
  color: #00bfff;
  text-decoration: none;
  margin: 6px 0;
  font-size: 0.95rem;
}

.footer-main .contact {
  color: #ccc;
  font-size: 0.95rem;
}

.footer-main .social a {
  margin: 0 5px;
  color: #999;
  font-size: 1.4rem;
  text-decoration: none;
}

.footer-main .social a:hover {
  color: white;
}

.footer-bottom {
  background-color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-top {
    display: none;
  }
}

/* WhatsApp Widget Styles */
.whatsapp-widget {
  position: fixed;
  bottom: 30px;
  right: 45px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, sans-serif;
}

.whatsapp-button {
  width: 60px;
  height: 60px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  margin-left: auto;
}

.whatsapp-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
}

.whatsapp-chat {
  width: 280px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transform: scale(0);
  transform-origin: bottom right;
  position: absolute;
  bottom: 70px;
  right: 0;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e9e9e9;
}

.whatsapp-chat.active {
  transform: scale(1);
  opacity: 1;
}

.chat-header {
  background-color: #075e54;
  color: white;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.chat-header img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.chat-message {
  padding: 16px;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
}

.chat-message span {
  display: block;
  margin-bottom: 6px;
}

.chat-action {
  padding: 12px 16px;
  text-align: right;
  background-color: #f9f9f9;
}

.open-chat-btn {
  background-color: transparent;
  color: #075e54;
  border: none;
  padding: 8px 12px;
  border-radius: 18px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.open-chat-btn:hover {
  background-color: rgba(7, 94, 84, 0.1);
}

.open-chat-btn::after {
  content: "→";
  margin-left: 5px;
  font-weight: bold;
}

/* Improve contrast for navigation */
.nav-links a {
  color: #222; /* Darker than pure black for better contrast */
}

/* Improve footer contrast */
.footer-main .contact {
  color: #eee; /* Lighter gray for better contrast */
}

.photo-btn {
  background-color: #0288d1; /* Darker blue for better contrast */
}
