        /* ================================
           HFC HERO SECTION
        ================================ */
        .hfc-hero-section {
            position: relative;
            min-height: 85vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg,
                    rgba(232, 244, 252, 0.95) 0%,
                    rgba(232, 244, 252, 0.98) 100%),
                url('https://images.unsplash.com/photo-1567401893414-76b7b1e5a7a5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 120px 20px 80px;
            overflow: hidden;
        }
        
        .hfc-hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%,
                    rgba(255, 255, 255, 0.9) 0%,
                    rgba(232, 244, 252, 0.6) 50%,
                    transparent 100%);
            z-index: 1;
        }
        
        .hfc-hero-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            width: 100%;
        }
        
        .hfc-hero-badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--accent-blue), #2980b9);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
            box-shadow: 0 8px 20px rgba(59, 175, 218, 0.3);
        }
        
        .hfc-hero-title {
            font-size: 4.2rem;
            font-weight: 900;
            color: var(--deep-navy);
            margin-bottom: 1.5rem;
            line-height: 1.1;
            background: linear-gradient(135deg,
                    var(--deep-navy) 0%,
                    var(--accent-blue) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 15px rgba(11, 60, 93, 0.1);
        }
        
        .hfc-hero-subtitle {
            font-size: 1.4rem;
            color: var(--secondary-grey);
            line-height: 1.7;
            margin-bottom: 3rem;
            max-width: 800px;
        }
        
        .hfc-features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 3rem;
        }
        
        .hfc-feature {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 16px;
            padding: 1.5rem;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(59, 175, 218, 0.1);
            text-align: center;
        }
        
        .hfc-feature-icon {
            font-size: 2.5rem;
            color: var(--accent-blue);
            margin-bottom: 1rem;
        }
        
        .hfc-feature-text {
            font-size: 1rem;
            color: var(--deep-navy);
            font-weight: 600;
        }
        
        /* ================================
           TECHNICAL SPECS SECTION
        ================================ */
        .hfc-specs-section {
            padding: 6rem 0;
            background: white;
        }
        
        .hfc-specs-table {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .hfc-specs-header {
            background: linear-gradient(135deg, var(--deep-navy), var(--accent-blue));
            color: white;
            padding: 1.5rem 2rem;
        }
        
        .hfc-specs-body {
            padding: 0;
        }
        
        .hfc-specs-row {
            display: flex;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 1.5rem 2rem;
            align-items: center;
        }
        
        .hfc-specs-row:nth-child(even) {
            background: rgba(232, 244, 252, 0.3);
        }
        
        .hfc-specs-label {
            flex: 0 0 40%;
            font-weight: 600;
            color: var(--deep-navy);
        }
        
        .hfc-specs-value {
            flex: 0 0 60%;
            color: var(--secondary-grey);
        }
        
        /* ================================
           MAINTENANCE SECTION
        ================================ */
        .maintenance-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, #0b3c5d, #164a6d);
            color: white;
        }
        
        .maintenance-feature {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2.5rem;
        }
        
        .maintenance-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }
        
        .maintenance-icon i {
            font-size: 1.5rem;
            color: white;
        }
        
        /* ================================
           CTA SECTION
        ================================ */
        .hfc-cta-section {
            padding: 6rem 0;
            background: linear-gradient(135deg, var(--accent-blue), #2980b9);
            position: relative;
            overflow: hidden;
        }
        
        .hfc-cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .hfc-cta-title {
            font-size: 3rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .hfc-cta-subtitle {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 3rem;
            line-height: 1.7;
        }
        
        .btn-hfc-cta {
            background: white;
            color: var(--accent-blue);
            border: none;
            padding: 1.2rem 3rem;
            border-radius: 12px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            text-decoration: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .btn-hfc-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
            color: var(--accent-blue);
        }
        
        /* ================================
           RESPONSIVE DESIGN
        ================================ */
        @media (max-width: 1200px) {
            .hfc-hero-title {
                font-size: 3.5rem;
            }
        }
        
        @media (max-width: 992px) {
            .hfc-hero-section {
                padding: 100px 20px 60px;
                min-height: 70vh;
                background-attachment: scroll;
            }
            
            .hfc-hero-title {
                font-size: 2.8rem;
            }
            
            .hfc-hero-subtitle {
                font-size: 1.2rem;
            }
            
            .hfc-specs-row {
                flex-direction: column;
                align-items: flex-start;
                gap: 0.5rem;
            }
            
            .hfc-specs-label,
            .hfc-specs-value {
                flex: 0 0 100%;
            }
        }
        
        @media (max-width: 768px) {
            .hfc-hero-title {
                font-size: 2.2rem;
            }
            
            .hfc-hero-badge {
                font-size: 0.9rem;
                padding: 0.6rem 1.5rem;
            }
            
            .hfc-features-grid {
                grid-template-columns: 1fr;
            }
            
            .maintenance-feature {
                flex-direction: column;
                text-align: center;
            }
            
            .maintenance-icon {
                margin-right: 0;
                margin-bottom: 1rem;
            }
            
            .hfc-cta-title {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 576px) {
            .hfc-hero-title {
                font-size: 1.8rem;
            }
            
            .hfc-cta-title {
                font-size: 1.8rem;
            }
            
            .btn-hfc-cta {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }
        /* ==============================
   PRODUCT BREADCRUMB
============================== */
.product-breadcrumb {
    width: 100%;
    padding: 18px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Breadcrumb list */
.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 15px;
    color: #333;
}

/* Each item */
.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Links */
.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #007bff;
}

/* Icons */
.breadcrumb-item i {
    font-size: 13px;
    opacity: 0.75;
}

/* Chevron */
.breadcrumb-item .fa-chevron-right {
    font-size: 12px;
    opacity: 0.5;
}

/* Active breadcrumb */
.breadcrumb-item.active {
    font-weight: 600;
    color: #007bff;
}

.breadcrumb-item.active span {
    color: #007bff;
}

/* ==============================
   MOBILE RESPONSIVE
============================== */
@media (max-width: 768px) {

    .product-breadcrumb {
        padding: 14px 0;
    }

    .breadcrumb-list {
        font-size: 13px;
        gap: 8px;
    }

    .breadcrumb-item a {
        font-size: 13px;
    }

    .breadcrumb-item i {
        font-size: 12px;
    }
}

/* Extra small screens */
@media (max-width: 480px) {

    .breadcrumb-list {
        font-size: 12px;
        gap: 6px;
    }

    /* Breadcrumb ko wrap allow karna */
    .breadcrumb-item a span {
        line-height: 1.2;
    }

    /* Home icon thora compact */
    .breadcrumb-item a i.fa-home {
        font-size: 12px;
    }
}
/* ================= VARIANTS SECTION ================= */
.variants1-section {
    padding: 4rem 1rem;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
    overflow: hidden;
}

.variants1-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0b3c5d;
    margin-bottom: 0.5rem;
}

.section-subtitle3 {
    font-size: 1rem;
    color: #556677;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto;
}

/* ================= VARIANTS GRID ================= */
.variants-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* ================= VARIANT CARD ================= */
.variant-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(11, 60, 93, 0.07);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.variant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(11, 60, 93, 0.15);
}

/* ================= VARIANT HEADER ================= */
.variant-header {
    position: relative;
    overflow: hidden;
}

.variant-header img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.variant-card:hover .variant-header img {
    transform: scale(1.05);
}

/* Badge */
.variant-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #3bafda;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.8rem;
    border-radius: 12px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* ================= VARIANT BODY ================= */
.variant-body {
    padding: 1.5rem;
}

.variant-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0b3c5d;
    margin-bottom: 0.5rem;
}

.variant-desc {
    font-size: 0.9rem;
    color: #556677;
    line-height: 1.6;
}

/* ================= VARIANT FOOTER ================= */
.variant-footer {
    padding: 1rem 1.5rem 1.5rem;
    display: flex;
    justify-content: center;
}

.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid #3bafda;
    color: #3bafda;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #3bafda;
    color: #fff;
    transform: translateY(-2px);
}

/* ================= FADE-IN ANIMATION ================= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= MEDIA QUERIES ================= */
@media (min-width: 600px) {
    .variants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .section-title3 {
        font-size: 2rem;
    }

    .section-subtitle3 {
        font-size: 1.05rem;
    }
}

@media (min-width: 992px) {
    .variants-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .section-title3 {
        font-size: 2.3rem;
    }

    .variant-title {
        font-size: 1.3rem;
    }

    .variant-desc {
        font-size: 0.95rem;
    }
}

@media (min-width: 1200px) {
    .variants-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
