@import url('https://fonts.googleapis.com/css2?family=Chewy&family=Dancing+Script:wght@400..700&family=Funnel+Sans:ital,wght@0,300..800;1,300..800&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto+Slab:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-color: #007bff;
    /* --gradient: linear-gradient(to right, #007BFF, #66B2FF); */
    --gradient: #007bff;
    --shadow: 0 2px 5px 0 rgba(0, 0, 0, .1);
    --border-color: #e1e1e1;
    /* --shadow2: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px; */
    --shadow2: 10px 10px 40px 0 rgb(87 151 228 / 16%);

}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #212529;
}

.custom-border {
    border: 1px solid var(--border-color) !important;
}

.container {
    max-width: 1180px;
}

.custom-container {
    max-width: 1008px;
    margin: auto;
}

.fill-btn {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    border: 1px solid var(--main-color);
}

.fill-btn:hover {
    background: #2b6cb0;
}

.btn-outline {

    background: #fff;
    color: var(--main-color);
    border: 1px solid var(--main-color);
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;

}

.btn-outline:hover {
    background-color: var(--main-color);
    color: #fff;
}

a {
    text-decoration: none;
}

.form-control:focus {
    box-shadow: none;
    border-color: inherit;
}

.navbar {
    padding: 0.5rem 0;
    /* border-bottom: 1px solid #ddd; */
    background-color: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 35px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 10px;
}

.search-box {
    position: relative;
    width: 250px;
}

.search-box input {
    padding-right: 2.5rem;
}

.search-box .bi-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.icon-buttons .bi {
    font-size: 1.2rem;
    margin-left: 20px;
    cursor: pointer;
}

.icon-buttons .bi:hover {
    color: #007bff;
}

.dropdown-menu {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    /* main glass effect */
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.18);
}

.dropdown-item:focus,
.dropdown-item:hover {
    color: #000;
    background: rgba(255, 255, 255, 0.3);
}

/* banner css */
.banner-slider {
    width: 96%;
    height: 60vh;
    margin-top: 2%;
}

.banner-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    background-size: cover;
    background-position: top;
    border-radius: 12px;
    background-repeat: no-repeat;

}

.slide1 {
    background-image: url('../images/bg.jpg');
}

.slide2 {
    background-image: url('../images/bg2.jpg');
}

.slide3 {
    background-image: url('../images/bg3.jpg');
}

.swiper-slide .content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 12px;
}

/* search and category container */
.search-cat-container {
    margin: auto;
    margin-top: -60px;
    z-index: 999;
    position: relative;
    max-width: 820px;
    padding-bottom: 20px !important;
    background-color: #fff;
    border: 2px solid rgb(168 168 168 / 18%);


}



/**/
.search-cat-container input[type="text"]:focus-visible {
    outline: none;
}

.search-cat-container input[type="text"] {
    font-size: 14px;
}

.search-product {
    border: 1px solid rgb(88 84 84 / 18%);
}

/* category slider */
/* category circle */
.cat-box {
    padding: 5px 0;
}

.cat-img-box {
    border-radius: 50%;
    overflow: hidden;
    width: 65%;
    margin: auto;
    /*box-shadow:var(--shadow2);*/
    box-shadow: rgba(67, 71, 85, 0.27) 0px 0px 0.25em, rgba(90, 125, 188, 0.05) 0px 0.25em 1em;
    border: 2px solid #fff;

}

.cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width:576px) {
    .cat-content h6 {
        font-size: 14px;
    }
}

@media (min-width: 768px) {
    .scroll-x-hidden-desktop {
        scrollbar-width: none;
    }

    .scroll-x-hidden-desktop::-webkit-scrollbar {
        display: none;
    }
    
.modal-dialog {
    min-width: 600px !important; /* apply only on tablet+ */
  }

}

/* Product cart css */
.card {
    /* width: 280px; */
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: transparent;
    box-shadow: none;
    /* color: white; */
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
    /* box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px; */
}

.card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.card-header {
    padding: 25px;
    display: flex;
    justify-content: end;
    align-items: flex-start;
    border-bottom: none !important;
    background: transparent;
    top: 5px;
    position: absolute;
    z-index: 9999;
    width: 97%;
}

.card-badge {
    padding: 3px 6px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    margin-bottom: 5px;
    background: transparent;
    border: 1px solid var(--main-color);
    color: var(--main-color);

}

