/* Product Image Modal Styles */
.product-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
  z-index: 3000;
}
.product-modal img {
  max-width: 96vw;
  max-height: 96vh;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  background: #fff;
  display: block;
}
.close-modal {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.8rem;
  color: #fff;
  cursor: pointer;
  z-index: 3100;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  padding: 8px 16px;
  transition: background 0.2s;
}
.close-modal:hover {
  background: #2563eb;
  color: #fff;
}
.btn.btn-modern {
  background: linear-gradient(90deg, #e38f08 0%, #ffa20d93 100%);
  color: #fff;
  font-size: 1.18em;
  font-weight: 600;
  padding: 14px 38px;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(22,212,174,0.13);
  border: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  display: inline-block;
}
.btn.btn-modern:hover {
  background: linear-gradient(90deg, #5157af58 0%, #013096 100%);
  box-shadow: 0 8px 24px rgba(22,212,174,0.18);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}
.premium img {
  width: 60%;
  max-width: 420px;
  min-width: 180px;
  height: auto;
  display: block;
  margin: 0 auto 18px auto;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
}
@media (max-width: 900px) {
  .premium img {
    width: 80%;
    max-width: 340px;
    min-width: 120px;
  }
}
@media (max-width: 600px) {
  .premium img {
    width: 98%;
    max-width: 98vw;
    min-width: 0;
    border-radius: 8px;
  }
}
/* Center copyright text in footer */
.footer-copyright-center {
  display: block;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  font-size: 1em;
  color: #8f9296;
}
/* Hamburger menu-bar styles for mobile */
.menu-bar {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #111;
  cursor: pointer;
  margin-left: 10px;
  z-index: 1100;
}

@media (max-width: 900px) {
  .menu-bar {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 70px;
    right: 0;
    background: #fff;
    width: 200px;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 0 0 12px 12px;
    padding: 18px 0 18px 0;
    gap: 0;
    display: none;
    z-index: 1001;
  }
  .navbar.active {
    display: flex;
  }
  .navbar a {
    width: 100%;
    padding: 12px 24px;
    font-size: 1.2rem;
    border-bottom: 1px solid #eee;
    color: #111;
    text-align: left;
  }
  .navbar a:last-child {
    border-bottom: none;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}


.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 1.5rem 10%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 1000;
  background: var(--white);
}

.header .logo {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
}

.header .logo span {
  color: var(--Green);
}

.header .navbar a {
  font-size: 2rem;
  color: var(--black);
  text-transform: capitalize;
  margin: 0 1rem;
  text-decoration: none;
}

.header .navbar a:hover {
  color: var(--Green);
}

.header .icons div {
  height: 5rem;
  width: 5rem;
  line-height: 5rem;
  font-size: 2rem;
  background: var(--light-bg);
  color: var(--Green);
  cursor: pointer;
  text-align: center;
  margin-left: .3rem;
}

.header .icons div:hover {
  background: var(--Green);
  color: var(--white);
}

.header #menu-btn {
  display: none;
}

.header .search-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 70rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 1rem;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
}

.header .search-form.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .search-form input {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
}

.header .search-form label {
  font-size: 2.5rem;
  color: var(--black);
  cursor: pointer;
  margin: 0 1rem;
}

.header .search-form label:hover {
  color: var(--Green);
}

.header .login-form {
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40rem;
  background: var(--white);
  -webkit-box-shadow: var(--box-shadow);
          box-shadow: var(--box-shadow);
  padding: 2rem;
  text-align: center;
  -webkit-animation: fadeIn .2s linear;
          animation: fadeIn .2s linear;
  display: none;
}

.header .login-form.active {
  display: block;
}

.header .login-form h3 {
  font-size: 2.5rem;
  color: var(--black);
  text-transform: capitalize;
  padding-bottom: 1rem;
  text-transform: uppercase;
}

.header .login-form .box {
  width: 100%;
  padding: 1.2rem 1.4rem;
  background: var(--light-bg);
  font-size: 1.6rem;
  color: var(--light-color);
  margin: .7rem 0;
}

.header .login-form .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: .5rem;
  padding-top: 1.5rem;
  padding-bottom: 1rem;
}

.header .login-form .flex label {
  font-size: 1.5rem;
  color: var(--light-color);
  cursor: pointer;
}

.header .login-form .flex a {
  font-size: 1.5rem;
  color: var(--light-color);
  margin-left: auto;
}

.header .login-form .flex a:hover {
  color: var(--Green);
  text-decoration: underline;
}

.header .login-form .btn {
  width: 100%;
}

.header .login-form p {
  font-size: 1.5rem;
  color: var(--light-color);
  line-height: 2;
  padding-top: 1.5rem;
}

.header .login-form p a {
  color: var(--Green);
}

.header .login-form p a:hover {
  text-decoration: underline;
}


.logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: orange;
}

