/* =================================================== */
/* Project: Hummingbird Innovations IO
Auther: HIL
Version: 1.0 */
/* ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&display=swap');

:root {
    /* body bg color */
    --bodyColor: #fff;

    /* primary brand color */
    --primary-color: #000;

    /* primary brand color */
    --box-color: #f9fafb;

    /* primary brand color */
    --brand-color: #00a4ef;
    /* for RGB >> rgb(0,164,239) */

    /* secondary brand color 2*/
    --brand-color2: #FFB900;
    /* for RGB >> rgb(255,185,0) */

    /* secondary brand color 3*/
    --brand-color3: #7e36f4;
    /* for RGB >> rgb(126,54,244) */

    /* grey color */
    --grey: #646464;

    /* border radius */
    --border-radius: 15px;

    /* Box Shadow  */
    --box-shadow: 0px 0px 2px 2px #f2f4fe;
}

.brand-gradient {
    background: #00A4EF;
    background: linear-gradient(to right, #00A4EF 19%, #FFB900 52%, #7E36F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-gradient-2 {
    background: #00A4EF;
    background: radial-gradient(circle farthest-corner at top right, #00A4EF 17%, #FFB900 44%, #7E36F4 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-gradient-3 {
    background: #00A4EF;
    background: linear-gradient(to right, #00A4EF 15%, #FFB900 40%, #00A4EF 69%, #7E36F4 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-blue {
    background: #00A4EF;
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

::selection {
    color: var(--box-color);
    background-color: var(--brand-color);
}

.fad:before {
    color: var(--box-color);
}

.fad:after {
    color: var(--box-color);
}

.navbar.scrolled .fad:before {
    color: var(--primary-color);
}

.navbar.scrolled .fad:after {
    color: var(--primary-color);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Lexend', 'sans-serif';
    /* font-family: 'Montserrat', 'sans-serif'; */
}

/* .bg-primary {
    background: url(../img/hero/hero-bg.png);
    background-size: cover;
    background-color: #fff !important;
} */

.hero {
    background-color: #000000 !important;
    position: relative !important;
    z-index: 1;
}

h2 {
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 15px;
}

h4 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 15px;
}

p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.font-large {
    font-size: 70px !important;
    font-weight: 800 !important;
}

.hero h1 {
    font-size: 60px;
    font-weight: 700;
}

.hero p {
    font-size: 22px;
    font-weight: 500;
}

.w-300 {
    width: 300px;
}

.comming-soon h1 {
    font-size: 70px;
    font-weight: 700;
}

.comming-soon p {
    font-size: 30px;
    font-weight: 500;
    padding-right: 120px;
    padding-left: 120px;
}

.title-2 {
    font-size: 20px;
    font-weight: 500;
    color: var(--brand-color);
}

.body-1 {
    font-size: 16px;
    text-decoration: none;
}

.section-area {
    position: relative;
    padding: 80px;
}

.vh-50 {
    height: 50vh;
}

/* Navbar */

.navbar {
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 90%;
    margin: 20px auto 0;
    border-radius: 10px;
    background: transparent !important;
    font-weight: 600;
}

.navbar.fixed-top {
    position: fixed;
    color: white;
}

.navbar.scrolled {
    position: sticky;
    top: 15px;
    background: var(--box-color) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    width: 70%;
    margin: 20px auto 0;
    border-radius: var(--border-radius);
}

.nav-item {
    margin-right: 20px;
}

.navbar-brand img {
    transition: all 0.6s ease-in-out;
}

.logo-scrolled {
    display: none;
}

.navbar .logo-fixed {
    display: inline-block;
}

.navbar.scrolled .logo-fixed {
    display: none;
}

.navbar.scrolled .logo-scrolled {
    display: inline-block;
}

.navbar .nav-link {
    color: white;
    font-size: 25px;
    transition: color 0.6s ease-in-out;
}

.navbar.scrolled .nav-link {
    font-size: 20px;
    color: black;
    transition: color 0.6s ease-in-out;
}

.navbar.scrolled .nav-item:last-child {
    display: none;
}

.navbar-bar {
    background-color: white;
    height: 35px;
    width: 35px;
    padding: 7px;
    border-radius: 30px;
}


/* Btns  */

.btn {
    color: var(--box-color);
    background-color: var(--brand-color);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}

.btn:hover {
    color: var(--box-color);
    background-color: var(--primary-color);
    border-radius: 50px;
    font-size: larger;
}

.btn i {
    font-size: 17px;
    transition: all 0.4s ease-in-out;
    padding-left: 5px;
}

.btn i:hover {
    padding-left: 20px;
}

.demo {
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
    border-radius: 50px;
    font-size: 18px !important;
    margin-top: 5px;
    text-align: center;
    width: 200px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.demo:hover {
    background: linear-gradient(231deg, #7E36F4 0%, #00A4EF 100%);
    transform: scale(1.08);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-item i {
    padding-left: 5px;
    transition: all 0.4s ease-in-out;
}

.nav-item i:hover {
    padding-left: 10px;
}

.btn-gradient {
    color: var(--box-color) !important;
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
    background-color: var(--brand-color3);
    border-radius: var(--border-radius);
    font-weight: 600;
    min-width: 200px;
    transition: all 0.4s ease-in-out;
}

.btn-gradient:hover {
    background: linear-gradient(231deg, #7E36F4 0%, #00A4EF 100%);
}

.btn-gradient {
    min-width: 200px;
}

.btn-secondary {
    color: var(--box-color);
    background-color: var(--grey);
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.4s ease-in-out;
}

.hero .btn {
    padding: 8px 30px;
}

/* .btn .hero {
    color: var(--box-color);
    border: 2px solid var(--brand-color);
    background-color: var(--brand-color);
    border-radius: var(--border-radius);
    font-weight: 600;
    min-width: 200px;
    transition: all 0.4s ease-in-out;
    padding: 8px 30px;
}

.btn .hero:hover {
    color: var(--box-color);
    background-color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
} */





.btn-light {
    color: var(--box-color);
    border: 2px solid var(--box-color);
    background-color: transparent;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: all 0.4s ease-in-out;

}

.btn-light:hover {
    color: var(--primary-color);
    background-color: var(--box-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
}

.btn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: auto;
    align-items: center;
}

.btn-grid i {
    font-size: 14px;
}

.generator {
    color: var(--box-color) !important;
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
    background-color: var(--brand-color3);
    border-radius: 10px;
    transition: transform 0.4s ease-in-out;
    padding: 3px 13px;
    font-size: 18px;
    font-weight: 400;
}

.generator:hover {
    background: linear-gradient(231deg, #7E36F4 0%, #00A4EF 100%);
    transform: scale(1.5);
}

.icon-circle {
    height: 50px;
    width: 50px;
    padding: 10px;
    text-align: center;
    color: var(--box-color);
    border-radius: 50px;
    font-size: 20px;
    text-align: center;
    display: inline-block;
    background: var(--brand-color);
    /* background: linear-gradient(231deg, rgb(220 196 255) 0%, rgb(200 215 255) 100%); */
    box-shadow: var(--box-shadow);
    /* box-shadow: 0 0 7px 1px #e2d1ff; */
}


.w-half {
    width: 25%;
}


/* Hero Section  */

.hero-section {
    padding: 20px;

}

/* Image scroll animation  */

.scroll-image-container {
    position: relative;
    padding: 80px;
    width: 100%;
    /* height: 110vh; */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    perspective: 1200px;
}

.scroll-image-wrapper {
    position: relative;
    width: 75%;
    /* Increased width */
    max-width: 1000px;
    /* Adjusted for 16:9 ratio */
}

.scroll-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    /* Maintain 16:9 aspect ratio */
    object-fit: cover;
    display: block;
    border-radius: 20px;
    /* border: 5px solid var(--box-color); */
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4); */
    /* Enhanced drop-shadow */
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smoother animation */
}

/* feature area */

.feature-area {
    position: relative;
    padding: 80px;
}

.feature-content {
    height: 100%;
    /* min-height: 30vh; */
    /* Adjust this percentage as needed */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* height: 200px;
    max-height: 250px; */
    padding: 50px 15px;
    background: #f5f9ff;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}

form.feature-content {
    text-align: left !important;
}

.feature-content a {
    color: #2f2f2f;
    transition: 0.5s;
}

.feature-content.two {
    background: #f3fbfb;
}

.feature-content.three {
    background: #fff9f3;
}

.feature-content.four {
    background: #fbf3ff;
}

.feature-icon i {
    font-size: 30px;
    margin-bottom: 20px;
    transition: all 0.2s ease-in-out;
}

.feature-content::before {
    width: 100%;
    height: 0px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    z-index: -1;
    transition: 0.5s;
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
    border-radius: var(--border-radius);
    /* border-radius: 0 0 4px 4px; */
    opacity: 0.9;
}

.feature-content:hover::before {
    height: 100%;
    width: 100%;
}

.feature-content:hover {
    color: var(--box-color);
    transform: translateY(-10px);
    box-shadow: none;
}

.feature-content:hover a {
    color: var(--box-color);
}

.feature-content:hover .feature-icon i {
    filter: brightness(0) invert(1);
}

.feature-description {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 92%;
    height: 90%;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    border-radius: var(--border-radius);
}

.feature-content:hover .feature-description {
    opacity: 1;
}

.f-14 {
    font-size: 14px;
}

.f-card {
    height: 190px;
    padding: 40px 20px;
}


.benifits {
    font-size: 18px !important;
}

.benifits h4 {
    font-size: 18px !important;
}

.benifits i {
    font-size: 25px !important;
}

/* End feature area */

/* Our Service area  */

.service-area {
    position: relative;
    padding: 80px;
}

.service-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background: #f5f9ff;
    text-align: left;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}

.service-content.two {
    background: #f3fbfb;
}

.service-content.three {
    background: #fff9f3;
}

.service-content.four {
    background: #fbf3ff;
}

.service-content p {
    margin-bottom: 0;
    font-size: 16px;
}

.service-content .icon-circle {
    margin-bottom: 20px;
}

.service-content::before {
    width: 100%;
    height: 0px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    z-index: -1;
    transition: 0.5s;
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
    ;
    border-radius: var(--border-radius);
    /* border-radius: 0 0 4px 4px; */
    opacity: 0.9;
}

.service-content:hover::before {
    height: 100%;
    width: 100%;
}

.service-content:hover {
    color: var(--box-color);
    transform: translateY(-10px);
    box-shadow: none;
}

/* .service-content:hover .feature-icon i {
    filter: brightness(0) invert(1);
} */

/* Our Service area  */

/* FAQ Area  */

.faq-area {
    position: relative;
    padding: 80px;
}

.accordion p {
    font-size: 16px;
    font-weight: 400;
}

.faq-area .title {
    font-size: 18px;
    font-weight: 400;
}


/* End FAQ Area  */


.fa-list {
    list-style: none;
    padding-left: 0;
}

.fa-list li::before {
    content: "\f101";
    /* Unicode for Font Awesome 'fa-angle-right' */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
}


/* Products Section  */

.products-section {
    position: relative;
    padding: 80px;
}

.product-item h4 {
    padding: 0px 10px;
    font-size: 25px;
}

.product-item p {
    padding: 0px 10px;
    font-size: 15px;
}

.product-item {
    width: 100%;
    /* Full width on mobile */
    height: auto;
    /* Maintain flexibility */
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    background: white;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.desc {
    min-height: 240px;
    margin-bottom: 15px;
}

.product-item img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-item:hover {
    /* color: var(--box-color); */
    transform: translateY(-10px);
}

.products-section .btn {
    width: 100%;
}

/* for slick slider  */


.products-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0%;
}

.slick-slide {
    margin: 25px 10px;
    /* Adjust gap between slides */
}

.slick-list {
    padding: 10px 0;
    /* Adjust top and bottom padding */
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.products-section .btn {
    margin-top: auto;
    /* Push button to the bottom */
}

/* slick btns custom  */

.slick-dots li {
    position: relative;
    display: inline-block;
    width: 10px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button:before {
    font-size: 10px !important;
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 57%;
    /* transform: translateY(-50%); */
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 22px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition: 0.3s ease;
}

.custom-prev {
    left: 30px;
}

.custom-next {
    right: 30px;
}

.custom-prev:hover,
.custom-next:hover {
    background: rgba(0, 0, 0, 0.8);
}



/* Product Home Start  */

.products-section-home {
    position: relative;
    padding: 80px;
}

.product-item-home h4 {
    padding: 0px 10px;
    font-size: 30px;
}

.product-item-home p {
    padding: 0px 10px;
    font-size: 18px;
}

.product-item-home {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 15px;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    background: var(--box-color);
    overflow: hidden;
    position: relative;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-item-home img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.product-item-home:hover {
    /* color: var(--box-color); */
    transform: translateY(-10px);
}

.products-section-home .btn {
    width: 100%;
}

/* Products Home End  */


/* Scroll Up Btn  */

#scrollUpBtn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0px 0px 2px 2px rgba(13, 110, 253, 0.25);
    transition: 0.3s ease-out;
    z-index: 9999;
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
}

#scrollUpBtn:hover {
    background: linear-gradient(231deg, #7E36F4 0%, #00A4EF 100%);
    transform: scale(1.05);
    transition: 0.3s ease-in-out;
}


#animated-bg {
    position: absolute;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -9999;
}

.container {
    position: relative !important;
    z-index: 1;
}


/*============== start Footer section ==========*/

.footer {
    background-color: #000;
    position: relative !important;
}

.footer img {
    width: 250px;
}

.footer p {
    color: var(--box-color);
    font-size: 16px;
}

.footer h6 {
    color: var(--box-color);
    font-size: 14px;
}

.footer h4 {
    font-size: 18px;
    color: var(--box-color);
}

.footer .icon-sm {
    color: var(--brand-color);
}

.footer .input-box input,
.footer .input-box input:focus {
    background-color: transparent !important;
    border-radius: 0 !important;
    outline: none !important;
    border: none;
    box-shadow: none !important;
    color: var(--box-color) !important;
    border-radius: var(--border-radius);
    padding: 0 16px;
}

.footer .input-box .btn {
    height: 100%;
}

.footer input::placeholder {
    color: #646464;
}

.footer .links a {
    font-size: 16px;
    color: var(--box-color);
    text-decoration: none;
}

.footer .links a:hover {
    color: var(--brand-color) !important;
}

.footer ul li a:hover {
    color: var(--brand-color);
}

hr {
    color: var(--box-color);
}


/* Copyright footer section area */

.copyright-area {
    padding: 0px 15px 20px 15px;
    margin: 0;

}

/* 
.copyright-area p {
    color: var(--box-color);
    font-size: 15px;
}

.copyright-area p a {
    color: var(--box-color);
    display: inline-block;
    font-weight: 600;
}

.copyright-area p a:hover {
    color: var(--brand-color);
} */

.copyright-area ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    text-align: right;
}

.copyright-area ul li {
    display: inline-block;
    color: var(--box-color);
    font-size: 15px;
    position: relative;
    margin-left: 10px;
    margin-right: 10px;
}

.copyright-area ul li a {
    display: inline-block;
    color: var(--box-color);
    text-decoration: none;
}


.copyright-area ul li a:hover {
    color: var(--brand-color);
}

.copyright-area ul li::before {
    content: '';
    position: absolute;
    top: 5px;
    right: -13px;
    width: 1px;
    height: 14px;
    background-color: var(--box-color);
}

.copyright-area ul li:last-child {
    margin-right: 0;
}

.copyright-area ul li:last-child::before {
    display: none;
}

.copyright-area ul li:first-child {
    margin-left: 0;
}

@media (max-width: 768px) {
    .copyright-area p {
        text-align: center;
    }

    .copyright-area ul {
        text-align: center;
        margin-top: 10px;
    }
}

/* End Copyright footer section area */


/* SEO footer section area */

.seo-area {
    background-color: #141414;
    padding: 20px;
}

.seo-area ul {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none;
    /* text-align: right; */
}

.seo-area ul li {
    display: inline-block;
    color: var(--box-color);
    font-size: 12px;
    position: relative;
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 5px;
}

.seo-area ul li a {
    display: inline-block;
    color: var(--box-color);
}

.seo-area ul li a:hover {
    color: var(--brand-color);
}

.seo-area ul li::before {
    content: '';
    position: absolute;
    top: 5px;
    right: -17px;
    width: 1px;
    height: 14px;
    background-color: var(--box-color);
}

.seo-area ul li:last-child {
    margin-right: 0;
}

.seo-area ul li:last-child::before {
    display: none;
}

/* .seo-area ul li:first-child {
    margin-left: 0;
  } */

@media (max-width: 768px) {
    .seo-area p {
        text-align: center;
    }

    .seo-area ul {
        text-align: center;
        margin-top: 10px;
    }
}

/* End SEO footer section area */


/*============== End Footer section ==========*/


/* QR Code Generator CSS  */


.code-card {
    background-color: #000000;
    border-radius: var(--border-radius);
    padding: 30px;
}

.selection-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}

.qr-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.wifi-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

/* .qr-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
} */

.qr-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 10px 0;
}

.qr-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 12px;
    color: var(--box-color);
    border: 2px solid var(--box-color);
    /* background: #00a4ef; */
    padding: 10px 10px 7px 10px;
    min-width: 79px;
    cursor: pointer;
    border-radius: 10px;
    transition: color 0.2s ease, font-weight 0.2s ease;
}

.qr-option:hover {
    background: linear-gradient(231deg, #7E36F4 0%, #00A4EF 100%);
    border: none;
}

.qr-option i {
    font-size: 20px;
    margin-bottom: 5px;
}

input[type="radio"]:checked+.qr-option {
    color: #fff;
    /* black on selected */
    font-weight: bold;
}

/* .qr-options label {
    background: #00a4ef;
    color: rgb(0, 0, 0);
    padding: 7px 15px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
} */

.qr-options input {
    display: none;
}

.lable1 {
    text-align: left;
    padding-left: 8px;
    margin-top: 5px;
    color: var(--box-color);
}

.checkbox {
    display: flex;
    justify-content: left;
    align-items: center;
    color: var(--box-color);
}

.checkbox input {
    width: 30px !important;
}

.qr-options input:checked+label {
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
    /* background: #ffb900; */
    color: black;
    border: none;
}

.code-card input {
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    border: none;
    outline: none;
}

.code-card textarea {
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    border: none;
    outline: none;
}

.code-card select {
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    border: none;
    outline: none;
}

.code-card select option {
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    border: none;
    outline: none;
}

/* Apply to all option elements */
select option {
    background-color: white;
    color: #333;
    /* font: inherit; */
    padding: 12px;
    border: none;
}

/* Optional: Hover style (mostly for desktop browsers) */
select option:hover {
    background-color: #f1f1f1;
    color: #000;
}


.code-card button {
    font-family: 'Lexend', sans-serif;
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
    color: #ffffff;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 0;
    font-size: 16px;
    width: 100%;
    border: none;
    outline: none;
}

.qr-options button {
    font-family: 'Lexend', sans-serif;
    background: #00a4ef;
    color: #000;
    cursor: pointer;
    transition: 0.3s;
    margin-bottom: 0;
    font-size: 16px;
    width: 100%;
}

.code-card button:hover {
    color: white;
    font-size: 18px;
    font-weight: 600;
    background: linear-gradient(to right, #00A4EF 19%, #7E36F4 52%, #FFB900 100%);
    /* background: #ffb900; */
}

#qrcode {
    margin: 10px 0;
    padding: 15px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    min-height: 200px;
    transition: transform 0.3s ease-in-out;
    color: var(--primary-color);
}

#qrcode.generated {
    transform: scale(1.05);
}

#barcodeWrapper {
    position: relative;
    /* ⬅️ this is the fix */
    margin: 10px 0;
    padding: 15px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    width: 100%;
    /* min-height: 185px; */
    transition: transform 0.3s ease-in-out;
    max-width: 100%;
    height: auto;
}

#barcode {
    z-index: 1;
}


@keyframes pop {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}


#barcodeWrapper.generated {
    animation: pop 0.4s ease-in-out;
}