.brand-badge {
    background-color: #007bff;
    color: #fff;
    padding: 3px 6px;
    border-radius: 20px;
    font-size: 9px;
}

.card-favorite {
    background-color: rgba(206, 28, 28, 0.897);
    color: #fff;
    padding: 5px 8px;
    border-radius: 20px;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

/* .card-favorite:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
} */

.card-img {
    /* height: 240px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    padding-top: 20px;
    position: relative;
}

.card-img img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    filter: brightness(0.85);
    transition: transform 0.5s ease;
    border-radius: 20px;
    object-fit: cover;
}



.card-content {
    background-color: white;
    /* border-radius: 25px 25px 0 0; */
    padding: 16px 20px;

    color: #333;
    transform: translateY(0);
    transition: transform 0.5s ease;
}



.card-category {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.card-title {
    height: 48px;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    color: #393737;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.card-text {
    font-size: 12px;
}

.card-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.feature {
    background-color: #f3f4f6;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    width: 50%;
}

.featured-content .feature-list p {
    color: #181717;
    font-size: 14px;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-container {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-bottom: 15px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--main-color);
}

.original-price {
    font-size: 14px;
    color: #9CA3AF;
    text-decoration: line-through;
    line-height: 28px;
}

.card-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.card-button:hover {
    background-color: #4F46E5;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

.card-button i {
    margin-right: 8px;
}

/* cards responsive for mobile view */


/* nav tabs design  */
.nav-tabs {
    background-color: rgb(0 0 0 / 2%);
    padding: 2px;
    border-radius: 30px;
    border: 0.4px solid #80808052;
    /*width: fit-content;*/
    overflow-x: auto;
    width: max-content;
}


.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    background: var(--gradient);
    color: #fff !important;
    padding: 4px 18px;
    border-radius: 30px;

}

.nav-tabs .nav-link {
    /* background: #c3c3c3bd; */
    background: transparent;
    color: #000 !important;
    margin: 0 1px;
    padding: 4px 18px;
    border-radius: 30px;
    font-size: 13px;
}

.view-btn {
    background-color: #1e90ff;
    /* Solid default */
    color: white;
    border: none;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.view-btn:hover {
    background-color: #2b6cb0;
    /* Smooth solid hover color */
}

/* Icon rotation */
.view-btn i {
    transition: transform 0.3s ease;
}

.view-btn:hover i {
    transform: rotate(-20deg);
}

/* code for products details pagee */
.prod-slider .swiper-slide {
    height: auto;
    background-color: transparent;
    border: none;
    margin: auto;
}

.product-img-container .p-img-box {
    height: 390px;

}

.product-img-container .p-img-box img {
    width: 400px;

}

.prod-slider {
    border-right: 1px solid var(--border-color);
    height: 100%;
}

.prod-detail-container .product-price-container {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.product-price-container .product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-right: 15px;
}

.product-price-container .original-price {
    text-decoration: line-through;
    color: #6c757d;
    font-size: 1rem;
}

.product-price-container .discount-badge {
    background: linear-gradient(to right, #ff416c, #ff4b2b);
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 15px;
}

.varient-container span {
    font-size: 14px;
    color: #515151;
}

.varient-container p {
    font-size: 16px;
    margin-bottom: 0 !important;
    color: #1f1f1f;
    font-weight: 600;
}

.short-desc {
    font-size: 14px;
    color: #181717;
}

.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 6px;
    overflow: hidden;
    min-width: fit-content;
}

.quantity-btn {
    background: none;
    border: none;
    padding: 8px 14px;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #6c757d;
}

.quantity-btn:hover {
    color: var(--main-color);
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: none;
    font-weight: 600;
    padding: 10px 0;
    background: transparent;
}

/* slider for know section */
.know-slider .swiper-slide .know-slider-inner {
    border: 0.5px solid rgb(240 239 239);
    height: 290px;
    box-shadow: var(--shadow);
}

.know-slider-inner .know-slider-content p {
    font-size: 12px;
    padding: 8px;
}

.know-slider-inner .know-slider-content h4 {
    font-size: 16px;
    padding: 8px 0;
}

/* Style for know slider navigation buttons */
.know-slider-button-next,
.know-slider-button-prev {
    width: 26px !important;
    height: 26px !important;
    background-color: white;
    border-radius: 50%;
    color: #696969;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

/* Make sure arrows are centered and sized */
.know-slider-button-next::after,
.know-slider-button-prev::after {
    font-size: 16px !important;
    /* arrow icon size */
    color: #696969;
    /* arrow color */
}

.know-slider-content {
    padding: 8px;
}

.know-slider-content span {
    font-size: 12px;
    display: inline-block;
    line-height: 18px;
}

.mobile-banner,
.enquiry-box,
.authorise-box,
.featured-div {
    box-shadow: var(--shadow);
}

/* featured div */
.featured-div {
    background-color: #f7f7f7;
}

.featured-div .featured-content li {
    font-size: 14px;
    margin-bottom: 5px;
}

/* Remove default list style */
.feature-list {
    list-style: none;
    padding-left: 5px;
}

/* Style for prepended icon */
.feature-list .feature-icons i {
    margin-right: 8px;
    color: var(--main-color);

}

/* subscribe email input */




/* .form-floating>.form-control {
    height: 48px;
    min-height: 40px;
}

.form-floating>label {
    padding: .75rem !important;
} */

/* specific table */
.specific-table table {
    background-color: #f3f3f330;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    /* border: 0.5px solid #ccc; */
    /* box-shadow: 0px 5px 14px 0 rgb(87 151 228 / 16%); */
    box-shadow: var(--shadow);
    /* very thin border */
}

.specific-table p {
    margin-bottom: 0;
}

.specific-table

/* Round top corners */
.specific-table thead th:first-child {
    border-top-left-radius: 10px;
}

.specific-table thead th:last-child {
    border-top-right-radius: 10px;
}

/* Round bottom corners */
.specific-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.specific-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.specific-table tr {
    height: 40px !important;
}

/* Very thin internal borders */
.specific-table th,
.specific-table td {
    border: 0.5px solid #eeecec;
    background-color: transparent;
    color: #211f1fee;
    padding-left: 20px !important;
    font-size: 14px;
}



.specific-table tr:first-of-type {
    height: 50px !important;
}

/* faq */
.accordion-button:focus {
    box-shadow: none;
}

.faq-products-box .accordion-button {
    background-color: #ECE9D4;
    color: #130a0a;
    font-weight: 500;
    box-shadow: var(--shadow);
}

.faq-products-box .accordion-item {
    margin-bottom: 8px;
}

.faq-products-box .accordion-body {
    font-size: 14px;
    color: #211f1fee;
    box-shadow: var(--shadow);
}

/* code for long text */
.long-desc-box ul.custom-list {
    list-style: none;
    padding-left: 0;
}

.long-desc-box ul.custom-list li i {
    margin-right: 8px;
    color: var(--main-color);
}

.long-desc-box {
    background: #f8f7f6;
    padding: 20px;
    border-radius: 18px;
    box-shadow: var(--shadow);
}

.long-desc-box p {
    font-size: 14px;
    text-align: justify;
    color: #595454;
    margin-bottom: 0;

}

/* manual-brochure-box */
/* Design 2: Outlined with Fill Animation */
.btn-design2 {
    width: 100%;
    background: transparent;
    border: 1.5px solid var(--main-color);
    color: var(--main-color);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin: 10px;
    z-index: 1;
}

.btn-design2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--main-color);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn-design2:hover::before {
    width: 100%;
}

.btn-design2:hover {
    color: white;
    transform: scale(1.05);
}

.brochure-btn {
    width: 100%;
    color: #fff;
    border: 1.5px solid var(--main-color);
    background-color: var(--main-color);
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin: 10px;
    z-index: 1;
}

.brochure-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #fff;

    transition: width 0.4s ease;
    z-index: -1;
}

.brochure-btn:hover::before {
    width: 100%;
}

.brochure-btn:hover {
    background-color: white;
    transform: scale(1.05);
    color: var(--main-color);
}

/* code for cart page */
.total-price-div {
    position: fixed;
    bottom: 0;
    background-color: #fbfbfb;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 20px;
    width: -webkit-fill-available;
    align-items: center;
    box-shadow: 3px 4px 10px 0px #e2e2e2;
    margin-left: -15px;
}

/* checkout page css */
.checkout-container label {
    font-size: 12px;
    margin-bottom: 4px;
}

.apply-btn {
    font-size: 14px;
    padding: 0 8px;
    border: 0;
    background: var(--main-color);
    color: #fff;
    font-weight: 600;
    margin-right: 8px;
    height: 25px;
    border-radius: 8px;
    vertical-align: middle;
}

/* cart page design */
.cart-product {
    box-shadow: var(--shadow);
    align-items: center;
}

.offcanvas-header {
    box-shadow: var(--shadow);
}

.total-price-div {
    box-shadow: var(--shadow);
}

.item-delete {
    cursor: pointer;
}

.cart-message {
    position: fixed;
    top: 40px;
    right: -50px;
    transform: translateX(-50%);
    background: #4CAF50;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 9999999;
    transition: opacity 0.3s ease;
}

.cart-message.fade-out {
    opacity: 0;
}

.cart-danger-msg {
    position: fixed;
    top: 90px;
    right: -50px;
    transform: translateX(-50%);
    background: #c81104;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 999999;
    transition: opacity 0.3s ease;
}

.cart-danger-msg.fade-out {
    opacity: 0;
}

/* login model css  */
.modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#loginmodel .modal-content,
#Signupmodel .modal-content {
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    /* main glass effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: white;
}

.login-content {
    width: 80%;
    margin: auto;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 18px;
}

.login-content h5 {
    font-weight: 700;
    font-size: 24px;
}

.login-content .mobile-img {
    height: 170px;
}

.login-content .mobile-img img {
    width: 100%;
    height: 100%;
}

.login-content .info-p .mobile-text,
.login-content .info-p .mobile-otp {
    font-weight: 700;
    margin-bottom: 0;
    width: 85%;
    margin: auto;
    text-align: center;
    line-height: 19px;
}

.login-content .input-design {
    border: none;
    border-bottom: 2px solid #fff;
    padding: 10px;
    width: 100%;
    background: transparent;
    color: #fff;
}

.login-content .input-design::placeholder {
    color: #cccccc;
    /* Placeholder color */
    opacity: 1;
}

.login-content .input-design:focus-visible {
    outline: none;
}

.login-content .button-box {
    margin-top: 25px;
}

@media (min-width:992px) {
 .modal-content {
    min-width: auto !important; /* reset on small screens */
    width: 95% !important;      /* almost full screen */
  }
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}


/*--------------------------- Footer css--------------------------- */

.footer-area {
    margin-top: 50px;
    padding: 40px 0px;
    background-color: #3e3e3e;
    color: #fff;
}

.footer-area a {
    text-decoration: none;
}

.footer-area .footer-heading {
    font-size: 20px;
    color: #fff;
}

.footer-area .footer-underline {
    height: 1px;
    width: 70px;
    background-color: #ddd;
    margin: 10px 0px;
}

.copyright-area {
    padding: 14px 0px;
    background-color: #262626;
}

.copyright-area p {
    margin-bottom: 0px;
    color: #fff;
}

.copyright-area .social-media {
    text-align: end;
}

.copyright-area .social-media a {
    margin: 0px 10px;
    color: #fff;
    width: 20px;
}

.footer-area a,
.footer-area p {
    font-size: 14px;
}

.navbar-toggler:focus {
    box-shadow: none;

}

.compare-table {
    background-color: #f3f3f330;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    /* Remove table border */
    border: none;
}

/* compare table css */
.compare-table {
    border: 1px solid #eeecec;
}

.compare-table th,
.compare-table td {
    border: none;
    /* Remove all borders first */
    border-right: 1px solid #eeecec;
    border-bottom: 1px solid #eeecec;
    background-color: transparent;
    /*color: #fff;*/
    padding-left: 20px !important;
    font-size: 14px;
}

/* Remove right border from last cell in each row */
.compare-table tr>th:last-child,
.compare-table tr>td:last-child {
    border-right: none;
}

/* Remove bottom border from last row */
.compare-table tbody tr:last-child>td {
    border-bottom: none;
}

/* Rounded corners */
.compare-table thead th:first-child {
    border-top-left-radius: 10px;
}

.compare-table thead th:last-child {
    border-top-right-radius: 10px;
}

.compare-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.compare-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.compare-table tr {
    height: 40px !important;
}

.compare-table tr:first-of-type {
    height: 50px !important;
}

/* Faq home page---- */
/* Design 8: Collapsible with Icons */
@media screen and (min-width:576px) {

    .icon-image-container,
    .icon-faq-container {
        height: 550px;
    }
}


.icon-image-container img {
    border-radius: 20px;
}

.icon-faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.icon-faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 123, 255, 0.15);
}

