<style>
.navbar-nav li:hover > ul.dropdown-menu {
    display: block;
}
.nav-item {
  font-size: 1rem;
}
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top:-6px;
}

/* rotate caret on hover */
.dropdown-menu > li > a:hover:after {
    text-decoration: underline;
    transform: rotate(-90deg);
} 

.search-container {
    background-color: white;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px;
    max-width: 800px;
    width: 80%;
    transition: all 0.3s ease;
}

.search-container:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.form-control.search-input {
    border: none;
    background: transparent;
    padding-left: 20px;
    font-size: 1rem;
    height: 20px;
}

.form-control.search-input:focus {
    box-shadow: none;
    outline: none;
}

.btn-search {
    background-color: #007bff;
    color: white;
    border-radius: 50px;
    padding: 10px 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-search:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.search-icon {
    color: #6c757d;
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.select2-container .select2-selection--single {
  height: 34px !important;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ccc !important;
  border-radius: 0px !important;
}

.scrolling-banner {
  width: 150%;
  overflow: hidden;
  white-space: nowrap;
  box-sizing: border-box;
  
  margin: 0 auto;
  width: 60vw; 
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
</style>
<style>
figure {
  padding: 1px;
  margin: auto;
}

figcaption {

  color: #C52390;
  font-style: italic;
  font-size: 10px;
  padding: 1px;
  text-align: center;
}

/* Reset and Basic Styling */

/* Gallery Container */

.gallery {

    display: flex;

    flex-wrap: wrap;

    justify-content: center;

    gap: 5px;

    max-width: 900px;

    margin: auto;

}

/* Gallery Items */

.gallery-item {
    flex: 1 1 calc(50% - 10px);

    max-width: calc(50% - 10px);

    overflow: hidden;

    border-radius: 10px;

    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);

   

}

.gallery-item img {

    width: 100%;

    height: auto;

    display: block;

}

/* Responsive Design */

@media (max-width: 600px) {

    .gallery-item {

        flex: 1 1 calc(50% - 10px);

        max-width: calc(50% - 10px);

    }

}
</style>

<style>
 .marquee-container {
   width: 200%;
   background-color: white;
   padding: 15px 0;
 }

 .marquee-content {
   display: flex;
   animation: marquee 20s linear infinite;
 }

 .marquee-item {
   flex: 0 0 auto;
   padding: 0 20px;
   font-size: 1.2rem;
   color: #495057;
 }

 @keyframes marquee {
   0% {
     transform: translateX(100%);
   }

   100% {
     transform: translateX(-100%);
   }
 }

 /* Optional: Pause animation on hover */
 .marquee-container:hover .marquee-content {
   animation-play-state: paused;
 }

 h11 {
  font-size: 20px;
  background: -webkit-linear-gradient(#0A0107, #C52390);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.add-fav {
  display: inline-block;
  padding: 5px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: -webkit-linear-gradient( top,#fff,#ddd) #ddd;
  position: relative;
  transition: all .5s ease;
  border-radius: 3px;
  box-shadow: inset 0 -1px 1px #eee;
  
  &:hover {
    background: -webkit-linear-gradient( top,#fff,#ccc) #ddd;
  }

  .icon-heart {
    font-size: 24px;
    color: #666;
    position: relative;
    transition: all .5s ease-in-out;
  }
  .icon-plus-sign {
    font-size: 10px;
    color: #333;
    background: #fff;
    border-radius: 100%;
    position: absolute;
    bottom: 2px;
    right: 2px;
    height: 11px;
    width: 11px;
    line-height: 11px;
    text-align: center;
    transition: all 1s ease-in-out;
  }
  input[type="checkbox"] { 
    position: absolute;
    opacity: 0;
    &:checked + .icon-heart {
      color: orange;
      .icon-plus-sign {
        color: green;
      }
    }
  }
}
</style>

<style>
.containerr {
  border: 2px solid #ccc;
  background-color: white;
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0
}

.containerr::after {
  content: "";
  clear: both;
  display: table;
}

.containerr img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

.containerr span {
  font-size: 20px;
  margin-right: 15px;
}

@media (max-width: 500px) {
  .containerr {
      text-align: center;
  }
  .containerr img {
      margin: auto;
      float: none;
      display: block;
  }
}
</style>

<style>
* {box-sizing: border-box}
body {font-family: Verdana, sans-serif; margin:0}

/* Slideshow container */
.slideshow-container {
  position: relative;
  background: white;
}

/* Slides */
.mySlides {
  display: none;
  padding: 80px;
  text-align: center;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -30px;
  padding: 16px;
  color: #888;
  font-weight: bold;
  font-size: 20px;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  position: absolute;
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
  color: white;
}

/* The dot/bullet/indicator container */
.dot-container {
    text-align: center;
    padding: 20px;
    background: white;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

/* Add a background color to the active dot/circle */
.active, .dot:hover {
  background-color: #717171;
}

/* Add an italic font style to all quotes */
q {font-style: italic;}

/* Add a blue color to the author */
.author {color: cornflowerblue;}
</style>

<style>
* {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

/* Float four columns side by side */
.column5 {
  float: left;
  width: 20%;
  padding: 0 10px;
}

.column6 {
  float: left;
  width: 16%;
  padding: 0 10px;
  align-items: center;
  text-align: center;
  vertical-align: center;
}

.column4 {
  float: left;
  width: 25%;
  padding: 0 10px;
  align-items: center;
}

.column3 {
  float: left;
  width: 33%;
  padding: 0 2px;
  align-items: center;
}

/* Remove extra left and right margins, due to padding */
.row {margin: 0 -5px;}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive columns */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
    display: block;
    margin-bottom: 20px;
  }
}

/* Style the counter cards */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  padding: 16px;
  text-align: center;
  background-color: white;
}
</style>

<style>
div.example {
  background-color: lightgrey;
  padding: 20px;
}

@media screen and (min-width: 601px) {
  div.example {
    font-size: 10px;
  }
}

@media screen and (max-width: 600px) {
  div.example {
    font-size: 5px;
  }
}
</style>

<style>
  @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    font-family: "Inter", sans-serif;
  }
  .formbold-main-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
  }

  .formbold-form-wrapper {
    margin: 0 auto;
    max-width: 550px;
    width: 100%;
    background: white;
  }

  .formbold-steps {
    padding-bottom: 18px;
    margin-bottom: 35px;
    border-bottom: 1px solid #DDE3EC;
  }
  .formbold-steps ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 40px;
  }
  .formbold-steps li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #536387;
  }
  .formbold-steps li span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #DDE3EC;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #536387;
  }
  .formbold-steps li.active {
    color: #07074D;;
  }
  .formbold-steps li.active span {
    background: #6A64F1;
    color: #FFFFFF;
  }

  .formbold-input-flex {
    display: flex;
    gap: 20px;
    margin-bottom: 22px;
  }
  .formbold-input-flex > div {
    width: 50%;
  }
  .formbold-form-input {
    width: 100%;
    padding: 13px 22px;
    border-radius: 5px;
    border: 1px solid #DDE3EC;
    background: #FFFFFF;
    font-weight: 500;
    font-size: 16px;
    color: #536387;
    outline: none;
    resize: none;
  }
  .formbold-form-input:focus {
    border-color: #6a64f1;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }
  .formbold-form-label {
    color: #07074D;
    font-weight: 500;
    font-size: 14px;
    line-height: 24px;
    display: block;
    margin-bottom: 10px;
  }

  .formbold-form-confirm {
    border-bottom: 1px solid #DDE3EC;
    padding-bottom: 35px;
  }
  .formbold-form-confirm p {
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    margin-bottom: 22px;
    width: 75%;
  }
  .formbold-form-confirm > div {
    display: flex;
    gap: 15px;
  }

  .formbold-confirm-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border: 0.5px solid #DDE3EC;
    border-radius: 5px;
    font-size: 16px;
    line-height: 24px;
    color: #536387;
    cursor: pointer;
    padding: 10px 20px;
    transition: all .3s ease-in-out;
  }
  .formbold-confirm-btn {
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.12);
  }
  .formbold-confirm-btn.active {
    background: #6A64F1;
    color: #FFFFFF;
  }

  .formbold-form-step-1,
  .formbold-form-step-2,
  .formbold-form-step-3 {
    display: none;
  }
  .formbold-form-step-1.active,
  .formbold-form-step-2.active,
  .formbold-form-step-3.active {
    display: block;
  }

  .formbold-form-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
    margin-top: 25px;
  }
  .formbold-back-btn {
    cursor: pointer;
    background: #FFFFFF;
    border: none;
    color: #07074D;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    display: none;
  }
  .formbold-back-btn.active {
    display: block;
  }
  .formbold-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 16px;
    border-radius: 5px;
    padding: 10px 25px;
    border: none;
    font-weight: 500;
    background-color: #6A64F1;
    color: white;
    cursor: pointer;
  }
  .formbold-btn:hover {
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.05);
  }


