/*      1)common style              */
/*      2)header-title.css Done     */
/*      3)message.css Done          */
/*      4)header.css Done           */
/*      5)3-icon.css Done           */
/*      6)home-bg.css Done          */
/*      7)about.css Done            */
/*      8)product.css Done          */
/*      9)order.css Done            */
/*      10)faq.css Done             */
/*      11)footer.css Done          */



/* Common styles */


@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;800&display=swap');

* {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: .2s linear;
}

::-webkit-scrollbar {
    width: 1rem;
    height: .5rem;
}

::-webkit-scrollbar-track {
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    background-color: #a1a1a1;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 7rem;
}

body {
    background: #f5f5f5;
}

section {
    padding: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.heading {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 4rem;
    color: #333;
    text-transform: uppercase;
}

.btn {
    display: block;
    width: 100%;
    margin-top: 1rem;
    border-radius: .5rem;
    padding: 1rem 3rem;
    font-size: 2rem;
    color: #fff;
    background-color: #e74c3c;
    cursor: pointer;
    text-transform: capitalize;
    text-align: center;
}

.btn:hover {
    background-color: #333;
}

#menu-btn {
    display: none;
}

@keyframes fadeRight {
    0% {
        transform: translateX(-5rem);
    }
}


















































/* header-title.css starts here*/
.section-header {
    margin-bottom: 4rem;
    position: relative;
    animation: fadeIn 0.8s ease-out;
    font-size: 3rem;
    color: #333;
    text-transform: uppercase;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 10rem;
    height: 0.5rem;
    background: #e74c3c;
    border-radius: 0.5rem;
    animation: growLine 0.8s 0.3s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes growLine {
    to {
        transform: translateX(-50%) scaleX(1);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header {
        font-size: 3.2rem;
        margin-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .section-header {
        font-size: 2.8rem;
    }

    .section-header::after {
        width: 8rem;
        bottom: -0.8rem;
    }
}

/* header-title.css ends here*/















































/* Message.css starts here  */
.custom-alert {
    position: fixed;
    top: 20px;
    left: 20px;
    background: #ffffff;
    border-left: 5px solid #3498db;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    overflow: hidden;
    z-index: 1100;
    max-width: 400px;
    transform: translateX(-110%);
    animation: alertSlideIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    opacity: 1;
}

.alert-content {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-icon {
    font-size: 24px;
    color: #3498db;
    flex-shrink: 0;
}

.alert-text {
    font-size: 16px;
    color: #333;
    flex: 1;
    line-height: 1.5;
    font-weight: 500;
}

.alert-close {
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 18px;
}

.alert-progress {
    height: 4px;
    background: rgba(52, 152, 219, 0.2);
    width: 100%;
    position: relative;
}

.alert-progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #3498db;
    animation: progress 5s linear forwards;
}

/* Alert Types */
.custom-alert.success {
    border-left-color: #27ae60;
}

.custom-alert.success .alert-icon {
    color: #27ae60;
}

.custom-alert.success .alert-progress-bar {
    background: #27ae60;
}

.custom-alert.error {
    border-left-color: #e74c3c;
}

.custom-alert.error .alert-icon {
    color: #e74c3c;
}

.custom-alert.error .alert-progress-bar {
    background: #e74c3c;
}

.custom-alert.warning {
    border-left-color: #f39c12;
}

.custom-alert.warning .alert-icon {
    color: #f39c12;
}

.custom-alert.warning .alert-progress-bar {
    background: #f39c12;
}

.custom-alert.info {
    border-left-color: #3498db;
}

.custom-alert.info .alert-icon {
    color: #3498db;
}

.custom-alert.info .alert-progress-bar {
    background: #3498db;
}

/* Animation keyframes */
@keyframes alertSlideIn {
    0% {
        transform: translateX(-110%);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes alertSlideOut {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    20% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-110%);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .custom-alert {
        max-width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }

    .alert-content {
        padding: 14px 16px;
    }

    .alert-text {
        font-size: 15px;
    }

    .alert-icon {
        font-size: 22px;
    }
}

/* Mobile responsiveness */
@media (max-width: 480px) {
    .custom-alert {
        max-width: calc(100% - 40px);
        left: 20px;
        right: 20px;
    }

    .alert-content {
        padding: 14px 16px;
    }

    .alert-text {
        font-size: 15px;
    }

    .alert-icon {
        font-size: 22px;
    }
}

/*message.css ends here*/














































































/*Header.css starts here*/


.header {
    background-color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0.5rem 5%;
    height: 70px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(5px);
    padding: 0.3rem 5%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    height: 100%;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    min-width: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse 2s infinite;
}

.logo {
    font-size: 1.8rem;
    color: #000000;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
    min-width: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-family: 'Arial', sans-serif;
    letter-spacing: 0.5px;
}

.logo span {
    color: #e74c3c;
    font-weight: 800;
}

.desktop-nav {
    display: flex;
    gap: 1.5rem;
    margin: 0 auto;
}

.nav-link {
    color: rgb(0, 0, 0);
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: #e74c3c;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-radius: 3px;
}

.nav-link:hover {
    color: #e74c3c;
    transform: translateY(-2px);
}

.nav-link:hover::after {
    width: 100%;
}

.header-icons {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.5rem;
}

.icon-btn {
    font-size: 2.4rem;
    color: #222;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: transparent;
    border: none;
}

.icon-btn:hover {
    color: #e74c3c;
    transform: translateY(-3px) scale(1.1);
    animation: iconBounce 0.5s ease;
}

#account-icon,
#profile-icon {
    transition: all 0.3s ease;
}

#user-btn:hover #account-icon,
#user-btn:hover #profile-icon {
    color: #e74c3c;
}

.icon-tooltip {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    font-size: 0.9rem;
    background: #e74c3c;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
    white-space: nowrap;
    font-weight: 500;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.icon-btn:hover .icon-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(4px);
}

.cart-count {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #e74c3c;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

#menu-btn.hamburger-menu {
    display: none;
    font-size: 2.4rem;
    z-index: 1001;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #222;
    background: transparent;
    border: none;
    padding: 0.5rem;
}

#menu-btn.hamburger-menu:hover {
    color: #e74c3c;
    animation: iconBounce 0.5s ease;
}

#menu-btn.hamburger-menu.active {
    color: #e74c3c;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 2rem 2rem;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    gap: 0;
    overflow-y: auto;
    display: none;
}

