/* Chairperson Message Page Styles */

/* Animations */
@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  
  .fadeIn {
    animation-name: fadeIn;
  }
  
  .fadeInUp {
    animation-name: fadeInUp;
  }
  
  .fadeInDown {
    animation-name: fadeInDown;
  }
  
  /* Page Banner */
  .page-banner {
    position: relative;
    padding: 80px 0;
    margin-bottom: 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/banner-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
  }
  
  .chairperson-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url("../images/leadership-banner.jpg");
  }
  
  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
  }
  
  .banner-content {
    position: relative;
    z-index: 2;
  }
  
  .page-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  
  .page-banner .breadcrumb {
    background: transparent;
    justify-content: center;
    margin-bottom: 0;
    padding: 0;
  }
  
  .page-banner .breadcrumb-item a {
    color: #fff;
    transition: all 0.3s ease;
  }
  
  .page-banner .breadcrumb-item a:hover {
    color: #f8f9fa;
    text-decoration: none;
  }
  
  .page-banner .breadcrumb-item.active {
    color: #f8f9fa;
  }
  
  .page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
  }
  
  /* Section Heading */
  .section-heading {
    margin-bottom: 50px;
  }
  
  .section-heading .subheading {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #3498db;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
  }
  
  .section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    position: relative;
  }
  
  .heading-line {
    width: 80px;
    height: 3px;
    background-color: #3498db;
    margin: 0 auto;
  }
  
  /* Chairperson Message Section */
  .chairperson-message-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .chairperson-message-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
    padding: 30px;
  }
  
  .chairperson-image-wrapper {
    position: relative;
    margin-bottom: 30px;
  }
  
  .chairperson-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
  }
  
  .chairperson-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
  }
  
  .chairperson-image:hover img {
    transform: scale(1.05);
  }
  
  .chairperson-info {
    text-align: center;
    padding: 15px 0;
  }
  
  .chairperson-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
  }
  
  .chairperson-info .designation {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    font-style: italic;
  }
  
  .social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    transition: all 0.3s ease;
  }
  
  .social-icon:hover {
    background-color: #3498db;
    color: #fff;
    transform: translateY(-3px);
  }
  
  .chairperson-content {
    position: relative;
    padding: 20px 0 20px 30px;
  }
  
  .quote-icon {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 36px;
    color: #f0f0f0;
    opacity: 0.8;
  }
  
  .chairperson-content h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
  }
  
  .message-content {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
  }
  
  .message-content p {
    margin-bottom: 20px;
  }
  
  .message-content p:first-of-type::first-letter {
    font-size: 36px;
    font-weight: 700;
    color: #3498db;
    float: left;
    line-height: 1;
    padding-right: 10px;
  }
  
  .signature-block {
    display: flex;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
  }
  
  .signature {
    margin-right: 20px;
  }
  
  .signature img {
    height: 60px;
    width: auto;
  }
  
  .signature-name {
    display: flex;
    flex-direction: column;
  }
  
  .signature-name strong {
    font-size: 18px;
    color: #333;
  }
  
  .signature-name span {
    font-size: 14px;
    color: #777;
  }
  
  /* Leadership Quote Section */
  .leadership-quote-section {
    padding: 60px 0;
    background-color: #3498db;
    color: #fff;
    text-align: center;
  }
  
  .quote-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
  }
  
  .quote-container .quote-icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 20px;
  }
  
  .quote-container blockquote {
    font-size: 28px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 20px;
    font-style: italic;
  }
  
  .quote-container cite {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
  }
  
  /* Action Buttons */
  .action-buttons {
    margin: 40px 0;
  }
  
  .action-buttons .btn {
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 15px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .action-buttons .btn i {
    margin-right: 8px;
  }
  
  .action-buttons .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
  }
  
  .action-buttons .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .action-buttons .btn-secondary {
    background-color: #2c3e50;
    border-color: #2c3e50;
  }
  
  .action-buttons .btn-secondary:hover {
    background-color: #1a252f;
    border-color: #1a252f;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  /* Apply for Admission Section */
  .apply-admission-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    position: relative;
  }
  
  .apply-box {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    padding: 40px;
  }
  
  .apply-content {
    padding: 20px 0;
  }
  
  .apply-content h2 {
    color: #333;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
  }
  
  .apply-content h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #e74c3c;
  }
  
  .apply-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
  }
  
  .features {
    margin: 30px 0;
  }
  
  .feature-item {
    display: flex;
    margin-bottom: 25px;
    transition: all 0.3s ease;
  }
  
  .feature-item:hover {
    transform: translateX(5px);
  }
  
  .feature-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(39, 174, 96, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
  }
  
  .feature-icon i {
    color: #27ae60;
    font-size: 20px;
  }
  
  .feature-text {
    flex: 1;
  }
  
  .feature-text h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }
  
  .feature-text p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
  }
  
  .apply-buttons {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .btn-apply {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    margin-right: 20px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
  }
  
  .btn-apply span {
    margin-right: 10px;
  }
  
  .btn-apply:hover {
    background-color: #c0392b;
    color: #fff;
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
  }
  
  .admission-link {
    color: #3498db;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
  }
  
  .admission-link i {
    margin-right: 5px;
  }
  
  .admission-link:hover {
    color: #2980b9;
    text-decoration: none;
  }
  
  .apply-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
  }
  
  .apply-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 30px 20px;
    color: #fff;
  }
  
  .overlay-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
  }
  
  .overlay-content p {
    font-size: 16px;
    margin-bottom: 0;
    opacity: 0.9;
  }
  
  /* Testimonial Section */
  .testimonial-section {
    padding: 80px 0;
    background-color: #fff;
  }
  
  .testimonial-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .testimonial-item {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
  }
  
  .testimonial-item:before {
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 24px;
    color: rgba(52, 152, 219, 0.2);
  }
  
  .testimonial-content {
    padding-left: 40px;
    margin-bottom: 20px;
  }
  
  .testimonial-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    font-style: italic;
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
  }
  
  .author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }
  
  .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .author-info h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
  }
  
  .author-info p {
    font-size: 14px;
    color: #777;
    margin-bottom: 0;
  }
  
  /* Responsive Styles */
  @media (max-width: 1199px) {
    .page-banner {
      padding: 60px 0;
    }
  
    .page-banner h1 {
      font-size: 36px;
    }
  
    .chairperson-message-section,
    .apply-admission-section,
    .testimonial-section {
      padding: 60px 0;
    }
  
    .leadership-quote-section {
      padding: 50px 0;
    }
  
    .quote-container blockquote {
      font-size: 24px;
    }
  }
  
  @media (max-width: 991px) {
    .chairperson-image-wrapper {
      max-width: 350px;
      margin: 0 auto 30px;
    }
  
    .chairperson-content {
      padding: 0;
    }
  
    .quote-icon {
      position: relative;
      margin-bottom: 15px;
    }
  
    .apply-image {
      margin-top: 30px;
      max-height: 400px;
    }
  }
  
  @media (max-width: 767px) {
    .page-banner {
      padding: 40px 0;
    }
  
    .page-banner h1 {
      font-size: 28px;
    }
  
    .section-heading h2 {
      font-size: 28px;
    }
  
    .chairperson-message-section,
    .apply-admission-section,
    .testimonial-section {
      padding: 40px 0;
    }
  
    .chairperson-message-container,
    .apply-box {
      padding: 20px;
    }
  
    .chairperson-content h2 {
      font-size: 24px;
    }
  
    .leadership-quote-section {
      padding: 40px 0;
    }
  
    .quote-container blockquote {
      font-size: 20px;
    }
  
    .apply-content h2 {
      font-size: 26px;
    }
  
    .apply-buttons {
      flex-direction: column;
      align-items: flex-start;
    }
  
    .btn-apply {
      margin-right: 0;
      width: 100%;
      justify-content: center;
    }
  
    .admission-link {
      margin-top: 15px;
    }
  
    .testimonial-content p {
      font-size: 16px;
    }
  }
  
  @media (max-width: 575px) {
    .page-banner h1 {
      font-size: 24px;
    }
  
    .chairperson-info h3 {
      font-size: 20px;
    }
  
    .feature-item {
      flex-direction: column;
    }
  
    .feature-icon {
      margin-bottom: 15px;
      margin-right: 0;
    }
  
    .testimonial-item {
      padding: 20px;
    }
  
    .testimonial-content {
      padding-left: 0;
      padding-top: 30px;
    }
  }
  