</style>


<style>
* {
  box-sizing: border-box;
}

body {
  background-color: #f1f1f1;
}

#regForm {
  background-color: #ffffff;
  margin: 100px auto;
  font-family: Raleway;
  padding: 40px;
  width: 70%;
  min-width: 300px;
}

h1 {
  text-align: center;  
}

input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #aaaaaa;
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #04AA6D;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
}

button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #bbbbbb;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbbbbb;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #04AA6D;
}
</style>

<style>
.badgee {
    font-size: 12px;
    font-weight: bold;
    background: green;
    border-radius: 5px;
    color: #fff;
    padding: 0px 3px;
    position: relative;
    top: -70px;
    right: -50px;
    width: 7px;
    vertical-align: text-top;
}

.lblCartCount {
    font-size: 12px;
    background: red;
    color: #fff;
    padding: 0 5px;
    vertical-align: top;
}
</style>

<style>
    .center-div {
      display: flex;
      justify-content: center; /* horizontal centering */
      align-items: center;     /* vertical centering */
      height: 600px;           /* adjust as needed */
      border: 1px solid #ccc;  /* optional, just to show the div */
    }


  </style>

  <style>
    .customer-card {
      background-color: #fff;
      width: 320px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      text-align: center;
      padding: 10px;
    }

    .customer-card img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }

    .customer-card h2 {
      margin: 10px 0 5px;
      font-size: 22px;
    }

    .customer-card p {
      margin: 5px 0;
      color: #555;
      font-size: 14px;
    }

    .stars {
      color: #f1c40f;
      font-size: 20px;
      margin: 10px 0;
    }

    .btn {
      display: inline-block;
      padding: 8px 16px;
      margin-top: 10px;
      background-color: #007BFF;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }

    .btn:hover {
      background-color: #0056b3;
    }
  </style>

  <style>
.droppbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
}

.droppdown {
  position: relative;
  display: inline-block;
}

.droppdown-content {
  display: none;
  position: absolute;
  background-color: #f1f1f1;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.droppdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.droppdown-content a:hover {background-color: #ddd;}

.droppdown:hover .droppdown-content {display: block;}

.droppdown:hover .droppbtn {background-color: #3e8e41;}



.ribbon {
      width: 100px;
      height: 30px;
      background: red;
      color: white;
      text-align: center;
      line-height: 30px;
      font-weight: bold;
      position: absolute;
      top: 20px;
      left: -10px;
      transform: rotate(-45deg);
      box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    }

</style>