/* =====================================================
           DIRECTOR CARD
        ====================================================== */

        .director-card {
	position: relative;
	background: #ffffff;
	border: 3px solid #afdfff;
	border-radius: 24px;
	overflow: hidden;
	text-align: center;
	padding: 0 0 20px;
	cursor: pointer;
	height: 100%;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
	transition:
 transform 0.35s ease,  box-shadow 0.35s ease;
}
.director-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.director-designation {
	color: #0070bc;
}
/* =====================================================
           DIRECTOR IMAGE
        ====================================================== */

        .director-img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
	display: block;
}
/* =====================================================
           DIRECTOR NAME
        ====================================================== */

        .director-name {
	color: #000000;
	font-size: 18px;
	font-weight: 700;
	padding: 11px 0 0 0;
	margin: 0;
}
}
/* =====================================================
           DESIGNATION
        ====================================================== */

        .director-designation {
	color: #243653;
	font-size: 17px;
	font-weight: 400;
	padding: 11px 10px 10px;
	min-height: 40px;
}
/* =====================================================
           GREEN LINE
        ====================================================== */

        .director-line {
	width: 95px;
	height: 4px;
	background: #0070bc;
	border-radius: 10px;
	margin: 0 auto 0;
}
/* =====================================================
           MODAL
        ====================================================== */

        .director-modal .modal-dialog {
	width: 90%;
	max-width: 1100px;
	margin: 60px auto;
	opacity: 0;
	transform:
 translateY(40px)  scale(0.94);
	transition:
 opacity 0.4s ease,  transform 0.4s ease;
}
/*
         * Bootstrap 3 adds "in"
         * when modal is opened.
         */

        .director-modal.in .modal-dialog {
	opacity: 1;
	transform:
 translateY(0)  scale(1);
}
/* =====================================================
           MODAL CONTENT
        ====================================================== */

        .director-modal .modal-content {
	position: relative;
	background: #ffffff;
	border: none;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.director-modal .modal-body {
	padding:35px 30px 30px 30px;
}
/* =====================================================
           MODAL IMAGE
        ====================================================== */

        .modal-profile-img {
	width: 100%;
	height: 330px;
	object-fit: cover;
	border-radius: 18px;
	display: block;
}
/* =====================================================
           MODAL NAME
        ====================================================== */

        .modal-name {
	margin-top: 7px;
	margin-bottom: 3px;
	color: #000000;
	font-size: 20px;
	font-weight: 700;
	line-height: 30px;
}
/* =====================================================
           MODAL DESIGNATION
        ====================================================== */

        .modal-designation {
	color: #0070bc;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 0;
}
/* =====================================================
           QUALIFICATION
        ====================================================== */

        .modal-qualification {
	color: #58657a;
	font-size: 16px;
	margin-bottom: 22px;
}
/* =====================================================
           DESCRIPTION
        ====================================================== */

        .modal-description {
	color: #000;
	font-size: 15px;
	line-height: 23px;
	margin-bottom: 15px;
	text-align: justify;
}
/* =====================================================
           OTHER DIRECTORSHIPS
        ====================================================== */

        .modal-pdf {
	display: inline-block;
	color: #72b536;
	text-decoration: none;
	font-size: 16px;
	margin-top: 5px;
	transition: color 0.3s ease;
}
.modal-pdf:hover {
	color: #087b3e;
	text-decoration: none;
}
.pdf-icon {
	color: #e33434;
	font-size: 20px;
	margin-right: 8px;
}
/* =====================================================
           CLOSE BUTTON
        ====================================================== */

        .modal-close {
	position: absolute;
	right:13px;
	top: 6px;
	width: 30px;
	height: 30px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: #d5d5d5;
	color: #000;
	font-size: 20px;
	line-height:30px;
	text-align: center;
	z-index: 20;
	transition:
 background 0.3s ease,  transform 0.3s ease;
}
.modal-close:hover {
	background: #d5d5d5;
	transform: rotate(90deg);
}
/* =====================================================
           MODAL BACKDROP
        ====================================================== */

        .modal-backdrop.in {
	opacity: 0.65;
}




        /* =====================================================
           RESPONSIVE
        ====================================================== */

        @media (max-width: 991px) {
 .director-name {
 font-size:18px;
}
 .director-designation {
 font-size: 16px;
}
 .director-modal .modal-body {
 padding: 35px;
}
 .modal-profile-img {
 height: 280px;
}
 .modal-name {
 font-size: 27px;
}
}
 @media (max-width: 767px) {
 .director-card {
 width: 70%;
 margin: 0 auto 20px;
}
 .director-modal .modal-dialog {
 width: 92%;
 margin: 30px auto;
}
 .director-modal .modal-body {
 padding: 25px;
}
 .modal-profile-img {
 height: 280px;
 margin-bottom: 25px;
}
 .modal-name {
 font-size: 25px;
}
 .modal-designation {
 font-size: 13px;
}
}
 @media only screen and (min-width:960px) {
 .director-section .container-fluid {
 width: 87%;
}
}