/* .barcode-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #aaa;
    font-size: 16px;
    pointer-events: none;
    text-align: center;
    z-index: 1;
} */

.barcode-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 18px;
    pointer-events: none;
    text-align: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.barcode-placeholder.hidden {
    opacity: 0;
}

.wifi-group {
    display: none;
}


/* custom Select Styling  */

option {
    background-color: white;
    border-radius: 10px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 2.5em 0.5em 1em;
    margin: 10px 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #ccc;
    color: #333;
    transition: background 0.3s ease, border-color 0.3s ease;
}

select {
    background-color: white;
    border-radius: 10px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 2.5em 0.5em 1em;
    margin: 10px 0;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    border: 1px solid #ccc;
    color: #333;
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* SVG Arrow (down) */
select.round {
    background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: calc(100% - 1em) center;
    background-size: 18px 18px;
    padding-right: 3em;
}

/* Hover effect */
select:hover {
    border-color: #999;
    background-color: #f9f9f9;
}

/* Focus style */
select.round:focus {
    border-color: #666;
    outline: none;
}

/* animation */

select:focus-visible {
    animation: clickPulse 0.2s ease-out;
}

@keyframes clickPulse {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(2px);
    }

    100% {
        transform: translateY(0);
    }
}



/* Optional: Dark Mode Support */

