
html,
body {
    font-size: 16px;
    width: 100vw!important;
    overflow-x: hidden;
}

/* ===== General Button Styles (Search + Others) ===== */
.btn {
  background-color: #000;   /* pure black background */
  color: #fff;              /* white text */
  border: 1px solid #000;   /* black border */
  transition: all 0.3s ease;
}

.btn:hover {
  background-color: #333;   /* dark gray hover */
  border-color: #333;
  color: #fff;              /* keep text white */
}

/* ===== Pagination Buttons ===== */
.pagination .page-link {
  background-color: #fff;   /* white background */
  color: #000;              /* black text */
  border: 1px solid #000;   /* black border */
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #000;   /* hover black background */
  color: #fff;              /* white text */
}

.pagination .page-item.active .page-link {
  background-color: #111;   /* almost black (active) */
  border-color: #111;
  color: #fff;              /* white text */
}


/* Global Section */

.section {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.section .container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.section .logo {
    width: 100px;
    height: auto;
}

.section .section-title {
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
    margin: 10px 0 20px;
    text-align: center;
}

.section .learn-more {
    transition: color 0.3s ease;
    padding: 10px 25px;
    text-decoration: none;
    color: var(--bs-body-color);
    text-decoration: underline;
    font-weight: bold;
    cursor: pointer;
}
.section .cta {
    transition: color 0.3s ease;
    border-radius: 20px;
    background-color: var(--bs-body-color);
    color: var(--bs-body-bg);
    padding: 10px 25px;
    text-decoration: none;
    cursor: pointer;
}
/* Hero Section */

.hero #bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero .container {
    align-items: center;
    text-align: center;

}
.hero .container .logo-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.hero .container .logo-container img {
    width: 30%;
    height: auto;
}

/* Scenting Machine Section */

.scenting-machine {
    background-size: 100% 100%;
}

.scents-machines-section {
    background-size: 100% 100%;
    background-image: url(../img/background/scents-bg-dark.png);
}
.scenting-machine .machine-details {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.scenting-machine .machine-details h2 {
    font-size: 1rem;
}
.scenting-machine .machine-details h3 {
    font-size: 4rem;
    font-weight: bold;
}
    
.scenting-machine .machine-details h2,
.scenting-machine .machine-details h3,
.scenting-machine .machine-details p {
    text-shadow: 1px 1px 10px var(--bs-body-bg);
}

.scenting-machine .machine-images {
    swiper-container {
        width: 100%;
        height: 100%;
      }
  
      swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #e4e4e4;
        display: flex;
        justify-content: center;
        align-items: center;
      }
  
      swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      swiper-container {
        width: 100%;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
      }
  
      swiper-slide {
        background-size: contain;
        background-position: center;
      }
  
      .thumbSwiper {
        height: 80%;
        width: 100%;
      }
  
      .thumbSwiper2 {
        height: 20%;
        box-sizing: border-box;
        padding: 10px 0;
      }
  
      .thumbSwiper2 swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
      }
  
      .thumbSwiper2 .swiper-slide-thumb-active {
        opacity: 1;
      }
  
      swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
}
 


/* Scents */

.scents img{
    max-width: 100%;
    height: auto;
}

