body {
  background-color: #f8f8f06b;
}

header {
  text-align: center;
  padding-top: 20px; 
}

footer {
  background-color: #6213ba;
  padding: 10px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footercopyright, .footeremail {
  font-size: 15px;
  color: #ffffff;
  font-family: Arial, sans-serif;
  margin: 10px;
}

@media (max-width:300px) {
  .footercopyright, .footeremail {
    font-size: 12px;
  }
}

@media (max-width:250px) {
  .footercopyright, .footeremail {
    font-size: 10px;
  }
}

.header-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px; 
  position: relative;
}

h1 {
  position: relative;
  margin-top: 13px;
  margin-bottom: 5px;
  text-align: center;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: clamp(32px, 2px + 3.5vw, 60px);
  background: linear-gradient(0deg, #6213ba 20%, #f5c113 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

h1#firstheader {
  margin-bottom: 20px;
}

@media (min-width:406px) and (max-width:530px) {
  h1#firstheader {
    background: linear-gradient(120deg, #6213ba 50%, #f5c113 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(32px, 2px + 3.5vw, 60px);
  }
}

@media (max-width:405px) {
  h1#firstheader {
    background: linear-gradient(90deg, #6213ba 40%, #f5c113 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(32px, 2px + 3.5vw, 60px);
  }
}

@media (max-width:231px) {
  h1#aboutheader {
    background: linear-gradient(90deg, #6213ba 30%, #f5c113 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(32px, 2px + 3.5vw, 60px);
  }
}

.line {
  content: "";
  width: clamp(5px, 15vw, 250px);
  height: 2px;
  background: #6213ba;
  position: relative;
  opacity: 0; /* Initially hidden */
  transform: scaleX(0); /* Start compressed */
  transition: opacity 0.5s ease-out 1s, transform 0.8s ease-out 1s; /* Delay lines */
}

@media (min-width:603px) and (max-width:686px) {
  .line {
    width: clamp(5px, 10vw, 100px);
  }
}

@media (min-width:549px) and (max-width:602px) {
  .line {
    width: clamp(5px, 8vw, 100px);
  }
  .header-container {
    gap: 15px;
  }
}

@media (min-width:531px) and (max-width:548px) {
  .line {
    width: 35px;
  }
  .header-container {
    gap: 15px;
  }
}

@media (min-width:489px) and (max-width:530px) {
  .line {
    width: 95px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .header-container {
    gap: 15px;
  }
}

@media (min-width:432px) and (max-width:488px) {
  .line {
    width: clamp(5px, 12vw, 80px);
    margin-left: 10px;
    margin-right: 10px;
  }
  .header-container {
    gap: 15px;
  }
}

@media (min-width:406px) and (max-width:431px) {
  .line {
    width: clamp(5px, 11vw, 60px);
    margin-left: 5px;
    margin-right: 5px;
  }
  .header-container {
    gap: 5px;
  }
}

@media (max-width:405px) {
  .line {
    width: 90px;
    margin-left: 5px;
    margin-right: 5px;
  }
  .header-container {
    gap: 7px;
  }
}

.line:first-child {
  transform-origin: left;
  transform: translateX(-120px) scaleX(0);
}

.line:last-child {
  transform-origin: right;
  transform: translateX(120px) scaleX(0);
}

.header-container.visible h1 {
  opacity: 1;
  transform: translateY(0);
}

.header-container.visible .line {
  opacity: 1;
  transform: translateX(0) scaleX(1);
}

h2 {
  text-align: left;
  font-family: Arial;
  font-weight: bold;
  color: #6213ba;
  font-size: clamp(25px, 3px + 2.5vw, 45px);
  margin-bottom: 0px;
  margin-bottom: 12px;
}

p {
  font-size: clamp(17px, 1px + 1.7vw, 25px);
  color: #9a56e8;
  font-family: Arial, sans-serif;
  margin-left: 5px;
  margin-top: -5px;
  margin-bottom: 50px;
}

.logo-container {
  margin-bottom: 5px; 
}

.logo-image {
  width: clamp(160px, 9vw + 100px, 260px);
   height: auto;
}
  
.navbar {
  padding-bottom: 20px;
}

.topnav {
  overflow: hidden;
  background-color: #6213ba;
}
  
.topnav a {
  float: left;
  display: block;
  text-align: center;
  text-decoration: none;
  font-family: Arial;
  font-weight: bold;
  color: white;
  font-size: 20px;
  padding: 15px 20px; 
  transition: background-color 0.3s ease; 
}
  
.topnav a:hover {
  background-color: #3b007e;
  color: white;
}
  
.topnav a.active {
  background-color: #9a56e8;
  color: white;
}
  
.topnav .icon {
  display: none;
}
  
@media screen and (max-width: 482px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}
  
@media screen and (max-width: 482px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.hero {
  position: relative;
  text-align: center;
  color: white;
  margin-bottom: 15px;
}

.hero-image {
  width: 100%;
  height: auto;
}

.categories {
  padding: 0 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 0 !important;
  column-gap: 70px;
  row-gap: 0px;
  background: linear-gradient(180deg, rgba(154, 86, 232, 0.15), rgba(98, 19, 186, 0.25));
}

.category {
  width: clamp(150px, 17vw, 350px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.category-img {
  width: clamp(150px, 17vw, 350px);
  max-width: 100%;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  margin-bottom: 25px;
}

.category-img.visible {
  opacity: 1;
  transform: translateY(0);
}

.category-img:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-out;
}

.category h3 {
  max-width: 350px;
  text-align: center;
  font-weight: bold;
  font-family: Arial;
  color: #9a56e8;
  font-size: clamp(20px, 1px + 2vw, 35px);
  margin-bottom: 13px;
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: auto;
  min-height: unset;
  opacity: 0;  
  transition: opacity 1s ease-out;  
}

.category h3.visible {
  opacity: 1; 
}

.company-container {
  display: block;
  width: fit-content;
  margin: 50px auto;
  margin-top: 30px;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 35px;
  padding-right: 35px;
  border: 3px solid #bc92ec;
  border-radius: 15px;
  background: linear-gradient(135deg, #9a56e8 50%, #7831ca 100%);
  box-shadow: 0px 8px 20px rgba(154, 86, 232, 0.4);
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.companynames {
  display: flex;
  justify-content: center;
  column-gap: clamp(50px, 10vw, 140px);
  row-gap: 5px;
  align-items: flex-start;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
  padding: 0;
}

li {
  font-family: Arial;
  color: #ffffff;
  font-size: clamp(17px, 1px + 1.7vw, 30px);
  margin-bottom: 5px;
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

li:nth-child(1) { transition-delay: 0.3s; }
li:nth-child(2) { transition-delay: 0.5s; }
li:nth-child(3) { transition-delay: 0.7s; }
li:nth-child(4) { transition-delay: 0.9s; }
li:nth-child(5) { transition-delay: 1.1s; }
li:nth-child(6) { transition-delay: 1.3s; }
li:nth-child(7) { transition-delay: 1.5s; }
li:nth-child(8) { transition-delay: 1.7s; }

.company-container.visible {
  opacity: 1;
  transform: translateX(0);
}

.company-container.visible li {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .companynames {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 385px) {
  .companynames {
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  }
}

.slider-container {
  position: relative;
  overflow: hidden;
  margin-top: 25px;
}

.slider {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: auto;
  transition: opacity 0.5s ease-in-out;
}

.slide img {
  width: 100%;
  height: auto;
}

.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(154, 86, 232, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px;
  cursor: pointer;
  z-index: 100;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover, .next:hover {
  background-color: rgba(98, 19, 186, 0.5);
}

.startshopping {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
  margin-bottom: 70px;
  position: relative;
  width: 100%;
  height: 100px;
  background: linear-gradient(90deg, rgba(154, 86, 232, 0.15), rgba(98, 19, 186, 0.25));
}

.button-box {
  background-color: white;
  padding: 50px 40px;
  border: 2px solid #d3c0f7;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.left-image, .right-image {
  position: absolute;
  transition: transform 0.2s ease-out;
  max-width: clamp(40px, 10vw, 80px);
  max-height: clamp(40px, 10vw, 80px);
  z-index: 10;
}

.left-image {
  bottom: -60px;  
  left: -40px;  
}

.right-image {
  top: -60px;   
  right: -40px;  
}

@media (min-width: 4501px) {
  .left-image {
    bottom: -130px;
    left: -35px; 
  }
  .right-image {
    top: -130px;  
    right: -35px;
  }
  .startshopping {
    margin-top: 90px;
  }
}

@media (min-width: 821px) and (max-width: 4500px)  {
  .left-image {
    bottom: -110px;
    left: -35px; 
  }
  .right-image {
    top: -110px;  
    right: -35px;
  }
  .startshopping {
    margin-top: 90px;
  }
}

@media (min-width: 731px) and (max-width: 820px) {
  .left-image {
    bottom: -40px;
    left: -35px; 
  }
  .right-image {
    top: -40px;  
    right: -35px;
  }
  .startshopping {
    margin-top: 90px;
  }
}

@media (min-width: 641px) and (max-width: 730px) {
  .left-image {
    bottom: -40px;
    left: -30px; 
  }
  .right-image {
    top: -40px; 
    right: -30px;
  }
}

@media (min-width: 521px) and (max-width: 640px) {
  .left-image {
    bottom: -40px;
    left: -25px; 
  }
  .right-image {
    top: -40px; 
    right: -25px;
  }
  .startshopping {
    margin-top: 80px;
  }
}

@media (min-width: 451px) and (max-width: 520px) {
  .left-image {
    bottom: -40px;
    left: -20px; 
  }
  .right-image {
    top: -40px; 
    right: -20px;
  }
}

@media (min-width: 381px) and (max-width: 450px) {
  .left-image {
    bottom: -50px;
    left: -15px; 
  }
  .right-image {
    top: -50px; 
    right: -15px;
  }
}

@media (max-width: 380px) {
  .left-image {
    bottom: -60px;
    left: -10px; 
  }
  .right-image {
    top: -60px; 
    right: -10px;
  }
}

.button-container {
  position: relative;
  width: fit-content;
  height: fit-content;
}

.button-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.button-box:hover {
  background-color: #d3c0f7;
  border-color: #9a56e8;
}

.startshopping-button {
  background-color: transparent;
  color: #9a56e8;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: clamp(25px, 5px + 2.5vw, 50px);
  text-align: center;
  font-weight: bold;
  font-family: Arial;
  position: relative;
  padding: clamp(5px, 3vw, 20px);
}

.startshopping-button:hover {
  color: #6213ba;
}

.button-box:hover .startshopping-button {
  color: #6213ba;
}

.testimonials {
  display: flex;
  justify-content: center;
  column-gap: clamp(40px, 10vw, 150px);
  row-gap: 0px;
  margin-bottom: 40px;
  margin-top: 100px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.testimonial-box {
  background: linear-gradient(135deg, #9a56e8 50%, #7831ca 100%);
  color: white;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  font-family: Arial;
  font-size: clamp(20px, 1px + 2vw, 30px);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.testimonial-box.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 600px) {
  .testimonials {
    justify-content: center;
  }
}

@media (max-width: 350px) {
  .testimonials {
    flex-wrap: wrap; 
  }
}

.team-section {
  text-align: center;
}

.team-members {
  display: flex;
  justify-content: center;
  align-items: stretch;
  column-gap: clamp(40px, 6vw, 100px);
  row-gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 15px;
  padding-right: 15px;
  margin-bottom: 30px;
  background: linear-gradient(180deg, rgba(154, 86, 232, 0.15), rgba(98, 19, 186, 0.25));
}

.team-bio {
  flex: 1 1 300px;
  max-width: 500px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-height: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.team-bio p {
  font-style: normal;
  color: #6213ba;
  font-family: Arial, sans-serif;
  line-height: 1.35;
  font-size: clamp(16px, 1.4vw, 20px);
  margin: 0;
}

.team-member {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: clamp(200px, 21vw, 400px);
  padding-top: 20px;
}

.team-member img {
  width: 100%;
  border-radius: 50%;
  width: clamp(150px, 17vw, 350px);
  border: 5px solid #6213ba;
}

.team-member h3 {
  margin: 5px 0 5px;
  font-weight: bold;
  font-family: Arial;
  color: #9a56e8;
  font-size: clamp(20px, 1px + 2vw, 35px);
}

.team-member p {
  font-style: italic;
  color: #666;
  margin-bottom: 50px;
  margin-top: 5px;
}

.team-member img, .team-member h3, .team-member p, .team-bio p {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.team-member img.fade-in, .team-member h3.fade-in, .team-member p.fade-in, .team-bio p.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.mission-section {
  margin: 80px 0;
  padding: 0 20px;
}

.mission-section h2 {
  text-align: left;
  font-family: Arial;
  font-weight: bold;
  color: #6213ba;
  font-size: clamp(25px, 3px + 2.5vw, 45px);
  margin-bottom: 20px;
}

.mission-box {
  width: 100%;
  background: linear-gradient(135deg, #f3ecff, #ffffff);
  border-left: 6px solid #6213ba;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0px 2px 12px rgba(0,0,0,0.05);
  box-sizing: border-box;
}

.mission-box p {
  margin: 0 0 18px 0;
  line-height: 1.4;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 50px;
  margin-top: 20px;
}

.contact-details, .contact-form {
  flex: 1;
  min-width: 200px;
  padding: 10px;
}

.contact-details h2, .contact-form h2 {
  color: #6213ba;
  display: flex;
  flex-wrap: wrap;
}

.contact-details p {
  margin: 10px 0;
  display: flex;
  flex-wrap: wrap;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  margin-right: 20px;
}

.contact-form label {
  margin-top: 10px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  color: #3b007e;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  margin-top: 15px;
  padding: 10px;
  background: #6213ba;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #3b007e;
}

@media (max-width: 300px) {
  .contact-form input, .contact-form textarea {
    width: 60vw;
  }
}

@media (max-width: 290px) {
  .contact-form button {
    width: 80%;
  }
  .contact-details p {
    font-size: 15px;
  }
  .contact-details h2, .contact-form h2 {
    font-size: 22px;
  }
  .contact-container {
    padding: 10px;
  }
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.product {
  text-align: center;
  padding: 10px;
  border-radius: 5px;
  transition: transform 0.3s ease;
  background: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  min-width: 0;
}

.product img {
  width: 100%;
  max-width: 150px;
  height: auto;
  border-radius: 5px;
  margin-top: 10px;
}

.product:hover {
  transform: scale(1.05);
}

.filter-container {
  margin-top: 25px;
  margin-bottom: 5px;
  text-align: center;
  font-family: Arial, sans-serif;
  color: #6213ba;
  font-size: clamp(15px, 1px + 1.7vw, 20px);
}

.product p {
  margin-top: 18px;
  margin-bottom: 8px;
  color: #6213ba;
}

p#companydescription {
  margin-bottom: 10px;
  margin-top: 0px;
  margin-left: 5px;
  margin-right: 5px;
  font-size: clamp(14px, 1px + 1.7vw, 21px);
  color: #9a56e8;
}

@media (min-width: 286px) and (max-width: 400px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 285px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

a.product {
  text-decoration: none;
}


