.header-top {
    background: #0d3b66;
    padding: 8px 0;
    font-size: 14px;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.social-links ul,
.header-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
}
.gallery-img{
    width:100%;
    height:300px;
    object-fit:cover;
    border-radius:20px;
    transition:.3s;
}

.gallery-img:hover{
    transform:scale(1.05);
}


.social-links ul li,
.header-info ul li {
    margin-right: 15px;
}

.social-links ul li a {
    color: #fff;
    font-size: 14px;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.social-links ul li a:hover {
    background: #ff6b00;
    color: #fff;
}

.header-info ul li {
    color: #fff;
    display: flex;
    align-items: center;
}

.header-info ul li i {
    margin-right: 6px;
    color: #ff6b00;
}

.header-info ul li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.header-info ul li a:hover {
    color: #ff6b00;
}

.erp-btn {
    background: linear-gradient(45deg, #ff6b00, #ff9f1c);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    transition: 0.3s;
}

.erp-btn:hover {
    background: #fff;
    color: #0d3b66 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .social-links ul,
    .header-info ul {
        justify-content: center;
        margin-bottom: 8px;
        flex-wrap: wrap;
    }

    .header-info ul li {
        margin-bottom: 5px;
    }
}

.facility-section{
    padding:70px 0;
    background:#f8f9fa;
}

.section-title{
    font-weight:700;
    color:#0d3b66;
    margin-bottom:50px;
}

.facility-box{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    transition:0.3s ease;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    height:100%;
}

.facility-box:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.facility-icon{
    width:80px;
    height:80px;
    background:linear-gradient(45deg,#0d3b66,#1d6fa5);
    color:#fff;
    font-size:30px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 20px;
    border-radius:50%;
}

.facility-box h5{
    font-weight:600;
    margin-bottom:15px;
    color:#0d3b66;
}

.facility-box p{
    font-size:14px;
    color:#555;
}
#news-slider{
    /*margin-top: 80px;*/
}
.post-slide{
 
    margin: 20px 15px 20px;
    border-radius: 15px;
    padding-top: 1px;
    height: 600px;

}
.post-slide .post-img{
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin: -12px 15px 8px 15px;
    margin-left: -10px;
}
.post-slide .post-img img{
    width: 100%;
    height: auto;
    transform: scale(1,1);
    transition:transform 0.2s linear;
}
.post-slide:hover .post-img img{
    transform: scale(1.1,1.1);
}
.post-slide .over-layer{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    opacity:0;
    background: linear-gradient(-45deg, rgba(6,190,244,0.75) 0%, rgba(45,112,253,0.6) 100%);
    transition:all 0.50s linear;
}
.post-slide:hover .over-layer{
    opacity:1;
    text-decoration:none;
}
.post-slide .over-layer i{
    position: relative;
    top:45%;
    text-align:center;
    display: block;
    color:#fff;
    font-size:25px;
}
.post-slide .post-content{
    background:#fff;
    padding: 2px 20px 40px;
    border-radius: 15px;
}


.post-slide .post-title a{
    font-size:15px;
    font-weight:bold;
    color:#333;
    display: inline-block;
    text-transform:uppercase;
    transition: all 0.3s ease 0s;
}
.post-slide .post-title a:hover{
    text-decoration: none;
    color:#3498db;
}
.post-slide .post-description{
    line-height:24px;
    color:#808080;
    margin-bottom:25px;
}
.post-slide .post-date{
    color:#a9a9a9;
    font-size: 14px;
}
.post-slide .post-date i{
    font-size:20px;
    margin-right:8px;
    color: #CFDACE;
}
.post-slide .read-more{
    padding: 7px 20px;
    float: right;
    font-size: 12px;
    background: #2196F3;
    color: #ffffff;
    box-shadow: 0px 10px 20px -10px #1376c5;
    border-radius: 25px;
    text-transform: uppercase;
}
.post-slide .read-more:hover{
    background: #3498db;
    text-decoration:none;
    color:#fff;
}
.owl-controls .owl-buttons{
    text-align:center;
    margin-top:20px;
}
.owl-controls .owl-buttons .owl-prev{
    background:#712632;
    position: absolute;
    top:-13%;
    left:15px;
    padding: 15px 25px 15px 25px;
    border-radius: 50px;
    box-shadow: 3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-next{
    background:#712632;
    position: absolute;
    top:-13%;
    right: 15px;
    padding: 15px 25px 15px 25px;
    border-radius: 50px;
    box-shadow: -3px 14px 25px -10px #92b4d0;
    transition: background 0.5s ease 0s;
}
.owl-controls .owl-buttons .owl-prev:after,
.owl-controls .owl-buttons .owl-next:after{
    content:"\f104";
    font-family: FontAwesome;
    color: #fff;
    font-size:30px;
}
.owl-controls .owl-buttons .owl-next:after{
    content:"\f105";
}
@media only screen and (max-width:1280px) {
    .post-slide .post-content{
        padding: 0px 15px 25px 15px;
    }
}

.career-section{
    padding:80px 8%;
    background:#f4f8ff;
}

.career-container{
    display:flex;
    justify-content:space-between;
    gap:50px;
    flex-wrap:wrap;
}

.career-details{
    flex:1;
    min-width:320px;
}

.career-tag{
    background:#0d47a1;
    color:#fff;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    display:inline-block;
    margin-bottom:20px;
}

.career-details h2{
    font-size:40px;
    color:#0d47a1;
    margin-bottom:30px;
}

.job-box{
    background:#fff;
    padding:25px;
    border-radius:15px;
    margin-bottom:20px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
    transition:0.3s;
}

.job-box:hover{
    transform:translateY(-5px);
}

.job-box h3{
    color:#0d47a1;
    margin-bottom:15px;
    font-size:24px;
}

.job-box p{
    margin-bottom:10px;
    color:#444;
    font-size:15px;
}

/* Form */

.career-form{
    flex:1;
    min-width:320px;
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.career-form h3{
    text-align:center;
    font-size:30px;
    color:#0d47a1;
    margin-bottom:25px;
}

.career-form form{
    display:flex;
    flex-direction:column;
}

.career-form input,
.career-form select,
.career-form textarea{
    width:100%;
    padding:14px 15px;
    margin-bottom:18px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:15px;
    outline:none;
}

.career-form input:focus,
.career-form select:focus,
.career-form textarea:focus{
    border-color:#0d47a1;
}

.career-form button{
    padding:15px;
    background:#0d47a1;
    color:#fff;
    border:none;
    border-radius:8px;
    font-size:16px;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.career-form button:hover{
    background:#1565c0;
}

@media(max-width:768px){

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

}