.scents .scents-content {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Free Trial */

.free-trial .container {
    background-image: url(../img/products/machines-bg.gif);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding: 20%;
    padding-top: 10%;
}
.free-trial h2,
.free-trial p {
    color: white!important;
}

/* Articles */

.articles .article a {
    text-decoration: underline;
    color: var(--bs-body-color);
}

.articles .form-outline .form-control~.form-label {
    position: absolute;
    top: 0;
    max-width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    left: .75rem;
    padding-top: .37rem;
    pointer-events: none;
    transform-origin: 0 0;
    transition: all .2s ease-out;
    color: var(--mdb-form-control-label-color);
    margin-bottom: 0;
}

/* ===== Search Bar Styles ===== */
.article-search-bar .form-control {
  border: 2px solid #333;      /* dark gray border */
  background-color: #f9f9f9;   /* light gray background */
  color: #111;                 /* dark text */
}

.article-search-bar .form-control::placeholder {
  color: #777; /* medium gray placeholder */
}

.article-search-bar .btn {
  background-color: #111;  /* black button */
  border: none;
  color: #fff;             /* white text */
  transition: background-color 0.3s ease;
}

.article-search-bar .btn:hover {
  background-color: #444;  /* dark gray hover */
}

/* ===== Pagination Styles ===== */
.pagination .page-link {
  color: #111;                /* black text */
  border: 1px solid #333;     /* dark gray border */
  background-color: #fff;     /* white background */
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: #111;  /* black hover bg */
  color: #fff;             /* white hover text */
}

.pagination .page-item.active .page-link {
  background-color: #333;  /* dark gray active bg */
  border-color: #333;
  color: #fff;             /* white active text */
}

.pagination .page-link:focus {
  box-shadow: 0 0 0 0.2rem rgba(0,0,0,0.3); /* subtle black focus glow */
}


/* Clients */

/* Footer */

.footer {
    padding: 50px 0px;
    margin: 50px 0;
}
.footer .logo {
    width: 200px;
    height: auto;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Icon Styling */

.theme-icon {
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 100;
}

.home-icon {
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 100;
}
.hidden {
    display: none;
}

/* Swipers */

swiper-container {
    width: 100%;
    max-height: 500px;
}

swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

swiper-slide img {
    width: auto;
    height: 100%;
}

.autoplay-progress {
    position: absolute;
    right: 16px;
    bottom: 16px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--swiper-theme-color);
  }

.autoplay-progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0px;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: var(--swiper-theme-color);
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

/* Scenting Machine Swiper */
.scenting-machine swiper-container {
    width: 500px;
    height: 500px;
}

.scenting-machine swiper-slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.scenting-machine swiper-slide img {
    width: auto;
    height: 100%;
}

/* Client Swiper */

.clients swiper-container {
    height: 500px;
}

.clients swiper-slide {
    padding: 10px;
    background-color: white;
    box-shadow: 0px 0px 5px 5px gray inset;
}
.clients swiper-slide img {
    margin: 10px;
    width: 120px;
    height: auto;
}

/* Scents Swiper */
.scents-container {
    swiper-container {
        width: 100%;
        height: 100%;
      }
  
      swiper-slide {
        text-align: center;
        font-size: 18px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
      }
  
      swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
  
      body {
        background: #000;
        color: #000;
      }
  
      swiper-container {
        width: 100%;
        height: 300px;
        margin-left: auto;
        margin-right: auto;
        max-height: 100%;
      }
  
      swiper-slide {
        background-size: cover;
        background-position: center;
      }
  
      .mySwiper {
        height: 80%;
        width: 100%;
      }
      .mySwiper .scent-bg {
        filter: blur(5px);
        user-select: none;
      }
  
      .mySwiper2 {
        height: 20%;
        box-sizing: border-box;
        padding: 10px 0;
      }
  
      .mySwiper2 swiper-slide {
        width: 25%;
        height: 100%;
        opacity: 0.4;
      }
  
      .mySwiper2 .swiper-slide-thumb-active {
        opacity: 1;
      }
      .mySwiper2 h4 {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 5px;
        width: 100%;
        opacity: .5;
        --bs-bg-opacity: .2;
      }
      .mySwiper2 .swiper-slide-thumb-active h4 {
        --bs-bg-opacity: .5;
        opacity: 1;
      }
  
      swiper-slide img {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .mySwiper3 {
        position: absolute;
        top: 75%;
        left: 50%;
        transform: translate(-50%, -50%); /* Center both horizontally & vertically */
        max-width: 325px;
        max-height: 325px;
        height: 60vw;
        width: 60vw;
    }
    
    .mySwiper3 swiper-slide{
        background: none;
    }
    .mySwiper3 img {
        width: auto!important;
    }

    .scent-details {
        position: absolute;
        top: 45%;
        left: 50%;
        transform: translate(-50%, -50%); 
        width: 100%;
        max-width: 500px;
    }
    .scent-details h3 {
        font-size: 2.75rem;
        font-weight: bold;
        white-space: break-spaces;
        text-shadow: 1px 1px 10px var(--bs-body-bg);
    }
    .scent-details ul {
        list-style: none;
        padding: 20px 50px; 
        --bs-bg-opacity: .5;
    }
    .scent-details ul li {
        text-align: center;
        text-transform: capitalize;
    }
    .scent-details ul li img {
        height: 50px;
        width: auto;
        object-fit: contain;
        justify-self: center;
        margin: 10px;
    }
    
    
}

/* Contact Form */

.contact-form-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7); /* Dark transparent background */
    z-index: 1050; /* Ensure the form is above other content */
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-form-container .form-wrapper {
    background-color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    max-width: 500px;
}
.contact-form-container iframe {
    max-width: 80%;
}




/* Responsive Design */

/* Extra large devices (1200px to 1399px) */
@media (max-width: 1399.98px) {
    /* Your styles for extra-large devices */
}

/* Large devices (992px to 1199px) */
@media (max-width: 1199.98px) {
    /* Your styles for large devices */
    .scenting-machine swiper-container {
        width: 400px;
        height: 400px;
    }
}

/* Medium devices (768px to 991px) */
@media (max-width: 991.98px) {
    /* Your styles for medium devices */
    .clients swiper-slide img {
        width: 100px !important;
        height: auto;
    }
    .scenting-machine .machine-details {
        align-items: center !important;
    }
    .scents .scents-content {
        align-items: center !important;
        text-align: center !important;
    }
    .mySwiper2 h4 {
        transform: translate(-50%, -50%) rotate(180deg) !important;
        height: 100%;
        width: auto;
        writing-mode: vertical-rl;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        font-size: clamp(5px, 4vw, 12px); 
        line-height: 1; 
        overflow: hidden;
        max-height: 100%;
    }  
}

/* Small devices (576px to 767px) */
@media (max-width: 767.98px) {
    /* Your styles for small devices */
    .free-trial .container {
        background-image: url(../img/products/machines-portrait-bg.gif);
        background-size: contain;
        background-position: center;
        padding: 10%;
        padding-top: 50%;
    }
    .clients swiper-slide img {
        width: 60px !important;
        height: auto;
    }
    .free-trial .container {
        padding-top: 20%!important;
        justify-content: flex-start!important;
    }
    
    .scenting-machine swiper-container {
        width: 300px;
        height: 300px;
    }

    .machine-images {
        max-height: 50vh!important;
    }
}

/* Extra small devices (less than 576px) */
@media (max-width: 575.98px) {
    /* Your styles for extra small devices */
    .articles .article h5 {
        font-size: .75rem;
    }
    .articles .article p {
        display: none!important;
    }
    .clients swiper-slide img {
        width: 60px !important;
        height: auto;
    }

    .machine-details.more-info h3 {
        font-size: 2rem;
    }
    .machine-details.more-info button,
    .machine-details.more-info p,
    .machine-details.more-info li {
        font-size: .7rem!important;
    }

    .machine-images {
        max-height: 40vh!important;
    }
    .mySwiper3 {
        max-width: 200px!important;
        max-height: 200px!important;
    }
     
    .scent-details {
        top: 35%!important;
    }
    .scent-details h3 {
        font-size: 2.5rem!important;
        white-space: normal;
    }    
    .scent-details ul li {
        font-size: .75rem!important;
    }
    .scent-details ul li img {
        height: 40px!important;
    }
    
}

@media (max-width: 350.98px) {
    .articles .article p {
        display: none!important;
    }
    .machine-details.more-info h3 {
        font-size: 1.75rem!important;
    }
    .machine-details.more-info button,
    .machine-details.more-info p,
    .machine-details.more-info li {
        font-size: .5rem!important;
    }
}


  
