.top-header {
  height: 16vh;
  background-color: #f0f6fb;
  border: 1px solid #f3fdf6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.progress-arrow {
  position: absolute;
  top: 12px;
  left: 19px;
  font-size: 20px;
  color: #6c5ce7;
  pointer-events: none;
}
.paginacontainer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}
.progress-wrap {
  position: relative;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease;
}
.progress-wrap:hover {
  background: rgba(0, 0, 0, 0.1);
}
.progress-wrap.active-progress path {
  stroke: black;
}
.progress-circle {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}
.progress-circle path {
  fill: none;
  stroke: #ddd;
  stroke-width: 4;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
section.fade-in {
  padding: 20px;
}
.product-name {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  margin-top: 3vh;
}
.products-list {
  width: 100%;
  display: grid;
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  padding: 10px;
}
.item {
  margin-top: 2vh;
  text-align: center;
  width: 250px;
  border: 1px solid #ccc;
  padding: 10px;
  transition: transform 0.3s;
  background-color: #f0f6fb;
  border: 1px solid #f3fdf6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.site-header {
  display: none;
}
.item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-item img {
  width: 100%;
  max-width: 200px;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
}
.item h3 {
  font-size: 1rem;
  margin-top: 10px;
}
.mobile-nav-toggler {
  display: none;
}
@media (max-width: 768px) {
  .product-name {
    font-size: 1.5rem;
  }
  .item h3 {
    font-size: 0.9rem;
  }
  .nav-bar {
    display: none;
  }
  .mob-nav {
    margin-left: 900%;
  }
  .web-name {
    font-size: 1em;
    margin-left: -30%;
    margin-top: -3vh;
    color: black;
  }
  header {
    display: flex;
  }
  .menu-toggle {
    margin-top: 4vh;
  }
}
@media (max-width: 480px) {
  .products-list {
    grid-template-columns: 1fr;
  }
}
.testimonial-section {
  background: #fff;
  padding: 60px 10px;
  max-width: 1000px;
  margin: auto;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  background-color: #f0f6fb;
  border: 1px solid #f3fdf6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.testimonial-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}
.testimonial-slider {
  overflow: hidden;
  position: relative;
}
.testimonial-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.testimonial {
  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}
.testimonial p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}
.testimonial h4 {
  margin-top: 15px;
  color: #222;
}
.testimonial span {
  font-size: 0.9rem;
  color: #999;
}
.controls {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.prev,
.next {
  background: black;
  color: #fff;
  border: none;
  padding: 10px 20px;
  margin: 0 10px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}
@media (max-width: 600px) {
  .testimonial p {
    font-size: 1rem;
  }
  .testimonial-section {
    padding: 40px 10px;
  }
}
.menu-item a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.menu-item a:hover {
  color: #007bff;
}
.menu {
  padding-left: 0;
}
@media (max-width: 767px) {
  .menu-item {
    padding: 0.5rem 0;
  }
}
.web-name {
  margin-top: -2vh;
}
.head-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  height: 15vh;
}
.nav-bar {
  margin-top: -10vh;
  margin-right: 10px;
}
.nav-bar ul {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-bar ul li a {
  text-decoration: none;
  color: black;
}
.nav-bar ul li a:hover {
  color: red;
}
.logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-top: -3vh;
  background-color: #f0f6fb;
  border: 1px solid #f3fdf6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  border-radius: 50%;
  background-color: #f0f6fb;
  border: 1px solid #f3fdf6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.navlinks {
  margin-top: 2vh;
}
.nave-baar {
  margin-left: 0%;
}
.site-footer {
  width: 100%;
  background-image: url(/Images/foter-banner.webp);
  background-size: cover;
}
footer {
  background-color: rebeccapurple;
}
.top-item {
  text-align: center;
  margin-bottom: 30px;
  margin-top: 15px;
  font-size: 2em;
  color: #333;
}
.cardd-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 30px 60px;
  width: 100%;
  box-sizing: border-box;
}
.cardd {
  background-color: white;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 300px;
  flex: 1 1 300px;
  max-width: calc(100%-40px);
  border-radius: 20px;
}
.carrd {
  background-color: white;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 400px;
  height: 240px;
  flex: 1 1 300px;
  max-width: calc(100%-40px);
  border-radius: 20px;
  cursor: pointer;
  background-color: #f0f6fb;
  border: 1px solid #f3fdf6;
}
.carrd-para {
  text-align: justify;
  padding: 2px 15px;
}
.cardd:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.carrd:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.cardd img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.cardd-name {
  padding: 15px;
  font-size: 1.1em;
  text-align: center;
  color: #333;
}
.cardd-container {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 90px;
  width: 100%;
  overflow-x: auto;
  box-sizing: border-box;
}
.cardd {
  background-color: white;
  border-radius: 25px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 300px;
  flex: 0 0 auto;
  background-color: #f0f6fb;
  border: 1px solid #f3fdf6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.cardd:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.cardd img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.cardd-name {
  padding: 15px;
  font-size: 1.1em;
  text-align: center;
  color: #333;
}
@media (max-width: 1024px) {
  .cardd-container {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: hidden;
  }
  .cardd {
    flex: 1 1 calc(50%-40px);
    min-width: unset;
  }
}
@media (max-width: 600px) {
  .cardd {
    flex: 1 1 100%;
    border-radius: 20px;
  }
  .cardd-container {
    padding: 20px;
  }
  .logo {
    width: 60px;
    height: 60px;
  }
}
.containerr {
  padding: 10px 60px;
  max-width: 1200px;
  margin: auto;
}
.product-div {
  display: flex;
  margin-bottom: 20px;
  border-radius: 10px;
  height: 300px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #f0f6fb;
  border: 1px solid #f3fdf6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.product-div:hover {
  transform: scale(1.01);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  background-color: #e9f4ff;
  transition: background-color 0.3s ease;
}
.product-div img {
  width: 50%;
  height: 90%;
  padding: 30px;
  object-fit: contain;
}
.productt-details {
  padding: 20px;
  width: 60%;
}
.productt-details h2 {
  font-size: 22px;
  margin-bottom: 10px;
}
.productt-details p {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .containerr {
    padding: 0px 20px;
    max-width: 1200px;
    margin: auto;
  }
  .item {
    width: 100%;
    margin-top: 2vh;
  }
  .banner {
    margin-top: 6vh;
  }
  .product-div {
    flex-direction: column;
    width: 100%;
    margin-top: 8vh;
    height: 70vh;
  }
  .product-div img,
  .productt-details {
    width: 100%;
  }
  .product-div img {
    height: 50%;
  }
}
.about-container {
  padding: 10px 15px;
}
p {
  padding: 0px 10px;
  text-align: justify;
}
.about-div {
  margin-top: 3vh;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background-color: #f0f6fb;
  border: 1px solid #f3fdf6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 35vh;
  background-color: #fff;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}
.mobile-menu.open {
  right: 0;
}
.menu-toggle {
  cursor: pointer;
  z-index: 1100;
  position: absolute;
  top: 15px;
  right: 20px;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mobile-menu li {
  padding: 15px 0;
}
.mobile-menu a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
  display: block;
}