/* @media (prefers-color-scheme: dark) {
    select {
        background-color: #1f1f1f;
        color: #f1f1f1;
        border-color: #444;
    }

    select.round {
        background-image: url("data:image/svg+xml;utf8,<svg fill='lightgray' height='18' viewBox='0 0 24 24' width='18' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
    }
} */




/* backup Select round Styling  */

/* 

select {
    background-color: white;
    border-radius: 10px;
    display: inline-block;
    font: inherit;
    line-height: 1.5em;
    padding: 0.5em 2.5em 0.5em 1em;

    margin: 10px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

select.round {
    background-image:
        linear-gradient(45deg, transparent 50%, gray 50%),
        linear-gradient(135deg, gray 50%, transparent 50%),
        radial-gradient(#ddd 70%, transparent 72%);
    background-size:
        6px 5px,
        6px 5px,
        24px 24px;
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) calc(1em + 5px),
        calc(100% - 15px) calc(1em + 5px),
        calc(100% - .5em) 0.7em;
}

select.round:focus {
    background-image:
        linear-gradient(45deg, white 50%, transparent 50%),
        linear-gradient(135deg, transparent 50%, white 50%),
        radial-gradient(gray 70%, transparent 72%);
    background-position:
        calc(100% - 15px) 1em,
        calc(100% - 20px) 1em,
        calc(100% - .5em) .5em;
    background-size:
        6px 5px,
        6px 5px,
        24px 24px;
    background-repeat: no-repeat;
    outline: 0;
}
 */






