/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: 110px;
  /* (announcement bar + navbar height) */
  font-family: "Lato", sans-serif;

  /* Push content below navbar height */
  padding-top: 5px;
  /* adjust based on navbar height */
}

/* Navbar */
.navbar {
  position: fixed !important;
  top: 30px;
  /* below announcement bar */
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1090;
  transition: box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
}


.navbar:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* LOGO */
.navbar .logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  padding-left: 20px;
}

/* MAIN MENU */
.navbar .menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
  /* uniform spacing */
  margin-right: 10px;
  padding: 0;
}

.navbar .menu li {
  position: relative;
}

.navbar .menu li a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
  transition: color 0.3s ease;
  padding: 8px 0;
  /* reduce tall padding */
  display: inline-block;
}

.navbar .menu li a:hover {
  color: #e100ff;
}

/* MEGA DROPDOWN */
.mega-dropdown {
  position: relative;
  align-items: center;
}

.mega-dropdown .mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: auto;
  background: #ffffff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  padding: 10px;
  z-index: 1000;
  gap: 10px;
  border-radius: 8px;
}

.mega-dropdown:hover .mega-menu {
  display: flex;
}

/* COLUMNS INSIDE MEGA MENU */
.mega-menu .mega-column {
  flex: 1;
  min-width: 150px;
}

.mega-menu .mega-column h4 {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #e100ff;
  font-family: 'Lato', sans-serif;
}

.mega-menu ul {
  list-style: none;
  padding: 10px;
  margin: 0;
}

.mega-menu ul li {
  margin-bottom: 5px;
}

.mega-menu ul li a {
  color: #333;
  text-decoration: none;
  font-size: 12px !important;
  font-family: 'Lato', sans-serif;
  transition: color 0.2s ease;
}

.mega-menu ul li a:hover {
  color: #e100ff;
}

.mega-dropdown:hover .mega-menu {
  display: flex;
}

.mega-dropdown {
  align-items: center;
  justify-content: center;
}

.mega-menu img {
  width: 70px;
  height: auto;
}

/* Search Box */
.search-box {
  display: flex;
  align-items: center;
  background: #ffffff00;
  /* border: 1px solid #ddd; */
  border-radius: 8px;
  padding: 5px 10px;
  margin-left: 20px;
  /* space from menu */
  transition: box-shadow 0.2s ease;
}

.search-box:focus-within {
  box-shadow: 0 0 5px rgba(225, 0, 255, 0.3);
}

.search-box input {
  border: none;
  outline: none;
  font-size: 13px;
  font-family: 'Lato', sans-serif;
  padding: 6px 8px;
  width: 200px;
  /* adjust size */
}

.search-box .search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.search-box .search-btn img {
  width: 25px;
  padding-right: 5px;
  height: auto;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}

.search-box .search-btn img:hover {
  opacity: 1;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 8px;
  /* space from left */
  margin-right: 20px;
  /* space from right */
}

/* Input field */
.search-box input {
  width: 220px;
  padding: 8px 45px 8px 15px;
  /* extra right padding for icon */
  border: none;
  border-radius: 25px;
  outline: none;
  font-size: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transition: box-shadow 0.3s;
}

.search-box input:focus {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Button (icon inside input) */
.search-box .search-btn {
  position: absolute;
  right: 12px;
  /* icon inside box */
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
}

.search-box .search-icon {
  font-size: 16px;
  color: #555;
}

/* Place search box nicely inside navbar */
/* announcement bar */
.announcement-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #f0f0f0;
  /* your color */
  color: #fff;
  text-align: center;
  padding: 8px;
  z-index: 1100;
}

/* above navbar */

.announcement-bar p {
  color: #000;
  margin: 0;
  letter-spacing: 0.5px;
}

.announcement-bar a {
  color: #000;
  font-weight: 600;
  text-decoration: underline;
}

.announcement-bar a:hover {
  color: #002A00;
  /* your dark green */
}


/* Slider */

/* Container */
.product-slider {
  position: relative;
  width: 100%;
  height: 1000px;
  perspective: 1200px;
  /* 3D effect */
  overflow: hidden;
  background: #f5f5f7;
  padding-top: 100px;
  padding-bottom: 100px;
}

/* Slides */
.slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 70%;
  height: 60%;
  transform: translateX(-50%) scale(0.8) rotateY(40deg);
  opacity: 0;
  transition: all 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  text-align: center;
  /* padding: 20px; */
  margin-top: 150px;
}

/* Active slide */
.slide.active {
  opacity: 1;
  transform: translateX(-50%) scale(1) rotateY(0);
  z-index: 3;
}

