        .product-container {
            width: 350px;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding-bottom: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            margin: auto;
            position: relative;
            overflow: hidden;
        }

        .best-seller {
            background: linear-gradient(to right, #2D033B, #FF5733);
            color: white;
            padding: 10px;
            font-weight: bold;
            text-transform: uppercase;
            font-size: 14px;
            border-radius: 10px 10px 0 0;
            text-align: center;
        }

        .slider-container {
            display: flex;
            transition: transform 0.5s ease-in-out;
            width: 100%;
        }

        .slide {
            min-width: 100%;
            justify-content: center; 
            align-items: center; 
        }

        .slide img {
            width: 60%;  
            height: 250px; 
            object-fit: contain;  
        }

        .dots {
            display: flex;
            justify-content: center;
            margin-top: 10px;
        }

        .dot {
            width: 8px;
            height: 8px;
            margin: 0 4px;
            background: #ddd;
            border-radius: 50%;
            cursor: pointer;
        }

        .dot.active {
            background: black;
        }

        .product-title {
            font-size: 17px;
            font-weight: bold;
            color: red;
            margin-top: 10px;
            text-align: center; 
        }


        .product-price {
            font-size: 24px;
            font-weight: bold;
            margin-top: 5px;
            text-align: center;
        }

        .product-description {
            font-size: 14px;
            padding: 10px;
            color: #666;
            text-align: center;
        }

        .color-options {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 10px;
        }

        .color-circle {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: 2px solid #ccc;
            margin: 0 5px;
            cursor: pointer;
        }

        .color-circle.silver {
            background: white;
        }

        .color-circle.black {
            background: black;
            border: none;
        }

        .selected {
            border: 2px solid red;
        }

        .color-text {
            margin-top: 5px;
            font-size: 14px;
        }

        .title {
           margin-top: 30px;
           margin-bottom: 30px;
            color: #262626;
            text-align: center;
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(0.3); /* Adjusts the color to dark gray */
        }







        .buttontoggle {
            width: 40px;
            height: 40px;
            border: none;
            cursor: pointer;
            margin: 5px;

        }
        .buttontoggle--active {
            border: 2px solid #000;
        }


        #productImage {
            transition: opacity 0.3s ease-in-out;
        }








        .feature-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }
        .feature-card:hover {
            transform: translateY(-5px);
        }
        .feature-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }
        .feature-card .card-body {
            text-align: center;
            padding: 20px;
           
            background-color: lightgray;
        }






        .integration-card {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            width: 500px; 
            height: 300px; 
        }

        .integration-card img {
            width: 500px; 
            transition: transform 0.3s ease-in-out;
            height: 300px; 
        }

        .integration-card:hover img {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
    .integration-card {
        width: 100%; 
        height: auto; 
    }

    .integration-card img {
        width: 100%; 
        height: auto; 
    }
}


        .integration-badge {
            position: absolute;
            bottom: 10px;
            left: 10px;
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 10px;
            border-radius: 5px;
        }

        .integration-badge img {
            width: 100px;
        }




.integration-card2 {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 100%; /* Full width */
    max-width: 500px; /* Limit max width for desktop */
    height: auto;
}

.integration-card2 img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.integration-card2:hover img {
    transform: scale(1.05);
}