.mobile-nav.active {
    right: 0;
    display: flex;
}

.mobile-nav .nav-link {
    width: 100%;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1.6rem;
    font-weight: 700;
    color: #222;
    margin: 0;
    transition: all 0.25s ease;
    opacity: 0;
    transform: translateX(20px);
}

.mobile-nav.active .nav-link {
    opacity: 1;
    transform: translateX(0);
}

/* Account Dropdown Styles */
.account-dropdown {
    display: none;
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    min-width: 150px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    border-radius: 8px;
    z-index: 1200;
    padding: 0.5rem 0;
    text-align: left;
    animation: fadeIn 0.2s;
}

.account-dropdown .dropdown-link {
    display: block;
    width: 100%;
    background: none;
    border: none;
    color: #333;
    padding: 1rem 1.5rem;
    text-align: left;
    font-size: 1.4rem;
    cursor: pointer;
    transition: background 0.2s;
}

.account-dropdown .dropdown-link:hover {
    background: #f5f5f5;
    color: #e74c3c;
}

.icon-btn:hover .account-dropdown,
.icon-btn:focus-within .account-dropdown {
    display: block;
}


/* Keyframes for header */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-5px) scale(1.15);
    }
}

/* Responsive styles for header */
@media (max-width: 1200px) {
    .logo {
        font-size: 1.6rem;
    }

    .nav-link {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .logo-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        margin-right: auto;
    }

    .logo {
        font-size: 1.6rem;
        white-space: normal;
        line-height: 1.2;
    }

    .logo-img {
        width: 35px;
        height: 35px;
    }

    .desktop-nav {
        display: none;
    }

    #menu-btn.hamburger-menu {
        display: flex;
    }

    .header-icons {
        gap: 0.5rem;
    }

    .icon-btn {
        font-size: 2rem;
    }

    .mobile-nav.active .nav-link:nth-child(1) {
        transition-delay: 0.1s;
    }

    .mobile-nav.active .nav-link:nth-child(2) {
        transition-delay: 0.15s;
    }

    .mobile-nav.active .nav-link:nth-child(3) {
        transition-delay: 0.2s;
    }

    .mobile-nav.active .nav-link:nth-child(4) {
        transition-delay: 0.25s;
    }

    .mobile-nav.active .nav-link:nth-child(5) {
        transition-delay: 0.3s;
    }
     .account-dropdown {
        left: auto;
        right: 0;
        transform: none;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .logo {
        font-size: 1.6rem;
    }

    .logo-img {
        width: 33px;
        height: 33px;
    }

    .icon-btn {
        font-size: 1.9rem;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 0.5rem 1.5rem;
    }

    .logo-img {
        width: 36px;
        height: 36px;
    }

    .header-icons {
        gap: 0.3rem;
    }

    .icon-btn {
        font-size: 1.8rem;
    }

    .mobile-nav {
        width: 90%;
        padding: 90px 1.5rem 1.5rem;
    }
}

@media (max-width: 400px) {
    .logo {
        font-size: 1.4rem;
    }

    .logo-img {
        width: 34px;
        height: 34px;
    }

    .header-icons {
        gap: 0.1rem;
    }

    .icon-btn {
        font-size: 2.5rem;
    }
}

/*Header.css ends here*/























































/* 3 icons code starts here */

/* Shared Panel Styles */

.panel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1099;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(4px);
}

.panel-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.panel-container {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    z-index: 1100;
    overflow: hidden;
    pointer-events: none;
}

/* Panel Common Styles */
.user-account,
.my-orders,
.shopping-cart {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: all;
    overflow-y: auto;
}

