/* 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);
        }

/* General Layout */
.content-section {
    padding: 0 0;
	margin-bottom:50px;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Services Section */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.service-card__image {
    height: 220px;
    background-color: #eaeaea;
    background-size: cover;
    background-position: center;
}

.service-card__content {
    padding: 25px 20px;
}

.service-card__title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #222;
    font-weight: 600;
}

/* Process Section */
.process-steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1 1 calc(20% - 20px);
    min-width: 200px;
    text-align: center;
    position: relative;
}

.process-step__number {
    width: 55px;
    height: 55px;
    background-color: #0066cc;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0 auto 15px;
}

.process-step__title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Benefits Section */
.benefits-container {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 30px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.benefit-item__icon {
    color: #0066cc;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .process-steps-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-step {
        flex: 1 1 45%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
    }

    .process-steps-container {
        flex-direction: column;
        gap: 40px;
    }

    .process-step::after {
        content: '';
        display: block;
        width: 24px;
        height: 24px;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%230066cc'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") no-repeat center;
        margin: 20px auto 0;
    }

    .benefits-container {
        grid-template-columns: 1fr;
    }
}


/* 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;
    }
}