.icon-faq-header {
    display: flex;
    align-items: center;
    padding: 25px;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--main-color), var(--main-color-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: white;
    font-size: 24px;
}

.icon-faq-content {
    flex: 1;
}

.icon-faq-arrow {
    color: var(--main-color);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.icon-faq-item.active .icon-faq-arrow {
    transform: rotate(90deg);
}

.icon-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.icon-faq-item.active .icon-faq-answer {
    max-height: 200px;
    padding: 0 25px 25px;
}

/* Cart badge count */
.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e20303;
    color: #fff;
    font-size: 12px;
    min-width: 20px;
    height: 20px;
    line-height: 20px;
    padding: 0 6px;
    border-radius: 50%;
    text-align: center;
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
    display: none;
}

/*--------- Features section ----------------*/
.feature-sec {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    overflow: hidden;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 20px;
    width: 90%;
    max-width: 1200px;
    position: relative;
}

.feature-card {
    flex: 0 0 23%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.feature-card:hover::before {
    transform: translateX(100%);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 123, 255, 0.5);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.feature-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
    transform: rotate(15deg);
}

.liquid-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(30px);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.liquid-shape:nth-child(1) {
    top: -50px;
    left: -50px;
    background: var(--main-color);
    animation-delay: 0s;
}

.liquid-shape:nth-child(2) {
    bottom: -80px;
    right: -60px;
    background: rgba(0, 86, 179, 0.7);
    animation-delay: 2s;
    width: 250px;
    height: 250px;
}