.color-option {
    text-align: center;
    padding: 0px 15px;
    color: var(--box-color);
    border: 2px solid var(--box-color);
    border-radius: 10px;
    cursor: pointer;
    min-width: 215px;
}

.color-option i {
    font-size: 24px;
    display: block;
}

.color-picker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    /* justify-content: center; */
    margin: 15px 0;
}

.color-picker label {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

@media screen and (max-width: 480px) {

    .qr-options {
        gap: 12px;
    }

    .color-picker {
        flex-wrap: nowrap;
        gap: 7px;
        justify-content: center;
    }

    .color-option {
        padding: 4px 6px;
        min-width: 135px;
        width: auto;
    }

    .color-option i {
        font-size: 18px;
    }

    .color-picker label {
        gap: 5px;
        font-size: 12px;
    }

    /* .color-picker label {
        gap: 10px;
        font-size: 14px;

    } */

    .color-option input {
        width: 20px !important;
        height: 20px !important;
    }

    .code-card input,
    .code-card textarea {
        margin: 5px 0;
    }
}


.color-picker input[type="color"] {
    cursor: pointer;
}

.color-option input {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 15px;
    border: 2px solid var(--box-color);
    padding: 0;
    background: none;
    cursor: pointer;
}

/* .color-input {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 15px;
    border: 2px solid var(--box-color);
    padding: 0;
    background: none;
    cursor: pointer;
} */

/* Remove default styles for color input (especially in Chrome) */
.color-input::-webkit-color-swatch-wrapper {
    padding: 0;
}

.color-input::-webkit-color-swatch {
    border: none;
    border-radius: 8px;
}


/*============== Start contact section ==========*/

.contact input[type="text"],
.contact input[type="email"],
.contact input[type="text"]:focus,
.contact input[type="email"]:focus,
.contact input[type="text"]:active,
.contact input[type="email"]:active,
.contact textarea,
.contact textarea:focus {
    outline: none !important;
    /* border: none; */
    box-shadow: none !important;
    color: #000000 !important;
}

.contact input::placeholder,
.contact textarea::placeholder {
    color: #a1a1a1;
}

.place-holder {
    color: #a1a1a1;
}

/* .contact label {
    margin-bottom: 5px !important;
    background-color: var(--box-color);
    transition: ease-in-out 0.3s;
    border-radius: 10px;
    padding: 5px;
    padding-right: 10px;
    display: inline-block;
} */

.contact input,
.contact select,
.contact textarea {
    margin: 10px 0;
    padding: 12px;
    border-radius: 10px;
    font-size: 16px;
    width: 100%;
    border: none;
    /* border: 1px solid var(--grey); */
    outline: none;
}



.contact img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 200px;
    right: 0;
    z-index: -1;
}