/* Previous + Next slides */
.slide.prev {
  opacity: 0.5;
  transform: translateX(-150%) scale(0.7) rotateY(-40deg);
  z-index: 2;
}

.slide.next {
  opacity: 0.5;
  transform: translateX(50%) scale(0.7) rotateY(40deg);
  z-index: 2;
}

/* Slide content */

.slide img {
  max-width: 1000px;
  max-height: auto;
  /* margin-bottom: 20px; */
  object-fit: contain;
}

.slide h2 {
  font-size: 2rem;
  margin: 5px 0;
  color: #222;
}

.slide p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
}

.slide .btn {
  display: inline-block;
  padding: 10px 30px;
  background: #007bff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.slide .btn:hover {
  background: #0056b3;
}

/* Controls */
.control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(255, 255, 255);
  color: #fff;
  border: none;
  font-size: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  overflow: hidden;
}

.control.prev {
  left: 20px;
}

.control.next {
  right: 20px;
}

.control.next img {
  width: 50px;
  padding-bottom: 10px;
}

.control.prev img {
  width: 50px;
  padding-bottom: 10px;
}

/* three Column Section */

.three_banner {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  padding: 20px;
}

.video-col-one,
.video-col-two,
.video-col-three {
  height: 500px; /* Set a specific height for your video containers */
  width: 300px; /* Or a percentage to match the video max-width */
  overflow: hidden; /* Prevents videos from spilling out */
}

.three_banner video {
  width: 100%;
  height: 100%; /* Make video fill the height of its container */
  object-fit: cover; /* Ensures no black bars and video is centered */
  border-radius: 8px;
}

.Text_col {
  flex: 1;
  margin-left: 100px;
}

.Text_col h2 {
  font-size: 55px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
}

.Text_col h2 span {
  font-size: 35px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #008eb9;
}

.Text_col p {
  font-weight: 400;
  font-size: 20px;
  font-family: 'Lato', sans-serif;
}

.btn-nofill {
  display: inline-block;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #007bff;
  background: transparent;
  border: 1px solid #007bff;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-nofill:hover {
  background: #007bff;
  color: #fff;
}

/* three Column Section */


/* <!-- trending product Section --> */

/* trending product Section */
.trending-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 boxes per row */
  gap: 20px;
  padding: 20px;
}

.tp {
  background: linear-gradient(180deg, #e4ebff, #fff);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
}

.trending-products h2 {
  font-size: 24px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #535353;
  margin: 15px 0 10px;
}

.trending-products p {
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: #535353;
  margin-bottom: 15px;
}

.trending-products .btn-nofill {
  padding: 12px 30px;
  font-size: 1rem;
  display: inline-block;
}


.trending-products img {
  max-width: 500px;
  height: 500px;
  border-radius: 12px;
  float: left;
}

.trending-products .video-box {
  max-width: 400px;
  height: 500px;
  overflow: hidden;
  border-radius: 12px;
  margin: 0 auto;
  float: left;
}

.trending-products .video-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fills box, crops excess */
  object-position: center;
}

.features {
  padding: 10px;
  text-align: left;
  padding-left: 400px;
}

.features span {
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  color: #333;
  margin-bottom: 5px;
  text-align: left;
}

.features h2 span {
  font-size: 25px;
  font-family: 'Lato', sans-serif;
  color: #0069af;
  font-weight: 700;
}

.features ul {
  margin: 10px 0;
}

.features li {
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  color: #333;
  margin-bottom: 5px;
}

.features p {
  font-size: 15px;
  font-family: 'Lato', sans-serif;
  color: #666666;
  display: block;
}

.splfeature {
  padding-top: 50px;
  display: block;
  font-weight: bold;
  text-decoration: none;
}

.splfeature span {
  font-size: 20px;
  font-family: 'Lato', sans-serif;
  color: #01a151;
  font-weight: 700;
}



/* <!-- PPBANNER SLIDER --> */

.pp-image-carousel {
  width: 100%;
  /* max-width: 192px; */
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  height: 900px;
  background: #000;
}

.pp-carousel-wrapper {
  display: flex;
  height: 100%;
  /* Removed animation and added transition */
  transition: transform 1s ease-in-out;
}

.pp-carousel-slide {
  /* ... existing styles for this class ... */
  min-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;

  /* Add the gradient overlay here */
}

/* New CSS rule for the gradient */
.pp-carousel-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 1;
  /* Ensures the gradient is above the image but below the text */
}

