@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@600&display=swap");

body {
    background: #ffffff;
    background-size: cover;
    background-position: center;
    font-family: "Outfit", sans-serif;
    margin: 0;
    /* padding-top: 3rem; */
}

/***************************************************** NavBar *****************************************************/
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(0, 0, 0);
    color: #fff;
    padding: 0 2rem;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
    height: 6.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.header__logo img {
    /* font-weight: 700; */
    /* font-size: 1.5rem; */
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    height: 100px;
    width: 140px;
}

.header__logo img:hover {
    filter: drop-shadow(0 0 12px rgba(255, 217, 0, 0.44)) drop-shadow(0 0 24px #ffd9004a);
    transform: translateY(-50%) scale(1.025);
    /* slight zoom-in */
}

/* hamburger for mobile view */
.mobile-toggle {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: white;
}

.navbar {
    display: flex;
    align-items: center;
    height: 100%;
}

.navbar__menu {
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar__link {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 3.5rem;
    width: auto;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 0 1rem;
    font-size: 0.8rem;
    position: relative;
    transition: color 0.4s ease, transform 0.3s ease;
}

.navbar__link span {
    display: block;
    opacity: 1;
    transform: translate(0);
    transition: 250ms ease all;
}

.navbar__link::after {
    content: "";
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    width: 0%;
    height: 2px;
    background-color: #156fc4;
    transition: width 0.3s ease, left 0.3s ease;
    transform: translateX(-50%);
}

.navbar__link:hover {
    color: #156fc4;
    transform: translateY(-2px);
}

.navbar__link:hover::after {
    width: 100%;
}

.navbar__link:hover::after,
.navbar__link.active::after {
    width: 100%;
}

/*# sourceMappingURL=styles.css.map */

/* From Uiverse.io by TCdesign-dev */
.button {
    display: inline-block;
    border-radius: 7px;
    border: none;
    background: #1875ff;
    color: white;
    font-family: "Outfit", sans-serif;
    text-align: center;
    font-size: 13px;
    box-shadow: 0px 14px 56px -11px #1875ff;
    width: 10em;
    padding: 1em;
    transition: all 0.4s;
    cursor: pointer;
    right: 2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.4s;
}

.button span:after {
    content: "for Sales";
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.7s;
}

.button:hover span {
    padding-right: 3.92em;
}

.button:hover span:after {
    opacity: 4;
    right: 0;
}

/*********************************** Navbar DropDown Radios Products ******************************************/

.dropdown_menu {
    position: relative;
}

/* Dropdown container */
.dropdown-content {
    display: none;
    position: absolute;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);
    border-radius: 8px;
    min-width: 220px;
    padding: 10px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    z-index: 1;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* List container */
.dropdown_list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

/* Dropdown links */
.dropdown-content a {
    color: #fff;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: background-color 0.25s ease, padding-left 0.25s ease;
}

/* Hover effect on list items */
.dropdown-content a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #1875ff;
    border-radius: 4px;
    padding-left: 25px;
    /* subtle sliding effect */
}

.dropdown_list a:active {
    color: #011431;
}

/* Show dropdown with transition */
.dropdown_menu.show .dropdown-content,
.dropdown_menu:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* sub menu */
/* Submenu inside "Licence Free" */
.submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    border-radius: 6px;
    min-width: 200px;
    padding: 8px 0;
    list-style: none;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(10px);
    z-index: 1001;
}

.list1 {
    position: relative;
}

/* Show submenu on hover */
.list1:hover>.submenu {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

/* Submenu links */
.submenu li a {
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
}

.submenu li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.list2 {
    position: relative;
}

/* Show submenu on hover */
.list2:hover>.submenu {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.list3 {
    position: relative;
}

/* Show submenu on hover */
.list3:hover>.submenu {
    display: block;
    opacity: 1;
    transform: translateX(0);
}



@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .header {
        flex-direction: flex;
        height: auto;
        padding: 3px;
        gap: 1px;
    }

    .header__logo img {
        height: 15%;
        width: 15%;
        position: static;
        transform: none;
        margin-right: 3px;
        /* margin-bottom: 10px; */
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 1rem 2rem;
        display: none;
        height: 250px;
        /* hidden by default */
    }

    /* .nav__ul--extra {
    column-count: 1;
  }

  .mobile-toggle {
    display: block;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
  }

  .navbar {
    display: none;
    width: 100%;
  }

  .navbar.active {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .navbar__menu {
    flex-direction: column;
    gap: 1rem;
  }

  .navbar__link {
    padding: 1rem;
    text-align: center;
  }
} */

    .navbar__menu {
        flex-direction: column;
        align-items: center;
        position: static;
        transform: none;
        width: 100%;
        gap: 1rem;
    }

    .navbar__item {
        width: 100%;
    }

    .navbar__link {
        width: 100%;
        padding: 0.75rem 1rem;
        font-size: 0.5rem;
        justify-content: center;
    }

    .dropdown-content {
        position: static;
        transform: none;
        opacity: 1;
        box-shadow: none;
        backdrop-filter: none;
        padding-left: 1rem;
        margin-top: 0.5rem;
    }

    .dropdown_menu:hover .dropdown-content {
        display: none;
        /* disable hover-based dropdown on mobile */
    }

    .dropdown_menu.show .dropdown-content {
        display: block;
    }

    .submenu {
        position: static;
        transform: none;
        opacity: 1;
        display: none;
        padding-left: 1.5rem;
    }

    .list1:hover>.submenu,
    .list2:hover>.submenu,
    .list3:hover>.submenu {
        display: none;
    }

    .list1.show .submenu,
    .list2.show .submenu,
    .list3.show .submenu {
        display: block;
    }

    .button {
        position: static;
        transform: none;
        margin-top: 1rem;
        align-self: center;
        width: 50%;
        margin-left: 30px;
    }
}


/* .navbar__menu {
  display: none;
  flex-direction: column;
  background-color: #333;
  position: absolute;
  top: 60px;
  right: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
} */

/* .navbar__link {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
} */





/* Cleaning Hero Page */

.sec-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    color: white;
}

