.director-profile-page {
     background: #f8fafc;
}

/* Sidebar */
.director-sidebar {
     text-align: center;
     position: relative;
}

.director-card {
     position: relative;
     border-radius: 10px;
     overflow: hidden;
     background: #fff;
     box-shadow: 0 15px 35px rgba(0, 0, 0, .08);

     height: 700px;
     min-height: 700px;
}

.director-image-wrapper {
     /* height: 750px; */
     overflow: hidden;
}

.director-image-wrapper {
     width: 100%;
     height: 100%;
     overflow: hidden;
}

.director-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
}

/* Floating Info Card */
.director-info {
     position: absolute;
     left: 20px;
     right: 20px;
     bottom: 10px;
     background: rgba(255, 255, 255, .95);
     backdrop-filter: blur(15px);
     border-radius: 24px;
     padding: 25px;
     text-align: left;
     box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

.director-name {
     font-size: 20px;
     font-weight: 800;
     color: #2a4173;
     margin-bottom: 10px;
     line-height: 1.1;
}

.director-designation {
     color: #FFB703;
     /* font-size: 28px; */
     font-weight: 700;
     /* margin-bottom: 10px; */
}

.director-department {
     color: #64748b;
     font-size: 15px;
     font-weight: 600;
}

.director-email {
     color: #94a3b8;
     font-size: 16px;
}

.director-email i {
     color: #94a3b8;
}

/* Social Icons */
.director-social {
     display: flex;
     justify-content: center;
     gap: 12px;
     margin-top: 20px;
}

.director-social a {
     width: 48px;
     height: 48px;
     background: #f1f5f9;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #2a4173;
     text-decoration: none;
     transition: .3s;
}

.director-social a:hover {
     background: #2a4173;
     color: #fff;
     transform: translateY(-3px);
}

/* Right Content */
.content-card {
     background: #fff;
     padding: 40px;
     border-radius: 30px;
     box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
     height: 700px;
     min-height: 700px;
     overflow-y: auto;
}

.director-profile-page .row {
     align-items: stretch;
}

.director-profile-page .col-lg-4,
.director-profile-page .col-lg-8 {
     display: flex;
}

.director-profile-page .director-sidebar {
     width: 100%;
}

.director-profile-page .content-card {
     width: 100%;
}

.content-badge {
     color: #2a4173;
     font-size: 18px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
}

.content-title {
     color: #2a4173;
     font-size: 3.5rem;
     font-weight: 800;
     margin: 15px 0 25px;
}

.content-card p {
     color: #475569;
     line-height: 2;
     text-align: justify;
     font-size: 17px;
}

.btn-read-more {
     background: #2a4173;
     color: #fff;
     border: none;
     padding: 15px 35px;
     border-radius: 50px;
     font-weight: 600;
     transition: .3s;
}

.btn-read-more:hover {
     background: #2a4173;
     color: #fff;
}

/* Responsive */
@media (max-width: 991px) {

     .director-profile-page .col-lg-4,
     .director-profile-page .col-lg-8 {
          display: block;
     }

     .director-card {
          height: 600px;
          min-height: 600px;
     }

     .director-image-wrapper {
          height: 100%;
     }

     .director-info {
          position: absolute;
          left: 20px;
          right: 20px;
          bottom: 20px;
     }

     .content-card {
          height: auto;
          min-height: 600px;
          overflow: visible;
          padding: 25px;
     }

     .director-name {
          font-size: 28px;
     }

     .director-designation {
          font-size: 20px;
     }

     .director-department {
          font-size: 18px;
     }

     .content-title {
          font-size: 2.2rem;
     }
}