.done-msg {
    color: var(--primary-color);
}

.toast-success {
    background-color: #0d9700 !important;
    opacity: 1 !important;
}

.toast-error {
    background-color: #8b0500 !important;
    opacity: 1 !important;
}

.toast {
    border-radius: var(--border-radius) !important;
    color: var(--bodyColor) !important;
    box-shadow: none !important;
}

.contact-map {
    width: 100%;
    height: 360px;
}

.required {
    color: red;
    /* Makes the asterisk visible */
    font-weight: bold;
    margin-left: 5px;
}

.input-container {
    position: relative;
    display: inline-block;
}

.custom-placeholder {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #000000;
    pointer-events: none;
    transition: 0.3s ease-out;
    margin-left: 1rem;
}

.custom-textarea {
    left: 0px;
    top: 20%;
    /* transform: translateY(-50%);
  font-size: 16px;
  color: #000000;
  pointer-events: none;
  transition: 0.3s ease-out;
  margin-left: 1rem; */
}

.input-container input:focus+.custom-placeholder,
.input-container input:not(:placeholder-shown)+.custom-placeholder {
    display: none;
}

/*============== End contact section ==========*/



.odoo-logo-transparent {
    height: 60px;
    padding: 2px 5px 18px 5px;
}

.odoo-logo {
    height: 80px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
}

