.hero-section{min-height:55vh;display:flex;align-items:center;position:relative;overflow:hidden}.hero-Placement-Cell{background:url("../images/Placement Cell.jpg") center/cover no-repeat}.hero-content{opacity:0;transform:translateY(40px);transition:all 1s ease}.hero-content.show{opacity:1;transform:translateY(0)}.hero-title{text-shadow:0 4px 20px rgb(0 0 0 / .4);font-size:2.8rem!important}@media (max-width:768px){.hero-Placement-Cell{background:url("../images/Placement Cell.jpg") center/cover no-repeat}}

.career-section{
    padding:20px 0;
}

.career-header{
    max-width:800px;
    margin:0 auto 60px;
}

.career-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(38,52,137,.1);
    color:#065ba7;
    font-size:13px;
    font-weight:600;
    letter-spacing:.5px;
    margin-bottom:15px;
}

.career-header h2{
    color:#065ba7;
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.career-header p{
    color:#666;
    font-size:18px;
}

.career-info-card{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
    border-top:5px solid #065ba7;
}

.career-info-card h3{
    color:#065ba7;
    font-weight:700;
    margin-bottom:20px;
}

.career-feature{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.career-feature i{
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(236,29,37,.1);
    color:#f78727;
    border-radius:50%;
    font-size:22px;
    flex-shrink:0;
}

.career-feature h5{
    color:#065ba7;
    font-weight:600;
    margin-bottom:5px;
}

.career-feature p{
    margin:0;
    color:#666;
}

.career-form-wrapper{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.form-control:focus,
.form-select:focus{
    border-color:#065ba7;
    box-shadow:0 0 0 .2rem rgba(38,52,137,.15);
}

.btn-submit{
    background:#065ba7;
    color:#fff;
    border:none;
    padding:14px 25px;
    font-weight:600;
}

.btn-submit:hover{
    background:#f38020;
    color:#fff;
}

.section-title{
    color:#f38020;
    font-weight:700;
    border-left:4px solid #f38020;
    padding-left:12px;
    margin-bottom:20px;
    margin-top:15px;
}

@media(max-width:991px){

    .career-header h2{
        font-size:32px;
    }

    .career-info-card,
    .career-form-wrapper{
        padding:25px;
    }
}    
    





        .contact-card {
            background: #ffffff;
            border: none;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            border-top: 6px solid #f78727; /* Brand accent color */
            overflow: hidden;
            padding: 2rem 2.5rem;
        }

        .page-header-title {
            font-weight: 800; 
            color: #024177; 
            font-size: 1.75rem;
            letter-spacing: -0.5px;
        }

        .section-title { 
            font-size: 1rem; 
            font-weight: 700; 
            margin-top: 1.5rem; 
            margin-bottom: 0.8rem; 
            color: #0d9488; 
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #f1f5f9;
            padding-bottom: 0.5rem;
        }
        
        /* Modern Form Inputs */
        .form-label { 
            color: #475569; 
            font-size: 0.85rem; 
            font-weight: 600; 
            margin-bottom: 0.4rem; 
        }
        
        .form-control, .form-select {
            border-radius: 8px;
            border: 1px solid #cbd5e1;
            padding: 0.75rem 1rem;
            font-size: 0.95rem;
            background-color: #f8fafc;
            color: #1e293b;
            transition: all 0.2s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: #f78727;
            box-shadow: 0 0 0 4px rgba(247, 135, 39, 0.15);
            background-color: #ffffff;
        }

        /* File Upload Specific Styling */
        input[type="file"].form-control {
            padding: 0.6rem 1rem;
            background-color: #ffffff;
        }
        
        /* Gradient Submit Button */
        .btn-submit {
            background: linear-gradient(135deg, #f78727 0%, #ea580c 100%);
            color: #fff;
            font-weight: 700;
            border: none;
            border-radius: 8px;
            padding: 0.85rem;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }
        
        .btn-submit:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
            color: #fff;
        }
        
        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }

        @media (max-width: 768px) {
            .contact-card { padding: 2rem 1.5rem; }
        }