/* Hero Section */
.ved-about-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(13, 81, 132, 0.5) 100%), 
                url('https://images.pexels.com/photos/3825572/pexels-photo-3825572.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 80px;
    color: var(--secondary);
    position: relative;
    overflow: hidden;
    animation: fadeIn 1s ease-in-out;
}

.ved-about-hero:before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--secondary);
    transform: skewY(-3deg);
    z-index: 1;
}

.ved-about-hero h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.8s ease-out;
}

.ved-about-hero .lead {
    font-weight: 300;
    font-size: 1.25rem;
    opacity: 0.9;
    animation: slideUp 0.8s ease-out 0.2s;
    animation-fill-mode: backwards;
}
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            color: var(--primary-color);
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--accent);
        }

        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 20px;
        }
        
        
        
        .product-gallery {
            margin-bottom: 50px;
        }
        
        .product-gallery img {
            border-radius: 8px;
            margin-bottom: 20px;
            transition: transform 0.3s;
        }
        
        .product-gallery img:hover {
            transform: scale(1.03);
        }
        
        
        
      
        
        .specs-table th {
            background-color: var(--accent);
            color: white;
        }
        
        .badge-custom {
            background-color: var(--accent);
        }
		
		.text-active-green {
		  color: var(--accent);
		}
		

/* Responsive Styles */
@media (max-width: 992px) {
    
	.ved-about-hero h1 {
        font-size: 2.5rem;
    } 
}

@media (max-width: 768px) {
    
	.ved-about-hero {
        padding: 120px 0 60px;
		margin-top:50PX;
        background-attachment: scroll;
    }

    .ved-about-hero h1 {
        font-size: 2rem;
    }

    .ved-about-hero .lead {
        font-size: 1.1rem;
    }
}

.subcategory-tabs .nav-link {
    font-weight: 500;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

    .subcategory-tabs .nav-link:hover {
        background-color: #f8f9fa;
    }

    .subcategory-tabs .nav-link.active {
        background-color: #007bff;
        color: white;
    }

.product-gallery img {
    object-fit: cover;
    width: 100%;
    height: 200px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.accordion-button {
    font-weight: 500;
}

@media (max-width: 767px) {
    .subcategory-tabs {
        flex-direction: column;
        align-items: center;
    }

        .subcategory-tabs .nav-link {
            width: 100%;
            text-align: center;
            margin-bottom: 5px;
        }
}	