.zpimage.zpimage-style-none.zpimage-space-none {
  transition: transform 0.3s cubic-bezier(0.3, 2, 0.4, 1); /* Slight bouncy transition */
}
.zpimage.zpimage-style-none.zpimage-space-none:hover {
  transform: scale(1.05); /* Scale up slightly on hover */
}
.zp-row {
  overflow-x: auto;
  white-space: nowrap;
  animation: scroll-left 120s linear infinite; /* Longer duration */
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow: visible; 
}

.zp-row::-webkit-scrollbar {
  display: none;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-70%);  }
}

.zp-row > div {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px;
}


/* You might need to identify a common parent for an accordion item, or use a pseudo-element */
/* .your-accordion-item-parent::after {
    content: "";
    display: table;
    clear: both;
} */


/* Adjust for responsiveness on smaller screens */
@media (max-width: 768px) {
    .zpelement.zpaccordion {
        float: none; /* Remove float on small screens */
        width: 100%; /* Full width for header */
        border-right: none; /* Remove right border */
        border-bottom: 1px solid #e0e0e0; /* Add bottom border */
    }
    div[data-element-type="accordioncontainer"] {
        margin-left: 0; /* Remove left margin */
        width: 100%; /* Full width for content */
    }
}

.academy-heading {
display: inline-block;
padding: 15px 30px;
border: 3px dashed #3366CC;
color: #3366CC;
font-size: 24px;
font-weight: bold;
}

.product-details::before {
top: 0;
}

.product-details::after {
bottom: 0;
}
.top-slogan {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  font-family: 'Segoe UI', sans-serif;
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  flex-wrap: wrap;
}

.logo {
  font-size: 30px;
  font-weight: bold;
  color: red;
}

/* Slogan text */
.slogan {
  font-size: 18px;
  color: #333;
}

/* Navigation Bar */
.custom-header {
  background-color: #2b2b2b;
  padding: 10px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  z-index: 1000;
  position: sticky;
  top: 0;
}

/* Menu Toggle for Mobile */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* Nav Links */
.nav-links ul {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
  gap: 20px;
  flex-wrap: wrap;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  transition: all 0.3s ease;
  display: inline-block;
}

.nav-links a:hover {
  color: #f1c40f;
}

.nav-links a.active {
  color: #f1c40f;
  border-bottom: 2px solid #f1c40f;
}

/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 220px;
  top: 100%;
  left: 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.dropdown-content a {
  padding: 10px 20px;
  color: #222;
  display: block;
  text-decoration: none;
  font-weight: 500;
}

.dropdown-content a:hover {
  background-color: #f9f9f9;
  color: #d93025;
}

.dropdown-toggle:hover .dropdown-content {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .top-slogan {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    width: 100%;
  }

  .nav-links.active {
    display: flex;
    flex-direction: column;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 10px;
  }

  .dropdown-content {
    position: relative;
    box-shadow: none;
  }
}