.card-bg-image {
    border: none;
    text-align: left;
    justify-items: left;
    margin-top: 20px;
    margin-bottom: 20px;
    padding: 40px;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-image: url("../img/hero/odoo-2.webp");
    background-color: #cccccc;
    background-size: cover;
    /* aspect-ratio: 16/9; */
}

.card-bg-image .btn:hover {
    font-size: larger;
}


/* ===============================
   Mobile Sticky Navigation
================================ */

.mobile-sticky-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 75px;
    background: #ffffff;
    display: flex;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    overflow: hidden;
    /* required for nav-level ripple */
}

/* Hide on desktop */
@media (min-width: 769px) {
    .mobile-sticky-nav {
        display: none;
    }
}


/* ===============================
   Nav Items
================================ */

.mobile-sticky-nav .m-nav-item {
    flex: 1;
    text-align: center;
    text-decoration: none;
    color: var(--primary-color);
    font-size: 11px;
    font-family: 'Lexend';
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease, transform 0.15s ease;
}

.mobile-sticky-nav .m-nav-item i {
    font-size: 22px;
    margin-bottom: 5px;
}

/* Press feedback */
.mobile-sticky-nav .m-nav-item:active {
    transform: scale(0.9);
}

/* Active state */
.mobile-sticky-nav .m-nav-item.active {
    color: var(--brand-color);
}

