/* 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);
        }
.ved-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .ved-product-card {
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom: 30px;
            height: 100%;
        }
        
        .ved-product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .ved-product-img {
            height: 200px;
            object-fit: cover;
        }
        
        .ved-feature-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
        }
        
      
 /* 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;
    }
}
        
        