
:root {
            --ravi-red: #FF0000;
            --ravi-dark-red: #CC0000;
            --ravi-black: #000000;
            --dark-gray: #1a1a1a;
            --medium-gray: #333333;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --text-dark: #2d2d2d;
            --text-light: #666666;
            --shadow: rgba(255, 0, 0, 0.1);
        }

           .features {
            padding: 10px 2rem;
            background: var(--light-gray);
            position: relative;
        }

        .features-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--dark-gray);
            font-weight: 900;
        }

        .section-title .highlight {
            color: var(--ravi-red);
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }
        .section-subtitle1 {
            font-size: 1.2rem;
            color: #fff!important;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: var(--white);
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            border: 1px solid rgba(255, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--ravi-red), var(--ravi-dark-red));
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(255, 0, 0, 0.15);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--ravi-red), var(--ravi-dark-red));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--white);
            margin: 0 auto 2rem;
            box-shadow: 0 10px 20px rgba(255, 0, 0, 0.2);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark-gray);
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 1rem;
        }
       .about {
            padding: 50px 2rem;
            background: var(--white);
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 5rem;
            align-items: center;
        }

        .about-content h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
            color: var(--dark-gray);
            font-weight: 900;
            line-height: 1.2;
        }

        .about-content .highlight {
            color: var(--ravi-red);
        }

        .about-content p {
            margin-bottom: 1.5rem;
            color: var(--text-light);
            font-size: 1.1rem;
            line-height: 1.7;
        }

        .about-content .founder-quote {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--ravi-red);
            margin: 2rem 0;
            font-style: italic;
            font-size: 1.1rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: linear-gradient(135deg, var(--ravi-red), var(--ravi-dark-red));
            border-radius: 15px;
            color: var(--white);
            box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 900;
            display: block;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        .about-visual {
            position: relative;
        }

        .about-image {
            width: 100%;
            height: 500px;
            background: linear-gradient(135deg, var(--dark-gray), var(--medium-gray));
            border-radius: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--ravi-red);
            font-size: 8rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="factory" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><rect x="8" y="8" width="4" height="4" fill="rgba(255,0,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23factory)"/></svg>');
        }

        /* Products Section */
        .products {
            padding: 10px 2rem;
            background: var(--dark-gray);
            color: var(--white);
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .products .section-title {
            color: var(--white);
        }

        .products .section-subtitle {
            color: rgba(255,255,255,0.8);
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 4rem;
        }

        .product-card {
            background: rgba(255,255,255,0.05);
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s ease;
            border: 1px solid rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
        }

        .product-card:hover {
            transform: translateY(-10px);
            background: rgba(255,255,255,0.08);
            border-color: var(--ravi-red);
        }

        .product-image {
            height: 375px;
            background: linear-gradient(45deg, var(--ravi-red), var(--ravi-dark-red));
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 4rem;
            color: var(--white);
            position: relative;
        }

        .product-info {
            padding: 2rem;
        }

        .product-info h3 {
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--white);
            font-weight: 700;
        }

        .product-info p {
            color: rgba(255,255,255,0.8);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .product-features {
            list-style: none;
        }

        .product-features li {
            padding: 0.3rem 0;
            color: rgba(255,255,255,0.7);
            font-size: 0.9rem;
        }

        .product-features li::before {
            content: "✓";
            color: var(--ravi-red);
            font-weight: bold;
            margin-right: 0.5rem;
        }

    .main-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 10px;
        background: white;
        min-height: 100vh;
    }

    .product-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        margin-bottom: 4rem;
        align-items: start;
    }

    .image-gallery {
        position: sticky;
        top: 2rem;
    }

    .slider-container {
        position: relative;
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border: 1px solid #e9ecef;
    }

    .main-slider {
        position: relative;
        height: 450px;
        overflow: hidden;
    }

    /* FIXED: Added missing slide CSS */
    .slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(100%);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        max-width: 100%;
        max-height: 100%;
    }

    .slide.active {
        opacity: 1;
        transform: translateX(0);
    }

    .slide.prev {
        transform: translateX(-100%);
    }

    .slider-nav {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 12px;
        z-index: 10;
    }

    .nav-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .nav-dot.active {
        background: white;
        transform: scale(1.2);
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
    }

    .nav-dot:hover {
        background: rgba(255, 255, 255, 0.7);
        transform: scale(1.1);
    }

    .slider-arrows {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 255, 255, 0.9);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        font-size: 20px;
        font-weight: bold;
        color: #333;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        z-index: 10;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .slider-arrows:hover {
        background: white;
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .prev-arrow {
        left: 20px;
    }

    .next-arrow {
        right: 20px;
    }

    .thumbnail-strip {
        display: flex;
        gap: 10px;
        padding: 15px;
        background: #f8f9fa;
        justify-content: center;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 0.8rem;
        text-align: center;
        border: 2px solid transparent;
        overflow: hidden;
    }

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .thumbnail.active {
        border-color: black;
        transform: scale(1.1);
        box-shadow: 0 4px 12px rgba(42, 82, 152, 0.3);
    }

    .thumbnail:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .product-details {
        padding-left: 1rem;
    }

    .product-title {
        font-size: 2.5rem;
        color: #2c3e50;
        margin-bottom: 1rem;
        font-weight: 700;
    }

    .product-description {
        font-size: 1.1rem;
        color: #666;
        margin-bottom: 2rem;
        line-height: 1.8;
    }
    
    .section-divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, #ddd, transparent);
        margin: 3rem 0;
    }
    
    @media (max-width: 1024px) {
        .product-layout {
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        .image-gallery {
            position: relative;
            top: auto;
        }

        .product-details {
            padding-left: 0;
        }
    }

    @media (max-width: 768px) {
        .main-content {
            padding: 1rem;
        }
        .main-slider {
            height: 350px;
        }

        .slider-arrows {
            width: 40px;
            height: 40px;
            font-size: 16px;
        }

        .prev-arrow {
            left: 10px;
        }

        .next-arrow {
            right: 10px;
        }
    }

    .size-button,
    .color-button {
        border: 1px solid #ccc;
        padding: 10px 15px;
        margin: 5px;
        border-radius: 5px;
        background-color: white;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
    }

    .size-button.selected {
        background-color: red;
        color: white;
        border-color: red;
    }

    .color-button {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .color-button input[type="radio"] {
        accent-color: grey;
    }

    .color-button.selected {
        background-color: #f0f0f0;
        border-color: grey;
    }
    p{
        text-align:justify;
    }