/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: black;
    background-color: white;
    font-family: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  }
  
a {
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, black, transparent 30%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: black;
    font-family: "Montserrat",  sans-serif;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    color: white;
    transition: all 0.5s;
    z-index: 997;
    background-color: black;
}

.header .branding {
    min-height: 60px;
    padding: 10px 0;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 40px;
    margin-right: 15px;
}

.header .logo h1 {
    font-size: 30px;
    margin: 0;
    font-weight: 700;
    color: white;
}

.header .logo span {
    font-size: 32px;
    margin-left: 2px;
    color: white;
}
  
.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: white;
        font-size: 15px;
        padding: 0 2px;
        font-family: "Poppins",  sans-serif;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
        cursor: pointer;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu>ul>li>a:before {
        content: "";
        position: absolute;
        height: 2px;
        bottom: -6px;
        left: 0;
        background-color: white;
        visibility: hidden;
        width: 0px;
        transition: all 0.3s ease-in-out 0s;
    }

    .navmenu a:hover:before,
    .navmenu li:hover>a:before,
    .navmenu .active:before {
        visibility: visible;
        width: 100%;
    }

    .navmenu li:hover>a,
    .navmenu .active,
    .navmenu .active:focus {
        color: white;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: white;
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: black;
        cursor: pointer;
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: white;
        background-color: black;
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: white;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .mobile-nav-toggle:hover {
        color: color-mix(in srgb, white, transparent 30%);
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: white;
        border: 1px solid color-mix(in srgb, black, transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: black !important;
        padding: 10px 20px;
        font-family: "Poppins",  sans-serif;
        font-size: 17px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s ease;
        color: black;
    }

    .navmenu .dropdown a:hover, 
    .navmenu .dropdown a.active:hover {
        color: white;
        background-color: black;
    }

    .navmenu .dropdown a:hover i, 
    .navmenu .dropdown a.active:hover i {
        color: white;
    }

    .navmenu a:hover,
    .navmenu a.active,
    .navmenu a.active:focus {
        background-color: black !important;
        color: white !important;
    }

    .navmenu .active i,
    .navmenu .active:focus i {
        color: white;
        transform: rotate(180deg);
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: white !important;
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: white !important;
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: white;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .mobile-nav-toggle:hover {
        color: color-mix(in srgb, white, transparent 30%);
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: color-mix(in srgb, black, transparent 20%);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    display: flex;
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
}

#preloader:before,
#preloader:after {
    content: "";
    background-color: #000000;
    position: absolute;
    inset: 0;
    width: 50%;
    height: 100%;
    transition: all 0.3s ease 0s;
    z-index: -1;
}

#preloader:after {
    left: auto;
    right: 0;
}

#preloader .line {
    position: relative;
    overflow: hidden;
    margin: auto;
    width: 1px;
    height: 280px;
    transition: all 0.8s ease 0s;
}

#preloader .line:before {
    content: "";
    position: absolute;
    background-color: #ffffff;
    left: 0;
    top: 50%;
    width: 1px;
    height: 0%;
    transform: translateY(-50%);
    animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
    content: "";
    position: absolute;
    background-color: color-mix(in srgb, black, transparent 95%);
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    transform: translateY(-100%);
    animation: linemove 1200ms linear 0s infinite;
    animation-delay: 2000ms;
}

#preloader.loaded .line {
    opacity: 0;
    height: 100% !important;
}

#preloader.loaded .line:after {
    opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
    animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
    0% {
        height: 0%;
    }
  
    100% {
        height: 100%;
    }
}

@keyframes linemove {
    0% {
        transform: translateY(200%);
    }
  
    100% {
        transform: translateY(-100%);
    }
  }

@keyframes preloaderfinish {
    0% {
        width: 5 0%;
    }
  
    100% {
        width: 0%;
    }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: color-mix(in srgb, white, transparent 40%);
    background-color: black;
    border-top: 1px solid white ;
    border-bottom: 1px solid white;
    position: relative;
}

.page-title li a{
    color: white;
}

.page-title nav {
    background-color: black;
    padding: 20px 0;
}

.page-title nav ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.page-title nav ol li+li {
    padding-left: 10px;
}

.page-title nav ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: white;
}

.page-title nav .active{
    cursor: pointer;
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: black;
    background-color: white;
    padding: 60px 0;
    scroll-margin-top: 112px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 100px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    color: black;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: black;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    color: black;
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Home Section
--------------------------------------------------------------*/
.home {
    width: 100%;
    position: relative;
    padding: 120px 0 60px 0;
    background-color: white;
}
  
.home .container {
    position: relative;
    z-index: 3;
}
  
.home h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: black;
}
  