.logo span {
  color: #111;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-weight: 600;
  color: #444;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #2563eb;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
}

   .hero-slider {
      position: relative;
      width: 100%;
      height: 70vh;
      overflow: hidden;
      font-family: Arial, sans-serif;
      margin-bottom: 0;
    }
    .hero-slider .slide {
      position: absolute;
      top: 0;
      left: 100%;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: left 0.7s cubic-bezier(.77,0,.18,1);
      opacity: 0;
      z-index: 1;
    }
    .hero-slider .slide.active {
      left: 0;
      opacity: 1;
      z-index: 2;
    }
    .hero-slider .slide.prev {
      left: -100%;
      opacity: 0;
      z-index: 1;
    }
    .hero-slider .slide.next {
      left: 100%;
      opacity: 0;
      z-index: 1;
    }
    .hero-slider .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.45);
      z-index: 1;
    }
    .hero-slider .content {
      position: relative;
      color: #fff;
      text-align: center;
      max-width: 700px;
      padding: 20px;
      z-index: 2;
    }
    .hero-slider h1 {
      font-size: 2.5rem;
      margin-bottom: 15px;
    }
    .hero-slider p {
      font-size: 1.2rem;
      margin-bottom: 20px;
      line-height: 1.5;
    }
    .hero-slider .btn {
      padding: 12px 25px;
      background: #16d4ae;
      color: #fff;
      font-weight:lighter;
      text-decoration: none;
      border-radius: 6px;
      transition: 0.3s;
    }
    .hero-slider .btn:hover {
      background: #13b697;
    }
    .hero-slider .navigation {
      position: absolute;
      top: 50%;
      width: 100%;
      display: flex;
      justify-content: space-between;
      transform: translateY(-50%);
      padding: 0 20px;
      z-index: 3;
    }
    .hero-slider .navigation span {
      font-size: 2.2rem;
      color: #fff;
      cursor: pointer;
      transition: 0.3s;
      padding: 8px 16px;
      user-select: none;
      background: rgba(0,0,0,0.18);
      border-radius: 50%;
    }
    .hero-slider .navigation span:hover {
      color: #16d4ae;
      background: rgba(0,0,0,0.32);
    }
    @media (max-width: 768px) {
      .hero-slider {
        height: 44vh;
      }
      .hero-slider h1 {
        font-size: 1.3rem;
      }
      .hero-slider p {
        font-size: 1rem;
      }
      .hero-slider .btn {
        padding: 10px 18px;
        font-size: 14px;
      }
    }
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(90deg, #0a2342, #123c6d);
  color: white;
}
@media (max-width: 600px) {
  .stats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    gap: 8px;
    padding: 16px 4px;
  }
  .stat-box {
    flex: 1 1 0;
    min-width: 0;
    margin: 0 2px;
    padding: 10px 2px;
  }
}
.stat-box h2 {
  font-size: 26px;
  margin-bottom: 8px;
}