/* CTA Highlight */
.mobile-sticky-nav .m-nav-item.highlight {
    color: var(--brand-color);
    font-weight: 600;
}

/* ===============================
   Icon Bounce (iOS-style)
================================ */

.mobile-sticky-nav .m-nav-item.bounce i {
    animation: iosBounce 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes iosBounce {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.85);
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* Optional pop for active icon on load */
.mobile-sticky-nav .m-nav-item.active i {
    animation: pop 0.25s ease;
}

@keyframes pop {
    50% {
        transform: scale(1.15);
    }
}

/* ===============================
   NAV-LEVEL RIPPLE (GLOBAL)
================================ */

.mobile-sticky-nav .nav-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgb(103 58 183 / 27%);
    transform: scale(0);
    animation: navRipple 0.7s ease-out;
    pointer-events: none;
}

@keyframes navRipple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* hide seo footer  */

.mobile-sticky-nav.hide-at-bottom {
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

/* ===============================
   Sticky Nav Visibility Control
================================ */

/* Default: hidden */
.mobile-sticky-nav {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Show when allowed */
.mobile-sticky-nav.nav-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Hide when footer appears */
.mobile-sticky-nav.hide-at-bottom {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}



/* ==================
   PWA INSTALL MODAL
===================== */


.install-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.install-modal.hidden {
    display: none;
}

.install-card {
    background: #ffffff;
    color: #000;
    width: 90%;
    max-width: 360px;
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    animation: scaleIn 0.25s ease;
}

.install-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
}

.install-card p {
    font-size: 14px;
    opacity: 0.8;
}

.install-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px;
}

.btn-add {
    flex: 1;
    background: linear-gradient(231deg, #00A4EF 0%, #7E36F4 100%);
    border: none;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

.btn-later {
    flex: 1;
    background: transparent;
    border: 2px solid #ccc;
    color: #333;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease-in-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.btn-add:hover,
.btn-later:hover {
    color: var(--box-color);
    background: var(--primary-color);
    background-color: var(--primary-color);
    border-radius: 50px;
    font-size: larger;
    border: 0;
}