.home h2 .accent {
    color: black;
}
  
.home p {
    color: black;
    font-weight: 400;
    margin-bottom: 30px;
}
  
.home .btn-get-started {
    color: white;
    background: white;
    font-family: "Montserrat",  sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 14px 40px;
    border-radius: 50px;
    transition: 0.3s;
    border: 2px solid black;
    background-color: black;
    cursor: pointer;
}
  
.home .btn-get-started:hover {
    color: black;
    background-color: white;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}
  
@media (max-width: 640px) {
    .home h2 {
        font-size: 36px;
    }
  
    .home .btn-get-started {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .about-description a{
    font-weight: bold;
}
  
.about .about-description p:last-child{
    padding-top: 20px;
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .product-item {
    background-color: white;
    padding: 40px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}
  
.products .product-item .icon {
    width: 48px;
    height: 48px;
    position: relative;
    margin-bottom: 50px;
}
  
.products .product-item h3 {
    color: black;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 8px;
    font-size: 22px;
    position: relative;
    display: inline-block;
    border-bottom: 4px solid color-mix(in srgb, black, transparent 90%);
    transition: border-color 0.3s ease;
}
  
.products .product-item p {
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}
  
.products .product-item .readmore {
    margin-top: 15px;
    display: inline-block;
    color: color-mix(in srgb, black, transparent 30%);
    transition: color 0.3s ease;
    cursor: pointer;
}
  
.products .product-item:hover h3 {
    border-color: color-mix(in srgb, black, transparent 10%);
}

.products .product-item:hover .readmore {
    color: black;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .btn-get-started {
    display: inline-flex;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 30px;
    margin-top: 15px;
    color: white;
    background-color: black;
    border: 1px solid black;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, border 0.3 ease;
    cursor: pointer;
}

.portfolio .btn-get-started:hover {
    color: black;
    background-color: white ;
    border: 1px solid black;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}
  
.portfolio .portfolio-filters {
    padding: 0 0 20px 0;
    margin: 0 auto;
    list-style: none;
    text-align: center;
}

.portfolio .portfolio-filters li {
    display: inline-block;
    margin: 0px 5px;
    padding: 4px 16px;
    font-size: 15px;
    font-weight: bold;
    color: black;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.portfolio .portfolio-filters li:hover,
.portfolio .portfolio-filters li.filter-active {
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    background-color: black;
    color: white;
}
  
.portfolio .portfolio-filters li:first-child {
    margin-left: 0;
}
  
.portfolio .portfolio-filters li:last-child {
    margin-right: 0;
}
  
@media (max-width: 575px) {
    .portfolio .portfolio-filters li {
        font-size: 14px;
        margin: 0 5px;
    }
}
  
.portfolio .portfolio-content {
    background-color: white;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    overflow: hidden;
}
  
.portfolio .portfolio-content img {
    transition: 0.3s;
    position: relative;
    z-index: 1;
}
  
.portfolio .portfolio-content:hover img {
    transform: scale(1.1);
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}
  
.portfolio-details .swiper-wrapper {
    height: auto;
}
  
.portfolio-details .swiper-button-prev,
.portfolio-details .swiper-button-next {
    width: 48px;
    height: 48px;
}
  
.portfolio-details .swiper-button-prev:after,
.portfolio-details .swiper-button-next:after {
    color: rgba(255, 255, 255, 0.8);
    background-color: rgba(0, 0, 0, 0.15);
    font-size: 24px;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
  
.portfolio-details .swiper-button-prev:hover:after,
.portfolio-details .swiper-button-next:hover:after {
    background-color: rgba(0, 0, 0, 0.3);
}
  
@media (max-width: 575px) {
    .portfolio-details .swiper-button-prev,
    .portfolio-details .swiper-button-next {
        display: none;
    }
}
  
.portfolio-details .swiper-pagination {
    margin-top: 20px;
    position: relative;
}
  
.portfolio-details .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: color-mix(in srgb, black, transparent 85%);
    opacity: 1;
}
  
.portfolio-details .swiper-pagination .swiper-pagination-bullet-active {
    background-color: black;
}
  
.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
  
.portfolio-details .portfolio-info h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: black;
    left: 0;
    bottom: 0;
}
  
.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}
  
.portfolio-details .portfolio-info ul li {
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}
  
.portfolio-details .portfolio-info ul strong {
    text-transform: uppercase;
    font-weight: 400;
    color: color-mix(in srgb, black, transparent 50%);
    font-size: 14px;
}
  
.portfolio-details .portfolio-info .btn-visit {
    padding: 8px 40px;
    background: black;
    color: white;
    border-radius: 50px;
    transition: 0.3s;
}
  
.portfolio-details .portfolio-info .btn-visit:hover {
    background: color-mix(in srgb, black, transparent 20%);
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}
  
.portfolio-details .portfolio-description p {
    padding: 0;
}
  
.portfolio-details .portfolio-description .testimonial-item {
    padding: 30px 30px 0 30px;
    position: relative;
    background: color-mix(in srgb, black, transparent 97%);
    margin-bottom: 50px;
}
  
.portfolio-details .portfolio-description .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50px;
    border: 6px solid white;
    float: left;
    margin: 0 10px 0 0;
}
  
.portfolio-details .portfolio-description .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0 5px 0;
    padding-top: 20px;
}
  
.portfolio-details .portfolio-description .testimonial-item h4 {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}
  
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left,
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, black, transparent 50%);
    font-size: 26px;
    line-height: 0;
}
  
