
/* 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: 15px;
        }
        
        .product-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            margin-bottom: 30px;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
        }
        
        .product-img {
            height: 250px;
            object-fit: cover;
        }
        
        .btn-primary {
            background-color: var(--accent);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
        }
        
        .btn-primary:hover {
            background-color: var(--primary-color);
        }
        
        .benefits-section {
            background-color: var(--light-color);
            padding: 60px 0;
        }
        
        .specs-table th {
            background-color: var(--accent);
            color: white;
        }
		

/* 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;
    }
}
		
		