/* Responsive for mobile */
@media (max-width: 768px) {
    .integration-card2 {
        max-width: 100%; /* Take full width of container */
    }

    .integration-card2 img {
        max-width: 100%;
    }
}






        .banner-container {
            background-color: #2D0000; /* Dark maroon background */
            color: white;
            text-align: center;
            padding: 50px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 5px solid white;
            border-bottom: 5px solid white;
            margin-top: 40px;
        }
        .banner-text {
            flex: 1;
            text-align: left;
            padding-left: 5%;
        }
        .banner-text h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: white;
        }
        .banner-text p {
            font-size: 1.2rem;
        }
        .banner-image {
            flex: 0.3;
            text-align: right;
            padding-right: 10%;
        }
        .banner-image img {
            max-width: 350px;
        }
        @media (max-width: 768px) {
            .banner-container {
                flex-direction: column;
                text-align: center;
            }
            .banner-text {
                text-align: center;
                padding: 0;
            }
            .banner-image {
                text-align: center;
                padding: 20px 0 0;
            }
        }






        .apButtons {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        .apButtons__title {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }
        .apButtons__slider img {
            width: 100%;
            border-radius: 10px;
        }
        .apButton__slide {
            text-align: center;
            margin-bottom: 20px;
        }
        .apButtons__buttonContainer button {
            width: 100%;
            text-align: left;
            border: none;
            background: none;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .apButtons__buttonContainer button:hover {
            background: #ddd;
        }
        .apButtons__buttonIconWrapper img {
            width: 50px;
        }

          @media (max-width: 768px) {
    .apButtons__buttonContainer button img {
        width: 30px !important; /* Adjust image width */
        height: 30px !important; /* Ensure consistent height */
    }
    
    .apButtons__buttonContainer button {
        padding: 10px; /* Reduce padding for better spacing */
        gap: 10px; /* Adjust gap between image and text */
        font-size: 14px; /* Reduce text size for better fit */
    }

    .apButtons__buttonContainer div h6 {
        font-size: 14px; /* Adjust heading size */
    }

    .apButtons__buttonContainer div p {
        font-size: 12px; /* Reduce paragraph text size */
    }
}





        .apButtons2 {
            padding: 50px 0;
            background-color: #f8f9fa;
        }
        .apButtons__title2 {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }
        .apButtons__slider2 img {
            width: 100%;
            border-radius: 10px;
        }
        .apButton__slide2 {
            text-align: center;
            margin-bottom: 20px;
        }
        .apButtons__buttonContainer2 button {
            width: 100%;
            text-align: left;
            border: none;
            background: none;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .apButtons__buttonContainer2 button:hover {
            background: #ddd;
        }
        .apButtons__buttonIconWrapper2 img {
            width: 50px;
        }

        @media (max-width: 768px) {
    .apButtons__buttonContainer2 button img {
        width: 30px !important; /* Adjust image width */
        height: 30px !important; /* Ensure consistent height */
    }
    
    .apButtons__buttonContainer2 button {
        padding: 10px; /* Reduce padding for better spacing */
        gap: 10px; /* Adjust gap between image and text */
        font-size: 14px; /* Reduce text size for better fit */
    }

    .apButtons__buttonContainer2 div h6 {
        font-size: 14px; /* Adjust heading size */
    }

    .apButtons__buttonContainer2 div p {
        font-size: 12px; /* Reduce paragraph text size */
    }
}





      



        
      .smart-home-heading {
            font-size: 40px; /* Font size achi readability ke liye */
            font-weight: bold;
            text-align: center; /* Text ko center mein karne ke liye */
            font-family: 'Poppins', sans-serif; /* Achi typography ke liye */
            color: #333; /* Dark color for better contrast */
        }

      .red-line {
            width: 100px;
            height: 4px;
            background-color: red;
            margin: 0 auto;
            transform: scaleX(0);
            transform-origin: center;
            animation: loadLine 1.5s ease-in-out infinite alternate;
        }


        @keyframes loadLine {
            from {
                transform: scaleX(0);
            }
            to {
                transform: scaleX(1);
            }
        }

         .red-line2 {
            width: 100px;
            height: 4px;
            background-color: red;
            transform: scaleX(0);
            transform-origin: center;
            animation: loadLine 1.5s ease-in-out infinite alternate;
        }


        
        .product-action-icon-link {
            position: absolute;
            top: 20px;
            right: -10px;

            ul {
                padding: 0;
                margin: 0;
                list-style: none;
            }

            li {
                margin-bottom: 10px;
                display: block;
                visibility: hidden;
                opacity: 0;
                transition: all 0.3s ease-in-out;
                transform: scale(0.6);
                backface-visibility: hidden;

                &:last-child {
                    margin-bottom: 0;
                }
         }

    /* Ensure Add to Cart is always visible */
    li:first-child {
        visibility: visible;
        opacity: 1;
        transform: scale(1);
    }

    li a {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        line-height: 40px;
        text-align: center;
        border: 2px solid $borderColor;
        display: block;
        background: $white;
    }
}

/* Show remaining icons on hover */
.product-default-single:hover .product-action-icon-link li {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}

/* Add delay effect for animation */
.product-default-single:hover .product-action-icon-link li:nth-child(2) {
    transition-delay: 0.1s;
}
.product-default-single:hover .product-action-icon-link li:nth-child(3) {
    transition-delay: 0.2s;
}
.product-default-single:hover .product-action-icon-link li:nth-child(4) {
    transition-delay: 0.3s;
}

/* Hover effect */
.product-action-icon-link li a:hover {
    background: $themeColor;
    border-color: $themeColor;
    color: $white;
}
