.carousel-item::before {
    background: none; 
}
.carousel-item {
     height: 100%; 
}
.cta-section::before {
        background: url('./assets/images/homepage-banner-1366x573px-06122024-053201.png') no-repeat center center/cover;
    }
/* Blog Section */
.blog-section {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.blog-container {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 30px;
}

.blog-content {
    background: var(--light);
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
}

.blog-header {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.blog-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-meta-item i {
    color: var(--primary);
}

.blog-image {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
    background-size: 400% 400%;
    animation: shimmer 1.5s infinite;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.blog-image img.loaded {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.blog-text {
    color: var(--dark-gray);
    line-height: 1.8;
}

.blog-text p {
    margin-bottom: 1.5rem;
}

.blog-text h3 {
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    color: var(--primary);
    position: relative;
    padding-left: 15px;
}

.blog-text h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    height: 25px;
    width: 5px;
    background-color: var(--primary);
    border-radius: 3px;
}

.blog-quote {
    background: rgba(200, 11, 11, 0.05);
    border-left: 4px solid var(--primary);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 5px 5px 0;
}

.blog-tags {
    display: flex;
    gap: 10px;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.blog-tag {
    background: rgba(200, 11, 11, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.blog-tag:hover {
    background: var(--primary);
    color: white;
}

.blog-share {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.share-title {
    font-weight: 600;
    color: var(--secondary);
}

.share-icons {
    display: flex;
    gap: 10px;
}

.share-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(200, 11, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s ease;
}

.share-icon:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Recent Posts Sidebar */
.recent-posts {
    background: var(--light);
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.sidebar-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary);
    position: relative;
    color: var(--secondary);
}

.sidebar-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary);
}

.recent-post-card {
    background: rgba(249, 249, 249, 0.8);
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.recent-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.recent-post-img {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    background: linear-gradient(45deg, #f5f5f5 25%, #e0e0e0 50%, #f5f5f5 75%);
    background-size: 400% 400%;
    animation: shimmer 1.5s infinite;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}

.recent-post-img img.loaded {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.recent-post-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.recent-post-date i {
    color: var(--primary);
    margin-right: 6px;
    font-size: 0.9rem;
}

.recent-post-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    line-height: 1.4;
}

.recent-post-excerpt {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--secondary);
}

.read-more:hover i {
    transform: translateX(4px);
}

.sidebar-divider {
    height: 1px;
    background: #eee;
    margin: 1.5rem 0;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 3px;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(200, 11, 11, 0.2);
    width: 100%;
    text-align: center;
}

.view-all-btn:hover {
    background: #a30202;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 8px 20px rgba(200, 11, 11, 0.3);
}

.view-all-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-all-btn:hover i {
    transform: translateX(4px);
}


/* Responsive Adjustments */
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .blog-image {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 1.8rem;
    }
    
    .blog-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .blog-title {
        font-size: 1.6rem;
    }
    
    .blog-header {
        margin-bottom: 1.5rem;
    }
    
    .blog-image {
        height: 200px;
    }
}

/* Banner Slider */
.banner-slider {
    position: relative;
    margin-bottom: 1rem;
}

#mainBanner .carousel-item img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}
/* Breadcrumb */
.breadcrumb-section {
    margin-top: 0px;
}



 /* Product Gallery */
            .product-gallery {
                position: relative;
                margin-bottom: 30px;
            }
            
            #productCarousel {
                border-radius: 3px;
                overflow: hidden;
                /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
            }
            
            .carousel-item img {
                width: 100%;
                /*height: 500px;*/
                object-fit: cover;
            }
            
            .carousel-control-prev,
            .carousel-control-next {
                width: 40px;
                height: 40px;
                background: rgba(0, 0, 0, 0.2);
                border-radius: 3px;
                top: 50%;
                transform: translateY(-50%);
                opacity: 0.7;
                transition: all 0.3s ease;
            }
            
            .carousel-control-prev:hover,
            .carousel-control-next:hover {
                opacity: 1;
                background: var(--primary);
            }
            
            .carousel-control-next-icon, .carousel-control-prev-icon {
                width: 1.5rem;
                height: 1.5rem;
            }
            
            .carousel-indicators {
                bottom: 20px;
            }
            
            .carousel-indicators button {
                width: 12px;
                height: 12px;
                border-radius: 3px;
                background-color: rgba(255, 255, 255, 0.5);
                border: none;
            }
            
            .carousel-indicators .active {
                background-color: #fff;
            }
            
            .thumbnail-container {
                display: flex;
                gap: 10px;
                margin-top: 15px;
                justify-content: center;
                flex-wrap: wrap;
            }
            
            .thumbnail {
                width: 80px;
                height: 60px;
                border-radius: 3px;
                overflow: hidden;
                cursor: pointer;
                border: 2px solid transparent;
                transition: all 0.3s ease;
            }
            
            .thumbnail.active,
            .thumbnail:hover {
                border-color: var(--primary);
                transform: scale(1.05);
            }
            
            .thumbnail img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
    
            /* Product Details */
            .product-details {
                padding: 2rem;
                background: var(--light);
                border-radius: 3px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
                position: relative;
                overflow: hidden;
            }
            
            .product-title {
                font-size: 2.2rem;
                color: var(--secondary);
                margin-bottom: 0.5rem;
                font-weight: 800;
            }
            
            .product-subtitle {
                color: var(--dark-gray);
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
            }
            
            .product-price {
                font-size: 1.8rem;
                color: var(--primary);
                font-weight: 800;
                margin-bottom: 1.5rem;
            }
            
            .product-price .old-price {
                text-decoration: line-through;
                font-size: 1.2rem;
                color: var(--dark-gray);
                margin-right: 10px;
            }
            
            .product-price .discount {
                background: var(--primary);
                color: white;
                padding: 3px 10px;
                border-radius: 3px;
                font-size: 0.9rem;
                margin-left: 10px;
            }
            
            .product-description {
                margin-bottom: 2rem;
                color: var(--dark-gray);
                line-height: 1.8;
            }
            
            .product-features {
                margin-bottom: 2rem;
            }
            
            .feature-list {
                list-style: none;
                padding-left: 0;
            }
            
            .feature-list li {
                margin-bottom: 0.8rem;
                display: flex;
                align-items: flex-start;
            }
            
            .feature-list li i {
                color: var(--primary);
                margin-right: 10px;
                margin-top: 5px;
                font-size: 1.1rem;
            }
            
            .color-variant {
                margin-bottom: 2rem;
            }
            
            .color-title {
                font-size: 1.2rem;
                margin-bottom: 1rem;
                font-weight: 700;
                color: var(--secondary);
            }
            
            .color-options {
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
            }
            
            .color-option {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                cursor: pointer;
                border: 2px solid transparent;
                position: relative;
                transition: all 0.3s ease;
                box-shadow: 0 3px 8px rgba(0,0,0,0.1);
            }
            
            .color-option.active {
                border-color: var(--primary);
                transform: scale(1.1);
                box-shadow: 0 0 0 3px rgba(200, 11, 11, 0.3);
            }
            
            .color-option.active::after {
                content: '\f00c';
                font-family: 'Font Awesome 5 Free';
                font-weight: 900;
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                color: white;
                font-size: 0.8rem;
            }
            
            .color-option[data-color="black"] {
                background: #1a1a1a;
            }
            
            .color-option[data-color="red"] {
                background: #c80b0b;
            }
            
            .color-option[data-color="blue"] {
                background: #1e90ff;
            }
            
            .color-option[data-color="white"] {
                background: #ffffff;
                border: 1px solid #ddd;
            }
            
            .product-actions {
                display: flex;
                gap: 15px;
                flex-wrap: wrap;
            }
            
            .btn-test-drive {
                background: var(--primary);
                color: white;
                border: none;
                padding: 0.8rem 1.8rem;
                border-radius: 3px;
                font-weight: 600;
                transition: all 0.3s ease;
                flex: 1;
                min-width: 200px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }
            
            .btn-test-drive:hover {
                background: var(--primary-dark);
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(230, 0, 0, 0.3);
            }
            
            .btn-whatsapp {
                background: #25D366;
                color: white;
                border: none;
                padding: 0.8rem 1.8rem;
                border-radius: 3px;
                font-weight: 600;
                transition: all 0.3s ease;
                flex: 1;
                min-width: 200px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }
            
            .btn-whatsapp:hover {
                background: #128C7E;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
            }
            
            .btn-finance {
                background: #333;
                color: white;
                border: none;
                padding: 0.8rem 1.8rem;
                border-radius: 3px;
                font-weight: 600;
                transition: all 0.3s ease;
                flex: 1;
                min-width: 200px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
            }
            
            .btn-finance:hover {
                background: #111;
                transform: translateY(-3px);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            }
    
            /* Specifications Section */
            .specifications {
                background: var(--gray);
                padding: 5rem 0;
            }
            
            .specs-container {
                background: var(--light);
                border-radius: 3px;
                overflow: hidden;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            }
            
            .specs-tabs {
                display: flex;
                border-bottom: 2px solid #eee;
                flex-wrap: wrap;
            }
            
            .specs-tab {
                padding: 1rem 1.5rem;
                cursor: pointer;
                font-weight: 600;
                color: var(--dark-gray);
                transition: all 0.3s ease;
                border-bottom: 3px solid transparent;
            }
            
            .specs-tab:hover {
                background: rgba(200, 11, 11, 0.05);
            }
            
            .specs-tab.active {
                color: var(--primary);
                border-bottom: 3px solid var(--primary);
            }
            
            .specs-content {
                padding: 1.5rem;
            }
            
            .specs-table {
                width: 100%;
                border-collapse: collapse;
            }
            
            .specs-table tr {
                border-bottom: 1px solid #eee;
                transition: background 0.2s ease;
            }
            
            .specs-table tr:hover {
                background: rgba(200, 11, 11, 0.03);
            }
            
            .specs-table td {
                padding: 0.7rem 0.5rem;
                font-size: 0.95rem;
            }
            
            .specs-table td:first-child {
                font-weight: 600;
                width: 40%;
                color: var(--secondary);
            }
            
            .specs-table td:last-child {
                color: var(--dark-gray);
            }
    
            /* CTA Section */
            .cta-section {
                padding: 2.5rem 0;
                background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
                color: var(--light);
                text-align: center;
                position: relative;
                overflow: hidden;
                width: 100%;
                margin: 3rem 0;
            }
            
            .cta-content {
                position: relative;
                z-index: 2;
                max-width: 800px;
                margin: 0 auto;
                padding: 0 1rem;
            }
            
            .cta-content h2 {
                font-size: 2.2rem;
                margin-bottom: 1.2rem;
                font-weight: 800;
                text-shadow: 0 2px 4px rgba(0,0,0,0.2);
                animation: pulse 2s infinite;
            }
            
            .cta-content p {
                font-size: 1.1rem;
                margin-bottom: 1.5rem;
                opacity: 0.9;
                font-weight: 500;
                max-width: 600px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .cta-buttons {
                display: flex;
                justify-content: center;
                gap: 1rem;
                flex-wrap: wrap;
            }
            
            .btn-cta-primary {
                background: var(--light);
                color: var(--primary);
                border: none;
                padding: 0.85rem 2rem;
                border-radius: 3px;
                font-weight: 700;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(0,0,0,0.2);
                position: relative;
                overflow: hidden;
                z-index: 1;
            }
            
            .btn-cta-primary:hover {
                color: var(--light);
                background: var(--primary-dark);
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            }
            
            .btn-cta-secondary {
                background: transparent;
                color: var(--light);
                border: 2px solid var(--light);
                padding: 0.85rem 2rem;
                border-radius: 3px;
                font-weight: 700;
                transition: all 0.3s ease;
                box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            }
            
            .btn-cta-secondary:hover {
                background: var(--light);
                color: var(--primary);
                transform: translateY(-3px);
                box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            }
            .image-center{
                max-width:100% !important; 
                margin:auto; 
                display: block;
            }
            
    
            /* Animations */
            @keyframes fadeInUp {
                from {
                    opacity: 0;
                    transform: translateY(30px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
    
            @keyframes pulse {
                0% {
                    transform: scale(1);
                    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
                }
                50% {
                    transform: scale(1.02);
                    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
                }
                100% {
                    transform: scale(1);
                    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
                }
            }
    
            /* Responsive Adjustments */
            @media (max-width: 992px) {
                .image-center{
                    max-width:70% !important; 
                    margin:auto; 
                    display: block;
                }
                
                .carousel-indicators{
                    display:none;
                }
                .image-center{
                    max-width:70% !important; 
                    margin:auto; 
                    display: block;
                }
                
                .product-actions {
                    flex-direction: column;
                }
                
                .carousel-item img {
                    /*height: 400px;*/
                }
                
                #mainBanner .carousel-item img {
                    height: 400px;
                }
            }
    
            @media (max-width: 768px) {
                .product-title {
                    font-size: 1.8rem;
                }
                
                .product-price {
                    font-size: 1.5rem;
                }
                
                .carousel-item img {
                    /*height: 300px;*/
                }
                
                #mainBanner .carousel-item img {
                    height: 300px;
                }
                
                .specs-tabs {
                    flex-wrap: wrap;
                }
                
                .specs-tab {
                    padding: 0.8rem 1rem;
                    font-size: 0.9rem;
                }
            }
    
            @media (max-width: 576px) {
                
                .product-title {
                    font-size: 1.6rem;
                }
                
                .product-price {
                    font-size: 1.3rem;
                }
                
                .carousel-item img {
                    height: 250px;
                }
                
                #mainBanner .carousel-item img {
                    height: 250px;
                }
                
                .thumbnail {
                    width: 60px;
                    height: 45px;
                }
                
                .banner-overlay h2 {
                    font-size: 1.8rem;
                }
                
                .banner-overlay p {
                    font-size: 0.9rem;
                }
            }
            
            /* Badge Promo */
            .promo-badge {
                position: absolute;
                top: none;
                right: -50px;
                background: var(--primary);
                color: white;
                padding: 8px 80px;
                font-weight: 700;
                transform: rotate(45deg);
                font-size: 0.9rem;
                z-index: 10;
                box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            }
/* Product Gallery Height Adjustment */
.product-gallery, 
#productCarousel, 
.carousel-inner, 
.carousel-item, 
.carousel-item img {
    height: 100% !important;
}

/* Product Information Height Adjustment */
.product-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-actions {
    margin-top: auto;
    padding-top: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .product-detail .row {
        flex-direction: column;
    }
    
    .product-gallery, 
    #productCarousel, 
    .carousel-inner, 
    .carousel-item, 
    .carousel-item img {
        height: auto !important;
        /*min-height: 400px;*/
    }
} 