* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



:root {
    --primary-text-color: #fff;
    --secondary-text-color: #e5dede;
    --ternary-text-color: #872828;

    --primary-bg-color: #7de310;
    --secondary-bg-color: #2658d8;
    --ternary-bg-color: #9e1845;

    --primary-font-family: 'Inter', sans-serif;
    --secondary-font-family: "Inter", sans-sarif;

    --main-h1-color: var(--primary-text-color);
    --main-h2-color: var(--primary-text-color);
    --main-h3-color: var(--primary-text-color);
    --main-h4-color: var(--primary-text-color);
    --main-h5-color: var(--primary-text-color);

    --main-p-color: #7A7A7A;
    --main-p-font-size: 16px;
    --main-p-font-weight: 400;
    --main-p-line-height: 16px;

    --main-primary-button-color:#212121;
    /*--main-primary-button-bgcolor: #f9b641;*/
    --main-primary-button-bgcolor: #FFC107;
    --main-primary-button-font-family: "Montserrat", sans-serif;

    --main-secondary-button-color: #121212;
    --main-secondary-button-family: "Montserrat", sans-serif;
    /*--main-secondary-button-bgcolor: #373737;*/
    --main-secondary-button-bgcolor: #FFD54F;

}

body {
        background-color: #121212;
    color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--primary-font-family);
    color: var(--primary-text-color);

}

h3 {
    font-family: var(--secondary-font-family);
    color: var(--primary-text-color);

}

h1 {
    font-weight: 600;
    font-size: 55px;
    line-height: 69px;
}

h2 {
    font-weight: 500;
    font-size: 45px;
    line-height: 57px;
}

h3 {
    font-weight: 500;
    font-size: 35px;
    line-height: 44px;
}

h4 {
    font-weight: 500;
    font-size: 25px;
    line-height: 32px;
}

h5 {
    font-weight: 500;
    font-size: 22px;
    line-height: 27px;
}

h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
}



p {
    font-family: var(--secondary-font-family);
    color: var(--secondary-text-color);
    font-size: 18px;
    line-height: 20px;
    font-weight: 400;
}

li {
    font-size: 15px;
    line-height: 30px;
    color: var(--secondary-text-color);
    font-family: var(--primary-font-family);
}

.primary-button {
    background-color: var(--main-primary-button-bgcolor);
    color: var(--main-primary-button-color);
    font-family: var(--secondary-font-family);
    font-size: 18px;
    padding: 10px 15px;
    border-radius: 10px;
    font-weight: 400;
    text-align: center;
    border: 2px solid #fff;
}


.secondary-button {
    background-color: var(--main-secondary-button-bgcolor);
    color: var(--main-secondary-button-color);
    font-family: var(--secondary-font-family);
    font-size: 20px;
    padding: 10px 15px;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 20px;
    text-align: center;
}

.primary-button:hover {
    background-color: var(--main-secondary-button-bgcolor);
    transition: 0.7s;
}

.secondary-button:hover {
    border: none;
    color: #fff;
    background-color: var(--main-primary-button-bgcolor);
    transition: 0.7s;
}

.view-all-btn {
    font-size: 16px;
    padding: 10px 18px;
    border: 2px solid #fff;
    color: #fff;
    border-radius: 7px;
}

.view-all-btn:hover {
    background-color: var(--main-secondary-button-bgcolor);
    color: #fff;
    transition: 0.7s;
}


.herobutton {
    margin-top: 50px;
}

.addtocart {
    border: 1px solid var(--main-primary-button-bgcolor);
    border-radius: 30px;
    padding: 8px;
    color: var(--main-primary-button-bgcolor);
}

.display-flex {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.flex-column-start,
.flex-column-end,
.flex-column-center,
.flex-column-center-start {
    display: flex;
    flex-direction: column;
}

.flex-column-start {
    align-items: flex-start;
    justify-content: start;
}

.flex-column-end {
    align-items: flex-start;
    justify-content: end;
}

.flex-column-center {
    justify-content: center;
    align-items: center;
}

.flex-column-center-start {
    justify-content: center;
    align-items: flex-start;
}

.flex-space-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-spacing {
    margin-bottom: 100px;
}

.glass-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 998 !important;
    transition: all 0.3s ease-in-out;
}

.modal-title {
    color: var(--primary-text-color) !important;
}