.liquid-shape:nth-child(3) {
    top: 50%;
    left: 30%;
    background: rgba(41, 152, 255, 0.7);
    animation-delay: 4s;
    width: 150px;
    height: 150px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-20px) translateX(20px);
    }
}


/* Brands section css */
.brands-section {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 122, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.brands-section .section-title {
    position: relative;
    margin-bottom: 30px;
    text-align: center;
}

.brands-section .section-title h2 {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 26px;
    letter-spacing: -0.5px;
}

.brands-section .section-title .title-bg {
    color: rgba(30, 41, 59, 0.03);
    font-size: 6rem;
    font-weight: 900;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.brands-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.brand-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.brand-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), var(--main-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.brand-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.1);
}

.brand-card:hover::before {
    transform: scaleX(1);
}

.brand-card img {
    max-width: 100%;
    height: auto;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.brand-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.brand-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--main-color), rgba(0, 122, 255, 0.1));
    margin: 0 auto 25px;
    border-radius: 2px;
    position: relative;
}

.brand-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: var(--main-color);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 4px rgba(0, 122, 255, 0.2);
}

.section-subtitle {
    color: #64748b;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background: var(--main-color);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--main-color), transparent 70%);
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
    background: radial-gradient(circle, var(--main-color), transparent 70%);
}