/* Modern Glassmorphism Features Section */
.improved-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 36px;
  justify-content: center;
  background: linear-gradient(120deg, #e0eafc 0%, #cfdef3 100%);
  padding: 56px 4vw 40px 4vw;
  margin-bottom: 0;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255,255,255,0.55);
  border-radius: 22px;
  box-shadow: 0 8px 32px 0 rgba(31,38,135,0.13);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1.5px solid rgba(255,255,255,0.25);
  padding: 38px 24px 28px 24px;
  min-width: 220px;
  max-width: 340px;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: -40px; left: -40px;
  width: 80px; height: 80px;
  background: linear-gradient(135deg, #1002a8 0%, #86AF51 100%);
  opacity: 0.13;
  border-radius: 50%;
  z-index: 0;
}
.feature-card:hover {
  transform: translateY(-10px) scale(1.04);
  box-shadow: 0 12px 32px rgba(31,38,135,0.18);
}
.feature-icon {
  font-size: 2.7em;
  margin-bottom: 18px;
  border-radius: 50%;
  padding: 22px;
  color: #fff;
  background: linear-gradient(135deg, #1002a8 0%, #1002a8 100%);
  box-shadow: 0 2px 12px rgba(22,212,174,0.13);
  min-width: 64px;
  text-align: center;
  z-index: 1;
  transition: background 0.3s;
}
.feature-blue .feature-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 2px 12px rgba(59,130,246,0.13);
}
.feature-yellow .feature-icon {
  background: linear-gradient(135deg, #f6b500 0%, #f9d423 100%);
  box-shadow: 0 2px 12px rgba(246,181,0,0.13);
}
.feature-orange .feature-icon {
  background: linear-gradient(135deg, #ff9800 0%, #ffb347 100%);
  box-shadow: 0 2px 12px rgba(255,152,0,0.13);
}
.feature-content {
  z-index: 1;
  text-align: center;
}
.feature-content h3 {
  margin-bottom: 10px;
  font-size: 1.3em;
  color: #0a2342;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.feature-content p {
  color: #444;
  font-size: 1.05em;
  margin-bottom: 0;
  opacity: 0.92;
}
@media (max-width: 900px) {
  .improved-features {
    gap: 18px;
    padding: 28px 3vw 18px 3vw;
  }
  .feature-card {
    padding: 18px 10px 14px 10px;
    min-width: 160px;
    max-width: 100%;
  }
}
@media (max-width: 650px) {
  .improved-features {
    grid-template-columns: 1fr;
    padding: 12px 2vw;
  }
  .feature-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}

/* Features */
.features {
  display: flex;
  flex-direction: column;
}
.feature {
  padding: 40px 20px;
  text-align: center;
}
.feature h3 {
  margin-bottom: 10px;
  font-size: 20px;
}
.feature p {
  color: #333;
}
.feature.yellow {
  background: #f9a825;
  color: white;
}
.feature.white {
  background: #f5f5f5;
}

/* Premium Products */
.premium {
  padding: 50px 20px;
  max-width: 900px;
  margin: auto;
}
.premium h4 {
  font-weight: normal;
  color: #666;
}
.premium h2 {
  font-size: 26px;
  margin: 10px 0 20px;
  color: #0a2342;
}
.premium p {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #444;
}

.products-section {
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 28px;
  margin-bottom: 15px;
}


/* Modern Pill-Style Category Menu */
.category-nav {
  margin-bottom: 28px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.modern-category-list {
  display: flex;
  gap: 18px;
  list-style: none;
  padding: 0 8px;
  margin: 0;
  overflow-x: auto;
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
  min-height: 56px;
  align-items: center;
  justify-content: flex-start;
  scrollbar-width: none;
}
.modern-category-list::-webkit-scrollbar {
  display: none;
}
.modern-category-list li {
  cursor: pointer;
  padding: 10px 28px;
  border-radius: 24px;
  font-size: 1.08em;
  font-weight: 600;
  color: #0a2342;
  background: transparent;
  border: none;
  outline: none;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: none;
  position: relative;
  z-index: 1;
}
.modern-category-list li.active,
.modern-category-list li:focus,
.modern-category-list li:hover {
  background: linear-gradient(90deg, orange 0%, rgb(255, 221, 0) 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(22,212,174,0.13);
}
@media (max-width: 768px) {
  .modern-category-list {
    gap: 10px;
    min-height: 44px;
    padding: 0 2px;
  }
  .modern-category-list li {
    padding: 8px 16px;
    font-size: 0.98em;
  }
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  max-height: 200px;
  object-fit: contain;
}

.product-card h3 {
  font-size: 20px;
  margin: 10px 0;
}

.product-card p {
  font-size: 14px;
  color: #666;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: orange;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: darkorange;
}


/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: none;
  }
  .modern-category-list {
    display: flex !important;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    min-width: 0;
    padding-bottom: 6px;
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    scrollbar-width: thin;
  }
  .modern-category-list li {
    white-space: nowrap;
    min-width: 110px;
    padding: 8px 14px;
    font-size: 0.98em;
  }
  /* Slightly larger touch targets on very small screens */
  @media (max-width:420px) {
    .modern-category-list li { min-width: 90px; padding: 10px 12px; font-size: 0.95em; }
  }
  /* allow category-list to be visible on mobile; if a JS toggle uses .show it can be displayed */
  .category-list.show {
    display: flex !important;
  }
}

/* Optional: Show a horizontal scroll hint on mobile */
@media (max-width: 768px) {
  .category-nav::after {
    content: '⇄';
    display: block;
    text-align: right;
    font-size: 1.2em;
    color: #bbb;
    margin-top: 2px;
    margin-right: 8px;
    pointer-events: none;
  }
}

/* Responsive */
@media (min-width: 768px) {
  .features {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .feature {
    flex: 1 1 50%;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 38px;
  }
}* Existing CSS Code */
footer {
  position: fixed;
  bottom: 0;
}


@media (max-height:800px) {
  footer {
      position: static;
  }
}

.footer-distributed {
  background-color: #2d2a30;
  box-sizing: border-box;
  width: 100%;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 50px 50px 60px 50px;
  margin-top: 80px;
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */

.footer-distributed .footer-left {
  width: 30%;
}

.footer-distributed h3 {
  color: #ffffff;
  font: normal 36px 'Cookie', cursive;
  margin: 0;
}


.footer-distributed h3 span {
  color: var(--brown);
}

/* Footer links */

.footer-distributed .footer-links {
  color: #ffffff;
  margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: #8f9296;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}

/* Footer Center */

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: var(--brown);
  text-decoration: none;
  ;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 30%;
  right: 200px;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about span {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  cursor: pointer;
  background-color: #33383b;
  border-radius: 2px;
  font-size: 20px;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 7px;
  margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
  background-color: var(--Green);
}

.footer-links a:hover {
  color: var(--Green);
}
@media (max-width: 880px) {
  .footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
      display: block;
      width: 100%;
      margin-bottom: 40px;
      text-align: center;
  }
  .footer-distributed .footer-center i {
      margin-left: 0;
  }
  
} 

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.floating-button {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 6px 16px rgba(0,0,0,0.3);
}

.floating-button.call {
    background: #0052cc;
    color: white;
}

.floating-button.call i {
    transform: rotate(45deg);
}

.floating-button.whatsapp {
    background: #25D366;
    color: white;
}

.floating-button i {
    font-size: 28px;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}