.section4{
    width: 100%;
    height: 100%;
}

.section4 h1{
    text-align: center;
    font-size: 40px;
    margin-top: 10%;
}




 /* Tab Navigation */
        .tabs-container {
            width: 90%;
            margin: 0 auto;
            margin-top: 2%;
        }

        .tab-nav {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            border-bottom: 2px solid #333;
        }

        .tab-button {
            padding: 15px 40px;
            background: none;
            border: none;
            color: #888;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            border-bottom: 3px solid transparent;
            margin: 0 10px;
        }

        .tab-button.active {
            color: #4741e1;
            border-bottom-color: #4741e1;
        }

        .tab-button:hover {
            color: #4741e1;
        }

        /* Tab Content */
        .tab-content {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .tab-content.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Main Layout - Split into two sections */
        .tab-main-layout {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            height: 100%;
            align-items: start;
        }

        /* Left Section - Image and Text */
        .left-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .category-image {
            width: 100%;
            max-width: 400px;
            height: 300px;
            background-color: #1a1625;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 30px;
            transition: transform 0.3s ease;
            margin-top: 15%;
            position: relative;
        }

        .category-image:hover {
            transform: scale(1.02);
        }


        .category-image img {
            max-width: 100%;
            border-radius: 15px;
            object-fit: contain;
            border: 7px solid #320c6f; 
            filter: grayscale(70%) blur(0px)
        }

        .category-title {display: none;
            font-size: 32px;
            color: #4741e1;
            margin-top: 15%;
            font-weight: bold;
        }

        .category-description {
            font-size: 16px;
            line-height: 1.6;
            color: #ccc;
            max-width: 90%;
            margin-top: 15%;
        }

        .section4-btn{
            width: 60%;
            height: 60px;
            border-radius: 5px;
            background: linear-gradient(45deg, #1e90ff, #8a2be2);
            transition: 0.4s ease;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-top: 2%;
        }

        .section4-btn a{
            position: absolute;
            width: 100%;
            height: 100%;
            text-decoration: none;
            color: white;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .section4-btn a:hover{
            text-decoration: underline;
        }
        /* Right Section - Products Grid */
        .right-section {
            padding: 20px 0;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            height: 100%;
        }

        .product-card {
            background: linear-gradient(135deg, #1a1625 0%, #2a2240 100%);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #333;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(71, 65, 225, 0.3);
            border-color: #4741e1;
        }

        .product-card-top {
            width: 100%;
            background-color: #1a1625;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 30px 20px;
            border-bottom: 1px solid #333;
            min-height: 150px;
        }

        .product-card img {
            width: 70%;
            height: auto;
            display: block;
            margin: 0 auto;
            object-fit: contain;
            margin-left: 10%;
        }

        .product-card-content {
            padding: 20px;
        }

        .product-card span {
            display: none;
            justify-content: center;
            gap: 5px;
            opacity: 0.6;
            font-size: 12px;
            margin-bottom: 15px;
        }

        .product-card span a {display: none;
            text-decoration: none;
            color: white;
        }

        .product-card span a:hover {
            text-decoration: underline;
        }
      
        .product-card h1 {
            text-align: center;
            font-size: 19px;
            color: #fff;
            margin-top: 1%;
        }

        .product-inner-line {display: none;
            width: 80%;
            height: 2px;
            border-radius: 50%;
            opacity: 0.4;
            margin: 0 auto 20px auto;
            background: linear-gradient(
                to right,
                transparent 0%,
                #666 20%,
                #666 80%,
                transparent 100%
            );
        }

        .product-inner-btn {
            width: 80%;
            height: 35px;
            margin: 0 auto;
            display: block;
            border-radius: 5px;
            background: linear-gradient(45deg, #1e90ff, #8a2be2);
            transition: 0.4s ease;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 13px;
            font-weight: bold;
        }

        .product-inner-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(71, 65, 225, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .tab-main-layout {
                grid-template-columns: 1fr 1.5fr;
                gap: 40px;
            }
        }

        @media (max-width: 900px) {
            .tab-main-layout {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .left-section {
                order: 1;
            }
            
            .right-section {
                order: 2;
            }
            
            .category-image {
                height: 250px;
            }
            
            .products-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 600px) {
            .products-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .tab-nav {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            .tab-button {
                width: 200px;
                text-align: center;
                padding: 12px 25px;
                font-size: 16px;
            }
            
            .category-title {
                font-size: 24px;
            }
        }