.portfolio-details .portfolio-description .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
  
.portfolio-details .portfolio-description .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}
  
.portfolio-details .portfolio-description .testimonial-item p {
    font-style: italic;
    margin: 0 0 15px 0 0 0;
    padding: 0;
}

/*--------------------------------------------------------------
# Portfolio HTML Page Section
--------------------------------------------------------------*/
.portfolio .portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio .portfolio-item img {
    transition: 0.3s;
}

.portfolio .portfolio-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

.portfolio .portfolio-links .preview-link {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    line-height: 1.2;
    margin: 30px 8px 0 8px;
}

.portfolio .portfolio-links .preview-link:hover {
    color: #ffffff;
}

.portfolio .portfolio-item:hover .portfolio-links {
    opacity: 1;
}

.portfolio .portfolio-item:hover .preview-link {
    margin-top: 0;
}

.portfolio .portfolio-item:hover img {
    transform: scale(1.1);
}

.glightbox-clean .gslide-description {
    background: #272727;
}

.glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contactBtn {
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    font-weight: 600;
    display: inline-block;
    padding: 12px 40px;
    margin-top: 20px;
    background-color: black;
    color: white;
    border: 2px solid black;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
}

.contact .contactBtn:hover {
    color: black;
    background-color: white;
}

.contact .location-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    height: 100%;
    padding-right: 20px;
}

.contact .info-container {
    background-color: white;
    height: 100%;
}

.contact .location-container iframe {
    height: 100%;
    width: 100%;
    border-radius: 20px;
}

.contact .info-container .info-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 20px;
    color: white;
    background-color: black;
    border-radius: 20px;
    border: 1px solid white;
    cursor: default;
}

.contact .info-container .info-item:hover,
.contact .info-container .info-item:hover h3,
.contact .info-container .info-item:hover p a {
    color: color-mix(in srgb, white, transparent 30%);
}

.contact .info-container .info-item:last-child {
    margin-bottom: 0;
}

.contact .info-container .info-item i {
    height: 44px;
    width: 44px;
    font-size: 20px;
    color: black;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin-right: 15px;
}

.contact .info-container .info-item:hover i {
    background-color: color-mix(in srgb, white, transparent 30%);
    color: white;
}

.contact .info-container .info-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    padding: 0;
    margin-bottom: 5px;
    transition: all 0.3s ease-in-out;
}

.contact .info-container .info-item p {
    font-size: 14px;
    padding: 0;
    margin-bottom: 0;
    transition: all 0.3s ease-in-out;
}

.contact .info-container .info-item p a {
    color: white;
    font-weight: 600;
}

@media (max-width: 991px) {
    .contact .location-container {
        padding: 0;
        height: 400px;
    }
}

@media (max-width: 767px) {
    .contact .location-container {
        padding: 0;
        height: 300px;
    }
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
    color: white;
    background-color: black;
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
}

.footer .footer-top h4 {
    color: white;
}
 
.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

.footer .footer-about .logo img {
    height: 40px;
    width: auto;
    padding-right: 15px;
}

.footer .footer-about .logo span {
    color: white;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: "Montserrat",  sans-serif;
}

.footer .footer-about p {
    font-size: 14px;
    font-family: "Montserrat",  sans-serif;
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, white, transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, white, transparent 50%);
    margin-right: 10px;
    transition: 0.3s;
    cursor: pointer;
}

.footer .social-links a img{
    width: 23px;
    height: 23px;
    transition: transform 0.3s ease;
}