@media (max-width: 768px) {
    .brands-section .section-title h2 {
        font-size: 24px;
    }

    .brands-section .section-title .title-bg {
        font-size: 4rem;
    }

    .brand-card {
        width: 90px;
        height: 74px;
        padding: 11px;
    }

    .brands-container {
        gap: 20px;
    }

    .section-subtitle {
        font-size: 14px;
        margin: 0 auto 20px;
    }

    .brands-section .section-title {
        margin-bottom: 10px;
    }
    .modal-dialog {
    min-width: auto !important; /* reset on small screens */
  }

}


/* Mobile Responsive css */
/* Home page---- */
@media screen and (max-width:576px) {

    .banner-slider {
        height: 23vh;
    }

    .banner-slider .swiper-slide {
        background-size: contain;
    }

    .swiper-pagination,
    .swiper-button-next,
    .swiper-button-prev {
        display: none !important;
    }

    .search-cat-container {
        max-width: 390px;
    }

    .nav-tabs .nav-link {
        font-size: 12px;
        background: transparent;
        color: #4a4949e0 !important;
        margin: 0 1px;
        padding: 4px 10px;
        border-radius: 30px;

    }

    .nav-tabs .nav-item.show .nav-link,
    .nav-tabs .nav-link.active {
        background: var(--gradient);
        color: #fff !important;
        padding: 4px 10px;
        border-radius: 30px;
    }

    .nav-tabs-scroll {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    .nav-tabs {
        flex-wrap: nowrap !important;
        display: inline-flex;
        /*min-width: max-content;*/
        overflow-x: auto;
        width: -webkit-fill-available;
    }

    .nav-tabs .nav-item {
        flex: 0 0 auto;
    }

    .row>[class*="col-"]>.card {
        margin-left: auto;
        margin-right: auto;
        /*max-width: 320px;*/
        width: 100%;
    }

    .container {
        padding: 0 30px;
    }

    .custom-container {
        padding: 0 22px;
    }

    .copyright-area p {
        font-size: 14px;
    }

    .social-media a {
        font-size: 14px;
        color: #fff;
    }

    .sticky-mobile-actions {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1020;
        background: #fff;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.07);
        padding: 12px 0 8px 0;
    }

    .feature-card {
        flex: 0 0 95%;
    }

    .features-container {
        padding: 25px 0;
    }

    .card-title {
        height: unset;
    }
}


/*add button hover effect*/
/*.btn:hover::before {*/
/*    transform: translateX(100%);*/
/*}*/
/*.btn::before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    top: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    bottom: 0;*/
/*    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);*/
/*    transform: translateX(-100%);*/
/*    transition: transform 0.6s ease;*/
/*    z-index: -1;*/
/*}*/

/* Reusable Glassmorphism Card */
.glass-card {
    /*background: rgba(255, 255, 255, 0.1);*/
    backdrop-filter: blur(15px);
    /*border-radius: 20px;*/
    /*padding: 30px;*/
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Hover Effect - Reusable */
.glass-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: -1;
}

.glass-card:hover::before {
    transform: translateX(100%);
}


/*comparisoon css*/
/* Custom Card Style */
.custom-card {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
}

.custom-card .card-body {
    padding: 0;
}

/* Table 2: Striped Hover */
.table2 {
    border-radius: 10px;
    overflow: hidden;
}

.table2 thead th {
    background: var(--main-color) !important;
    color: white;
    border: none;
    padding: 15px;
    font-weight: 600;
}

.table2 tbody tr {
    transition: all 0.3s ease;
}

.table2 tbody tr:hover {
    background-color: var(--main-color) !important;
    color: white;
    transform: scale(1.02);
}

.table2 td {
    padding: 12px 15px;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .table-responsive {
        font-size: 12px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
    }

    .nav-pills .nav-link {
        font-size: 12px;
        padding: 8px 12px;
    }

    .comp-table-static {
        padding: 0 10px !important;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .fill-btn {
    padding: 6px 14px !important;
}

@media (max-width: 380px) {
    .navbar-brand img {
        height: 28px;
    }

    .navbar>.container,
    .navbar>.container-fluid,
    .navbar>.container-lg,
    .navbar>.container-md,
    .navbar>.container-sm,
    .navbar>.container-xl,
    .navbar>.container-xxl {
        flex-wrap: nowrap;

    }

    .navbar .fill-btn {
        padding: 4px 10px !important;
        font-size: 14px;
    }

    .navbar-toggler-icon {
        display: inline-block;
        width: 1em;
        height: 1em;
        vertical-align: middle;
        background-image: var(--bs-navbar-toggler-icon-bg);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
    }
}

/*fix card btn in mobile view*/
@media screen and (max-width: 576px) {
    .view-btn-box {
        width: 49%;
    }

    .view-btn-box a {
        justify-content: center;
    }

    .card-bottom button {
        width: 49%;
        justify-content: center;
    }
}


.modal-content{

min-width:800px;    

}

.whatsapp, .mobile {
    background: #47a44c;
    color: white;
    position: fixed;
    bottom: 200px;
    right: -130px;
    z-index: 999;
    padding: 7px 20px;
    border-radius: 4px 0 0 4px;
    font-size: 18px;
    transition: all 300ms linear;
    font-weight: 500;
}
.mobile {
    background: #0061c9;
    color: white;
    position: fixed;
    bottom: 140px;
    right: -78px;
    z-index: 999;
    padding: 7px 20px;
    border-radius: 4px 0 0 4px;
    font-size: 18px;
    transition: all 300ms linear;
    font-weight: 500;
}
.whatsapp:hover, .mobile:hover {
    color: white;
    right: 0;
}