
/* Career Hero Section */
.ved-career-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;
	margin-top:5px;
}

.ved-career-hero:before {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 100px;
    background: var(--secondary);
    transform: skewY(-3deg);
    z-index: 1;
}

.ved-career-hero h1 {
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ved-career-hero .lead {
    font-weight: 300;
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Career Cards */
.ved-career-cards {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

.ved-career-card {
    background: var(--secondary);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: none;
    text-align: center;
}

.ved-career-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.ved-career-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gray) 0%, var(--dark-gray) 100%);
    color:  var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ved-career-card h3 {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.ved-career-card p {
    color: var(--gray);
    margin-bottom: 20px;
}

.ved-career-card .btn {
    background: var(--gray);
    border: none;
    color: var(--secondary);
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    transition: all 0.3s;
}

.ved-career-card .btn:hover {
    background: var(--dark-gray);
    transform: translateY(-2px);
}

/* Career Form Section */
.ved-career-form-section {
    padding: 100px 0;
            background: url('VedLab_Image/bgimg.png') no-repeat center center;
            background-size: cover;
            position: relative;
}

.ved-career-form-section:before {
   content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(13, 81, 132, 0.5);
}

.ved-career-form-container {
    background: var(--secondary);
    border-radius: 12px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    padding: 50px;
    position: relative;
    z-index: 2;
}

.ved-form-title {
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 30px;
    position: relative;
}

.ved-form-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gray);
}

.ved-career-form .form-control {
    height: 50px;
    border-radius: 8px;
    border: 2px solid grey;
    padding: 10px 20px;
    margin-bottom: 20px;
    transition: all 0.3s;
    background: var(--secondary);
}

.ved-career-form .form-control:focus {
    border-color: grey;
    box-shadow: 0 0 0 0.25rem rgba(102, 102, 102, 0.2);
    outline: none;
}

.ved-career-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.ved-career-form .form-label {
    font-weight: 500;
    color: var(--dark-gray);
    margin-bottom: 8px;
    display: block;
}

.ved-career-form .btn-submit {
    background: var(--gray);
    color: var(--accent);
    border: none;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ved-career-form .btn-submit:hover {
    background: var(--accent);
	color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

.ved-career-form .is-invalid {
    border-color: red;
}

.ved-career-form .invalid-feedback {
    color: red;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.ved-career-form .is-invalid ~ .invalid-feedback {
    display: block;
}

/* Map Section */
.ved-map-section {
    padding: 80px 0;
    background: var(--light-gray);
    position: relative;
}

.ved-map-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1521737711867-e6b2586a0292?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
    background-size: cover;
    opacity: 0.03;
    z-index: 0;
}

.ved-section-title {
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 50px;
    text-align: center;
    position: relative;
}

.ved-section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gray);
}

.ved-map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    border: 10px solid var(--secondary);
    position: relative;
    z-index: 1;
}

.ved-map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.ved-location-details {
    background: var(--secondary);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    position: relative;
    z-index: 1;
}

.ved-location-details h3 {
    color: var(--dark-gray);
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

.ved-location-details h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gray);
}

.ved-location-feature {
    display: flex;
    margin-bottom: 20px;
}

.ved-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 15px;
    flex-shrink: 0;
}

.ved-location-feature h5 {
    color: var(--dark-gray);
    font-weight: 600;
    margin-bottom: 5px;
}

.ved-location-feature p {
    color: var(--gray);
    margin-bottom: 0;
}



/* Responsive Adjustments */
@media (max-width: 992px) {
    .ved-career-hero h1 {
        font-size: 2.5rem;
    }

    .ved-career-form-container {
        padding: 30px;
    }

    .ved-map-container {
        height: 350px;
        margin-bottom: 30px;
    }

    .ved-location-details {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .ved-career-hero {
		
        padding: 100px 0 60px;
		margin-top: 60px;
    }

    .ved-career-hero h1 {
        font-size: 2rem;
    }

    .ved-career-cards {
        margin-top: 0;
    }

    .ved-career-card {
        margin-bottom: 30px;
    }

    .ved-map-container {
        height: 300px;
    }

    .ved-location-feature {
        flex-direction: column;
        text-align: center;
    }

    .ved-feature-icon {
        margin: 0 auto 15px;
    }
}