/*==============================
    ABOUT PAGE
==============================*/

.about-page{
    padding:70px 0;
    background:#fff;
}

.about-content{
    display:flex;
    flex-direction:column;
    justify-content:center;
    height:100%;
    padding-right:40px;
}

.section-tag{
    display:inline-block;
    background:#eef5ff;
    color:#0b2e6d;
    font-size:14px;
    font-weight:700;
    padding:8px 18px;
    border-radius:30px;
    margin-bottom:20px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.about-content h2{
    font-size:42px;
    font-weight:700;
    color:#0b2e6d;
    margin-bottom:25px;
    line-height:1.25;
}

.about-content p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    text-align:justify;
    margin-bottom:18px;
}

.about-image{
    height:100%;
}

.about-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

/*==============================
    Responsive
==============================*/

@media(max-width:991px){

    .about-content{
        padding-right:0;
        margin-bottom:30px;
    }

    .about-content h2{
        font-size:34px;
    }

    .about-image{
        height:450px;
    }

}

@media(max-width:768px){

    .about-page{
        padding:50px 0;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-content p{
        font-size:16px;
    }

    .about-image{
        height:350px;
    }

}

@media(max-width:576px){

    .about-content h2{
        font-size:24px;
    }

    .about-content p{
        font-size:15px;
    }

    .about-image{
        height:260px;
    }

}



/*==================================
    ABOUT PROJECT LIST
==================================*/

.about-project-list{
    list-style:none;
    padding:0;
    margin:25px 0 0;
}

.about-project-list li{
    position:relative;
    padding-left:32px;
    margin-bottom:15px;
    font-size:17px;
    line-height:1.7;
    color:#444;
}

.about-project-list li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:2px;
    width:20px;
    height:20px;
    border-radius:50%;
    background:#0b2e6d;
    color:#fff;
    font-size:12px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

@media (max-width:768px){

    .about-project-list li{
        font-size:15px;
        padding-left:28px;
    }

}





/*====================================
    CSR SECTION
====================================*/

.csr-section{
    padding:80px 0;
    background:#f8fafc;
}

.csr-image{
    overflow:hidden;
    border-radius:15px;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
}

.csr-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.csr-image:hover img{
    transform:scale(1.05);
}

.csr-content h2{
    font-size:38px;
    font-weight:700;
    color:#0b2e6d;
    margin-bottom:25px;
}

.csr-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
    text-align:justify;
}

/* Responsive */

@media(max-width:991px){

    .csr-content h2{
        font-size:30px;
    }

}

@media(max-width:768px){

    .csr-section{
        padding:60px 0;
    }

    .csr-content h2{
        font-size:26px;
    }

    .csr-content p{
        font-size:16px;
    }

}










/* Page Header */
.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 10px;
}

.contact-header p {
    color: #6c757d;
    font-size: 17px;
}

/* Contact Card */
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    height: 100%;
    transition: .3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.contact-title {
    font-size: 26px;
    font-weight: 700;
    color: #0b3d91;
    margin-bottom: 25px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-info i {
    width: 50px;
    height: 50px;
    background: #0b3d91;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 20px;
    margin-right: 18px;
    flex-shrink: 0;
}

.contact-info h5 {
    font-weight: 600;
    margin-bottom: 8px;
    color: #222;
}

.contact-info p {
    margin: 0;
    color: #555;
    line-height: 1.8;
}

/* Directory Button */
.directory-btn {
    background: #0b3d91;
    color: #fff;
    border-radius: 30px;
    padding: 12px 28px;
    font-weight: 600;
    transition: .3s;
}

.directory-btn:hover {
    background: #062b67;
    color: #fff;
    transform: translateY(-2px);
}

/* Map */
.map-card {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

/* Responsive */
@media(max-width:991px){

    .contact-header h2{
        font-size:30px;
    }

    .contact-card{
        margin-bottom:25px;
    }

}



.directory-header{

    text-align:center;
	background-color:#F7F7F7;
	padding:20px;

}

.directory-header h2{

    font-size:38px;
    font-weight:700;
    color:#0b3d91;

}

.directory-header p{

    font-size:17px;

}

.directory-table{

    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.08);

}

.directory-table thead{

    background:#0b3d91;
    color:#fff;

}

.directory-table thead th{

    padding:16px;
    font-weight:600;
    white-space:nowrap;
    border:none;

}

.directory-table tbody td{

    padding:18px;
    vertical-align:top;

}

.directory-table tbody tr{

    transition:.25s;

}

.directory-table tbody tr:hover{

    background:#f3f8ff;

}

.employee-name{

    font-weight:600;
    color:#0b3d91;
    font-size:16px;

}

.employee-name i{

    margin-right:8px;

}

.contact-item{

    margin-bottom:8px;
    color:#555;

}

.contact-item i{

    width:20px;
    margin-right:6px;

}

.badge{

    padding:8px 12px;
    font-size:13px;
    border-radius:20px;

}

.card{

    border-radius:12px;

}

.input-group-text{

    background:#0b3d91;
    color:#fff;
    border:none;

}

.form-control,
.form-select{

    border-radius:0 8px 8px 0;

}