.button-65 {
    appearance: none;
    backface-visibility: hidden;
    background-color: #08137a;
    border-radius: 10px;
    border-style: none;
    box-shadow: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    height: 50px;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 14px 30px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-65:hover {
    background-color: #08137a;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

.button-65:hover:after {
    opacity: .5;
}

.button-65:active {
    box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
    transform: translateY(2px);
    transition-duration: .35s;
}

.button-65:active:after {
    opacity: 1;
}

@media (min-width: 768px) {
    .button-65 {
        padding: 14px 22px;
        width: 176px;
    }
}

.button-75 {
    appearance: none;
    backface-visibility: hidden;
    background-color: #F04E30;
    border-radius: 10px;
    border-style: none;
    box-shadow: none;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: Inter, -apple-system, system-ui, "Segoe UI", Helvetica, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
    height: 50px;
    letter-spacing: normal;
    line-height: 1.5;
    outline: none;
    overflow: hidden;
    padding: 14px 30px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transform: translate3d(0, 0, 0);
    transition: all .3s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    vertical-align: top;
    white-space: nowrap;
}

.button-75:hover {
    background-color: #F04E30;
    box-shadow: rgba(0, 0, 0, .05) 0 5px 30px, rgba(0, 0, 0, .05) 0 1px 4px;
    opacity: 1;
    transform: translateY(0);
    transition-duration: .35s;
}

.button-75:hover:after {
    opacity: .5;
}

.button-75:active {
    box-shadow: rgba(0, 0, 0, .1) 0 3px 6px 0, rgba(0, 0, 0, .1) 0 0 10px 0, rgba(0, 0, 0, .1) 0 1px 4px -1px;
    transform: translateY(2px);
    transition-duration: .35s;
}

.button-65:active:after {
    opacity: 1;
}

@media (min-width: 768px) {
    .button-75 {
        padding: 14px 22px;
        width: 176px;
    }
}

.color-preview {
    width: 32px;
    height: 32px;
    /* border-radius: 50%; */
    /* border: 1px solid #ccc; */
}

.accordion-button {
    background-color: #f0f4ff;
    /* Light blue background */
    color: #333;
    /* Text color */
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 0 !important;
    /* No rounded corners */
    box-shadow: none;
    border: none;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 15px;
}

.accordion-button:hover {
    background-color: #e0ebff;
}

.accordion-button:not(.collapsed) {
    background-color: #dbe6ff;
    /* Slightly darker when active */
    color: #000;
    font-weight: 600;
    border: 2px solid #08137a;
}

.accordion-button:focus {
    box-shadow: none;
}

.product-card {
    background-color: white;
    /*width: 330px;*/
    padding: 20px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-right: 10px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.product-image {
    text-align: center;
    margin-bottom: 15px;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
}

.product-title {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-features {
    list-style-type: none;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
    line-height: 1.4;
}

.saleprice {
    color: #08137a !important;
    font-weight: bolder !important;
}

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

.share-icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
}

.share-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.share-modal-content {
    background: white;
    margin: 10% auto;
    padding: 20px;
    width: 300px;
    border-radius: 8px;
    text-align: center;
}

.share-buttons a {
    display: inline-block;
    margin: 10px;
    text-decoration: none;
    color: #fff;
    padding: 8px 12px;
    border-radius: 4px;
}

#shareFacebook {
    background: #3b5998;
}

#shareTwitter {
    background: #55acee;
}

#shareWhatsApp {
    background: #25d366;
}

#shareEmail {
    background: #777;
}

.close-btn {
    float: right;
    font-size: 24px;
    cursor: pointer;
}

.gallery-thumbs .swiper-slide-thumb-active {
    border: 2px solid #08137a !important;
}

.discount-badge-top-right {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: red;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1.1;
    z-index: 20;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

#homepage_initial_section {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
}

.hero-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 80vh;
    gap: 20px;
}

/* Left Side - Swiper */
.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f8f8;
    padding: 0;
    /* Removed padding */
    margin: 0;
    border-radius: 10px;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    background-color: #ddd;
    width: 100%;
    height: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Right Side - Video */
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
    padding: 0;
    /* Removed padding */
    margin: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.hero-right video {
    width: 150%;
    height: 150%;
    object-fit: cover;
    border-radius: 15px;
    /* Ensures full cover mode */
}

.swiper-slide {
    border-radius: 10px;
}

#homepgae_main_offer_section {}

.homepage_offer_Swiper {
    width: 100%;
    height: 30vh;
}

.rounded_card_category {
    border-radius: 80px;
    background: white;
    padding: 10px;
    border: 1px solid #ccc;
    height: 100px;
    width: 100px;
}

.rounded_card_category img {
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        flex: none;
        width: 100%;
        height: 50vh;
    }

    .homepage_offer_Swiper {
        margin-top: 300px !important;
    }
}

.categories-section {
    text-align: center;
    padding: 20px;
}

.categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 20px;
}

.category-item {
    text-decoration: none;
    color: inherit;
}

.category-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 160px;
    /* fix width to force text wrap & center */
}

.category-inner img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ddd;
}

.category-inner p {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    text-align: center;
    word-break: break-word;
}

.more-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
}

.colors-section {
    padding: 20px;
}

.colors {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    justify-content: center;
    margin-top: 20px;
}

.color-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.color-box {
    width: 100%;
    height: 120px;
}

.color-code {
    padding: 10px;
    font-size: 16px;
    font-weight: bold;
}

.container-fluid {
    padding: 10px 50px !important;
}