.sec-bg-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity 1s ease-in-out;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0;
}

#secbg1 {
    z-index: 1;
    opacity: 1;
}

#secbg2 {
    z-index: 1;
}

.sec-dark-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* semi-transparent black */
    z-index: 2;
}

.sec-hero-content {
    position: relative;
    z-index: 3;
    /* above everything else */
    max-width: 90%;
    margin-bottom: 40px;

}

.sec-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.sec-hero p {
    font-size: 1.5rem;
}

/* wide varieties second section */

.tabs-heading {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 65px;
    z-index: 2;
    position: relative;
}

.tabs {
    padding: 40px;
    background-color: #f7f7f7;
    position: relative;
    padding-bottom: 80px;
}

.tabs-body {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 0;
    transition: background 0.3s;
}

.tab-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px;
    z-index: 1;
    position: relative;
    transition: all 0.3s ease;
}

.tab {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 1;
}

.tab img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
    transition: transform 0.3s ease;
}

.tab-name {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    color: #ffffff;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 6px 12px;
    border-radius: 5px;
    white-space: nowrap;
}

.tab:hover .tab-name {
    bottom: 10px;
    opacity: 1;
}

.tab-info {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 16px 24px;
    border-radius: 10px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    width: 90%;
    text-align: center;
    font-size: 1rem;
}

.tab:hover .tab-info {
    opacity: 1;
    pointer-events: auto;
}

.tab-info h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
    color: #fff;
}

.tab:hover {
    transform: scale(1.4);
    z-index: 10;
    box-shadow: 0 0 35px 12px rgba(0, 255, 255, 0.6);
}

/* Dim other tabs when one is hovered */
.tab-container:hover .tab:not(:hover) {
    filter: blur(2px) brightness(0.5);
    transform: scale(0.95);
    z-index: 0;
}

/* ----------- Responsive Layout ----------- */

@media (max-width: 1024px) {
    .tab-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .tab-container {
        grid-template-columns: 1fr;
    }

    .tab {
        height: 180px;
    }

    /* Disable scaling and glow on mobile to prevent zoom overflow */
    .tab:hover {
        transform: none;
        box-shadow: none;
    }

    .tab-container:hover .tab:not(:hover) {
        filter: none;
        transform: none;
    }

    /* 
  .tab-name {
    bottom: 10px;
    opacity: 1;
  } */

    .tab-info {
        opacity: 1;
        position: static;
        transform: none;
        margin-top: 12px;
    }

    .tab-info h3 {
        color: #000;
        background: transparent;
    }
}

/**************************************************** Contact Form ************************************************************/
/* General Styling */

.contact-section {
    background-image: url("./images/contact_bg.jpg");
    background-size: cover;
    background-position: center;
    padding: 100px 20px;
    position: relative;
    z-index: 0;
}