.user-account.active,
.my-orders.active,
.shopping-cart.active {
    transform: translateX(0);
}

/* Panel Headers */
.panel-header {
    position: sticky;
    top: 0;
    background-color: #f5f5f5;
    padding: 1.5rem;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.panel-title {
    font-size: 2rem;
    color: #333;
    margin: 0;
    font-weight: 600;
}

/* Close Button */
.close-panel {
    width: 2.5rem;
    height: 2.5rem;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-panel:hover {
    transform: rotate(90deg);
}

.close-panel::before,
.close-panel::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e74c3c;
    transform-origin: center;
}

.close-panel::before {
    transform: rotate(45deg);
}

.close-panel::after {
    transform: rotate(-45deg);
}

/* Panel Content */
.panel-content {
    padding: 2rem;
}

/* Invoice preview */
.invoice-preview {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1200;
    justify-content: center;
    align-items: center;
}

.invoice-preview.active {
    display: flex;
}

.invoice-container {
    background-color: white;
    padding: 2rem;
    border-radius: 0.8rem;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.close-invoice {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 576px) {
    .panel-container {
        max-width: 100%;
    }

    .panel-header {
        padding: 1rem;
    }

    .panel-title {
        font-size: 1.8rem;
    }

    .panel-content {
        padding: 1.5rem;
    }
}











/* Account code starts here */

/* Hide the reCAPTCHA widget for the hidden form */
/* #login-form { display: none; }
.auth-forms-container.show-login #register-form .g-recaptcha { display: none; }
.auth-forms-container.show-login #login-form .g-recaptcha { display: block; } */

/* User Account Specific */.user-profile {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f5f5f5 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.user-account.active .user-profile {
    transform: translateY(0);
    opacity: 1;
}

.user-profile p {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.user-profile p span {
    color: #e74c3c;
    font-weight: 600;
}

.user-profile .btn {
    display: inline-block;
    margin-top: 1rem;
    animation: pulse 2s infinite;
}

input[type="password"]::-webkit-reveal,
input[type="password"]::-webkit-caps-lock-indicator,
input[type="password"]::-webkit-credentials-auto-fill-button {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: absolute;
    right: -9999px;
}

.password-input-wrapper .form-control {
    padding-right: 80px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.auth-form {
    background-color: #f5f5f5;
    padding: 2rem;
    border-radius: 1rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.2s;
}

.user-account.active .auth-form {
    transform: translateY(0);
    opacity: 1;
}

.auth-form h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
}

.auth-form h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #e74c3c;
    margin: 0.5rem auto 0;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    color: #333;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
    outline: none;
}

.password-strength {
    height: 4px;
    background: #eee;
    margin-top: 5px;
    border-radius: 2px;
    overflow: hidden;
}

.strength-meter {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background 0.3s ease;
}

.error-message {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-top: 0.5rem;
    display: none;
    line-height: 1.3;
}

.form-group.error .form-control {
    border-color: #e74c3c;
}

.form-group.error .error-message {
    display: block;
}

.form-group.success .form-control {
    border-color: #28a745;
}

.password-group {
    position: relative;
    margin-bottom: 2.5rem;
}

.password-input-wrapper {
    position: relative;
}

.password-toggle-btn {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    background: #f0f0f0;
    border: 1px solid #ddd;
    border-radius: 0 0.5rem 0.5rem 0;
    color: #333;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 0 1.5rem;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.3s ease;
}

.password-toggle-btn:hover {
    background: #e0e0e0;
}

.password-input-wrapper input {
    padding-right: 90px;
}

@media (max-width: 768px) {
    .password-toggle-btn {
        padding: 0 1rem;
        font-size: 1rem;
    }
    .password-input-wrapper input {
        padding-right: 80px;
    }
}

.fa-icon {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.security-features {
    background: linear-gradient(90deg, #ffe5e5 0%, #fff5f5 100%);
    border-radius: 18px;
    padding: 1.5rem 2rem;
    margin: 2rem auto;
    max-width: 540px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 18px rgba(255, 107, 107, 0.10);
    border-left: 5px solid #ff6b6b;
    font-size: 1.35rem;
    color: #b23b3b;
    font-weight: 600;
    letter-spacing: 0.2px;
    animation: fadeInUp 0.7s cubic-bezier(.4,2,.6,1);
}

.security-features .fa-icon {
    color: #ff6b6b;
    font-size: 1.7em;
    margin-right: 0.5em;
}

@media (max-width: 600px) {
    .security-features {
        padding: 1rem 0.7rem;
        font-size: 1rem;
        border-radius: 10px;
        max-width: 98vw;
    }
    .security-features .fa-icon {
        font-size: 1.2em;
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.rate-limit-notice {
    font-size: 1.2rem;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}

/* NEW TOGGLE STYLES - Added at the bottom without modifying existing */
.auth-forms-container {
    position: relative;
    min-height: 500px;
    overflow: hidden;
}

#register-form {
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

#login-form {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(100%);
    transition: all 0.5s ease;
    z-index: 2;
}

.auth-forms-container.show-login #register-form {
    transform: translateX(-100%);
}

.auth-forms-container.show-login #login-form {
    transform: translateX(0);
}

.toggle-form-links {
    text-align: center;
    margin: 1rem 0;
}

.toggle-form-btn {
    background: none;
    border: none;
    color: #e74c3c;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem;
    font-size: 1.4rem;
}

.social-auth {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
}

.social-btn.google { background: #DB4437; }
.social-btn.facebook { background: #4267B2; }
.social-btn.apple { background: #000; }

/* Account code ends here */




/* Order code starts here */


    .payment-confirmation-checkbox {
        background: #f8f9fa;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 20px;
        border-left: 4px solid #014b8c;
    }
    .payment-confirmation-checkbox input[type="checkbox"] {
        margin-right: 10px;
    }
    .payment-confirmation-checkbox label {
        display: flex;
        align-items: center;
        gap: 8px;
        cursor: pointer;
    }

/* Orders */
.order-card {
    background-color: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    transform: translateY(20px);
    opacity: 0;
}

.my-orders.active .order-card {
    transform: translateY(0);
    opacity: 1;
}

.my-orders.active .order-card:nth-child(1) {
    transition-delay: 0.1s;
}

.my-orders.active .order-card:nth-child(2) {
    transition-delay: 0.2s;
}

.my-orders.active .order-card:nth-child(3) {
    transition-delay: 0.3s;
}

.order-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.order-info {
    margin-bottom: 1rem;
}

.order-info p {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.order-info p span {
    color: #333;
    font-weight: 500;
}

.order-status {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 2rem;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.status-pending {
    background-color: #FFF3CD;
    color: #856404;
}

.status-completed {
    background-color: #D4EDDA;
    color: #155724;
}

.invoice-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: #f5f5f5;
    color: #333;
    border-radius: 0.5rem;
    font-size: 1.3rem;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.invoice-btn:hover {
    background-color: #e74c3c;
    color: white;
}

/* Screenshot view link */
.screenshot-link {
    font-size: 1.6rem;
    font-weight: bold;
    color: #e74c3c;
    text-decoration: none;
}
/* Order code ends here */

/* Cart code starts here */
/* Shopping Cart */
.cart-items {
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    transform: translateX(20px);
    opacity: 0;
}

.shopping-cart.active .cart-item {
    transform: translateX(0);
    opacity: 1;
}

.shopping-cart.active .cart-item:nth-child(1) {
    transition-delay: 0.1s;
}

.shopping-cart.active .cart-item:nth-child(2) {
    transition-delay: 0.2s;
}

.shopping-cart.active .cart-item:nth-child(3) {
    transition-delay: 0.3s;
}

.shopping-cart.active .cart-item:nth-child(4) {
    transition-delay: 0.4s;
}

.cart-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-right: 1.5rem;
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 1.6rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.cart-item-price {
    font-size: 1.5rem;
    color: #e74c3c;
    font-weight: 600;
}

.cart-item-remove {
    color: #e74c3c;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    transform: scale(1.2);
}

.cart-total {
    text-align: center;
    font-size: 2rem;
    color: #333;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 0.8rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.cart-total span {
    color: #e74c3c;
    font-weight: 600;
}

.checkout-btn {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background-color: #e74c3c;
    color: white;
    border: none;
    border-radius: 0.8rem;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.checkout-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.empty-cart-btn {
    background: #e74c3c;
    color: #fff;
    border: none;
    margin: 20px 0 0 0;
    padding: 10px 22px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    transition: background 0.2s, transform 0.2s;
    outline: none;
}

.empty-cart-btn:hover,
.empty-cart-btn:focus {
    background: #c0392b;
    transform: translateY(-2px) scale(1.03);
}

.cart-qty-input {
    width: 200px;
    padding: 3px 6px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-left: 4px;
    text-align: center;
}

.cart-qty-form {
    display: inline;
}

@media (max-width: 600px) {
    .cart-qty-input {
        width: 100px;
        font-size: 0.95rem;
    }
}
/* Cart code ends here */

/* 3 icons code ends here */























































































/*Homebg code starts here*/
/* Home Background and Catalog Styles */
.home-bg {
    background: linear-gradient(rgba(255, 0, 0, 0.1), rgba(255, 255, 255, 0.1)), url(../images/home-bg1.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 2rem 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.home-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(1, 75, 140, 0.2), rgba(198, 160, 98, 0.2));
    animation: bgMove 30s infinite linear;
    z-index: -1;
    background-size: 200% 200%;
}

.notification-bar {
    background-color: #014b8c;
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.catalog-container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    position: relative;
}

.catalog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.catalog-header h2 {
    color: #ffffff;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.catalog-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.slide-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideUp 0.8s ease-out;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 3rem;
    pointer-events: none;
}

.slide.active {
    position: relative;
    opacity: 1;
    pointer-events: all;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.slide.next {
    transform: translateX(100%);
}

.slide.prev {
    transform: translateX(-100%);
}

.slide.active.next,
.slide.active.prev {
    transform: translateX(0);
}

.slide .image {
    flex: 1 1 50%;
    padding: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide .image img {
    max-width: 100%;
    max-height: 500px;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slide .image img:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.slide .content {
    flex: 1 1 50%;
    padding: 3rem;
    color: #ffffff;
}

.slide .content h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.slide .content p {
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.4rem;
}

.slide-nav-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    animation: fadeIn 1s ease-out 0.4s both;
}

.slide-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid #c0a062;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slide-arrow:hover {
    background-color: #e63946;
    transform: scale(1.1);
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
}

.popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    animation: popupFadeIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.popup-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    background: #e63946;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.popup-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: #c0a062;
}

/* Additional Keyframes */
@keyframes bgMove {
    0% {
        background-position: 0% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    100% {
        background-position: 0% 0%;
    }
}

@keyframes popupFadeIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .slide {
        flex-direction: column;
        padding: 2rem;
    }

    .slide .image,
    .slide .content {
        flex: 1 1 100%;
    }

    .slide .image {
        padding: 1rem;
    }

    .slide .content {
        padding: 2rem 1rem;
        text-align: center;
    }

    .catalog-header h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .catalog-header h2 {
        font-size: 2.2rem;
    }

    .slide .content h3 {
        font-size: 2rem;
    }

    .slide-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .popup-close {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: -10px;
        right: -10px;
    }
}

@media (max-width: 576px) {
    .catalog-header h2 {
        font-size: 1.8rem;
    }

    .popup-content {
        max-width: 95%;
    }
}

/*homebg code ends here*/



































































































/*unique about code starts here*/

/* About Section Styles */
.company-about-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f5f7fa 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.company-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /></svg>');
    pointer-events: none;
}

.company-section-heading {
    text-align: center;
    font-size: 4rem;
    color: #2c3e50;
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.company-section-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgb(255, 0, 0), rgb(255, 255, 255));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
    border-radius: 2px;
}

.company-section-heading:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.company-feature-container-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.company-feature-container {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: stretch;
    justify-content: center;
}

.company-feature-box {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex: 1;
    min-width: 0;
}

.company-feature-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(45deg);
    z-index: -1;
    transition: all 0.6s ease;
    opacity: 0;
}

.company-feature-box:hover::before {
    animation: company-shine-effect 1.5s ease;
}

.company-feature-box:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.company-shiny-feature {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(246, 248, 250, 0.95) 100%) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.company-icon-container {
    height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
}

.company-icon-container::after {
    content: '';
    position: absolute;
    width: 8rem;
    height: 8rem;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
    border-radius: 50%;
    z-index: -1;
    transition: all 0.5s ease;
}

.company-feature-box:hover .company-icon-container::after {
    transform: scale(1.2);
    opacity: 0.8;
}

.company-feature-box img {
    max-width: 6rem;
    height: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 10px rgba(255, 255, 255, 0.1));
}

.company-feature-box:hover img {
    filter: drop-shadow(0 8px 15px rgba(0, 0, 0, 0.2));
}

.company-feature-title {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.company-feature-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, rgb(255, 47, 47), rgb(255, 255, 255));
    border-radius: 3px;
}

.company-feature-text {
    line-height: 1.6;
    font-size: 1.4rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.company-btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background: linear-gradient(90deg, rgb(255, 17, 17), rgb(255, 58, 58));
    color: white;
    font-size: 1.4rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.company-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgb(255, 52, 52), #ff6b6b);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.company-btn:hover::before {
    opacity: 1;
}

.company-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.company-view-more {
    text-align: center;
    margin-top: 4rem;
}

.company-details-btn {
    background: linear-gradient(90deg, rgb(255, 45, 45), #9b59b6) !important;
    padding: 1rem 2.5rem !important;
    font-size: 1.5rem !important;
}

.company-details-btn::before {
    background: linear-gradient(90deg, #9b59b6, rgb(255, 59, 59)) !important;
}

@keyframes company-shine-effect {
    0% {
        left: -50%;
        opacity: 0;
    }

    50% {
        opacity: 0.8;
    }

    100% {
        left: 150%;
        opacity: 0;
    }
}

/* About Section Responsive Styles */
@media (max-width: 768px) {
    .company-feature-container {
        flex-direction: column;
        gap: 1.5rem;
        max-width: 500px;
        margin: 0 auto;
    }

    .company-feature-box {
        padding: 1.5rem;
    }

    .company-section-heading {
        font-size: 3rem;
    }

    .company-icon-container {
        height: 6rem;
    }

    .company-feature-box img {
        max-width: 5rem;
    }

    .company-feature-title {
        font-size: 1.6rem;
    }

    .company-feature-text {
        font-size: 1.3rem;
    }

    .company-btn {
        padding: 0.7rem 1.5rem;
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .company-section-heading {
        font-size: 2.5rem;
    }

    .company-feature-box {
        padding: 1.2rem;
    }

    .company-view-more {
        margin-top: 3rem;
    }

    .company-details-btn {
        padding: 0.9rem 2rem !important;
        font-size: 1.3rem !important;
    }
}

/*unique about code ends here*/



































































/*product section code starts here*/


.menu {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-header {
    font-size: 2.2rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}


.filter-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 1.5rem auto;
    max-width: 800px;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}


.part-dropdown {
    width: 100%;
}

.part-dropdown label {
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
    color: #2c3e50;
    font-weight: 600;
    text-align: left;
}

.part-dropdown select {
    width: 100%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #dfe6e9;
    font-size: 1.4rem;
    background-color: #ffffff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%237f8c8d" viewBox="0 0 16 16"><path fill-rule="evenodd" d="M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.part-dropdown select:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}


.search-container {
    position: relative;
    width: 100%;
    display: flex;
    gap: 0.5rem;
}

.search-box {
    flex: 1;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 1px solid #dfe6e9;
    border-radius: 8px;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="%237f8c8d" viewBox="0 0 16 16"><path d="M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.1zM12 6.5a5.5 5.5 0 1 1-11 0 5.5 5.5 0 0 1 11 0z"/></svg>');
    background-repeat: no-repeat;
    background-position: 1rem center;
    background-size: 1.6rem;
}

.search-box:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.search-box::placeholder {
    color: #7f8c8d;
    font-size: 1.3rem;
}

.search-button {
    padding: 0 1.5rem;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

.search-button:hover {
    background-color: #2c3e50;
}

/* Compact Product Grid with Fixed Sizes */
.menu .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    padding: 0.5rem;
    margin-top: 2rem;
}

.menu .box-container .box {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    overflow: hidden;
    border: 1px solid #dfe6e9;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 300px;
}

.menu .box-container .box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: #e74c3c;
}

.menu .box-container .box img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
    mix-blend-mode: multiply;
    padding: 0.5rem;
}

.menu .box-container .box:hover img {
    transform: scale(1.08);
}

.menu .box-container .box .name {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 0.5rem 0;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    min-height: 40px;
}

/* Price Styling */
.menu .box-container .box .price-container {
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.menu .box-container .box .original-price {
    color: #ff3333;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: line-through;
}

.menu .box-container .box .discounted-price,
.menu .box-container .box .regular-price {
    font-weight: 700;
    font-size: 1.4rem;
    color: #33cc33;
}

.menu .box-container .box form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
}

.menu .box-container .box form .qty {
    width: 100%;
    border: 1px solid #dfe6e9;
    padding: 0.8rem;
    border-radius: 6px;
    font-size: 1.4rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.menu .box-container .box form .qty:focus {
    border-color: #e74c3c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
}

.menu .box-container .box form .btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu .box-container .box form .btn:hover {
    background-color: #2c3e50;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}


.empty {
    text-align: center;
    font-size: 1.6rem;
    color: #7f8c8d;
    padding: 2rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin: 1rem 0;
    font-weight: 600;
    grid-column: 1 / -1;
    border: 1px dashed #bdc3c7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .menu .box-container {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 1rem;
    }

    .menu .box-container .box {
        padding: 0.8rem;
        min-height: 280px;
    }

    .menu .box-container .box img {
        height: 100px;
    }

    .filter-section {
        padding: 1rem;
        gap: 1rem;
    }

    .section-header {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .menu .box-container {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .search-container {
        flex-direction: row;
    }

    .search-box {
        padding-left: 3rem;
    }

    .search-button {
        padding: 0 1rem;
    }

    .part-dropdown label,
    .part-dropdown select {
        font-size: 1.3rem;
    }
}

@media (max-width: 360px) {
    .menu .box-container {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
    }

    .menu .box-container .box {
        min-height: 260px;
        padding: 0.6rem;
    }

    .menu .box-container .box .name {
        font-size: 1.3rem;
        min-height: 36px;
    }

    .menu .box-container .box img {
        height: 90px;
    }

    .search-box {
        padding-left: 2.8rem;
        font-size: 1.3rem;
    }

    .search-button {
        font-size: 1.3rem;
        padding: 0 0.8rem;
    }
}

/*product section code ends here*/






































































/*order section code starts here*/

.confirm-call-checkbox {
        margin: 15px 0;
        padding: 10px;
        background: #f8f9fa;
        border-left: 3px solid #014b8c;
        border-radius: 8px;
        
    }
    .confirm-call-checkbox label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.4rem;
        color: red;
    }
/* Order Section Styles */
.order {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.order-form {
    background: white;
    border-radius: 8px;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    overflow: hidden;
}

.form-step {
    padding: 2rem;
    display: none;
}

.form-step.active {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.step-heading {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

/* Cart Items */

.form-step.active .cart-items {
    display: none;
}
/* .cart-items {
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1.6rem;
} */

.item-name {
    font-weight: 500;
    color: #333;
}

.item-price {
    font-weight: 600;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity {
    color: #666;
    font-size: 1.4rem;
}

.original-price {
    text-decoration: line-through;
    color: #666;
    font-size: 1.4rem;
    font-weight: normal;
}

.discount-badge {
    background: #2ecc71;
    color: #fff;
    font-size: 1rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 4px;
    margin-top: 0.5rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.total-label {
    color: #333;
}

.total-amount {
    color: #e74c3c;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.input-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.4rem;
    color: #333;
    font-weight: 500;
}

.input-hint {
    font-size: 1rem;
    color: #666;
    font-weight: normal;
    display: block;
    margin-top: 0.2rem;
}

.input-group input,
.input-group select {
    width: 100%;
    padding: 1.2rem 1rem 1.2rem 4rem;
    font-size: 1.4rem;
    border: 1px solid #666;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: transparent;
}

.input-group input:focus {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.2);
    outline: none;
}

.input-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-29%);
    color: #666;
    font-size: 1.6rem;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.input-group input[type="file"] {
    padding: 1.2rem 1rem;
}

.input-group input[type="file"]~.input-icon {
    display: none;
}

.error-message {
    color: #e74c3c;
    font-size: 1.2rem;
    margin-top: 0.3rem;
    display: none;
}

/* Payment Section */
.payment-amount {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.amount-label {
    font-size: 1.4rem;
    color: #666;
}

.amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e74c3c;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.payment-option i {
    font-size: 2.5rem;
    color: #555;
}

.payment-option span {
    font-size: 1.4rem;
    font-weight: 500;
}

.payment-option:hover {
    border-color: #e74c3c;
    background: #fff5f5;
}

.payment-option.selected {
    border-color: #e74c3c;
    background: #fff5f5;
}

.payment-option.selected i {
    color: #e74c3c;
}

/* Payment Details */
.payment-details {
    margin-bottom: 1.5rem;
}

.qr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.qr-code {
    width: 180px;
    height: 180px;
    padding: 0.8rem;
    border: 1px solid #eee;
    border-radius: 8px;
    background: white;
}

.qr-code img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.upi-details,
.bank-details {
    width: 100%;
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.6rem;
    font-size: 1.3rem;
}

.detail-row span {
    color: #666;
}

.detail-row strong {
    color: #333;
    font-weight: 600;
}

.card-form {
    display: grid;
    gap: 1.2rem;
}

.card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

.bank-selector {
    margin-bottom: 1.5rem;
}

.bank-dropdown {
    width: 100%;
    padding: 1rem;
    font-size: 1.4rem;
    border: 1rem solid #666;
    border-radius: 6px;
}

.bank-details {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
}

/* Step Actions */
.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.order .btn {
    padding: 1rem 1.8rem;
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.order .btn i {
    font-size: 1.2rem;
}

.btn.prev-step {
    background: #f8f9fa;
    color: #666;
}

.btn.next-step,
.btn.confirm-payment {
    background: #e74c3c;
    color: #fff;
}

.btn.next-step:hover,
.btn.confirm-payment:hover {
    background: #c0392b;
}

.btn:disabled {
    background: #cccccc;
    cursor: not-allowed;
}

/* New Payment Styles */
.card-form input {
    padding: 1rem;
    font-size: 1.4rem;
    border: 1rem solid #666;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.card-form input:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.bank-dropdown:focus {
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
    outline: none;
}

.cart-total.grand-total {
    background: #e74c3c;
    color: #fff;
    font-weight: bold;
    margin-top: 1rem;
    font-size: 1.6rem;
}

.cart-total.grand-total .total-amount {
    color: #fff;
}

/* Responsive */
@media (max-width: 600px) {
    .order {
        padding: 1rem;
    }

    .section-header {
        font-size: 1.8rem;
    }

    .form-step {
        padding: 1.5rem;
    }

    .step-heading {
        font-size: 1.6rem;
    }

    .cart-item {
        font-size: 1.4rem;
    }

    .input-group input,
    .input-group select {
        font-size: 1.3rem;
        padding: 0.8rem 0.8rem 0.8rem 3rem;
    }

    .input-icon {
        font-size: 1.4rem;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .card-row {
        grid-template-columns: 1fr;
    }

    .order .btn {
        font-size: 1.3rem;
        padding: 0.8rem 1.2rem;
    }
}

/*order section code ends here*/


























































/*faq.css starts here*/
/* FAQ styles */
.faq {
    padding: 5rem 2rem;
    overflow: hidden;
}

.faq .accordion-container {
    max-width: 80rem;
    margin: 0 auto;
}

.faq .accordion {
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    background-color: #fff;
    transform: translateY(30px);
    opacity: 0;
    animation: slideUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

.faq .accordion-heading {
    padding: 2rem;
    background-color: #333;
    color: #fff;
    cursor: pointer;
    font-size: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.faq .accordion-heading i {
    transition: transform 0.3s ease;
}

.faq .accordion-content {
    padding: 0;
    background-color: #fff;
    color: #666;
    font-size: 1.8rem;
    line-height: 1.6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
}

.faq .accordion.active .accordion-content {
    max-height: 500px;
    padding: 2rem;
}

.faq .accordion.active .accordion-heading {
    background-color: #e74c3c;
}

.faq .accordion.active .accordion-heading i {
    transform: rotate(180deg);
}

.faq .accordion-heading:hover {
    background-color: #222;
    padding-left: 2.5rem;
}

/* Active states */
.faq .accordion:nth-child(1) {
    animation-delay: 0.4s;
}

.faq .accordion:nth-child(2) {
    animation-delay: 0.5s;
}

.faq .accordion:nth-child(3) {
    animation-delay: 0.6s;
}

.faq .accordion:nth-child(4) {
    animation-delay: 0.7s;
}

.faq .accordion:nth-child(5) {
    animation-delay: 0.8s;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq .accordion-heading {
        font-size: 2rem;
        padding: 1.5rem;
    }

    .faq .accordion-content {
        font-size: 1.6rem;
    }

    .faq .accordion.active .accordion-content {
        padding: 1.5rem;
    }
}

@media (max-width: 450px) {
    .faq .accordion-heading {
        font-size: 1.8rem;
    }

    .faq .accordion-content {
        font-size: 1.5rem;
    }
}

/*faq.css ends here*/







































/* Footer styles */
.jae-footer-section {
    position: relative;
    background: linear-gradient(145deg, #292e1a, #16213e);
    color: #ffffff;
    padding: 6rem 0 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.jae-footer-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.jae-footer-content {
    position: relative;
    z-index: 2;
}

.jae-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.jae-footer-social {
    text-align: center;
    padding: 2rem;
    width: 100%;
}

.jae-footer-heading {
    font-size: 3.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

.jae-footer-heading::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e63946, transparent);
    border-radius: 2px;
}

.jae-footer-heading::before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
}

.jae-social-links {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.jae-social-link {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-size: 2.5rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.jae-social-link::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: rotate(45deg) translate(-30%, -30%);
    transition: all 0.6s ease;
    z-index: -1;
}

.jae-social-link:hover::before {
    animation: shine 1.5s infinite;
}

@keyframes shine {
    0% {
        transform: rotate(45deg) translate(-30%, -30%);
    }

    100% {
        transform: rotate(45deg) translate(30%, 30%);
    }
}

.jae-social-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.jae-social-link:hover::after {
    opacity: 1;
}

.jae-social-link i {
    transition: transform 0.3s ease;
}

.jae-social-link:hover i {
    transform: scale(1.2);
}

/* Gradient Social Buttons */
.jae-facebook {
    background: linear-gradient(135deg, #3b5998, #4c70ba);
}

.jae-youtube {
    background: linear-gradient(135deg, #ff0000, #cc0000);
}

.jae-maps {
    background: linear-gradient(135deg, #4285F4, #34a853);
}

.jae-social-link:hover {
    transform: translateY(-15px) scale(1.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Footer Bottom Section */
.jae-footer-bottom {
    margin-top: 3rem;
    padding: 3rem 0;
    text-align: center;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    width: 100%;
}

.jae-footer-copyright {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.jae-footer-credits {
    color: #666;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
}

.jae-dev-name {
    position: relative;
    display: inline-block;
}

.jae-dev-name a {
    color: #fbc2eb;
    font-weight: 600;
    background: linear-gradient(to right, #fbc2eb, #a6c1ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    position: relative;
}

.jae-dev-name a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, #fbc2eb, #a6c1ee);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.jae-dev-name a:hover::after {
    transform: scaleX(1);
}

/* Gradient Orbs */
.jae-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    z-index: 0;
    pointer-events: none;
}

.jae-orb-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #ff9a9e 0%, #fad0c4 100%);
    top: -150px;
    right: -150px;
    animation: float-orb 15s ease-in-out infinite;
}

.jae-orb-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #fbc2eb 0%, #a6c1ee 100%);
    bottom: -200px;
    left: -200px;
    animation: float-orb 18s ease-in-out infinite reverse;
}

@keyframes float-orb {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(50px, 50px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .jae-footer-heading {
        font-size: 3rem;
    }

    .jae-social-link {
        width: 85px;
        height: 85px;
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .jae-footer-heading {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .jae-social-links {
        gap: 2rem;
        margin-bottom: 3rem;
    }

    .jae-social-link {
        width: 75px;
        height: 75px;
        font-size: 2rem;
    }

    .jae-footer-copyright {
        font-size: 1.5rem;
    }

    .jae-footer-credits {
        font-size: 1.1rem;
    }

    .jae-orb-1,
    .jae-orb-2 {
        filter: blur(40px);
    }
}

@media (max-width: 576px) {
    .jae-footer-heading {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .jae-social-links {
        gap: 1.5rem;
    }

    .jae-social-link {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
    }

    .jae-footer-copyright {
        font-size: 1.3rem;
    }

    .jae-footer-credits {
        font-size: 1rem;
    }

    .jae-orb-1,
    .jae-orb-2 {
        filter: blur(30px);
    }
}



/*Theme-toggler nu csss starts here*/