.modal-content {
    background-color: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(40px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 998 !important;
    transition: all 0.3s ease-in-out !important;
}

.gradient-box {
        background: radial-gradient(circle at top left, #090a0b, #252728);
        color: #fff;
        border-radius: 20px;
        padding: 40px;
        height: 100%;
        justify-content: space-between;
    }

    .form-control,
    .form-check-input {
        /* background-color: #1e1e1e; */
    /* color: white; */
    border: 1px solid #444;
}

.form-label {
    font-size: 20px !important;
}

.form-check-label {
    font-size: 20px;
}


.hover-dropdown:hover>.dropdown-menu {
    display: block;
    margin-top: 0;
}

.hover-dropdown .dropdown-menu {
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.hero-banner,
.banner,
.home-section {
    z-index: 1 !important;
    position: relative;
}

.header-container {
    width: 100%;
    /* padding: 0 15px; */
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}


.logo-scroller {
    overflow: hidden;
    width: 100%;
    background-color: transparent;
    padding: 10px 0;
    position: relative;
}

.logo-track {
    display: flex;
    width: max-content;
    gap: 30px;
    animation: scrollLeft 40s linear infinite;
}

.brand-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}


.qty-btn {
    width: 56px;
    height: 56px;
    padding: 0px;
    font-size: 22px;
    line-height: 1;
    border: none !important;
}

.qty-input {
    width: 56px;
    height: 56px;
    padding: 0px;
    font-size: 22px;
    line-height: 1;
    border: none !important;
}

.nfc-card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px;
    flex-direction: column;
    margin: 0px !important;
    height: 430px;
    width: 100%;
}

/* Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


.trusted-section {
    margin-top: 50px !important;
    margin-bottom: 100px;
}



hr {
    margin: 0px !important;
    margin-bottom: 40px !important;
}




@media (min-width: 576px) {


    .header-container {
        max-width: 540px;
        padding: 0 !important;
    }

    .offcanvas-backdrop.show {
        opacity: 0 !important;
    }

}



@media (max-width: 768px) {

    .container-spacing-box {
        height: 190px !important;
    }

    .nfc-card-body-p {
        font-size: 16px !important;
    }

    .nfc-card-body {
        height: 360px !important;
    }

    .header-container {
        max-width: 720px;
        padding: 0 !important;
    }


    /* .container-spacing {
        height: 280px !important;
    } */

    .trusted-section {
        margin-bottom: 20px !important;
    }


    .nfc-card {
        margin-bottom: 30px !important;
    }

    .herobutton {
        margin-top: 0px !important;
    }


  


    .primary-button {
        padding: 6px 25px !important;
    }

    .view-all-btn {
        font-size: 13px;
        padding: 7px 15px;
    }

    .yourbrand-image {
        height: 300px !important;
    }

    h2 {
        font-size: 35px;
    }

    h3 {
        font-size: 30px !important;
    }

    .hero-section {
        height: 80vh;
    }

    p {
        font-size: 15px !important;
    }

    .responsive_navbar,
    .flexgrow {
        width: 100vw !important;
        flex-basis: 50% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .loginbtn {
        position: absolute;
        top: 10px;
        right: 70px;
    }

    .hideOnMobile {
        display: none;
    }

    #responsive_navbar {
        display: block !important;
    }

    #desktopnavbar {
        display: none !important;
    }



    .feature-box {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    .feature-icon {
        font-size: 30px;
        color: white;
    }

    .feature-title {
        font-weight: bold;
        font-size: 15px;
    }


    .feature-desc {
        font-size: 12px;
        color: #bbb;
    }

    .stats-box {
        background-color: #00aaff;
        color: white;
        padding: 20px 20px;
        text-align: center;
    }

    .stat-number {
        font-size: 20px;
        font-weight: bold;
    }

    .stat-desc {
        font-size: 18px;
    }



    .quantity-container {
        /* max-width: 120px; */

        border-radius: 8px;
        /* gap: 5px; */
    }

    .qty-btn {
        width: 56px;
        height: 56px;
        padding: 0px;
        font-size: 22px;
        line-height: 1;
        border: none !important;
    }

    .qty-input {
        width: 56px;
        height: 56px;
        padding: 0px;
        font-size: 22px;
        line-height: 1;
        border: none !important;
    }


    .custom-button {
        background-color: #28a745;
        color: white;
        padding: 10px 20px;
        border: none;
        cursor: pointer;
        font-size: 16px;

    }

    .custom-button:hover {
        background-color: #218838;
    }

    .container {
        padding: 10px !important;


    }
}


@media (min-width: 992px) {
    .header-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .header-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .header-container {
        max-width: 1320px;
    }
}

.profile-layout {
    display: flex;
    margin-top: 20px;
    min-height: 80vh;
}

.profile-sidebar {
    width: 250px;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
    margin-right: 20px;
    height: fit-content;
}

.profile-sidebar a {
    display: block;
    padding: 10px 15px;
    color: #e0e0e0;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 10px;
    transition: background-color 0.3s;
}

.profile-sidebar a:hover {
    background-color: #252525;
}

.nav-link {
    font-size: 20px !important;
}

.badge {
    font-size: 10px !important;
}

.dropdown-item {
    font-size: 15px !important;
}

.container {
    padding: 30px;
}

.img-section-spacing {
    margin-top: 97px;
    height: 50vh;
    width: 100%;
}

.container-spacing {
    margin-bottom: 20px;
}

.container-spacing-box {
    margin-bottom: 20px;
    height: 270px;

    /* Make sure it does not shrink */
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.product-img {
    display: block;
    width: 100%;       /* fill full width */
    height: 100%;      /* already OK */
    object-fit: cover; /* crop properly */
    border-radius: 10px;
}


.hero-section-spacing {
    margin-top: 110px;
}

.hero-section {
    z-index: 10;
    height: 80vh;
    overflow: hidden;
}

.home-overlay-container {
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);

}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
    transition: all 0.3s ease-in-out;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(31, 38, 135, 0.3);
}

.smart-technology {
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

a {
    text-decoration: none !important;
}

.cart-description,
.cart-summary {
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
}

.accordion,
.accordion-item,
.accordion-header,
.accordion-header button {
    background-color: #000 !important;
    color: #fff;
    border: none !important;
}

.accordion-item {
    border-bottom: 2px solid #fff !important;
}

.accordion-header button {
    font-size: 18px !important;
    font-family: 'Lucida Sans', Geneva, Verdana, sans-serif;
}



@keyframes pulse {
    from {
        transform: scale(0.9);
        opacity: 1;
    }

    to {
        transform: scale(1.8);
        opacity: 0;
    }
}




/* Additional styles... continue with your custom buttons, feature boxes, etc. */