.product-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.product-card {
    background-color: white;
    /*width: 330px;*/
    padding: 20px;
    border-radius: 5px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.wishlist-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.product-image {
    text-align: center;
    margin-bottom: 15px;
    height: 190px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image img {
    max-height: 100%;
    max-width: 100%;
}

.product-title {
    color: #333;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 500;
}

.product-features {
    list-style-type: none;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    margin-bottom: 10px;
    align-items: flex-start;
    line-height: 1.4;
}

.feature-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    color: #4CAF50;
    margin-right: 10px;
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-text {
    color: #666;
    font-size: 14px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.compare-container {
    display: flex;
    align-items: center;
}

.compare-checkbox {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 1px solid #ddd;
    cursor: pointer;
}

.compare-text {
    color: #666;
    font-size: 14px;
}

.arrow-button {
    width: 40px;
    height: 40px;
    background-color: #f0f0f0;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.arrow-button svg {
    width: 20px;
    height: 20px;
    fill: #4CAF50;
}

.logo-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 50px auto;
    /* Center the container */
}

.outer-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Add rotation animation */
    animation: rotate 10s linear infinite;
}

.outer-circle .c2c-text {
    position: relative;
    z-index: 1;
}

.outer-circle .c2c-text img {
    width: 200px !important;
    height: 200px !important;
    margin-bottom: 10px;
}

.inner-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    /* Keep inner circle above outer circle */
    /* No animation - this stays static */
}

.inner-circle .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-circle .logo img {
    width: 130px !important;
    height: 120px !important;
    margin-bottom: 10px;
}

/* Rotation animation */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Optional: Pause rotation on hover */
.logo-container:hover .outer-circle {
    animation-play-state: paused;
}

/* Optional: Adjust rotation speed */
.slow-rotation {
    animation-duration: 10s;
    /* Slower rotation */
}

.fast-rotation {
    animation-duration: 3s;
    /* Faster rotation */
}

/* Optional: Reverse rotation direction */
.reverse-rotation {
    animation-direction: reverse;
}

/* Alternative approach - if the above doesn't work, try this */
.outer-circle {
    animation: rotate 6s linear infinite !important;
    transform-origin: center center !important;
}

/* Test with a visible border to see if rotation is working */
.outer-circle-test {
    border: 2px solid red;
    animation: rotate 6s linear infinite;
}

.background {
    position: absolute;
    width: 350px;
    height: 350px;
    background-color: #ffedb9;
    z-index: -1;
    border-radius: 8px;
}

.blue-border {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 3px solid #1e88e5;
    z-index: -1;
    border-radius: 8px;
}

.homepage_offer_Swiper {
    position: relative;
}

.logo-container {
    position: absolute;
    z-index: 999;
    right: 10%;
    bottom: 40%;
}

.home_product_card {
    width: 290px;
    border-radius: 10px;
    background-color: white;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    transform: translateY(0);
    padding: 10px;
}

.home_product_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.discount_badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: white;
    padding: 2px 5px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

.wishlist_icon {
    position: absolute;
    top: 10px;
    right: 10px;
    color: red;
    font-size: 20px;
}

.product_image {
    width: 100%;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    margin-top: 15px;
}

.product_image img {
    max-width: 100%;
    max-height: 130px;
    object-fit: contain;
}

.product_info {
    padding: 10px;
}

.product_title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.product_subtitle {
    font-size: 11px;
    color: #777;
    margin-bottom: 10px;
}

.product_price {
    font-weight: bold;
    color: #000;
    font-size: 16px;
    margin-bottom: 5px;
}

.price_details {
    font-size: 10px;
    color: #777;
}

.add_to_cart_btn {
    width: 90%;
    background-color: #1a237e;
    color: white;
    border: none;
    padding: 12px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 10px;
    border-radius: 50px;
    text-align: center;
    margin-left: 20px;
    margin-bottom: 10px;
}

.nav-link {
    color: black !important;
    /* Default color */
    background-color: transparent;
    /* Ensure no unwanted background */
}

.nav-link.active {
    color: white !important;
    /* Active color */
    background-color: black !important;
    /* Background color when active */
}

.brand-card {
    height: 150px;
    /* Set consistent card height */
}

.brand-card .card-body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.brand-card img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.multiple-items .slick-slide {
    padding: 0 10px;
    /* Adjust spacing between slides */
    box-sizing: border-box;
}

.blog-card img {
    object-fit: cover;
    height: 200px;
}

.blog-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.blog-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.blog-body {
    padding: 20px;
}

.blog-category {
    font-size: 0.9rem;
    color: #888;
}

.blog-title {
    font-weight: bold;
    font-size: 1.25rem;
}

.blog-desc {
    font-size: 0.95rem;
    color: #555;
}

.blog-details-banner {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-bottom: 5px solid #f0f0f0;
}

.blog-details-title {
    font-size: 2rem;
    font-weight: 700;
    margin-top: 20px;
}

.blog-details-meta {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.blog-details-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.paint-projects-wrapper {
    padding: 40px 15px;
}

.paint-projects-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.paint-project-card {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px;
    text-align: center;
    background-color: #fff;
    transition: transform 0.2s ease;
    height: 100%;
}

.paint-project-card:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.paint-project-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.paint-project-label {
    font-size: 1rem;
    font-weight: 500;
}

.custom-radio-box {
    padding: 8px;
    border-radius: 8px;
}

.custom-radio-option {
    position: relative;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.custom-radio-input {
    display: none;
}

.custom-radio-label {
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}

.custom-radio-input:checked+.custom-radio-label {
    background-color: #eaf3ff;
    border: 1px solid #08137a;
    color: #08137a;
}

.qty-badge {
    position: absolute;
    top: -6px;
    right: -4px;
    background-color: #08137a;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}

.variant-btn {
    border: 2px solid #003366;
    padding: 10px 15px;
    border-radius: 10px;
    background-color: #fff;
    color: red;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.variant-btn.active {
    background-color: #003366;
    color: white;
}