.footer .social-links a:hover img {
    transform: scale(1.2);
}

.footer .social-links a:hover {
    color: white;
    border-color: white;
}

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: white;
    display: inline-block;
    line-height: 1;
    transition: transform 0.3s ease, color 0.3s ease;
    will-change: transform, color;
    cursor: pointer;
}

.footer .footer-links ul a:hover {
    color: color-mix(in srgb, white, transparent 30%);
    transform: scale3d(1.1, 1.1, 1);
    transform-origin: center;
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid color-mix(in srgb, white, transparent 90%);
}

.footer .copyright p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    bottom: 15px;
    right: 15px;
    width: 44px;
    height: 44px;
    background-color: black;
    color: white;
    border: 1px solid white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 99999;
}

.scroll-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background-color: white;
    color: black;
    border: 1px solid black;
}

/*--------------------------------------------------------------
# Navbar Filter Section
--------------------------------------------------------------*/
.filter-section {
    margin-bottom: 20px;
}

.filter-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (prefers-reduced-motion:reduce){
    .navbar-toggler{
        transition:none
    }
}

.navbar-toggler {
    padding: 0.25rem 0.75rem;
    font-size: 1.25rem;
    line-height: 1;
    color: rgba(0, 0, 0, 0.65);
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 0.375rem;
    transition: box-shadow 0.15s ease-in-out, border-color 0.3s ease;
}

.navbar-toggler:hover {
    text-decoration: none;
    border-color: #6c757d;
}

.navbar-toggler.active {
    border-color: #6c757d;
}

.navbar {
    margin-bottom: 0;
    padding-bottom: 0;
}

#filterNavbar fieldset {
    margin-top: 25px;
}

.form-check {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    position: relative;
}

.form-check-input {
    margin-right: 0;
    margin-left: 0; 
    position: absolute;
    cursor: pointer;
}

.form-check-label {
    margin-left: auto;
    font-size: 15px;
}

.form-check-input:checked{
    background-color: black;
    box-shadow: none;
    border: none;
}

.form-check-input:focus {
    outline: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .form-check:last-child {
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Product Display Section
--------------------------------------------------------------*/
#searchInput{
    border-radius: 20px;
    padding-left: 20px;
    border-color: #ced4da;
}

#searchInput:focus {
    outline: none;
    box-shadow: none;
    border-color: #6c757d;
}