.pp-carousel-slide img {
  width: auto;
  height: 1080px;
  object-fit: cover;
  display: block;
}

/* Ensure the text and button are above the gradient */
.pp-slide-content {
  position: absolute;
  /* Already in your code */
  top: 50%;
  /* Or another value like 80% to bring it lower */
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  /* Make sure this is a higher value than the gradient's z-index */
  color: white;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.pp-slide-content h2 {
  font-size: 3rem;
  margin: 0;
}

.pp-slide-content p {
  font-size: 1.5rem;
}

.pp-slide-content button {
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  background-color: #007aff;
  color: white;
  margin-top: 15px;
}

/* <!-- PPBANNER SLIDER --> */
/* Footer */
footer {
  background: #bdfff4;
  color: #000000;
  text-align: center;
  padding: 20px;
}

/* <!-- duplicate set --> */

/* Moving banner container */
.mvbanner {
  width: 100%;
  overflow: hidden;
  background: #fff;
  /* optional background */
  padding-top: 25px;
}

/* Inner scrolling area */
.mvcoverflow {
  display: flex;
  gap: 40px;
  /* space between images */
  animation: scroll-left 25s linear infinite;
  /* speed + direction */
}

/* Each image box */
.mvslide {
  flex: 0 0 auto;
}

.mvslide img {
  height: 200px;
  /* adjust image size */
  width: auto;
  object-fit: contain;
}

/* Keyframes for movement */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
    /* half width for looping effect */
  }
}

/* <!-- duplicate set --> */

/* policytext */
.polilcycontainer {
  display: inline;
  width: auto;
  height: 500px;
  padding: 20px;
  font-family: 'Lato';
  font-weight: 300;
  font-size: 12px;
}

.polilcycontainer article {
  margin: 20px;
  justify-content: left;

}

/* policytext */
/* <!-- seprate line --> */
.div-box {
  border-bottom: 1px solid #ccc;
  /* light grey line */
  padding: 10px 0;
  /* space above & below */
}

/* <!-- seprate line --> */


/* <!-- useful links --> */

.imp-links {
  background-color: #f8f8f8;
  /* Light gray background similar to reference */
  padding: 50px 0;
}

.imp-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.imp-column {
  width: 23%;
  /* Equal width for each column */
  padding: 0 15px;
}

.imp-column h3 {
  color: #333;
  /* Darker color for headings */
  margin-bottom: 15px;
  font-family: 'Lato';
  font-weight: 700;
  font-size: 20px;
}

.imp-column ul {
  list-style: none;
  padding: 0;
}

.imp-column li {
  margin-bottom: 8px;
}

.imp-column a {
  text-decoration: none;
  color: #555;
  /* Text color */
  transition: color 0.3s ease;
  font-family: 'Lato';
  font-weight: 400;
  font-size: 12px;
}

.imp-column a:hover {
  color: #007bff;
  /* Hover color */
}

.imp-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 1px;
  background-color: #ddd;
  margin-left: 15px;
}

.imp-column:nth-child(1),
.imp-column:nth-child(2),
.imp-column:nth-child(3) {
  border-right: 2px solid #ddd;
  /* Vertical line between columns */
}

/* <!-- useful links --> */


/* BUTTON STYLINT GLOBAL */
.gbL_btn {
  display: inline-block;
  padding: 12px 30px;
  background: #007bff;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s;
}

.gbl_btn:hover {
  background: #0056b3;
}


/* BUTTON STYLINT GLOBAL */



@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/Lato-Bold.ttf') format('truetype');
  font-weight: 700;
}

/* Mobile styles */
/* By default mobile menu hidden */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: #7e7e7e; /* grey bg */
  padding-left: 1rem;
}
.mobile-menu.open {
  max-height: 500px; /* adjust as needed */
}


/* Hamburger button */
#hamburger {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}