.contact-overlay {
    background: rgba(225, 227, 236, 0.555);
    padding: 60px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Left Contact Info Box */
.contact-info-box {
    flex: 1 1 400px;
    color: #000000;
    padding-right: 20px;
    font-family: "Outfit", sans-serif;
}

.contact-info-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info-box p {
    font-size: 16px;
    line-height: 1.6;
    color: #202020;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.contact-details li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    color: #202020;
}

.contact-details i {
    font-size: 22px;
    color: #1875ff;
    margin-right: 12px;
}

/* Right Form Box */
.contact-form-box {
    flex: 1 1 400px;
    background: rgba(255, 255, 255, 0.15);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.contact-form-box form {
    display: flex;
    flex-direction: column;
}

.contact-form-box input,
.contact-form-box textarea {
    padding: 12px 15px;
    margin-bottom: 20px;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.25);
    color: #000000;
    transition: border 0.3s ease;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus {
    border-color: #1875ff;
    outline: none;
}

.contact-form-box ::placeholder {
    color: #575656;
}

/* From Uiverse.io by barisdogansutcu */
.contact-button {
    font-family: "Outfit", sans-serif;
    font-weight: bold;
    padding: 17px 40px;
    border-radius: 50px;
    cursor: pointer;
    border: 0;
    background-color: white;
    box-shadow: rgb(0 0 0 / 5%) 0 0 8px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 15px;
    transition: all 0.5s ease;
}

.contact-button:hover {
    letter-spacing: 3px;
    background-color: #1875ff;
    color: hsl(0, 0%, 100%);
    box-shadow: #1875ff 0px 7px 29px 0px;
}

.contact-button:active {
    letter-spacing: 3px;
    background-color: hsl(216, 100%, 55%);
    color: hsl(0, 0%, 100%);
    box-shadow: rgb(24, 117, 255) 0px 0px 0px 0px;
    transform: translateY(10px);
    transition: 100ms;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 20px 0;
    }
}

/* ****************************** Footer *********************************************** */
.footer:before,
.footer:after {
    box-sizing: border-box;
}

/* html {
  font-size: 100%;
} */

/* body {
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  font-size: 14px;
  background-color: #f4f4f4;
  align-items: start;
  min-height: 100vh;
} */

.footer {
    display: flex;
    flex-flow: row wrap;
    padding: 30px 30px 20px 30px;
    color: #2f2f2f;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
}

.footer>* {
    flex: 1 100%;
}

.footer__addr {
    margin-right: 1.25em;
    margin-bottom: 2em;
}

.footer__logo {
    /* font-family: "Pacifico", cursive; */
    font-weight: 400;
    /* text-transform: lowercase; */
    font-size: 1.5rem;
}

.footer__addr h2 {
    margin-top: 1.3em;
    font-size: 15px;
    font-weight: 400;
}

.nav__title {
    font-weight: 400;
    font-size: 15px;
}

.footer address {
    font-style: normal;
    color: #000000;
}

.footer__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    max-width: max-content;
    background-color: rgb(33, 33, 33, 0.07);
    border-radius: 100px;
    color: #2f2f2f;
    line-height: 0;
    margin: 0.6em 0;
    font-size: 1rem;
    padding: 0 1.3em;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 2em;
}

.footer a {
    text-decoration: none;
}

.footer__nav {
    display: flex;
    flex-flow: row wrap;
}

.footer__nav>* {
    flex: 1 50%;
    margin-right: 1.25em;
}

.nav__ul a {
    color: #000000;
}

.nav__ul--extra {
    column-count: 2;
    column-gap: 1.25em;
}

.legal {
    display: flex;
    flex-wrap: wrap;
    color: #070606;
}

.legal__links {
    display: flex;
    align-items: center;
}

.heart {
    color: #2f2f2f;
}

@media screen and (min-width: 24.375em) {
    .legal .legal__links {
        margin-left: auto;
    }
}

@media screen and (min-width: 40.375em) {
    .footer__nav>* {
        flex: 1;
    }

    .nav__item--extra {
        flex-grow: 2;
    }

    .footer__addr {
        flex: 1 0px;
    }

    .footer__nav {
        flex: 2 0px;
    }
}

/* Mobile Responsiveness */

@media (max-width: 768px) {


    /* Hero section */
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Product section */
    .image-row {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .image-container {
        width: 90%;
        max-width: 300px;
    }

    .content-table {
        grid-template-columns: 1fr;
    }

    /* Kenwood section */
    .kenwood-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .kenwood-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .kenwood-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .kenwood-image img {
        width: 100%;
        height: auto;
    }

    /* Footer */
    .footer {
        flex-direction: column;
        padding: 20px;
    }

    .footer__nav {
        flex-direction: column;
    }

    /* .nav__ul--extra {
        column-count: 1;
    }

    .mobile-toggle {
        display: block;
        position: absolute;
        right: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar {
        display: none;
        width: 100%;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .navbar__menu {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar__link {
        padding: 1rem;
        text-align: center;
    } */
}


/* Variant tabs */

/* Variant Tabs */
.cleaning_variant-tabs {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.cleaning_tab {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border: 2px solid transparent;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 50px;
}

.cleaning_variant_img {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.cleaning_variant_span {
    font-size: 10px;
}

/* Specific Colors */
.cleaning_tab:nth-child(1) {
    background-color: rgba(121, 190, 37, 0.1);
    border-color: rgb(151, 251, 0);
}

.cleaning_tab:nth-child(2) {
    background-color: rgba(136, 0, 255, 0.1);
    border-color: rgb(136, 0, 255);
}

.cleaning_tab:nth-child(3) {
    background-color: rgba(5, 123, 21, 0.141);
    border-color: rgb(28, 97, 6);
}

.cleaning_tab:nth-child(4) {
    background-color: rgba(255, 184, 3, 0.1);
    border-color: rgb(255, 170, 0);
}

.cleaning_tab:nth-child(5) {
    background-color: rgba(0, 221, 255, 0.141);
    border-color: rgb(0, 255, 234);
}
.cleaning_tab:nth-child(6) {
    background-color: rgba(255, 0, 0, 0.1);
    border-color: rgb(255, 21, 0);
}

/* Active Tab Highlight */
.cleaning_tab img {
    width: 12px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.cleaning_tab.active {
    border-color: #000000;
    /* Blue */
    background-color: #e9f2ff;
    font-weight: bold;
}

.product {
    margin-bottom: 80px;
    padding: 40px;
    background: #f4f4f4;
    border-radius: 16px;
}