.search-btn {
    background-color: transparent;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.product-container {
    width: 100%;
    max-width: 100%;
    word-wrap: break-word;
}

.search-btn:hover {
    background-color: transparent;
    cursor: default;
}

.btn:focus, .btn:active {
    box-shadow: none !important;
    background-color: transparent !important;
    border-color: transparent !important;
}

.search-btn i {
    color: #6c757d;
    transition: color 0.2s ease, transform 0.3s ease;
    transform-origin: center;
    font-size: 18px;
    cursor: pointer;
}

.search-btn i:hover {
    transform: scale(1.1);
}

.view-product-btn {
    padding: 5px 10px;
    font-size: 0.85rem;
    color: #343a40;
    background-color: white;
    border: 1px solid #ced4da;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.view-product-btn:hover {
    background-color: white;
    border-color: #6c757d;
    color: #343a40;
}

.card {
    overflow: hidden;
}

.product-img {
    transition: transform 0.3s;
}

.product-img:hover {
    transform: scale(1.1);
}

.pagination {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s, opacity 0.5s ease;
}

.pagination.visible {
    visibility: visible;
    opacity: 1;
}

.page-link {
    background-color: white;
    border: 1px solid #adb5bd;
    color: #6c757d;
    font-size: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
    padding: 0;
    box-shadow: none;
    transition: background-color 0.3s ease, color 0.2s ease;
}

.page-link:focus {
    box-shadow: none;
    background-color: white;
    color: #6c757d;
}

.page-link:hover {
    background-color: white;
    color: #495057;
    border-color: #adb5bd;
}

.page-item.active .page-link {
    background-color: black;
    color: white;
    border: none;
}

.page-link.next, .page-link.previous {
    background-color: white;
    border: none;
    color: #6c757d;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    box-shadow: none;
}

.page-link.next:hover, .page-link.previous:hover {
    color: #495057;
}

.page-link.next:active, .page-link.previous:active {
    outline: none;
    border: none;
    box-shadow: none;
}

.page-item {
    margin: 0 5px;
}

.no-products-message {
    color: black;
    font-size: 16px;
    font-weight: 600;
    padding-top: 4%;
    padding-left: 30px;
}

/*--------------------------------------------------------------
# Product Details Section
--------------------------------------------------------------*/
.image-container {
    text-align: center;
}

.glightbox {
    display: inline-block;
}

.product-image {
    max-width: 100%;
    max-height: 600px;
    height: auto;
    object-fit: contain;
}

.product-details {
    max-width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-control-prev {
    left: 10px;
}

.carousel-control-next {
    right: 10px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: transparent;
    width: 20px;
    height: 20px;
}

.product-description-container {
    margin: 45px 0 50px 0;
}

.product-description button {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: black;
    background-color: white;
    border: 1px solid black;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-description button:hover {
    color: black;
    background-color: white;
    border: 1px solid black;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.product-description button.active {
    color: white;
    background-color: black;
    border: 1px solid black;
}

#informationSection,
#measurementSection {
    margin-top: 30px;
    background-color: white;
    color: black;
}

.product-information h4,
.product-note h4,
.product-precaution h4,
.product-service h4 {
    font-size: 22px;
    font-weight: 700;
    color: black;
}

.product-information ul,
.product-note ul,
.product-precaution ul {
    list-style-type: none;
    padding-left: 0;
}

.product-information li,
.product-note li,
.product-precaution li {
    font-size: 17px;
    padding-left: 0;
    margin-left: 0;
    padding-left: 1px;
    color: black;
}

.product-information li::before,
.product-note li::before {
    content: '';
}

.product-information ul li a {
    font-weight: bold;
}

.product-service .measurement-guide {
    margin: 40px 0 45px 0;
}

.product-service h5 {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 700;
    color: black;
}

.product-service img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.product-service .measurement-fp,
.product-service .measurement-el {
    margin-bottom: 25px;
}

.product-service ul {
    list-style: none; 
    padding-left: 0;
    color: black; 
}

.product-service .measurement-details {
    margin-bottom: 20px;
}

.product-service .measurement-description li{
    padding-left: 8px;
}

/*--------------------------------------------------------------
# Client Input Section
--------------------------------------------------------------*/
.product-header input[type="radio"] {
    display: none;
}

.product-header label {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s;
}

.product-header input[type="radio"]:hover + label {
    background-color: white;
    color: black;
    border: 1px solid black;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.product-header input[type="radio"]:checked + label {
    color: white;
    background-color: black;
    border: 1px solid black;
}

.product-motorized input[type="radio"] {
    display: none;
}

.product-motorized label {
    display: inline-block;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    background-color: white;
    color: black;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
    transition: all 0.3s;
}

.product-motorized input[type="radio"]:hover + label {
    background-color: white;
    color: black;
    border: 1px solid black;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.product-motorized input[type="radio"]:checked + label {
    color: white;
    background-color: black;
    border: 1px solid black;
}

.dimension-input {
    display: flex;
    align-items: center;
}

.dimension-input input {
    margin-right: 5px;
    color: black;
    background: white;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.dimension-input input:focus {
    border: 1px solid black;
}

.dimension-input span {
    margin: 0 5px;
    color: black;
}

.quantity-selector {
    display: flex;
    align-items: center;
}

.quantity-selector button {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    background-color: white;
    border-radius: 0.375rem;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.quantity-selector button:hover {
    color: white;
    background-color: black;
    border: 1px solid black;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.quantity-selector input {
    box-shadow: none !important;
    width: 60px;
    text-align: center;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.quantity-selector input:focus {
    border: 1px solid black;
}

.product-total h4 {
    margin: 0;
    color: black;
    font-size: 20px;
    font-weight: bold;
}

.product-total p {
    margin: 0;
    color: black;
    font-size: 16px;
    font-weight: bold;
}

.product-header .divider,
.product-dimension .divider,
.product-quantity .divider,
.product-total .divider {
    border: 0;
    height: 1px;
    background-color: #444;
    margin: 10px 0;
}

.product-header h4,
.product-motorized h4,
.product-dimension h4,
.product-quantity h4 {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.product-header div,
.product-dimension div,
.product-quantity div {
    margin-top: 22px;
}

.product-total .divider {
    border: 0;
    height: 1px;
    background-color: #444;
    margin: 5px 0;
    width: 100%;
}

.product-total .total-container {
    padding: 5px 0;
}

.action-buttons button {
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    border-radius: 0.375rem;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    color: white;
    border: 1px solid black;
    background-color: black;
    transition: all 0.3s ease;
}

.action-buttons button:hover {
    background-color: black !important;
    color: color-mix(in srgb, white, transparent 30%);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid black;
}