/* Animate hamburger into X */
#hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
#hamburger.active span:nth-child(2) {
  opacity: 0;
}
#hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* DESKTOP NAV defaults */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* MOBILE NAV defaults */
.mobile-nav {
  display: none;
  position: fixed;
  top: 30px; /* under announcement bar */
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 1091; /* just above desktop nav */
  padding: 10px 20px;
  flex-direction: column;
  gap: 10px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1090;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.mobile-header {
  display: flex;
  justify-content: space-between; /* logo on left, icons on right */
  align-items: center;
  padding: 10px 15px;
  background: #ffffff75; /* grey background like your design */
}

/* Mobile Menu (hidden by default) */
.mobile-menu {
  max-height: 0;
  opacity: 0;
  transform: translateY(-10px);
  overflow: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.open {
  max-height: 1000px;
  opacity: 1;
  transform: translateY(0);
  background-color: #ffffff;
}

.menu-link {
  text-decoration: none;
  color: #333;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}


.submenu a {
  text-decoration: none;
  color: #5d0069;
  font-size: 12px;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
}

/* Logo */
.mobile-logo img {
  height: 40px;
  width: auto;
}

/* Right side icons */
.mobile-icons {
  display: flex;
  align-items: center;
  gap: 15px; /* space between search + hamburger */
}

/* Search button */
.mobile-icons button {
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger */
#hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
#hamburger span {
  width: 25px;
  height: 3px;
  background: #000;
  transition: 0.3s;
}

.submenu {
  display: none;
  padding-left: 15px;
  list-style: none;
}

.menu-item.open > .submenu {
  display: block;
}

.arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 5px;
}

/* Rotate arrow when submenu is open */
.menu-item.open > .menu-link .arrow {
  transform: rotate(180deg);
}

/* Container */
.mobile-search-container {
    position: relative;
    display: flex;
    align-items: center;
}

/* Search button */
#mobile-search {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

/* Search input hidden by default */
#mobile-search-input {
    position: absolute;
    right: 0;
    width: 0;
    opacity: 0;
    padding: 5px 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: width 0.3s ease, opacity 0.3s ease;
}

/* When active, show input */
.mobile-search-container.active #mobile-search-input {
    width: 200px; /* or any desired width */
    opacity: 1;
}


/* Mobile styles */
@media (max-width: 600px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
.navbar { display: none; }

.announcement-bar p {
text-decoration: none;
font-size: 10px;
}

  .desktop-nav .search-box {
    display: none;
  }


  /* Search box simplified */
  /* .search-box {
    flex: 1;
    margin-left: 10px;
  }
  .search-box input {
    width: 100%;
    padding: 6px;
    font-size: 14px;
  } */

/* --------------------------------------------productslider below */
.product-slider {
    height: 500px;       /* reduce overall height */
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .slide {
    width: 90%;          /* take more width */
    height: auto;        /* adjust automatically */
    margin-top: 75px;
    padding: 15px;
  }

  .slide img {
    max-width: 100%;     /* fit image inside */
    height: auto;
  }

  .slide h2 {
    font-size: 1.5rem;
  }

  .slide p {
    font-size: 1rem;
  }

  .slide .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }

  .control {
    width: 40px;
    height: 40px;
  }

  .control img {
    width: 40px;
    padding-bottom: 5px;
  }

  .three_banner {
    flex-wrap: wrap;              /* allow videos to wrap */
    justify-content: center;
    gap: 15px;
    padding: 15px;
    text-align: center;           /* center text for smaller view */
  }
/* --------------------------------------------three videobanner below */
  .video-col-one,
  .video-col-two,
  .video-col-three {
    width: 45%;                   /* two videos per row */
    height: auto;                /* shorter height */
  }

  .Text_col {
    flex: 1 1 100%;               /* full width under videos */
    margin-left: 0;
    margin-top: 20px;
  }

  .Text_col h2 {
    font-size: 32px;
  }

  .Text_col h2 span {
    font-size: 22px;
  }

  .Text_col p {
    font-size: 16px;
  }

  .gbL_btn,
  .btn-nofill {
    display: inline-block;
    margin: 10px 5px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }

/* --------------------------------------------trending product below */  
  .trending-products {
    grid-template-columns: 1fr; /* one box per row */
    gap: 20px;
  }

  .tp {
    text-align: center;
    padding: 15px;
  }

  .trending-products img,
  .trending-products .video-box {
    width: auto;
    height: 300px;
    float: none;
    margin: 0 auto 15px;
  }

  .features {
    padding-left: 0;
    text-align: center;
  }

  .features h2 {
    font-size: 22px;
  }

  .features h2 span {
    font-size: 18px;
  }

  .features p,
  .features li {
    font-size: 14px;
  }

  .splfeature {
    padding-top: 20px;
    text-align: center;
  }

/* --------------------------------------------ppbanner below */  
/* Tablet: 600–768px */
  .pp-image-carousel {
    height: 300px;
  }

  .pp-carousel-slide img {
    height: 300px;
    width: 100%;
  }

  .pp-slide-content h2 {
    font-size: 2rem;
  }

  .pp-slide-content p {
    font-size: 1rem;
  }

  .pp-slide-content button {
    font-size: 0.9rem;
    padding: 8px 16px;
  }
}
